:root {
  --emerald-950: #031a15;
  --emerald-900: #062820;
  --emerald-850: #083229;
  --emerald-800: #083f31;
  --emerald-700: #0f5a45;
  --emerald-600: #137056;
  --gold-700: #a9822b;
  --gold-600: #c89b37;
  --gold-500: #d7ad48;
  --gold-300: #f0d98f;
  --cream-50: #fffdf7;
  --cream-100: #fff8ec;
  --cream-200: #f8edd8;
  --cream-300: #ead9b9;
  --sage-100: #edf5ef;
  --ink: #15342c;
  --muted: #63736e;
  --line: rgba(8, 63, 49, 0.14);
  --shadow: 0 24px 70px rgba(2, 22, 17, 0.16);
  --shadow-soft: 0 14px 44px rgba(2, 22, 17, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-300); color: var(--emerald-950); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section-pad { padding: 104px 0; }
.centered { text-align: center; margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--emerald-900);
  color: white;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
.sr-only,
.honeypot {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 120;
  background: linear-gradient(90deg, var(--gold-500), var(--emerald-700));
  box-shadow: 0 2px 10px rgba(8, 63, 49, .28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(8, 63, 49, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(4, 32, 25, .08); background: rgba(255, 253, 247, .96); }
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.brand img, .footer-brand img {
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(5, 38, 30, .12);
  background: white;
}
.brand strong, .footer-brand span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .04em;
  color: var(--emerald-900);
  font-size: 1.1rem;
  line-height: 1.15;
}
.brand small {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #24473e;
  font-size: .96rem;
  font-weight: 700;
}
.primary-nav a {
  position: relative;
  padding: .45rem .05rem;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .1rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-300));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid rgba(200, 155, 55, .35);
  background: var(--emerald-900);
  color: #fff7dd;
  border-radius: 999px;
  padding: .75rem 1rem !important;
  box-shadow: 0 10px 26px rgba(4, 41, 32, .15);
}
.nav-cta:hover { background: var(--emerald-800); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s 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); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 217, 143, .38), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(19, 112, 86, .13), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #fff8ec 46%, #f4e5c8 100%);
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-bg::before {
  width: 520px;
  height: 520px;
  left: -180px;
  top: 140px;
  background: rgba(8, 63, 49, .09);
  filter: blur(6px);
}
.hero-bg::after {
  width: 640px;
  height: 640px;
  right: -260px;
  top: -120px;
  background: rgba(215, 173, 72, .17);
  filter: blur(8px);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  align-items: center;
  gap: 60px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  color: var(--gold-700);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-300));
  border-radius: 99px;
}
.centered .eyebrow { justify-content: center; }
.hero h1, .section-heading h2, .luxury-copy h2, .founder-copy h2, .area-grid h2, .contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--emerald-950);
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}
.hero-lead {
  margin: 1.45rem 0 0;
  max-width: 690px;
  color: #3f5b54;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(215, 173, 72, .55);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-700));
  color: #fff7df;
  box-shadow: 0 16px 32px rgba(5, 45, 35, .23);
}
.btn-primary:hover { box-shadow: 0 20px 42px rgba(5, 45, 35, .28); }
.btn-secondary {
  background: rgba(255, 253, 247, .72);
  border-color: rgba(169, 130, 43, .32);
  color: var(--emerald-900);
  box-shadow: 0 12px 30px rgba(5, 45, 35, .08);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(215, 173, 72, .45);
  color: var(--emerald-900);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.65rem;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(8, 63, 49, .13);
  background: rgba(255, 255, 255, .66);
  color: #31534b;
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 800;
}
.trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-300));
}
.hero-media { position: relative; }
.portrait-card {
  position: relative;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(240,217,143,.42));
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 52px;
  border: 1px solid rgba(200, 155, 55, .42);
  z-index: -1;
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
}
.portrait-badge {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(3, 26, 21, .82);
  color: #fff7df;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.portrait-badge strong { display: block; font-size: .97rem; letter-spacing: .08em; text-transform: uppercase; }
.portrait-badge span { display: block; margin-top: .25rem; color: #f2dfad; font-family: Georgia, serif; font-size: 1.06rem; }
.hero-note {
  position: absolute;
  right: -20px;
  top: 8%;
  width: min(320px, 75%);
  display: flex;
  gap: .8rem;
  padding: 1rem;
  border: 1px solid rgba(215, 173, 72, .35);
  background: rgba(255, 253, 247, .88);
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(2, 22, 17, .12);
  backdrop-filter: blur(14px);
}
.hero-note .dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: .35rem;
  border-radius: 50%;
  background: var(--emerald-700);
  box-shadow: 0 0 0 8px rgba(19, 112, 86, .12);
}
.hero-note p { margin: 0; font-size: .91rem; font-weight: 700; color: #36574f; }
.float-card { animation: float-card 5.8s ease-in-out infinite; }
.float-note { animation: float-note 6.8s ease-in-out infinite; }
@keyframes float-card {
  0%, 100% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-8px); }
}
@keyframes float-note {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.intro-strip {
  background: var(--emerald-900);
  color: #fff7dd;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
.intro-strip p { margin: 0; color: rgba(255, 247, 221, .88); }
.intro-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  min-width: max-content;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--emerald-950);
  font-weight: 900;
}

