/* =========================================================
   Masáže Zíková — calm spa retreat
   Fraunces (display serif) + Hanken Grotesk (body sans)
   ========================================================= */

:root {
  /* palette — warm earthy neutrals, muted sage, soft terracotta */
  --oat:        #F3EDE3;   /* page background */
  --paper:      #FBF7F0;   /* raised surfaces */
  --paper-2:    #EFE7DA;   /* alt sections */
  --sand:       #E6DAC9;
  --ink:        #35312A;   /* warm espresso text */
  --ink-soft:   #5F5A50;
  --ink-faint:  #8A8478;
  --sage:       #8B9A7E;
  --sage-deep:  #6E7D63;
  --sage-ink:   #4A5642;
  --terra:      #C08160;   /* soft terracotta accent */
  --terra-deep: #A9663F;
  --clay:       #B9765A;
  --line:       rgba(53, 49, 42, 0.12);
  --line-soft:  rgba(53, 49, 42, 0.07);

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* spacing / shape */
  --radius:    22px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --shadow:    0 20px 50px -28px rgba(53, 49, 42, 0.35);
  --shadow-sm: 0 12px 30px -20px rgba(53, 49, 42, 0.35);
  --wrap:      1180px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slow: 1.1s;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

/* subtle organic grain / warmth on the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--sage-deep); color: var(--paper);
  padding: 0.6rem 1.2rem; border-radius: 0 0 12px 12px; z-index: 10000;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2.5px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.section-marker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.section-title em { font-style: italic; color: var(--terra-deep); }

.section-intro {
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.section { padding: clamp(4.5rem, 3rem + 7vw, 8.5rem) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-intro { margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.94rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--sage-deep); color: var(--paper);
  box-shadow: 0 14px 28px -16px rgba(78, 90, 66, 0.9);
}
.btn-primary:hover { background: var(--sage-ink); transform: translateY(-3px); box-shadow: 0 20px 34px -16px rgba(78, 90, 66, 0.95); }

.btn-ghost { background: rgba(251, 247, 240, 0.14); color: var(--paper); border-color: rgba(251, 247, 240, 0.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(251, 247, 240, 0.24); transform: translateY(-3px); }

.btn-outline { background: transparent; color: var(--sage-ink); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage-deep); color: var(--paper); border-color: var(--sage-deep); transform: translateY(-3px); }

/* =========================================================
   NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0.55rem 0;
}
.site-header.scrolled {
  background: rgba(243, 237, 227, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px -26px rgba(53,49,42,0.5);
}

.nav-inner {
  width: min(100% - 2.5rem, 1280px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: var(--sage-deep); color: var(--paper);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; color: var(--ink); letter-spacing: -0.01em; }
.brand-sub { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--sage-deep); margin-top: 3px; }

.nav-links { display: flex; gap: 1.9rem; }
.nav-links a {
  position: relative; font-size: 0.93rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.3rem 0; transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--terra); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 12px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.4s 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-menu {
  margin: 0.7rem 1.25rem 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.3rem;
  animation: menuIn 0.4s var(--ease);
}
.mobile-menu[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  padding: 0.85rem 0.4rem; font-size: 1.05rem; color: var(--ink);
  border-bottom: 1px solid var(--line-soft); font-family: var(--serif);
}
.mobile-menu .btn { margin-top: 1rem; }
.mobile-phone { text-align: center; margin-top: 0.9rem; color: var(--sage-deep); font-weight: 600; letter-spacing: 0.02em; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.08); transform-origin: center;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(41,44,36,0.82) 0%, rgba(51,49,42,0.58) 42%, rgba(51,49,42,0.15) 100%),
    linear-gradient(0deg, rgba(41,44,36,0.55), rgba(41,44,36,0) 45%);
}

.hero-content { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; color: var(--paper); position: relative; }
.hero .eyebrow { color: rgba(251,247,240,0.85); margin-bottom: 1.5rem; }

.hero-title {
  font-size: clamp(2.9rem, 1.6rem + 6.2vw, 6.4rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin-bottom: 1.8rem;
}
.hero-title .line { display: block; }
.hero-title .line-accent { font-style: italic; font-weight: 400; color: #E7C9AF; }

.hero-lead {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(251,247,240,0.9);
  max-width: 44ch; margin-bottom: 2.4rem; font-weight: 300;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.2rem; }

.hero-facts { list-style: none; display: flex; gap: clamp(1.5rem, 4vw, 3.2rem); padding: 0; flex-wrap: wrap; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--serif); font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem); font-weight: 400; line-height: 1; }
.hero-facts span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(251,247,240,0.7); margin-top: 0.4rem; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: rgba(251,247,240,0.75); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.28em;
}
.hero-scroll-line { width: 1px; height: 46px; background: linear-gradient(rgba(251,247,240,0.7), rgba(251,247,240,0)); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: rgba(251,247,240,0.9); animation: scrollDrop 2.4s var(--ease) infinite; }
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(260%); } }

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.philosophy { background: var(--paper-2); padding: clamp(4rem, 3rem + 5vw, 7rem) 0; text-align: center; }
.philosophy .section-marker { text-align: center; }
.philosophy-lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.75rem);
  font-weight: 300; line-height: 1.32; letter-spacing: -0.01em;
  max-width: 20ch; margin-inline: auto; color: var(--ink);
}
.philosophy-lead em { font-style: italic; color: var(--terra-deep); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--oat); }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
}
.card {
  background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.6rem; margin-bottom: 0.6rem; color: var(--ink); }
.card-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.4rem; flex: 1; }
.card-foot { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; }
.price {
  display: inline-flex; align-items: baseline; gap: 0.45rem;
  background: var(--paper-2); border: 1px solid var(--line-soft);
  padding: 0.4rem 0.85rem; border-radius: 100px;
  font-weight: 600; font-size: 0.92rem; color: var(--sage-ink);
}
.price .dur { font-weight: 500; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--sage-deep); color: var(--paper); position: relative; overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; top: -30%; right: -12%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,247,240,0.14), rgba(251,247,240,0) 70%);
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.12); opacity: 1; } }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; }
.pricing .section-marker { color: #D9C6AF; }
.pricing .section-title { color: var(--paper); }
.pricing .section-intro { color: rgba(251,247,240,0.82); margin-bottom: 2rem; }
.pricing .btn-primary { background: var(--paper); color: var(--sage-ink); }
.pricing .btn-primary:hover { background: #E7C9AF; color: var(--sage-ink); }

.pricing-table {
  background: rgba(251,247,240,0.07); border: 1px solid rgba(251,247,240,0.18);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem);
  backdrop-filter: blur(4px);
}
.price-row { display: flex; align-items: baseline; gap: 0.8rem; padding: 1rem 0; border-bottom: 1px solid rgba(251,247,240,0.14); }
.price-row:first-child { padding-top: 0; }
.price-len { font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; }
.price-dots { flex: 1; border-bottom: 1.5px dotted rgba(251,247,240,0.35); transform: translateY(-4px); }
.price-val { font-weight: 600; white-space: nowrap; color: #EBD7C1; }
.price-row--accent { border-bottom: none; }
.price-row--accent .price-len, .price-row--accent .price-val { color: #F0DCC6; }
.pricing-note { margin-top: 1.2rem; font-size: 0.82rem; color: rgba(251,247,240,0.6); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--oat); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.2rem, 5vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--terra); color: var(--paper);
  width: 118px; height: 118px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); line-height: 1;
  border: 6px solid var(--oat);
}
.about-badge-num { font-family: var(--serif); font-size: 2.4rem; }
.about-badge-txt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; margin-top: 4px; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 52ch; }
.about-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: 0.75rem; }
.about-list li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--terra); box-shadow: 0 0 0 4px rgba(192,129,96,0.16);
}

/* =========================================================
   GIFT VOUCHERS
   ========================================================= */
.gift { background: var(--paper-2); }
.gift-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.2rem, 5vw, 5rem); align-items: center; }
.gift-text p { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 50ch; }
.gift-points { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 0.9rem; }
.gift-points li { display: flex; align-items: center; gap: 0.9rem; font-size: 1.02rem; color: var(--ink); }
.gift-points span { color: var(--terra); font-size: 1.1rem; }
.gift-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--oat); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2vw, 1.8rem); }
.review {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.stars { color: var(--terra); letter-spacing: 0.18em; font-size: 0.95rem; }
.review blockquote p { font-family: var(--serif); font-size: 1.14rem; font-weight: 300; line-height: 1.55; color: var(--ink); font-style: italic; }
.review figcaption { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.review-name { font-weight: 600; color: var(--ink); }
.review-meta { font-size: 0.82rem; color: var(--ink-faint); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper-2); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 0.3rem; top: 50%;
  width: 14px; height: 14px; transform: translateY(-50%);
  background:
    linear-gradient(var(--sage-deep),var(--sage-deep)) center/14px 1.6px no-repeat,
    linear-gradient(var(--sage-deep),var(--sage-deep)) center/1.6px 14px no-repeat;
  transition: transform 0.4s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq-item summary:hover { color: var(--sage-deep); }
.faq-answer { overflow: hidden; padding-right: 3rem; }
.faq-answer p { color: var(--ink-soft); padding-bottom: 1.5rem; }
.faq-answer a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.faq-item[open] .faq-answer { animation: faqOpen 0.5s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--oat); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: start; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.contact-details { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.4rem; }
.contact-details li { display: flex; flex-direction: column; gap: 0.25rem; }
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--sage-deep); font-weight: 600; }
.contact-details a, .contact-details span { color: var(--ink); font-size: 1.05rem; }
.contact-details a:hover { color: var(--terra-deep); }

