:root {
  --bg: #FAF8F3;
  --bg-alt: #F2EDE3;
  --bg-deep: #EAE3D4;
  --ink: #1F2620;
  --ink-soft: #5C645B;
  --green: #2D4A3E;
  --green-dim: #4A6557;
  --green-light: #6B8473;
  --sage: #B5C2A8;
  --gold: #C8A961;
  --gold-soft: #E4D2A4;
  --white: #FFFFFF;
  --line: rgba(31, 38, 32, 0.12);
  --line-soft: rgba(31, 38, 32, 0.06);
  --shadow-sm: 0 1px 2px rgba(31, 38, 32, 0.06);
  --shadow: 0 8px 30px rgba(31, 38, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 38, 32, 0.12);
  --radius: 4px;
  --radius-lg: 12px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--green); color: var(--bg); }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--green);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--bg); }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn-ghost:hover { color: var(--green); border-color: var(--green); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Announcement Bar ===== */
.announce {
  background: var(--green);
  color: var(--bg);
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.announce .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.announce a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.95; }
.announce a:hover { opacity: 1; }
.announce-items { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
@media (max-width: 720px) { .announce-items { gap: 14px; font-size: 0.78rem; } .announce-cta { display: none; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: all .3s var(--ease);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 22px; padding-bottom: 22px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.logo-tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.nav { display: flex; gap: 28px; align-items: center; flex-wrap: nowrap; }
.nav a { font-size: 0.92rem; font-weight: 400; color: var(--ink); position: relative; white-space: nowrap; }
.nav a:hover { color: var(--green); }
.nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--green);
  transition: width .25s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--green); font-weight: 500; }
.nav a.active::after { width: 100%; }
.header-cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.header-cta .btn { padding: 14px 22px; white-space: nowrap; }
.menu-toggle { display: none; width: 32px; height: 32px; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 6px auto; transition: all .25s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 1140px) {
  .header-cta .btn-secondary { display: none; }
}
@media (max-width: 720px) {
  .header-cta .btn-primary { display: none; }
  .header .container { gap: 16px; }
}
@media (max-width: 1040px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 86px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 40px 32px;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open a { font-size: 1.4rem; font-family: var(--serif); }
}

/* ===== Page intro (for interior pages with no hero) ===== */
.page-intro { background: var(--bg-alt); padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
.page-intro .container { max-width: 820px; }
.page-intro h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 20px; }
.page-intro p { font-size: 1.12rem; max-width: 660px; line-height: 1.65; }
@media (max-width: 720px) {
  .page-intro { padding: 52px 0 44px; }
  .page-intro h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); margin-bottom: 16px; }
  .page-intro p { font-size: 1rem; }
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left h1 { margin-bottom: 32px; }
.hero-left h1 .accent { color: var(--green); font-style: italic; font-weight: 400; }
.hero-left .lede {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.hero-meta-item .label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200,169,97,0.2) 0%, transparent 50%);
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 84%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.18);
}
.hero-photo-label {
  position: absolute;
  bottom: 24px; left: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-badge {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
  z-index: 3;
}
.hero-badge strong { font-size: 1.9rem; font-style: normal; font-weight: 600; display: block; line-height: 1; margin-bottom: 4px; }

.hero-decoration {
  position: absolute;
  top: -20%; right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--bg-alt) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; aspect-ratio: 4/5; }
  .hero-meta { gap: 32px; }
  .hero-badge { width: 150px; height: 150px; font-size: 0.92rem; bottom: -20px; right: -20px; }
  .hero-badge strong { font-size: 1.5rem; }
}

/* ===== Eco Promise ===== */
.promise {
  background: var(--bg-alt);
  padding: 100px 0;
}
.promise-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.promise-header h2 { margin-bottom: 24px; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.promise-card {
  background: var(--bg);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .35s var(--ease);
}
.promise-card:hover { transform: translateY(-6px); }
.promise-icon {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  background: var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--bg);
}
.promise-icon svg { width: 32px; height: 32px; }
.promise-card h3 { margin-bottom: 14px; }
.promise-card p { font-size: 0.96rem; line-height: 1.65; }
@media (max-width: 820px) { .promise-grid { grid-template-columns: 1fr; gap: 20px; } .promise { padding: 70px 0; } }