.care-rail-section {
  overflow: hidden;
  padding: 18px 0 22px;
  background: linear-gradient(180deg, #fff8ec 0%, #fffdf7 100%);
  border-bottom: 1px solid rgba(8,63,49,.08);
}

.section-heading { max-width: 690px; }
.section-heading h2,
.luxury-copy h2,
.founder-copy h2,
.area-grid h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}
.section-heading p,
.luxury-copy p,
.founder-copy p,
.area-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(215, 173, 72, .38); }
.feature-card.highlight {
  background: linear-gradient(145deg, var(--emerald-900), var(--emerald-700));
  color: #fff7df;
}
.feature-card.highlight p { color: rgba(255,247,223,.82); }
.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.3rem;
  border-radius: 16px;
  background: rgba(215, 173, 72, .16);
  color: var(--gold-700);
  font-weight: 1000;
  font-family: Georgia, serif;
}
.feature-card.highlight .icon { background: rgba(255,255,255,.12); color: var(--gold-300); }
.feature-card h3, .service-card h3, .process-grid h3, .faq-list summary, .gallery-copy h3 {
  margin: 0 0 .7rem;
  color: var(--emerald-950);
  font-size: 1.17rem;
  line-height: 1.25;
}
.feature-card.highlight h3 { color: #fff7df; }
.feature-card p, .service-card p, .process-grid p, .faq-list p { margin: 0; color: var(--muted); }

.services-section {
  background: linear-gradient(180deg, #fffdf7 0%, #f6ecda 100%);
}
.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: 40px;
  align-items: start;
}
.sticky-copy { position: sticky; top: calc(var(--header-height) + 28px); }
.text-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--emerald-900);
  font-weight: 900;
  border-bottom: 2px solid var(--gold-500);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  overflow: hidden;
  border: 1px solid rgba(8, 63, 49, .12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(215, 173, 72, .38); }
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3ead6;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(3,26,21,0), rgba(3,26,21,.14));
  pointer-events: none;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card > div:last-child { padding: 24px; }

.gallery-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(19,112,86,.07), transparent 24%),
    linear-gradient(180deg, #fffef9, #fff7ea);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 30px;
  border: 1px solid rgba(8,63,49,.12);
  box-shadow: var(--shadow-soft);
  background: #d9d1bf;
}
.gallery-large { grid-column: span 2; grid-row: span 2; min-height: 584px; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,26,21,0) 35%, rgba(3,26,21,.84) 100%);
}
.gallery-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff7df;
}
.gallery-copy span {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--gold-300);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gallery-copy h3 { color: #fff7df; margin-bottom: 0; font-size: 1.25rem; }

.luxury-section {
  color: #fff7df;
  background:
    radial-gradient(circle at 12% 20%, rgba(215,173,72,.20), transparent 24%),
    radial-gradient(circle at 80% 90%, rgba(19,112,86,.35), transparent 30%),
    linear-gradient(145deg, var(--emerald-950), var(--emerald-800));
}
.luxury-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}
.luxury-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 24px 74px rgba(0,0,0,.24);
  border: 1px solid rgba(240, 217, 143, .32);
}
.luxury-copy h2, .luxury-copy p { color: #fff7df; }
.luxury-copy p { color: rgba(255,247,223,.82); }
.check-list {
  display: grid;
  gap: 14px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(240, 217, 143, .18);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: rgba(255,247,223,.88);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--emerald-950);
  font-weight: 1000;
}

