/* 2Roots — palette and base */
:root {
  --sage-deep: #4a5a45;
  --sage: #7a8a6e;
  --sage-soft: #a8b39a;
  --cream: #f5efe2;
  --cream-warm: #ede4d0;
  --paper: #faf6ec;
  --wood: #c79866;
  --wood-deep: #8a5a30;
  --ink: #2a2e25;
  --ink-soft: #4a4e44;
  --mist: rgba(245, 239, 226, 0.85);
  --shadow-soft: 0 30px 60px -30px rgba(42, 46, 37, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }

.serif { font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif; font-weight: 400; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.uppercase { text-transform: uppercase; letter-spacing: 0.18em; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 700px) { .container { padding: 0 20px; } }

/* Top nav */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, color 0.4s ease, padding 0.3s ease;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(74, 90, 69, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 32px;
}
.nav-logo {
  display: inline-flex; align-items: center;
}
.nav-logo img { height: 64px; width: auto; transition: height 0.3s ease; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
.nav.scrolled .nav-logo img { height: 48px; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; gap: 18px; align-items: center; }
.lang-toggle {
  display: inline-flex; gap: 2px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 3px;
  font-size: 11px; letter-spacing: 0.14em;
}
.lang-toggle button {
  background: transparent; border: 0; color: inherit;
  padding: 6px 12px; border-radius: 999px; cursor: pointer;
  font: inherit; letter-spacing: inherit;
}
.lang-toggle button.active { background: var(--cream); color: var(--sage-deep); }

/* Hero switcher */
.hero-switcher {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  display: inline-flex; gap: 4px;
  background: rgba(42, 46, 37, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 239, 226, 0.18);
  border-radius: 999px; padding: 5px;
}
.hero-switcher button {
  background: transparent; border: 0; color: var(--cream);
  font: 500 11px/1 'Inter Tight', sans-serif;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.hero-switcher button.active { background: var(--cream); color: var(--sage-deep); }
.hero-switcher button:hover:not(.active) { background: rgba(255,255,255,0.08); }
.hero-switcher .label { opacity: 0.6; padding: 0 12px 0 14px; font-size: 10px; letter-spacing: 0.22em; }

/* Sections */
section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 700px) { .section-pad { padding: 80px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1 'Inter Tight', sans-serif;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}

h2.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02; letter-spacing: -0.01em;
  color: var(--sage-deep);
  margin: 16px 0 0;
  font-weight: 400;
  text-wrap: balance;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font: 500 13px/1 'Inter Tight', sans-serif; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform 0.2s ease, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-cream { background: var(--cream); color: var(--sage-deep); }
.btn-cream:hover { background: white; }
.btn-outline { background: transparent; border: 1px solid currentColor; color: var(--cream); }
.btn-sage { background: var(--sage-deep); color: var(--cream); }

/* Footer */
footer.site-footer {
  background: var(--sage-deep); color: var(--cream);
  padding: 80px 0 30px;
}
footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 800px) { footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer .grid { grid-template-columns: 1fr; } }
footer h4 { font: 500 11px/1 'Inter Tight'; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; margin: 0 0 16px; }
footer p, footer a { font-size: 14px; line-height: 1.7; color: var(--cream); text-decoration: none; opacity: 0.92; }
footer a:hover { opacity: 1; text-decoration: underline; }
footer .bottom { border-top: 1px solid rgba(245,239,226,0.18); margin-top: 60px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; opacity: 0.75; letter-spacing: 0.05em; }


/* Hero shared */
.hero { position: relative; width: 100%; min-height: 100vh; overflow: hidden; }
.eyebrow-light { color: var(--cream); opacity: 0.85; }
.time-greeting {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); opacity: 0.9; margin-bottom: 28px;
}
.time-greeting .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #b8d28d;
  box-shadow: 0 0 0 4px rgba(184,210,141,0.25); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(184,210,141,0.25); } 50% { box-shadow: 0 0 0 8px rgba(184,210,141,0.05); } }