.contact-form-wrap {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field label span { color: var(--terra); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--oat); border: 1.5px solid var(--line);
  border-radius: 14px; padding: 0.78rem 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(139,154,126,0.18);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--clay); box-shadow: 0 0 0 4px rgba(185,118,90,0.15); }
.field-error { font-size: 0.78rem; color: var(--clay); min-height: 0; opacity: 0; transition: opacity 0.25s var(--ease); }
.field.invalid .field-error { opacity: 1; }
.form-fineprint { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.9rem; text-align: center; }

.form-success {
  margin-top: 1.4rem; padding: 1.3rem 1.4rem; border-radius: 16px;
  background: rgba(139,154,126,0.14); border: 1px solid var(--sage);
  display: flex; align-items: center; gap: 1rem;
  animation: faqOpen 0.5s var(--ease);
}
.form-success[hidden] { display: none; }
.form-success-mark {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-deep); color: var(--paper);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 700;
}
.form-success p { color: var(--sage-ink); font-size: 0.95rem; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-soft); line-height: 0; }
.map-wrap iframe { filter: saturate(0.82) contrast(0.96); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--sage-ink); color: rgba(251,247,240,0.82); padding: clamp(3.5rem, 4vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(251,247,240,0.14); }
.footer-brand .brand-mark--footer { background: rgba(251,247,240,0.14); color: var(--paper); margin-bottom: 1rem; }
.footer-name { font-family: var(--serif); font-size: 1.5rem; color: var(--paper); margin-bottom: 0.5rem; }
.footer-tag { max-width: 30ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.2em; color: #D9C6AF; margin-bottom: 1.1rem; font-weight: 600; }
.footer-col a, .footer-col span { display: block; color: rgba(251,247,240,0.82); font-size: 0.95rem; margin-bottom: 0.6rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.6rem; font-size: 0.82rem; color: rgba(251,247,240,0.6); }

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%) translateY(140%);
  z-index: 900;
  background: var(--terra); color: var(--paper);
  padding: 0.95rem 2.2rem; border-radius: 100px; font-weight: 600;
  box-shadow: 0 16px 34px -14px rgba(169,102,63,0.85);
  display: none; white-space: nowrap;
  transition: transform 0.5s var(--ease), background 0.3s var(--ease);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta:active { background: var(--terra-deep); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal[data-delay="5"] { transition-delay: 0.6s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .review-cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .pricing-grid, .about-grid, .gift-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 3.5rem; }
  .about-media { max-width: 420px; }
  .gift-grid .gift-media { order: -1; max-width: 460px; }
  .faq-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-cta { display: block; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero { padding-top: 7rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .about-badge { width: 96px; height: 96px; right: 0; }
  .about-badge-num { font-size: 1.9rem; }
}

@media (max-width: 380px) {
  .brand-sub { display: none; }
}