/* ===== Services ===== */
.services { padding: 120px 0; }
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.section-header h2 { max-width: 700px; }
.section-header .section-sub { max-width: 380px; font-size: 1.02rem; }
@media (max-width: 820px) { .section-header { grid-template-columns: 1fr; gap: 24px; align-items: start; } }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.service:hover { background: var(--green); color: var(--bg); transform: translateY(-4px); }
.service:hover h3, .service:hover .service-num { color: var(--bg); }
.service:hover p { color: rgba(250, 248, 243, 0.75); }
.service:hover .service-num { opacity: 0.4; }
.service-num {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  transition: color .3s var(--ease);
}
.service h3 { margin-bottom: 14px; transition: color .3s var(--ease); }
.service p { font-size: 0.96rem; transition: color .3s var(--ease); margin-bottom: 24px; }
.service-link { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } .services { padding: 80px 0; } }

/* ===== Difference (Long Form) ===== */
.difference {
  background: var(--green);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.difference::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,169,97,0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.difference .eyebrow { color: var(--gold); }
.difference .eyebrow::before { background: var(--gold); }
.difference h2 { color: var(--bg); margin-bottom: 32px; }
.difference h2 em { font-style: italic; color: var(--gold); }
.difference p { color: rgba(250,248,243,0.78); font-size: 1.04rem; line-height: 1.75; margin-bottom: 20px; }
.difference .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(250,248,243,0.18);
}
.stat-num { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 8px; font-weight: 500; }
.stat-label { font-size: 0.92rem; color: rgba(250,248,243,0.7); }

.difference-visual {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.15)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px);
  border: 1px solid rgba(250,248,243,0.12);
  position: relative;
  display: grid;
  place-items: center;
}
.hanger-row {
  display: flex;
  gap: 14px;
  padding: 40px;
}
.hanger {
  width: 50px;
  background: rgba(250,248,243,0.08);
  border: 1px solid rgba(250,248,243,0.15);
  border-radius: 6px 6px 24px 24px;
  position: relative;
  aspect-ratio: 1/3.6;
}
.hanger::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  border: 1.5px solid rgba(250,248,243,0.4);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.hanger:nth-child(odd) { background: rgba(200,169,97,0.08); border-color: rgba(200,169,97,0.18); }
.photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  color: rgba(250,248,243,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .difference-grid { grid-template-columns: 1fr; gap: 50px; }
  .difference { padding: 80px 0; }
  .difference .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ===== Timeline (inside .difference) ===== */
.timeline { margin-top: 96px; padding-top: 60px; border-top: 1px solid rgba(250,248,243,0.18); }
.timeline h3 { color: var(--bg); margin-bottom: 40px; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.timeline-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 56px; counter-reset: tl; }
.timeline-list li {
  position: relative;
  padding-left: 22px;
  padding-bottom: 8px;
  border-left: 1px solid rgba(250,248,243,0.18);
}
.timeline-list li::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.timeline-list p { color: rgba(250,248,243,0.78); font-size: 0.96rem; line-height: 1.6; margin: 0; }
@media (max-width: 720px) {
  .timeline-list { grid-template-columns: 1fr; gap: 24px; }
  .timeline { margin-top: 64px; padding-top: 48px; }
}

/* ===== Locations ===== */
.locations { padding: 120px 0; background: var(--bg); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.location {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.location:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.location-map {
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, var(--sage) 0%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}
.location-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 30px);
}
.location-map::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.location-pin-shadow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 4px);
  width: 24px; height: 6px;
  background: rgba(0,0,0,0.18);
  border-radius: 50%;
  filter: blur(3px);
}
.location-photo-tag {
  position: absolute;
  bottom: 12px; right: 14px;
  background: rgba(31,38,32,0.5);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.location-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.location-tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 12px;
  font-weight: 600;
}
.location-body h3 { margin-bottom: 24px; }
.location-info { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; flex: 1; }
.location-info-row { display: flex; gap: 16px; align-items: flex-start; }
.location-info-row svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.location-info-row strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); font-weight: 500; margin-bottom: 4px; }
.location-info-row span { color: var(--ink); font-size: 0.96rem; line-height: 1.55; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 820px) { .locations-grid { grid-template-columns: 1fr; } .locations { padding: 80px 0; } }

