/* =========================================================
   ECO Day Spa — styles.css
   Aesthetic: refined, organic, calming. Light theme.
   Palette: cream, sage green, warm beige, charcoal, soft gold.
   ========================================================= */

:root {
  /* Neutrals */
  --cream: #f6f1e7;
  --cream-2: #efe7d8;
  --beige: #e4d8c4;
  --beige-deep: #d8c8ad;
  --paper: #fbf8f1;

  /* Greens */
  --sage: #8a9a7b;
  --sage-deep: #4a5842;
  --sage-ink: #333d2c;

  /* Ink + gold */
  --charcoal: #2c2a26;
  --charcoal-soft: #4b4842;
  --gold: #c1a15f;
  --gold-soft: #d8bd88;

  --line: rgba(74, 88, 66, 0.16);
  --shadow-soft: 0 18px 50px -28px rgba(51, 61, 44, 0.45);
  --shadow-lift: 0 30px 70px -34px rgba(51, 61, 44, 0.55);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  --wrap: 1180px;
  --radius: 18px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage-deep);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}

.section-title {
  font-size: clamp(2rem, 5.4vw, 3.3rem);
  color: var(--sage-ink);
}
.section-title .accent { font-style: italic; color: var(--gold); }
.accent { color: var(--gold); }

.section-lead {
  color: var(--charcoal-soft);
  max-width: 46ch;
  font-size: 1.05rem;
}

.section-head { max-width: 620px; margin-bottom: 3rem; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 0.95em 1.6em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: var(--pad);
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 14px 30px -16px rgba(74, 88, 66, 0.9);
}
.btn-primary:hover {
  background: var(--sage-ink);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -18px rgba(74, 88, 66, 0.95);
}

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border-color: rgba(74, 88, 66, 0.4);
}
.btn-outline:hover {
  background: var(--sage-deep);
  color: var(--cream);
  transform: translateY(-2px);
  border-color: var(--sage-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover { background: #fff; }

.btn-text {
  background: transparent;
  color: var(--sage-deep);
  padding-left: 0.4em;
  padding-right: 0.4em;
}
.btn-text:hover { color: var(--gold); }

.btn-sm { padding: 0.65em 1.15em; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(246, 241, 231, 0.86);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--sage-ink);
}
.brand-mark { color: var(--sage-deep); display: grid; place-items: center; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-text em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav { display: none; gap: 2rem; }
.nav a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--sage-ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: none; gap: 0.6rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--sage-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 22px 1.6rem;
  background: rgba(246, 241, 231, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  animation: dropIn 0.35s var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a:not(.btn) {
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 0.5rem; justify-content: center; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-10px); } }

/* ---------- Photo placeholder blocks ---------- */
.photo, .service-thumb, .map-placeholder, .gc {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255,255,255,0.5), transparent 55%),
    linear-gradient(150deg, var(--beige) 0%, var(--sage) 130%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.photo::after, .service-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q15 20 30 30 T60 30' fill='none' stroke='%23ffffff' stroke-opacity='0.16' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: soft-light;
}
.photo-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(51, 61, 44, 0.34);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
/* leaf watermark for photo blocks */
.photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -18px; top: -18px;
  width: 130px; height: 130px;
  opacity: 0.22;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 3C16 12 8 13 8 21a8 8 0 0 0 16 0c0-8-8-9-8-18Z' stroke='%23fff' stroke-width='1.2'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 0;
  background:
    radial-gradient(80% 60% at 15% 0%, var(--paper), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(138,154,123,0.35), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.hero-grid { position: relative; z-index: 2; display: grid; gap: 2.5rem; align-items: center; }
.hero-title {
  font-size: clamp(3rem, 13vw, 6.2rem);
  letter-spacing: -0.03em;
  color: var(--sage-ink);
  margin: 0.4rem 0 1.2rem;
}
.hero-title .accent { font-style: italic; }
.hero-sub {
  font-size: 1.12rem;
  color: var(--charcoal-soft);
  max-width: 42ch;
  margin: 0 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.hero-media { position: relative; min-height: 340px; }
.photo-hero { aspect-ratio: 4 / 5; }
.photo-hero-sm {
  position: absolute;
  right: -6px; bottom: -22px;
  width: 46%;
  aspect-ratio: 1 / 1;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lift);
}
.hero-badge {
  position: absolute;
  left: -10px; top: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  z-index: 3;
}
.hero-badge-num { font-family: var(--font-display); font-size: 1.15rem; color: var(--sage-ink); }
.hero-badge-txt { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--charcoal-soft); }

.hero-marquee {
  position: relative;
  z-index: 2;
  margin: 4.5rem 0 0;
  padding: 1.2rem 0;
  list-style: none;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: var(--sage-deep);
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
  padding-left: 22px;
}
.hero-marquee li { flex: none; }
.hero-marquee li[aria-hidden] { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Quick service cards ---------- */
.quick { padding: 3.4rem 0; background: var(--sage-ink); color: var(--cream); position: relative; z-index: 2; }
.quick-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  font-weight: 500;
  font-size: 0.98rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s;
}
.quick-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
  border-color: var(--gold-soft);
}
.quick-ic { color: var(--gold-soft); font-size: 0.9rem; }