/* === V1: Full-bleed === */
.hero-fullbleed .hero-bg { position: absolute; inset: 0; }
.hero-fullbleed .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.15) translate(-1%, -2%); } }
.hero-fullbleed .hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,46,37,0.55) 0%, rgba(42,46,37,0.15) 35%, rgba(42,46,37,0.55) 100%),
    linear-gradient(90deg, rgba(42,46,37,0.45) 0%, transparent 50%);
}
.hero-fullbleed {
  display: flex; flex-direction: column;
  min-height: 100vh; min-height: 100svh;
}
.hero-fb-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 40px;
  color: var(--cream); width: 100%;
}
@media (max-width: 700px) { .hero-fb-content { padding-left: 20px; padding-right: 20px; padding-top: 110px; } }
.hero-fb-title {
  font-size: clamp(54px, 9vw, 142px);
  line-height: 0.96; letter-spacing: -0.02em;
  margin: 16px 0 28px; font-weight: 400; text-wrap: balance;
}
.hero-fb-title .line { display: block; }
.hero-fb-title .italic { font-style: italic; opacity: 0.95; }
.hero-fb-sub { max-width: 540px; font-size: 17px; line-height: 1.65; opacity: 0.9; margin: 0 0 36px; }
.hero-fb-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-fb-meta {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; width: 100%;
  padding: 18px 32px 36px;
  display: flex; gap: 48px; color: var(--cream);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  border-top: 1px solid rgba(245,239,226,0.25);
  flex-wrap: wrap;
}
.hero-fb-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-fb-meta em { font-style: normal; opacity: 0.6; font-size: 10px; }
@media (max-width: 700px) { .hero-fb-meta { gap: 24px; padding: 16px 20px 28px; } }

.scroll-cue {
  position: absolute; bottom: 24px; right: 32px; z-index: 2;
  color: var(--cream); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.65;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue span {
  display: block; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--cream), transparent);
  animation: cuePulse 2s ease-in-out infinite;
}
@media (max-width: 700px) { .scroll-cue { display: none; } }
@keyframes cuePulse { 0%,100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* === V2: Marquee === */
.hero-marquee {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: stretch;
  padding-top: 90px;
}
.marquee-row { overflow: hidden; padding: 14px 0; }
.marquee-row-1 { color: var(--sage-deep); }
.marquee-row-2 { color: var(--wood-deep); }
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: scrollX 40s linear infinite;
  font-size: clamp(60px, 10vw, 152px); line-height: 1;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 50s; }
.marquee-group { display: flex; gap: 36px; align-items: center; padding-right: 36px; flex-shrink: 0; }
.marquee-group .dot-sep { font-size: 0.4em; opacity: 0.4; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-photos { padding: 24px 0; overflow: hidden; }
.mq-photo-track {
  display: flex; gap: 18px; width: max-content;
  animation: scrollX 60s linear infinite;
}
.mq-photo {
  width: 240px; height: 300px; border-radius: 14px; overflow: hidden;
  flex-shrink: 0; box-shadow: var(--shadow-soft);
}
.mq-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) {
  .mq-photo { width: 180px; height: 230px; }
}

.marquee-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 3; text-align: center;
  background: rgba(245, 239, 226, 0.78);
  backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(74, 90, 69, 0.12);
  border-radius: 24px;
  padding: 28px 36px;
  max-width: 480px;
  width: calc(100% - 40px);
}
.marquee-center .time-greeting { color: var(--sage-deep); margin-bottom: 16px; justify-content: center; }
.hero-marquee-sub { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; text-wrap: pretty; }

/* === V3: Lake parallax === */
.hero-lake { background: linear-gradient(180deg, #d8dcc8 0%, #b9c4ad 100%); }
.lake-sky {
  position: absolute; inset: -10% 0 60% 0;
  background:
    radial-gradient(ellipse at 30% 90%, rgba(245,239,226,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #cfd6c0 0%, #e6e2d0 100%);
}
.lake-trees-back {
  position: absolute; left: 0; right: 0; top: 8%;
  height: 50%; opacity: 0.95;
}
.lake-trees-back img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: saturate(0.85);
}
.lake-title-wrap {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center; color: var(--cream);
  width: calc(100% - 40px); max-width: 900px;
}
.lake-title-wrap .time-greeting { color: var(--sage-deep); justify-content: center; }
.lake-title {
  font-size: clamp(48px, 8.5vw, 128px); line-height: 0.98; margin: 8px 0 24px;
  font-weight: 400; letter-spacing: -0.02em; color: var(--cream);
  text-shadow: 0 4px 30px rgba(42,46,37,0.45);
}
.lake-title span { display: block; }
.lake-title .italic { font-style: italic; }
.lake-sub { color: var(--cream); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; margin: 0 0 28px; opacity: 0.95; }

.lake-water {
  position: absolute; inset: 55% 0 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #6f8068 0%, #3e4d3a 100%);
}
.lake-water::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.18), transparent 70%);
}
.lake-reflection {
  position: absolute; inset: 0;
  background: var(--paper) center 30% / cover;
  opacity: 0.18;
  transform: scaleY(-1);
  filter: blur(6px) saturate(0.7);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 80%);
}
.ripple {
  position: absolute; left: 50%; bottom: 20%;
  width: 200px; height: 200px;
  border: 1px solid rgba(245, 239, 226, 0.4);
  border-radius: 50%;
  transform: translate(-50%, 50%) scaleY(0.25);
  animation: rippleAnim 6s ease-out infinite;
}
.ripple.r2 { animation-delay: 2s; }
.ripple.r3 { animation-delay: 4s; }
@keyframes rippleAnim {
  0% { width: 60px; height: 60px; opacity: 0.7; }
  100% { width: 800px; height: 800px; opacity: 0; }
}

