:root {
  --bg: #f6f1e8;
  --bg-deep: #ebe3d4;
  --surface: #fffcf7;
  --ink: #1f2a22;
  --muted: #5c665f;
  --sage: #3d5a45;
  --sage-soft: #5c7a62;
  --sage-mist: #dce6dc;
  --terracotta: #c4785a;
  --terracotta-hover: #b0654a;
  --blush: #e8cfc4;
  --line: rgba(31, 42, 34, 0.12);
  --shadow: 0 18px 50px rgba(31, 42, 34, 0.1);
  --radius: 1.25rem;
  --header-h: 4.25rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10000;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  background: var(--bg);
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-mark {
  font-size: 2rem;
  color: var(--sage);
  animation: bloom 1.2s var(--ease) infinite;
  text-align: center;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--sage);
  text-align: center;
}

@keyframes bloom {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(246, 241, 232, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 241, 232, 0.94);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-weight: 600;
  white-space: nowrap;
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-desktop a:not(.nav-cta) {
  color: var(--muted);
  transition: color 0.2s;
}

.nav-desktop a:not(.nav-cta):hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--sage);
  color: var(--bg) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--sage-soft);
}

.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  gap: 6px;
  background: var(--surface);
}

.menu-btn span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.menu-btn.open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-btn.open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(31, 42, 34, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 88vw);
  height: 100%;
  background: var(--surface);
  padding: calc(var(--header-h) + 1.5rem) 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.menu-overlay.open .menu-inner {
  transform: translateX(0);
}

.menu-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.menu-nav {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.menu-nav a:hover {
  color: var(--sage);
}

.menu-footer {
  margin-top: auto;
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: var(--safe-bottom);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--sage);
  color: #f7f3ec;
}

.btn-primary:hover {
  background: var(--sage-soft);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #f7f3ec;
  padding: calc(var(--header-h) + 1rem) 0 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 34, 0.25) 0%, rgba(31, 42, 34, 0.15) 35%, rgba(31, 42, 34, 0.72) 100%),
    linear-gradient(90deg, rgba(31, 42, 34, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 5rem;
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-soft);
  margin-bottom: 0.85rem;
}

