:root {
  --bg: #eef3f0;
  --bg-deep: #e2ebe6;
  --ink: #1a2a23;
  --ink-soft: #3d5248;
  --muted: #5f7368;
  --accent: #2f5d4a;
  --accent-hover: #244a3b;
  --line: rgba(26, 42, 35, 0.12);
  --surface: rgba(255, 255, 255, 0.62);
  --hero-glow: #c5d9ce;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --max: 1120px;
  --narrow: 680px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 8vw, 5.2rem);
  margin: 0.15em 0 0.25em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.muted {
  color: var(--muted);
}

.section-lead {
  color: var(--muted);
  margin: -0.25rem 0 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #f4f8f6;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  border-color: rgba(26, 42, 35, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(238, 243, 240, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(238, 243, 240, 0.94);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  color: var(--ink) !important;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero — full-bleed atmosphere + portrait */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 6vh, 4rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  color: #f4f8f6;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
  filter: saturate(0.85) brightness(0.72);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(12, 28, 32, 0.78) 0%,
      rgba(12, 28, 32, 0.52) 48%,
      rgba(12, 28, 32, 0.35) 100%
    ),
    linear-gradient(to top, rgba(12, 28, 32, 0.62), transparent 50%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(-1.5%, 1%);
  }
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-bottom: clamp(1rem, 4vh, 2.5rem);
  animation: riseIn 1s var(--ease) both;
}

.brand-mark {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9ddd2;
  margin: 0;
}

.hero h1 {
  color: #f7fbf8;
}

.hero-lead {
  max-width: 28ch;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  color: rgba(244, 248, 246, 0.88);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-ghost {
  color: #f4f8f6;
  border-color: rgba(244, 248, 246, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: end;
  animation: riseIn 1.15s var(--ease) 0.12s both;
}

.hero-photo {
  width: min(100%, 400px);
  margin-left: auto;
  aspect-ratio: 4 / 5;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Photo frames */
.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #d5e3db, #b8cbc1);
  box-shadow: 0 30px 60px rgba(18, 32, 26, 0.25);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame:not(.has-photo) img.portrait {
  display: none;
}

.photo-frame.has-photo .photo-placeholder {
  display: none;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  padding: 1.5rem;
}

.photo-placeholder span {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.photo-placeholder small {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.photo-placeholder code {
  font-size: 0.8rem;
}

/* Pillars */
.pillars {
  padding: clamp(3rem, 7vh, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f5f8f6, var(--bg));
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.pillar h2 {
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 28ch;
}

.contact-city {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Split band with stock photo */
.split-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(68vh, 560px);
}

.split-image {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: #e7efe9;
}

.split-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 34ch;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vh, 6.5rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.offer-aside {
  margin: 0;
  position: sticky;
  top: 5.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
}

.offer-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

/* Accordion */
.acc-group + .acc-group {
  margin-top: 2rem;
}

.acc-label {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: center;
  color: var(--ink);
  margin: 0 0 1rem;
}

.acc-item {
  border-top: 1px solid var(--line);
}

.acc-item:last-child {
  border-bottom: 1px solid var(--line);
}

.acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.acc-item summary::-webkit-details-marker {
  display: none;
}

.acc-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}

.acc-item[open] summary::after {
  content: "–";
}

.acc-item summary:hover {
  color: var(--accent);
}

.acc-body {
  padding: 0 0 1.25rem;
}

.acc-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* Quote / first meeting band */
.quote-band {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 12vh, 8rem) 0;
  color: #f4f8f6;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.55);
  transform: scale(1.03);
}

.quote-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 26, 0.45),
    rgba(18, 32, 26, 0.62)
  );
}

.quote-inner .eyebrow {
  color: #c9ddd2;
}

.quote-inner h2 {
  color: #f7fbf8;
}

.quote-inner p:last-child {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(244, 248, 246, 0.9);
  max-width: 42ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.about-photo {
  aspect-ratio: 4 / 5;
  max-width: 400px;
  box-shadow: 0 24px 50px rgba(26, 42, 35, 0.12);
}

.about-copy p {
  color: var(--ink-soft);
}

.about-highlights {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
}

.about-highlights li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.credentials {
  display: grid;
  gap: 0.65rem;
}

.cred-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.cred-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cred-panel summary::-webkit-details-marker {
  display: none;
}

.cred-panel summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--accent);
}

.cred-panel[open] summary::after {
  content: "–";
}

.cred-panel ul,
.cred-panel p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cred-panel ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.cred-panel li {
  position: relative;
  padding-left: 1rem;
}

.cred-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.pricing {
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(47, 93, 74, 0.06),
    transparent
  );
}

.price-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:first-child {
  border-top: 1px solid var(--line);
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.price-time {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-amount {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--accent);
}

.pricing-note {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-info address {
  font-style: normal;
  margin: 1.25rem 0;
}

.contact-info a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
}

.contact-info a:hover {
  color: var(--accent);
}

.hours-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.map-wrap {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo {
    width: min(100%, 280px);
    margin: 0;
  }

  .pillars-grid,
  .split-band,
  .offer-layout,
  .about-grid,
  .contact-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .offer-aside {
    position: static;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .about-photo {
    max-width: 300px;
  }

  .split-band {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(238, 243, 240, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-lead {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg img,
  .hero-content,
  .hero-visual,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