.lake-foreground-leaves {
  position: absolute; inset: auto 0 -20px 0; height: 28%;
  background: linear-gradient(180deg, transparent 0%, rgba(42,46,37,0.4) 100%);
  pointer-events: none;
}


/* Menu */
.menu-section { background: var(--paper); }
.menu-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.menu-head .eyebrow { justify-content: center; }
.menu-head .eyebrow::before { display: none; }
.menu-head .section-title { text-align: center; }
.menu-sub { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 20px 0 0; }

.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto;
  margin: 0 0 56px; padding: 4px;
  border-bottom: 1px solid rgba(74, 90, 69, 0.15);
  position: sticky; top: 0; z-index: 5;
  background: var(--paper); padding-top: 78px; padding-bottom: 8px;
  margin-top: -56px;
  justify-content: center; flex-wrap: wrap;
}
.menu-tab {
  flex-shrink: 0;
  background: transparent; border: 0;
  padding: 14px 22px; cursor: pointer;
  font: 500 13px/1 'Inter Tight', sans-serif;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.6;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.menu-tab:hover { opacity: 1; color: var(--sage-deep); }
.menu-tab.active { opacity: 1; color: var(--sage-deep); border-color: var(--sage-deep); }

.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 64px;
}
@media (max-width: 800px) { .menu-grid { grid-template-columns: 1fr; gap: 10px; } }

.menu-item {
  padding: 22px 0; border-bottom: 1px solid rgba(74, 90, 69, 0.1);
  animation: itemFade 0.6s ease both;
}
@keyframes itemFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.mi-head { display: flex; align-items: baseline; gap: 12px; }
.mi-name {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 24px; color: var(--sage-deep); margin: 0;
}
.mi-dots {
  flex: 1; border-bottom: 1px dotted rgba(74, 90, 69, 0.4);
  position: relative; top: -4px;
}
.mi-price { font-size: 14px; color: var(--ink); letter-spacing: 0.06em; white-space: nowrap; }
.mi-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 6px 0 0; max-width: 90%; }
.mi-tag {
  display: inline-block; margin-top: 8px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); padding: 3px 8px;
  background: rgba(122, 138, 110, 0.1);
  border-radius: 4px;
}

.menu-legend {
  text-align: center; font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-soft); opacity: 0.65;
  margin: 64px 0 0; padding: 0 20px;
}


/* About lake */
.about-lake { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }
.about-p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 16px 0; max-width: 540px; }
.about-quote {
  font-size: 26px; line-height: 1.4; color: var(--sage-deep);
  border-left: 3px solid var(--sage); padding-left: 20px;
  margin: 32px 0; font-style: italic; max-width: 480px;
}
.about-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; border-top: 1px solid rgba(74,90,69,0.15); padding-top: 20px; }
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }
.about-stats strong { font-weight: 500; font-size: 15px; color: var(--ink); }