.hero .eyebrow {
  color: rgba(247, 243, 236, 0.8);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-lede {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(247, 243, 236, 0.88);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-ghost {
  border-color: rgba(247, 243, 236, 0.35);
  color: #f7f3ec;
}

.hero .btn-ghost:hover {
  border-color: #f7f3ec;
  background: rgba(247, 243, 236, 0.08);
}

.hero .btn-primary {
  background: var(--terracotta);
}

.hero .btn-primary:hover {
  background: var(--terracotta-hover);
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(247, 243, 236, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
}

.scroll-hint span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #f7f3ec;
  animation: drip 1.6s var(--ease) infinite;
}

@keyframes drip {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Sections */
.section {
  padding: 5rem 1.25rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.weddings-copy h2,
.contact-card h2,
.dirt h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Offerings */
.offer-grid {
  display: grid;
  gap: 1.25rem;
}

.offer-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offer-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.offer-card:hover .offer-img img {
  transform: scale(1.04);
}

.offer-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.offer-num {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  font-weight: 500;
}

.offer-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 0.25rem 0 0.5rem;
}

.offer-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Shop */
.shop {
  background: linear-gradient(180deg, transparent, var(--sage-mist) 12%, var(--sage-mist) 88%, transparent);
}

.product-grid {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-deep);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.price {
  color: var(--sage);
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
}

.product-body p:not(.price) {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.text-link {
  font-weight: 500;
  color: var(--terracotta);
  font-size: 0.95rem;
}

.text-link:hover {
  text-decoration: underline;
}

/* Weddings */
.weddings {
  padding-top: 2rem;
}

.weddings-layout {
  display: grid;
  gap: 2rem;
}

.weddings-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
}

.weddings-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  border-left: 3px solid var(--blush);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1.35;
}

.package-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.package {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
}

.package h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.package p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Story */
.story-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.story-text {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.team-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.1rem 1.25rem 0.35rem;
}

.team-card p {
  padding: 0 1.25rem 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 4rem;
}

.contact-card,
.dirt {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 2rem 1.35rem;
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(196, 120, 90, 0.12), transparent 45%),
    var(--surface);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.15rem;
  margin: 1.75rem 0;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list strong {
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-list a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Products page */
.products-page {
  padding-top: calc(var(--header-h) + 2.5rem);
  min-height: 70svh;
}

.products-grid {
  max-width: 52rem;
}

.product-card--sell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card--sell .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.5rem 1.75rem;
}

.product-card--sell .product-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-mist);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.product-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.product-card--sell h3 {
  font-size: clamp(1.55rem, 3vw, 1.85rem);
  margin-bottom: 0.15rem;
  padding-right: 4.5rem;
}

.product-card--sell .price {
  margin-bottom: 0.75rem;
}

.product-card--sell p:not(.price):not(.product-kicker) {
  margin-bottom: 1.35rem;
}

.products-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.products-note .text-link {
  margin-left: 0.25rem;
}

.nav-desktop a[aria-current="page"] {
  color: var(--ink);
}

.dirt {
  background: var(--sage);
  color: #f7f3ec;
  border-color: transparent;
}

.dirt .eyebrow {
  color: rgba(247, 243, 236, 0.7);
}

.dirt p {
  color: rgba(247, 243, 236, 0.88);
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.dirt .btn-primary {
  background: var(--terracotta);
}

.dirt .btn-primary:hover {
  background: var(--terracotta-hover);
}

/* Footer */
.footer {
  padding: 2rem 1.25rem calc(2rem + var(--safe-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
  justify-content: flex-start;
}

.footer-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-time {
  letter-spacing: 0.02em;
}

/* PWA install banner */
.pwa-install {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 200;
}

.pwa-install[hidden] {
  display: none !important;
}

.pwa-install-inner {
  background: var(--ink);
  color: #f7f3ec;
  border-radius: 1.15rem;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.pwa-install-actions {
  display: flex;
  gap: 0.6rem;
}

.pwa-install .btn-ghost {
  border-color: rgba(247, 243, 236, 0.25);
  color: #f7f3ec;
}

.offline-toast {
  position: fixed;
  top: calc(var(--header-h) + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  background: var(--ink);
  color: #f7f3ec;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.offline-toast[hidden] {
  display: none !important;
}

/* Subscribe modal */
.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(31, 42, 34, 0.45);
  backdrop-filter: blur(4px);
}

.subscribe-modal[hidden] {
  display: none !important;
}

.subscribe-modal-panel {
  position: relative;
  width: min(100%, 26rem);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem 1.35rem;
}

.subscribe-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
}

.subscribe-close:hover {
  color: var(--ink);
  background: var(--bg-deep);
}

.subscribe-modal-panel .eyebrow {
  margin-bottom: 0.35rem;
}

.subscribe-modal-panel h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.subscribe-lede {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

.subscribe-form {
  display: grid;
  gap: 0.85rem;
}

.subscribe-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subscribe-field {
  display: grid;
  gap: 0.35rem;
}

.subscribe-field span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.subscribe-field span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.8;
}

.subscribe-field input,
.subscribe-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.7rem 0.85rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.subscribe-field input:focus,
.subscribe-field textarea:focus {
  border-color: var(--sage-soft);
  box-shadow: 0 0 0 3px rgba(61, 90, 69, 0.15);
}

.subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.subscribe-status {
  font-size: 0.9rem;
  color: var(--sage);
  background: var(--sage-mist);
  border-radius: 0.65rem;
  padding: 0.65rem 0.8rem;
}

.subscribe-status[hidden] {
  display: none !important;
}

.subscribe-status.error {
  color: #7a2e2e;
  background: #f3d9d3;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (min-width: 640px) {
  .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .offer-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .menu-btn {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .hero-content {
    padding: 3rem 3rem 6rem;
    max-width: 44rem;
  }

  .section {
    padding: 6.5rem 3rem;
  }

  .offer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .weddings-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3.5rem;
  }

  .weddings-media {
    aspect-ratio: 4 / 5;
    max-height: 36rem;
  }

  .story-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.5rem;
  }

  .contact {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .contact-card,
  .dirt {
    padding: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .section,
  .hero-content,
  .header,
  .footer {
    padding-left: max(3rem, calc((100vw - 72rem) / 2));
    padding-right: max(3rem, calc((100vw - 72rem) / 2));
  }

  .hero-content {
    max-width: none;
  }

  .hero-content > * {
    max-width: 40rem;
  }
}

@media (display-mode: standalone), (display-mode: fullscreen) {
  .header {
    padding-top: env(safe-area-inset-top, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .preloader-mark,
  .scroll-hint span {
    animation: none;
  }
}