/* ---------- About ---------- */
.about { padding: clamp(4rem, 9vw, 7rem) 0; }
.about-grid { display: grid; gap: 3rem; align-items: center; }
.about-media { position: relative; }
.photo-tall { aspect-ratio: 5 / 6; }
.photo-float {
  position: absolute;
  right: -12px; bottom: -30px;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lift);
}
.about-points {
  list-style: none;
  margin: 1.6rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.about-points li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--charcoal-soft);
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--sage);
  transform: rotate(45deg);
}

/* ---------- Featured services grid ---------- */
.services { padding: clamp(4rem, 9vw, 7rem) 0; background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: var(--beige-deep);
}
.service-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.service-thumb::before {
  content: attr(data-label);
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.service-card h3 { font-size: 1.42rem; color: var(--sage-ink); margin-bottom: 0.4rem; }
.service-card p { margin: 0; color: var(--charcoal-soft); font-size: 0.98rem; }
.services-note {
  margin-top: 2.4rem;
  text-align: center;
  color: var(--charcoal-soft);
}
.services-note strong { color: var(--sage-ink); }

/* ---------- Feature sections (couples / relief) ---------- */
.feature { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.feature-couples { background: var(--beige); }
.feature-relief { background: var(--cream); }
.feature-grid { display: grid; gap: 2.4rem; align-items: center; }
.photo-wide { aspect-ratio: 5 / 4; }
.photo-wide.alt {
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.4), transparent 55%),
    linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 130%);
}
.feature-copy p { color: var(--charcoal-soft); max-width: 44ch; margin-bottom: 1.8rem; }

/* ---------- Gift cards ---------- */
.gift { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--sage-deep); color: var(--cream); }
.gift-inner { display: grid; gap: 2.6rem; align-items: center; }
.gift .eyebrow { color: var(--gold-soft); }
.gift .section-title { color: var(--cream); }
.gift .section-title .accent { color: var(--gold-soft); }
.gift-copy p { color: rgba(246,241,231,0.82); max-width: 42ch; margin-bottom: 1.8rem; }
.gift-card-visual { display: flex; justify-content: center; }
.gc {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.6 / 1;
  border-radius: 20px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  color: var(--sage-ink);
  box-shadow: var(--shadow-lift);
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease);
  border: 1px solid rgba(193,161,95,0.5);
}
.gc:hover { transform: rotate(0deg) scale(1.02); }
.gc::before { content: none; }
.gc-brand { font-family: var(--font-display); font-size: 1.3rem; }
.gc-label { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--gold); }
.gc-foot { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-soft); }

/* ---------- Reviews ---------- */
.reviews { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--paper); }
.review-grid { display: grid; gap: 1.4rem; }
.review-card {
  margin: 0;
  padding: 2rem 1.8rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; }
.review-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--sage-ink);
}
.review-card figcaption { font-weight: 600; color: var(--charcoal-soft); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { padding: clamp(4rem, 9vw, 7rem) 0; background: linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%); }
.contact-grid { display: grid; gap: 2.6rem; align-items: start; }
.contact-details {
  margin: 2rem 0;
  display: grid;
  gap: 1.3rem;
}
.contact-details div { border-left: 2px solid var(--gold); padding-left: 1rem; }
.contact-details dt {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 0.25rem;
}
.contact-details dd { margin: 0; font-size: 1.08rem; color: var(--charcoal); }
.contact-details a { color: var(--sage-ink); text-decoration: none; }
.contact-details a:hover { color: var(--gold); }
.contact-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.contact-map { position: relative; }
.map-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, #eef0e6 0%, #dfe3d3 55%, #cdd6bd 100%);
  display: grid;
  place-items: center;
}
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-lines path { stroke: rgba(74,88,66,0.22); stroke-width: 10; fill: none; }
.map-pin {
  position: relative;
  width: 26px; height: 26px;
  background: var(--sage-deep);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px -8px rgba(51,61,44,0.7);
  z-index: 2;
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--cream);
  border-radius: 50%;
}
.map-tag {
  position: absolute;
  bottom: 16px;
  background: rgba(251,248,241,0.94);
  color: var(--sage-ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-ink); color: rgba(246,241,231,0.8); padding: 3.6rem 0 1.6rem; }
.footer-inner {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-text { color: var(--cream); font-size: 1.5rem; }
.footer-brand p { margin: 0.8rem 0 0; font-size: 0.92rem; }
.footer-loc { color: var(--gold-soft) !important; letter-spacing: 0.08em; }
.footer-col h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(246,241,231,0.8);
  text-decoration: none;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--cream); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  font-size: 0.85rem;
}
.to-top { color: var(--gold-soft); text-decoration: none; }
.to-top:hover { color: var(--cream); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem 14px calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(246,241,231,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar .btn { flex: 1; justify-content: center; }
.mobile-bar .btn-outline { flex: 0 0 30%; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .mobile-bar { display: none; }
}

@media (min-width: 900px) {
  body { font-size: 18px; }
  .nav { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero { padding-top: 150px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero-media { min-height: 520px; }

  .quick-grid { grid-template-columns: repeat(6, 1fr); }

  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

  .feature-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature-grid.reverse .feature-media { order: 2; }

  .gift-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-marquee { animation: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.05ms !important; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