.about-photos { position: relative; height: 580px; }
@media (max-width: 900px) { .about-photos { height: 460px; } }
.ap { position: absolute; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
.ap img { width: 100%; height: 100%; object-fit: cover; }
.ap1 { width: 70%; height: 65%; top: 0; right: 0; }
.ap2 { width: 50%; height: 50%; bottom: 0; left: 0; }
.ap3 { width: 38%; height: 32%; bottom: 8%; right: 8%; }

/* Kids & Pets — mirrored polaroid mosaic, photos LEFT, copy RIGHT.
   Background matches .gallery (var(--cream)) so the new section sits
   in the same tonal family as the gallery strip below. */
.kids-pets {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.kp-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 88px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .kp-grid { grid-template-columns: 1fr; gap: 48px; }
}

.kp-photos { position: relative; height: 620px; }
@media (max-width: 900px) { .kp-photos { height: 500px; } }
@media (max-width: 500px) { .kp-photos { height: 440px; } }

.kp {
  position: absolute;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(28,34,24,0.30), 0 4px 12px -4px rgba(28,34,24,0.18);
  background: var(--cream-warm);
}
.kp img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kp-cap {
  position: absolute; left: 14px; bottom: 12px;
  padding: 6px 10px; border-radius: 4px;
  background: rgba(28,34,24,0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  pointer-events: none;
}
/* kp1 — primary "scene" frame, top-left, biggest */
.kp1 { width: 60%; height: 78%; top: 0; left: 0; transform: rotate(-1.2deg); }
/* kp2 — vertical ducks frame, top-right, mid-height */
.kp2 { width: 38%; height: 56%; top: 6%; right: 0; transform: rotate(1.6deg); }
/* kp3 — bottom-right detail, square-ish, partially overlapping kp1 */
.kp3 { width: 46%; height: 40%; bottom: 0; right: 14%; transform: rotate(-0.8deg); }

@media (max-width: 500px) {
  .kp1 { width: 64%; height: 76%; left: 0; }
  .kp2 { width: 40%; height: 50%; right: 0; }
  .kp3 { width: 50%; height: 38%; right: 8%; }
}

.kp-italic { font-style: italic; opacity: 0.92; }
.kp-amenities {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(74,90,69,0.18);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); line-height: 1.7;
  max-width: 480px;
}

/* Gallery */
.gallery { background: var(--cream); padding-bottom: 60px; }
.gallery-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.gallery-head .eyebrow { justify-content: center; }
.gallery-head .eyebrow::before { display: none; }
.gallery-strip {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 0 32px 60px;
  scroll-snap-type: x mandatory;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-track { background: rgba(74,90,69,0.08); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }
.gphoto {
  flex: 0 0 auto; width: 320px; margin: 0; scroll-snap-align: start;
  transition: transform 0.4s ease;
}
.gphoto:hover { transform: translateY(-6px); }
.gphoto img { width: 100%; height: 420px; object-fit: cover; border-radius: 10px; }
.gphoto figcaption { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-soft); margin-top: 10px; opacity: 0.75; }
@media (max-width: 700px) { .gphoto { width: 260px; } .gphoto img { height: 340px; } }

/* Visit */
.visit { background: var(--paper); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: stretch; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }
.visit-dl { margin: 32px 0 16px; padding: 0; }
.visit-dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px dotted rgba(74,90,69,0.25); }
.visit-dl dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.visit-dl dd { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.5; }
.visit-dl a { color: var(--sage-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
.visit-services { font-size: 11px; letter-spacing: 0.12em; color: var(--ink-soft); margin: 16px 0 28px; opacity: 0.7; }
.visit-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-dark { color: var(--sage-deep); border-color: var(--sage-deep); }
.btn-outline-dark:hover { background: var(--sage-deep); color: var(--cream); }
.visit-map {
  position: relative; min-height: 480px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #d6dcc8, #b9c4ad);
  box-shadow: var(--shadow-soft);
}
.visit-map iframe { width: 100%; height: 100%; position: absolute; inset: 0; filter: saturate(0.9) contrast(0.95); }
.map-pin {
  position: absolute; left: 24px; top: 24px; z-index: 2;
  background: var(--sage-deep); color: var(--cream);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em;
}

/* Reviews */
.reviews { background: var(--cream); }
.reviews-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.reviews-head .eyebrow { justify-content: center; }
.reviews-head .eyebrow::before { display: none; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 800px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--paper); padding: 32px 30px;
  border-radius: 12px; border: 1px solid rgba(74,90,69,0.1);
}
.stars { color: #d4a84e; font-size: 16px; letter-spacing: 0.05em; }
.review-text { font-size: 19px; line-height: 1.55; color: var(--ink); margin: 14px 0 18px; font-style: italic; }
.review-who { font-size: 11px; letter-spacing: 0.18em; color: var(--sage); }

/* Footer */
.footer-logo { font-size: 36px; }