/* ===== Business CTA ===== */
.biz-cta { padding: 120px 0; background: var(--green); color: var(--bg); }
.biz-cta .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.biz-cta .eyebrow { color: var(--gold); }
.biz-cta .eyebrow::before { background: var(--gold); }
.biz-cta h2 { color: var(--bg); margin-bottom: 24px; }
.biz-cta p { color: rgba(250,248,243,0.78); font-size: 1.06rem; max-width: 540px; margin-bottom: 36px; }
.biz-cta .biz-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.biz-cta .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.biz-cta .btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.biz-cta .btn-ghost { color: var(--bg); border-color: rgba(250,248,243,0.4); }
.biz-cta .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.biz-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.biz-perk {
  background: rgba(250,248,243,0.06);
  border: 1px solid rgba(250,248,243,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.biz-perk:hover { transform: translateY(-4px); background: rgba(250,248,243,0.09); }
.biz-perk-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.biz-perk h3 { color: var(--bg); margin-bottom: 8px; font-size: 1.05rem; }
.biz-perk p { color: rgba(250,248,243,0.7); font-size: 0.92rem; margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .biz-cta .container { grid-template-columns: 1fr; gap: 50px; }
  .biz-cta { padding: 80px 0; }
  .biz-perks { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .biz-perks { grid-template-columns: 1fr; } }

/* ===== Testimonials ===== */
.testimonials { padding: 120px 0; background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.testimonial {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: var(--gold); margin-bottom: 18px; font-size: 0.92rem; letter-spacing: 0.1em; }
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--green);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 500; font-size: 0.92rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--ink-soft); }
.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonials { padding: 80px 0; } }