.process-section { background: var(--cream-50); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}
.process-grid article {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
  box-shadow: var(--shadow-soft);
}
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--emerald-900);
  color: var(--gold-300);
  font-weight: 1000;
}

.founder-section {
  background:
    linear-gradient(90deg, rgba(8,63,49,.06) 0 1px, transparent 1px) 0 0/42px 42px,
    linear-gradient(180deg, #fffdf7, #fff8ec);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
}
.founder-copy blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  color: var(--emerald-900);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.founder-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.founder-photos {
  position: relative;
  min-height: 500px;
  padding: 12px;
  overflow: hidden;
}
.founder-photos img {
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255,255,255,.84);
}
.area-section {
  background: var(--emerald-900);
  color: #fff7df;
}
.area-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.area-grid h2, .area-grid p { color: #fff7df; }
.area-grid p { color: rgba(255,247,223,.8); }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-list span {
  padding: .85rem 1rem;
  border: 1px solid rgba(240,217,143,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,247,223,.92);
  font-weight: 800;
}

.faq-section { background: #fffdf7; }
.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  font-weight: 900;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(215, 173, 72, .18);
  color: var(--emerald-900);
  font-weight: 1000;
}
details[open] summary::after { content: "–"; }
details p { padding: 0 24px 24px; }

.contact-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(215,173,72,.19), transparent 23%),
    linear-gradient(180deg, #f7edda 0%, #fffdf7 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-copy a { color: var(--emerald-900); font-weight: 900; }
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 2rem;
}
.contact-cards a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(8, 63, 49, .12);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-cards a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.contact-cards strong { color: var(--emerald-900); }
.contact-form {
  display: grid;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(8, 63, 49, .12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.contact-form label {
  margin-top: 4px;
  color: var(--emerald-900);
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 63, 49, .18);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fffdf8;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(215, 173, 72, .16);
}
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .88rem; }
.form-status {
  display: none;
  margin: 0 0 .5rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  font-weight: 800;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(19, 112, 86, .12); color: var(--emerald-900); }
