@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,300;9..144,0,400;9..144,1,300;9..144,1,400&family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500&family=Inter+Tight:wght@300;400;500;600&display=swap");

:root {
  --daylight: #fafaf7;
  --linen: #f1f2ec;
  --paper: #ffffff;
  --ink: #14181a;
  --charcoal: #4a5258;
  --mute: #8a9097;
  --hairline: rgba(20, 24, 26, 0.1);
  --hairline-strong: rgba(20, 24, 26, 0.16);
  --sage: #5c7a6b;
  --sage-hover: #46624f;
  --citron: #c9d44a;
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --hero-display: "Fraunces", Georgia, "Times New Roman", serif;
  --framework-font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: var(--framework-font);
  --site-width: 1312px;
  --gutter: clamp(24px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--daylight);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--hairline);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.topbar-inner,
.site-frame,
.footer-inner {
  width: min(calc(100% - 48px), var(--site-width));
  margin: 0 auto;
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 30px;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--framework-font);
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 24px);
  min-width: 0;
  color: var(--mute);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.nav-cta:hover,
.btn-primary:hover {
  background: #000000;
  border-color: #000000;
}

.btn-secondary {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: #ffffff;
}

.btn-text {
  min-height: 40px;
  padding-right: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.btn:active,
.nav-cta:active {
  transform: scale(0.98);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.site-frame {
  border-right: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  background: var(--daylight);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-intro .eyebrow {
  color: var(--sage);
}

.page-intro > p:not(.eyebrow) {
  font-family: var(--framework-font);
  font-weight: 400;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  padding: clamp(40px, 3vw, 56px) var(--gutter) clamp(56px, 7vw, 92px);
  border-bottom: 1px solid var(--hairline);
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--hero-display);
  font-size: clamp(82px, 8.3vw, 132px);
  font-weight: 300;
  line-height: 0.95;
}

.hero-copy h1 em {
  display: block;
  color: var(--sage);
  font-style: italic;
  font-weight: 300;
}

.word-lock {
  white-space: nowrap;
}

.soft-b {
  position: relative;
  display: inline-block;
}

.soft-b::after {
  content: "";
  position: absolute;
  left: 0.01em;
  bottom: 0.06em;
  width: 0.11em;
  height: 0.035em;
  background: var(--daylight);
  pointer-events: none;
}

.stem-l {
  display: inline-block;
  font-style: normal;
  line-height: 0.94;
  margin-right: 0.04em;
  transform: translateY(0.015em) skewX(-13deg);
  transform-origin: 50% 82%;
}

.hero-copy > p,
.page-intro > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-media img,
.image-row img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.1) contrast(0.96);
}

.hero-media img:nth-child(1) {
  height: clamp(150px, 14vw, 200px);
}

.hero-media img:nth-child(2) {
  height: clamp(210px, 18vw, 270px);
}

.hero-media img:nth-child(3) {
  height: clamp(150px, 14vw, 200px);
}

.hero-media figcaption {
  color: var(--mute);
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 34px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.stats div {
  display: grid;
  gap: 6px;
}

.stats strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

.stats span {
  color: var(--mute);
  font-size: 13px;
  text-transform: uppercase;
}

.split-section,
.services-section,
.gallery-section,
.cta-band,
.page-intro,
.pricing-section,
.contact-section,
.faq-section {
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(36px, 6vw, 72px);
}

.section-title,
.page-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.section-title {
  max-width: 680px;
  font-size: clamp(44px, 5vw, 70px);
}

.page-title {
  max-width: 860px;
  font-size: clamp(48px, 6.4vw, 92px);
}

.framework-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--framework-font);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.split-body {
  max-width: 700px;
}

.split-body p,
.card p,
.price-card p,
.contact-card p,
.faq-list p {
  margin: 0;
}

.split-body p + p {
  margin-top: 16px;
}

.service-grid,
.price-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.card,
.price-card,
.contact-card {
  min-width: 0;
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 32px;
}

.card {
  min-height: 280px;
}

.card small,
.price-card small {
  color: var(--mute);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
}

.card h3,
.price-card h2,
.contact-card h2,
.faq-item h2 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-family: var(--framework-font);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.card a,
.price-card a:not(.btn),
.contact-card a:not(.btn) {
  display: inline-block;
  margin-top: 22px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 3.5fr) minmax(0, 8.5fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: end;
}

.image-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr;
  gap: 12px;
}

.image-row img {
  height: 320px;
}

.image-row img:nth-child(2) {
  height: 400px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background: var(--linen);
}

.cta-band p {
  margin: 12px 0 0;
}

.cta-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  justify-self: end;
  gap: 18px;
  width: min(100%, 430px);
}

.cta-band .booking-summary {
  display: grid;
  gap: 4px;
  margin: 0;
  min-width: 0;
  color: var(--charcoal);
  justify-items: end;
  text-align: right;
}

.cta-band .booking-summary[hidden] {
  display: none;
}

.booking-summary > span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-summary strong {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  justify-self: end;
  justify-content: flex-end;
  isolation: isolate;
  max-width: 100%;
  color: var(--ink);
  font-family: var(--framework-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.22;
  text-align: right;
  text-wrap: balance;
  white-space: normal;
}

.booking-summary [data-booking-summary-detail] {
  position: relative;
  display: inline-block;
}

.booking-summary [data-booking-summary-detail]::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(92, 122, 107, 0.42);
  content: "";
  opacity: 0.72;
  transform: scaleX(1);
  transform-origin: right;
}

.booking-summary.is-emphasized [data-booking-summary-detail] {
  animation: selected-time-guide 1100ms ease;
}

