:root {
  --green-900: #1f3325;
  --green-800: #2a4531;
  --green-700: #375a3f;
  --green-600: #4a7354;
  --green-100: #e5ede4;

  --gold-700: #a9762a;
  --gold-600: #c1913c;
  --gold-500: #d4a34e;
  --gold-200: #efdcb4;
  --gold-100: #f6ead0;

  --wine-800: #6f2b2a;
  --wine-700: #863632;

  --cream: #faf6ee;
  --cream-2: #f4ecdd;
  --paper: #fffdf8;

  --ink: #2b2823;
  --ink-soft: #5c564c;
  --muted: #857d6f;
  --line: #e8e0cf;

  --shadow-sm: 0 2px 8px rgba(47, 40, 25, .06);
  --shadow-md: 0 12px 34px -14px rgba(47, 40, 25, .22);
  --shadow-lg: 0 28px 60px -24px rgba(47, 40, 25, .32);

  --radius: 18px;
  --radius-sm: 12px;
  --max: 1200px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(100% - 2.6rem, var(--max)); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: linear-gradient(135deg, var(--wine-800), var(--wine-700)); color: #fff; box-shadow: 0 12px 26px -12px rgba(111, 43, 42, .7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(111, 43, 42, .75); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--green-800); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold-700); border-color: var(--gold-600); }
.btn-outline:hover { background: var(--gold-600); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 238, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.scrolled { background: rgba(250, 246, 238, .92); box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; transition: height .3s ease; }
.site-header.scrolled .header-inner { height: 66px; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800)); color: var(--gold-200); flex: none; box-shadow: var(--shadow-sm); }
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-serif); font-size: 1.28rem; font-weight: 600; color: var(--green-900); }
.brand-sub { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .3rem 0; transition: color .2s ease; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold-600); transition: width .28s ease; }
.nav a:not(.nav-cta):hover, .nav a.active:not(.nav-cta) { color: var(--green-800); }
.nav a:not(.nav-cta):hover::after, .nav a.active:not(.nav-cta)::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--wine-800), var(--wine-700)); color: #fff !important; padding: .55rem 1.3rem !important; border-radius: 999px; box-shadow: 0 8px 18px -10px rgba(111,43,42,.8); }
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green-800); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 30% 40%, rgba(31,51,37,.28), transparent 60%),
    linear-gradient(to bottom, rgba(20,30,22,.5), rgba(20,30,22,.28) 40%, rgba(31,51,37,.72));
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 780px; padding-block: 120px 90px; }
.hero-title { font-size: clamp(3.2rem, 8vw, 6rem); font-weight: 600; color: #fff; margin-bottom: .3rem; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero-subtitle { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--gold-200); margin-bottom: 1.4rem; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 34rem; color: rgba(255,255,255,.9); margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-700); padding: .45rem 1rem; border-radius: 999px; background: var(--gold-100); border: 1px solid var(--gold-200); margin-bottom: 1.2rem; }
.eyebrow-light { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 3px; background: #fff; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(9px); opacity: .3; } }

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-tint { background:
  linear-gradient(180deg, var(--cream), var(--cream-2) 50%, var(--cream)); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(3rem, 5vw, 4.5rem); }
.section-head-sm { margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: .8rem; }
.section-intro { font-size: 1.14rem; color: var(--ink-soft); }

.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.about-photo { position: relative; }
.photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(140% 120% at 20% 10%, var(--gold-100), transparent 55%),
    linear-gradient(150deg, var(--green-100), var(--gold-100) 55%, #f0e2c9);
  display: grid; place-items: center; border: 1px solid var(--line); }
.photo-placeholder { text-align: center; color: var(--green-700); padding: 2rem; }
.photo-placeholder svg { width: 62px; height: 62px; margin: 0 auto 1rem; padding: 18px; box-sizing: content-box;
  background: rgba(255,255,255,.55); border-radius: 50%; color: var(--gold-700); }
.photo-placeholder p { font-family: var(--font-serif); font-size: 1.35rem; color: var(--green-800); }
.photo-placeholder span { font-size: .88rem; color: var(--muted); }
.photo-badge { position: absolute; right: -14px; bottom: 28px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: .8rem 1.3rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.photo-badge strong { font-family: var(--font-serif); color: var(--wine-800); font-size: 1.2rem; }
.photo-badge span { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }

.about-body h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.about-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.stat { text-align: center; padding: 1.3rem .6rem; border-radius: var(--radius-sm); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat-num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--wine-800); }
.stat-label { font-size: .84rem; color: var(--muted); }
.quote { position: relative; background: linear-gradient(135deg, var(--gold-100), #f2e6cd); border: 1px solid var(--gold-200);
  border-left: 4px solid var(--gold-600); border-radius: var(--radius-sm); padding: 1.6rem 1.8rem;
  font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--green-900); }
.quote cite { display: block; margin-top: .9rem; font-style: normal; font-family: var(--font-sans); font-weight: 600; font-size: .92rem; color: var(--gold-700); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; position: relative; overflow: hidden; }
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--gold-100), var(--green-100)); color: var(--green-700); transition: background .3s ease, color .3s ease; }
.svc-ic svg { width: 27px; height: 27px; }
.svc-card:hover .svc-ic { background: linear-gradient(135deg, var(--green-700), var(--green-800)); color: var(--gold-200); }
.svc-card h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.svc-card p { color: var(--ink-soft); font-size: .97rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2rem; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-head { background: linear-gradient(135deg, var(--green-700), var(--green-800)); color: #fff; padding: 1.5rem; text-align: center; }
.price-head h3 { color: #fff; font-size: 1.3rem; }
.price-body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.price-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px dashed var(--line); }
.price-item:last-child { border-bottom: none; padding-bottom: 0; }
.price-item .svc { font-weight: 600; color: var(--ink); font-size: .98rem; }
.price-item .dur { font-size: .84rem; color: var(--muted); }
.price-tag { flex: none; font-family: var(--font-serif); font-weight: 600; font-size: 1.02rem; color: var(--wine-800);
  background: var(--gold-100); border: 1px solid var(--gold-200); padding: .28rem .8rem; border-radius: 999px; white-space: nowrap; }
.price-tag.free { color: var(--green-700); background: var(--green-100); border-color: #cfe0cd; }

.notes-card { display: flex; gap: 1.2rem; align-items: flex-start; max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, var(--gold-100), #f1e5cd); border: 1px solid var(--gold-200); border-radius: var(--radius); padding: 1.8rem 2rem; }
.notes-icon { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--paper); color: var(--gold-700); box-shadow: var(--shadow-sm); }
.notes-icon svg { width: 22px; height: 22px; }
.notes-card h3 { font-size: 1.3rem; margin-bottom: .7rem; }
.notes-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.notes-card li { position: relative; padding-left: 1.3rem; color: var(--ink-soft); font-size: .96rem; }
.notes-card li::before { content: "•"; position: absolute; left: 0; color: var(--gold-600); font-weight: 700; }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.event-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.badge { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; padding: .32rem .85rem; border-radius: 999px; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-600), var(--wine-700)); }
.event-card h3 { font-size: 1.3rem; margin-bottom: .9rem; }
.event-meta { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.event-meta span { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ink-soft); }
.event-meta svg { width: 16px; height: 16px; color: var(--gold-700); flex: none; }
.event-card p.desc { color: var(--ink-soft); font-size: .96rem; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 900px; margin: 0 auto; }
.news-card { background: linear-gradient(135deg, var(--gold-100), #f3e7d0); border: 1px solid var(--gold-200);
  border-radius: var(--radius); padding: 1.8rem; transition: transform .3s ease, box-shadow .3s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-date { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-700); margin-bottom: .5rem; }
.news-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.news-card p { color: var(--ink-soft); font-size: .96rem; }

.location-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: 1.4rem; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.info-card-tint { background: linear-gradient(135deg, var(--gold-100), var(--green-100)); border-color: var(--gold-200); }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-100), var(--green-100)); color: var(--green-700); }
.info-ic svg { width: 21px; height: 21px; }
.info-row h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.info-row p { color: var(--ink-soft); font-size: .96rem; }
.info-row a:hover { color: var(--gold-700); }
.with-dot { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.with-dot::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-600); }
.info-card-tint p { color: var(--green-900); margin-bottom: .6rem; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 460px; }
.location-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: saturate(1.05); }