.form-status.error { background: rgba(145, 44, 25, .11); color: #7a2415; }
.recaptcha-widget {
  min-height: 0;
}
.recaptcha-widget:empty {
  display: none;
}

.site-footer {
  padding: 58px 0 22px;
  background: var(--emerald-950);
  color: rgba(255,247,223,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr .9fr;
  gap: 40px;
}
.footer-brand { color: #fff7df; }
.footer-brand span { color: #fff7df; }
.site-footer h2 {
  margin: 0 0 1rem;
  color: #fff7df;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.site-footer a { display: block; margin: .55rem 0; color: rgba(255,247,223,.82); }
.site-footer a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }

.whatsapp-float,
.back-to-top,
.ai-chat-toggle {
  position: fixed;
  z-index: 100;
}
.whatsapp-float {
  left: max(18px, env(safe-area-inset-left));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem .95rem;
  border-radius: 999px;
  background: #25D366;
  color: #072519;
  font-weight: 1000;
  box-shadow: 0 16px 40px rgba(3, 26, 21, .24);
}
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, .45);
  animation: pulse-ring 2.1s infinite;
  pointer-events: none;
}
.whatsapp-float::after { animation-delay: .7s; }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }
@keyframes pulse-ring {
  0% { transform: scale(.88); opacity: .75; }
  78%, 100% { transform: scale(1.28); opacity: 0; }
}
.back-to-top {
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  transform: translate(-50%, 18px);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(240,217,143,.42);
  border-radius: 999px;
  background: var(--emerald-900);
  color: #fff7df;
  box-shadow: 0 16px 40px rgba(3, 26, 21, .24);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  font-size: 1.25rem;
  font-weight: 1000;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.back-to-top:hover { background: var(--emerald-700); }

.ai-chat { position: fixed; z-index: 110; right: max(18px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); }
.ai-chat-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 54px;
  padding: .75rem 1rem;
  border: 1px solid rgba(240,217,143,.45);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-700));
  color: #fff7df;
  box-shadow: 0 16px 44px rgba(3, 26, 21, .28);
  font-weight: 1000;
}
.chat-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--emerald-950);
  font-size: .86rem;
  font-weight: 1000;
}
.chat-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  right: 12px;
  top: 6px;
  border-radius: 50%;
  background: #6dffab;
  box-shadow: 0 0 0 0 rgba(109, 255, 171, .65);
  animation: chat-pulse 1.8s infinite;
}
@keyframes chat-pulse {
  0% { box-shadow: 0 0 0 0 rgba(109, 255, 171, .65); }
  75%, 100% { box-shadow: 0 0 0 14px rgba(109, 255, 171, 0); }
}
.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(392px, calc(100vw - 34px));
  overflow: hidden;
  border: 1px solid rgba(8,63,49,.14);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 24px 80px rgba(3, 26, 21, .28);
}
.ai-chat-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--emerald-950), var(--emerald-700));
  color: #fff7df;
}
.ai-chat-header strong { display: block; }
.ai-chat-header span { display: block; color: rgba(255,247,223,.78); font-size: .86rem; }
.ai-chat-header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff7df;
  font-size: 1.35rem;
}
.ai-chat-messages {
  height: 330px;
  overflow-y: auto;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(215,173,72,.14), transparent 30%),
    #fffdf8;
}
.chat-message {
  max-width: 86%;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(3,26,21,.08);
  font-size: .94rem;
}
.chat-message.bot {
  margin-right: auto;
  border-top-left-radius: 6px;
  background: #f3ead6;
  color: var(--ink);
}
.chat-message.user {
  margin-left: auto;
  border-top-right-radius: 6px;
  background: var(--emerald-900);
  color: #fff7df;
}
.quick-replies {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 14px;
  border-top: 1px solid rgba(8,63,49,.08);
  border-bottom: 1px solid rgba(8,63,49,.08);
}
.quick-replies button {
  flex: 0 0 auto;
  border: 1px solid rgba(8,63,49,.14);
  border-radius: 999px;
  background: white;
  color: var(--emerald-900);
  padding: .52rem .75rem;
  font-size: .84rem;
  font-weight: 900;
}
.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
}
.ai-chat-form input {
  min-width: 0;
  border: 1px solid rgba(8,63,49,.16);
  border-radius: 999px;
  padding: .78rem .95rem;
  background: white;
}
.ai-chat-form button {
  border: 0;
  border-radius: 999px;
  padding: .78rem .95rem;
  background: var(--gold-500);
  color: var(--emerald-950);
  font-weight: 1000;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.985);
  filter: blur(5px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.16, 1, .3, 1), filter .65s ease;
  will-change: opacity, transform, filter;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}
.reveal-on-scroll.reveal-card.is-visible,
.feature-card.reveal-on-scroll.is-visible,
.service-card.reveal-on-scroll.is-visible,
.gallery-card.reveal-on-scroll.is-visible,
.process-grid article.reveal-on-scroll.is-visible,
.faq-list details.reveal-on-scroll.is-visible {
  animation: card-float-in .86s cubic-bezier(.2, 1, .25, 1) both;
}
@keyframes card-float-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.982);
    filter: blur(6px);
  }
  68% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scale(1.004);
    filter: blur(0);
  }
  82% {
    opacity: 1;
    transform: translate3d(0, 3px, 0) scale(0.997);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }
}

@media (max-width: 1080px) {
  .feature-grid.four, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 620px; margin-inline: auto; }
  .hero h1 { max-width: 880px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-large { grid-column: span 2; grid-row: span 1; min-height: 430px; }
}