/* ===== Quote / Contact ===== */
.quote { padding: 120px 0; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.quote-left h2 { margin-bottom: 24px; }
.quote-left p { font-size: 1.06rem; margin-bottom: 36px; }
.quote-contacts { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.quote-contact { display: flex; gap: 14px; align-items: center; }
.quote-contact svg { color: var(--green); flex-shrink: 0; }
.quote-contact div strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }
.quote-contact div span { font-family: var(--serif); font-size: 1.18rem; color: var(--ink); }

.quote-form {
  background: var(--bg-alt);
  padding: 48px;
  border-radius: var(--radius-lg);
}
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 12px; width: 100%; padding: 18px; }
.form-success {
  display: none;
  background: var(--green);
  color: var(--bg);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
@media (max-width: 820px) {
  .quote-grid { grid-template-columns: 1fr; gap: 50px; }
  .quote-form { padding: 32px; }
  .form-row.two { grid-template-columns: 1fr; }
  .quote { padding: 80px 0; }
}

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--bg-alt); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo .logo-mark { background: var(--gold); color: var(--ink); }
.footer-logo .logo-name { color: var(--bg); }
.footer-logo .logo-tag { color: rgba(250,248,243,0.5); }
.footer-about { color: rgba(250,248,243,0.65); margin-top: 24px; max-width: 320px; font-size: 0.94rem; line-height: 1.65; }
.footer h3 { color: var(--bg); margin-bottom: 20px; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(250,248,243,0.65); font-size: 0.94rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,248,243,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(250,248,243,0.45);
  font-size: 0.84rem;
  flex-wrap: wrap;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Mobile polish (phones) — desktop layout untouched ===== */
@media (max-width: 720px) {
  /* type / global */
  body { font-size: 15px; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; margin-bottom: 14px; }
  .btn { padding: 14px 22px; font-size: 0.88rem; }

  /* hero */
  .hero { padding: 48px 0 72px; }
  .hero-grid { gap: 44px; }
  .hero-left h1 { margin-bottom: 24px; }
  .hero-left .lede { font-size: 1.04rem; margin-bottom: 28px; }
  .hero-actions { gap: 10px; margin-bottom: 36px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-meta { gap: 20px; padding-top: 24px; flex-wrap: wrap; }
  .hero-meta-item { flex: 1 1 30%; }
  .hero-meta-item .num { font-size: 2rem; }
  .hero-meta-item .label { font-size: 0.72rem; letter-spacing: 0.1em; margin-top: 6px; }
  .hero-visual { max-width: 340px; aspect-ratio: 5/6; }
  .hero-badge { width: 115px; height: 115px; font-size: 0.8rem; bottom: -14px; right: -10px; }
  .hero-badge strong { font-size: 1.3rem; }

  /* promise */
  .promise { padding: 60px 0; }
  .promise-header { margin-bottom: 36px; }
  .promise-header h2 { margin-bottom: 18px; }
  .promise-grid { gap: 14px; }
  .promise-card { padding: 30px 24px; }
  .promise-icon { width: 60px; height: 60px; margin-bottom: 22px; }
  .promise-icon svg { width: 28px; height: 28px; }

  /* services */
  .services { padding: 60px 0; }
  .services-grid { gap: 14px; }
  .service { padding: 28px 24px; }
  .service-num { margin-bottom: 18px; }
  .service h3 { margin-bottom: 10px; }
  .service p { margin-bottom: 18px; }

  /* difference */
  .difference { padding: 60px 0; }
  .difference-grid { gap: 36px; }
  .difference h2 { margin-bottom: 24px; }
  .difference p { font-size: 0.98rem; line-height: 1.7; margin-bottom: 16px; }
  .difference .stats { gap: 16px; padding-top: 28px; margin-top: 28px; }
  .stat-num { font-size: 2.1rem; }
  .stat-label { font-size: 0.84rem; }
  .difference-visual { aspect-ratio: 4/5; }
  .hanger-row { padding: 22px; gap: 8px; }
  .hanger { width: 36px; }

  /* timeline */
  .timeline { margin-top: 44px; padding-top: 32px; }
  .timeline h3 { margin-bottom: 24px; }
  .timeline-year { font-size: 1.1rem; }
  .timeline-list p { font-size: 0.92rem; }

  /* locations */
  .locations { padding: 60px 0; }
  .locations-grid { gap: 20px; }
  .location-body { padding: 28px 24px; }
  .location-body h3 { margin-bottom: 18px; }
  .location-info { gap: 14px; margin-bottom: 24px; }
  .location-actions { gap: 10px; }
  .location-actions .btn { flex: 1 1 auto; }

  /* business cta */
  .biz-cta { padding: 60px 0; }
  .biz-cta .container { gap: 36px; }
  .biz-cta p { font-size: 1rem; margin-bottom: 28px; }
  .biz-cta .biz-actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .biz-cta .biz-actions .btn { width: 100%; }
  .biz-perks { gap: 14px; }
  .biz-perk { padding: 22px 20px; }
  .biz-perk-icon { width: 38px; height: 38px; margin-bottom: 14px; }

  /* testimonials */
  .testimonials { padding: 60px 0; }
  .testimonials-grid { margin-top: 40px; gap: 14px; }
  .testimonial { padding: 28px 24px; }
  .testimonial-quote { font-size: 1.08rem; margin-bottom: 22px; }

  /* quote */
  .quote { padding: 60px 0; }
  .quote-grid { gap: 36px; }
  .quote-left p { font-size: 1rem; margin-bottom: 28px; }
  .quote-contacts { gap: 16px; margin-top: 28px; padding-top: 28px; }
  .quote-contact div span { font-size: 1.04rem; }
  .quote-form { padding: 24px; }
  .form-row { gap: 14px; margin-bottom: 14px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; padding: 12px 14px; } /* 16px avoids iOS zoom-on-focus */
  .form-submit { padding: 16px; }

  /* footer */
  .footer { padding: 52px 0 24px; }
  .footer-grid { margin-bottom: 36px; gap: 32px; }
  .footer-about { max-width: none; margin-top: 20px; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
}

/* very small phones (≤380px) — keep things from getting squeezed */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-left h1 { font-size: 2.3rem; }
  .hero-meta { gap: 14px; }
  .hero-meta-item .num { font-size: 1.7rem; }
  .difference .stats { grid-template-columns: 1fr; }
  .hero-actions, .biz-cta .biz-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .announce-items { font-size: 0.74rem; gap: 10px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
</content>
</invoke>

/* a11y: don't rely on color alone for inline links; main landmark block */
main { display: block; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