.appt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 960px; margin: 0 auto 2rem; }
.appt-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.appt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.appt-card-accent { border-color: #e5c9c4; background: linear-gradient(160deg, var(--paper), #fbeeeb); }
.appt-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.appt-ic svg { width: 26px; height: 26px; }
.appt-ic-gold { background: linear-gradient(135deg, var(--gold-100), var(--gold-200)); color: var(--gold-700); }
.appt-ic-wine { background: linear-gradient(135deg, #f3d9d5, #e9c4bf); color: var(--wine-800); }
.appt-card h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.appt-sub { color: var(--gold-700); font-weight: 600; font-size: .92rem; margin-bottom: 1rem; }
.appt-card > p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.ticks li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-600); }
.ticks-wine li::before { background: var(--wine-700); }

.steps-card { max-width: 820px; margin: 0 auto; background: linear-gradient(135deg, var(--gold-100), var(--green-100));
  border: 1px solid var(--gold-200); border-radius: var(--radius); padding: 2.4rem clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.steps-title { text-align: center; font-size: 1.6rem; margin-bottom: 2rem; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: .5rem; margin-bottom: 2rem; }
.step { text-align: center; }
.step-num { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto .8rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #fff; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.step p { font-size: .95rem; color: var(--green-900); }
.step-line { align-self: center; margin-top: -24px; width: 100%; height: 2px; min-width: 20px;
  background: repeating-linear-gradient(90deg, var(--gold-600) 0 6px, transparent 6px 12px); }
.steps-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.6rem; }
.steps-note { display: flex; gap: .7rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: .9rem; color: var(--ink-soft); }
.steps-note svg { width: 20px; height: 20px; color: var(--gold-700); flex: none; margin-top: 1px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 2rem; align-items: start; }
.contact-side { display: flex; flex-direction: column; gap: 1.3rem; }
.mini-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.mini-card a { display: block; color: var(--ink); font-weight: 500; transition: color .2s ease; }
.mini-card a:hover { color: var(--gold-700); }
.mini-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .9rem;
  background: linear-gradient(135deg, var(--gold-100), var(--green-100)); color: var(--green-700); }
.mini-ic-wine { background: linear-gradient(135deg, #f3d9d5, #e9c4bf); color: var(--wine-800); }
.mini-ic svg { width: 22px; height: 22px; }
.mini-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.mini-card-warn { background: linear-gradient(135deg, #fbeee9, var(--gold-100)); border-color: #eccfa0; }
.muted { color: var(--muted); font-size: .9rem; }
.break { word-break: break-all; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.form-card > .muted { margin-bottom: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea { font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .85rem 1rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #b0a898; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-600); background: var(--paper); box-shadow: 0 0 0 3px rgba(193,145,60,.16); }
.field input.invalid, .field textarea.invalid { border-color: var(--wine-700); box-shadow: 0 0 0 3px rgba(134,54,50,.14); }
.consent { font-size: .82rem; color: var(--muted); background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: 1.3rem; }

.site-footer { background: linear-gradient(180deg, var(--green-800), var(--green-900)); color: #d8e2d5; padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-mark { background: rgba(255,255,255,.1); color: var(--gold-200); }
.footer-brand .brand-name { color: #fff; font-size: 1.35rem; }
.footer-brand p { color: #b9c8b6; font-size: .95rem; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a, .footer-links li { color: #b9c8b6; font-size: .95rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-200); }
.footer-links .muted { color: #8fa38c; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; margin-top: 1rem; }
.footer-bottom p { font-size: .87rem; color: #9fb29c; }
.footer-legal { display: flex; gap: 1.6rem; }
.footer-legal a { font-size: .87rem; color: #b9c8b6; transition: color .2s ease; }
.footer-legal a:hover { color: var(--gold-200); }

.toast { position: fixed; top: 92px; right: 24px; z-index: 200; background: var(--green-800); color: #fff;
  padding: 1rem 1.3rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); max-width: 340px;
  display: flex; align-items: center; gap: .7rem; font-size: .95rem; font-weight: 500;
  opacity: 0; visibility: hidden; transform: translateY(-14px) scale(.97);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s; border-left: 4px solid var(--gold-500); }
.toast.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); transition: opacity .35s ease, transform .35s ease; }
.toast::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--gold-500); color: var(--green-900); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 1rem 1.3rem 1.6rem; transform: translateY(-120%); transition: transform .35s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .95rem .2rem; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: .8rem; border-bottom: none !important; }
  .nav-toggle { display: flex; }

  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; margin: 0 auto; width: 100%; }
  .cards-grid, .pricing-grid, .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .cards-grid, .pricing-grid, .events-grid, .news-grid, .appt-grid, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: .6rem; }
  .stat { padding: 1rem .4rem; }
  .steps { grid-template-columns: 1fr; gap: 1.4rem; }
  .step-line { display: none; }
  .notes-card { flex-direction: column; }
  .toast { right: 12px; left: 12px; max-width: none; }
  .hero-content { padding-block: 104px 76px; }
  .hero-title { font-size: clamp(2.7rem, 13vw, 3.4rem); }
  .hero-actions .btn { flex: 1 1 100%; }
  .photo-badge { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