@media (max-width: 920px) {
  :root { --header-height: 76px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(255, 253, 247, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(3, 26, 21, .12);
    transform: translateY(-125%);
    transition: transform .24s ease;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { padding: 14px 0 !important; border-bottom: 1px solid rgba(8, 63, 49, .08); }
  .primary-nav .nav-cta { margin-top: 12px; justify-content: center; border-bottom: 0; }
  .services-layout, .luxury-grid, .founder-grid, .area-grid, .faq-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .founder-photos { min-height: 460px; max-width: 500px; margin-inline: auto; width: 100%; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 72px 0; }
  .hero { padding: 58px 0 74px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1.03rem; }
  .brand small { display: none; }
  .brand img { width: 58px; height: auto; }
  .hero-actions, .founder-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .intro-strip-inner { display: grid; text-align: center; justify-items: center; }
  .feature-grid.four, .service-grid, .process-grid, .gallery-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .portrait-badge { left: 22px; right: 22px; bottom: 22px; }
  .hero-note { position: static; width: auto; margin-top: 18px; }
  .portrait-card { transform: none; border-radius: 34px; }
  .portrait-card img { border-radius: 26px; }
  .founder-photos { min-height: 380px; }
  .gallery-large { grid-column: span 1; min-height: 320px; }
  .footer-bottom { display: grid; }
  .contact-form { padding: 24px; border-radius: 26px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 58px; height: 58px; justify-content: center; padding: 0; }
  .ai-chat-toggle { width: 58px; height: 58px; padding: 0; justify-content: center; }
  .chat-toggle-text { display: none; }
  .ai-chat-panel { bottom: 72px; }
  .back-to-top { width: 48px; height: 48px; }
  .care-rail-section { padding: 16px 0 18px; }
}

@media (max-width: 430px) {
  .section-heading h2,
  .luxury-copy h2,
  .founder-copy h2,
  .area-grid h2,
  .contact-copy h2 { font-size: 2.1rem; }
  .trust-row span { width: 100%; }
  .founder-photos { min-height: 320px; }
  .ai-chat-panel {
    width: calc(100vw - 36px);
    right: 0;
  }
  .ai-chat-messages { height: 300px; }
  .gallery-copy h3 { font-size: 1.12rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .whatsapp-float::before,
  .whatsapp-float::after,
  .chat-pulse,
  .float-card,
  .float-note {
    animation: none !important;
  }
}

@media print {
  .site-header, .whatsapp-float, .back-to-top, .ai-chat, .hero-actions, .contact-form, .care-rail-section { display: none !important; }
  body { background: white; color: black; }
  .section-pad { padding: 28px 0; }
}


/* Latest revision: one thumbs-up image only in the founder / personal standard section */
.founder-photos-single {
  display: grid;
  place-items: center;
  min-height: auto;
  padding: 0;
  overflow: visible;
  width: 100%;
}

.founder-photos-single .photo-single {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
}

@media (max-width: 920px) {
  .founder-photos-single {
    min-height: auto;
    max-width: 500px;
    margin-inline: auto;
  }

  .founder-photos-single .photo-single { width: 100%; }
}

@media (max-width: 720px) {
  .founder-photos-single .photo-single { width: 100%; }
}

@media (max-width: 430px) {
  .founder-photos-single .photo-single { width: 100%; }
}


/* Single jQuery-driven horizontal rail for care highlights */
.care-tags-wrap {
  overflow: hidden;
}

.care-rail {
  width: 100%;
  overflow: hidden;
}

.care-rail-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  min-width: 100%;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  --care-rail-distance: 50%;
  animation: care-rail-scroll var(--care-rail-duration, 36s) linear infinite;
}

.care-rail-item {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  white-space: nowrap;
  padding: .68rem .92rem;
  border: 1px solid rgba(8,63,49,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--emerald-900);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(3,26,21,.06);
}

.care-rail-item::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-300));
}

.care-rail-track:hover {
  animation-play-state: paused;
}

@keyframes care-rail-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--care-rail-distance, 50%)));
  }
}

@media (max-width: 920px) {
  .care-rail-item {
    font-size: .84rem;
    padding: .58rem .8rem;
  }
}


/* Revision v8: Google Map embed for Kansas City service area */
.map-container {
  margin-top: 44px;
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(240,217,143,.24);
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.map-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(3,26,21,.36);
  color: #fff7df;
}

.map-copy span {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  color: var(--gold-300);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.map-copy span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
}

.map-copy strong {
  max-width: 620px;
  color: rgba(255,247,223,.9);
  font-size: .98rem;
  text-align: right;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  filter: saturate(.9) contrast(.98);
}

@media (max-width: 720px) {
  .map-container {
    margin-top: 30px;
  }

  .map-copy {
    display: grid;
    text-align: left;
  }

  .map-copy strong {
    text-align: left;
  }

  .map-card iframe {
    min-height: 330px;
  }
}