.booking-summary.is-emphasized [data-booking-summary-detail]::after {
  animation: selected-time-line-guide 1100ms ease;
}

.cta-band.is-guided {
  animation: booking-guide 900ms ease;
}

@keyframes booking-guide {
  0%,
  100% {
    box-shadow: inset 0 0 0 0 rgba(92, 122, 107, 0);
  }

  35% {
    box-shadow: inset 0 0 0 3px rgba(92, 122, 107, 0.28);
  }
}

@keyframes selected-time-guide {
  0%,
  100% {
    color: var(--charcoal);
    text-shadow: none;
    transform: translateY(0);
  }

  35% {
    color: var(--ink);
    text-shadow: 0 8px 22px rgba(92, 122, 107, 0.22);
    transform: translateY(-1px);
  }
}

@keyframes selected-time-line-guide {
  0% {
    opacity: 0.32;
    transform: scaleX(0);
  }

  35% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band.is-guided,
  .booking-summary.is-emphasized [data-booking-summary-detail],
  .booking-summary.is-emphasized [data-booking-summary-detail]::after {
    animation: none;
  }
}

.site-footer {
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  color: var(--mute);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-intro {
  padding-top: clamp(80px, 9vw, 128px);
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
}

.price-card.featured {
  background: var(--linen);
}

.price-card .price {
  margin: 30px 0 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 70px;
  font-weight: 300;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
}

.price-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.faq-section {
  background: var(--linen);
}

.faq-grid {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.contact-grid {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
}

.intake-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--mute);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  outline: none;
  font-size: 17px;
  text-transform: none;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--sage);
  box-shadow: 0 1px 0 var(--sage);
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--sage);
  background: var(--linen);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 15px;
}

.contact-note {
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.contact-note div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}

.contact-note dt {
  color: var(--mute);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.contact-note dd {
  margin: 0;
  color: var(--ink);
}

.booking-week-control button:focus-visible,
.booking-day-button:focus-visible,
.booking-day-times button:focus-visible {
  outline: 2px solid rgba(92, 122, 107, 0.48);
  outline-offset: 2px;
}

.booking-picker {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}

.booking-picker-head {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
}

.booking-week-control {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.booking-week-control button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.booking-week-control button:disabled {
  border-color: var(--hairline);
  color: var(--mute);
  cursor: not-allowed;
}

.booking-week-control strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  text-align: center;
}

.booking-picker-head span {
  color: var(--mute);
  font-size: 14px;
  text-align: center;
}

.booking-day-list {
  display: grid;
  gap: 8px;
}

.booking-day {
  border: 1px solid var(--hairline);
  background: transparent;
}

.booking-day.is-selected {
  border-color: var(--ink);
  background: var(--paper);
}

.booking-day-button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
}

.booking-day-button > span {
  display: grid;
  gap: 4px;
}

.booking-day-button small {
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-day-button strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.booking-day-button em {
  color: var(--mute);
  font-size: 14px;
  font-style: normal;
  white-space: nowrap;
}

.booking-day-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--hairline);
  padding: 12px 18px 18px;
}

.booking-day-times[hidden] {
  display: none;
}

.booking-day-times button {
  min-height: 50px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
}

.booking-week-control button:not(:disabled):hover,
.booking-week-control button:not(:disabled):focus-visible,
.booking-week-control button:not(:disabled):active,
.booking-day-times button:hover,
.booking-day-times button:focus-visible,
.booking-day-times button:active,
.booking-day-times button.is-selected {
  background: var(--ink);
  color: #ffffff;
}

.floating-intake {
  display: none !important;
}

@media (max-width: 1120px) {
  .home-hero,
  .split-section,
  .gallery-section,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .image-row img,
  .image-row img:nth-child(2) {
    height: 300px;
  }
}

@media (max-width: 960px) {
  .topbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
  }

  .nav-links,
  .topbar .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
    gap: 0;
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--hairline);
    background: var(--daylight);
  }

  .mobile-menu a {
    display: flex;
    min-height: 54px;
    align-items: center;
    border-bottom: 1px solid var(--hairline);
    color: var(--ink);
  }

  .mobile-menu .btn {
    margin-top: 18px;
  }

  .mobile-menu .btn-primary {
    border-bottom: 0;
    color: #ffffff;
  }

  body.menu-open .mobile-menu {
    display: grid;
  }

}

@media (max-width: 720px) {
  .topbar-inner,
  .site-frame,
  .footer-inner {
    width: 100%;
  }

  .topbar-inner {
    padding: 0 24px;
  }

  .site-frame {
    border-right: 0;
    border-left: 0;
  }

  .home-hero,
  .split-section,
  .services-section,
  .gallery-section,
  .cta-band,
  .page-intro,
  .pricing-section,
  .contact-section,
  .faq-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 24px;
    padding-left: 24px;
  }

  .cta-band,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-action {
    width: 100%;
    align-items: stretch;
    justify-self: start;
    grid-template-columns: 1fr;
  }

  .cta-band .booking-summary {
    justify-items: start;
    text-align: left;
  }

  .booking-summary strong {
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .booking-summary [data-booking-summary-detail]::after {
    right: auto;
    left: 0;
    transform-origin: left;
  }

  .cta-band .btn,
  .button-row .btn,
  .nav-cta {
    width: 100%;
  }

  .booking-week-control {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .booking-week-control button {
    width: 44px;
    height: 44px;
  }

  .footer-inner {
    padding: 34px 24px;
  }
}

@media (max-width: 480px) {
  .contact-note div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@supports (overflow: clip) {
  html,
  body,
  .site-shell {
    overflow-x: clip;
  }
}
