@import url("https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;600;700;800;900&display=swap");

:root {
  --ink: #1f2024;
  --muted: #6a625d;
  --paper: #f6f3ef;
  --soft: #fbfaf7;
  --white: #ffffff;
  --taupe: #b2a295;
  --taupe-dark: #75685f;
  --blush: #ead6d1;
  --blush-deep: #ba7d79;
  --rose: #a96f6d;
  --sage: #b5bfae;
  --sage-deep: #687565;
  --line: rgba(31, 32, 36, 0.13);
  --shadow: 0 24px 70px rgba(31, 32, 36, 0.13);
  --radius: 8px;
  --font-display: "Alta", "The Seasons", "Cormorant Garamond", "Bodoni 72", Georgia, serif;
  --font-script: "Sloop Script Pro", Allura, "Snell Roundhand", "Apple Chancery", cursive;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

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

.inline-link {
  color: var(--rose);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(31, 32, 36, 0.07);
  font-size: 0.9em;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(246, 243, 239, 0.84);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 245, 240, 0.94);
  box-shadow: 0 12px 35px rgba(31, 32, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 172px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.brand-text strong,
.brand-text small {
  display: block;
  white-space: nowrap;
}

.brand-text strong {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.main-nav a {
  min-width: 62px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(173, 155, 139, 0.17);
}

.book-button {
  justify-self: end;
}

.icon-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.icon-button:hover,
.button:hover {
  transform: translateY(-1px);
}

.icon-button {
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(31, 32, 36, 0.16);
}

i[data-lucide],
svg.lucide {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.section-pad {
  padding: clamp(46px, 7vw, 84px) clamp(18px, 6vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 850px;
  color: var(--taupe);
  font-size: clamp(52px, 8vw, 108px);
}

h1 span {
  display: block;
}

h2 {
  max-width: 980px;
  color: var(--taupe);
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
}

.hero {
  min-height: 82vh;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(102px, 13vh, 150px) clamp(18px, 6vw, 92px) clamp(34px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--paper);
}

.hero-copy-wrap {
  max-width: 850px;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-width: 172px;
  padding: 15px 22px;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.tertiary {
  border-color: rgba(31, 32, 36, 0.12);
  background: var(--blush);
  color: var(--ink);
}

.button.secondary.dark {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 34px;
}

.hero-status span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--taupe-dark);
  font-size: 13px;
  font-weight: 900;
}

.hero-portrait {
  position: relative;
  min-height: 500px;
  align-self: stretch;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.portrait-note strong,
.portrait-note span {
  display: block;
}

.portrait-note strong {
  font-family: Georgia, serif;
  font-size: 22px;
}

.portrait-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.social-links-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.social-links-strip a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--taupe-dark);
  font-weight: 900;
}

.social-links-strip a:last-child {
  border-right: 0;
}

.social-links-strip a:hover {
  background: rgba(234, 214, 209, 0.42);
}

.booking-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.booking-strip a {
  display: flex;
  min-width: 0;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.booking-strip a:last-child {
  border-right: 0;
  background: var(--blush);
  color: var(--ink);
}

.booking-strip a:hover {
  background: rgba(173, 155, 139, 0.16);
}

.booking-strip a:last-child:hover {
  background: var(--sage);
}

.explore-switcher {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(28px, 5vw, 48px) clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.82);
}

.explore-switcher h2 {
  max-width: 760px;
  color: var(--taupe-dark);
  font-size: clamp(30px, 4vw, 50px);
}

.explore-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.explore-tab,
.gallery-filter-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--taupe-dark);
  font: 900 12px / 1 var(--font-body);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.explore-tab:hover,
.explore-tab.is-active,
.gallery-filter-button:hover,
.gallery-filter-button.is-active {
  border-color: rgba(169, 111, 109, 0.34);
  background: var(--white);
  color: var(--ink);
}

.explore-tab.is-active svg {
  color: var(--rose);
}

.explore-panel {
  scroll-margin-top: 190px;
}

.sprint-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
  background: #efe5e1;
}

.sprint-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.sprint-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.sprint-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.sprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sprint-grid article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.sprint-grid span {
  margin-bottom: auto;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.sprint-grid strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
}

.sprint-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.section-heading.compact {
  display: block;
  max-width: 920px;
}

.section-heading.compact p:last-child {
  margin-top: 18px;
}

.section-heading p,
.price-copy p,
.visit-copy p,
.reviews-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-section,
.process,
.reviews-list {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 16px;
}

.about-copy,
.business-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-copy {
  background: var(--soft);
}

.about-copy p,
.business-card p {
  color: var(--muted);
  font-size: 17px;
}

.business-card {
  background: #eee6df;
  color: var(--ink);
}

.business-card .eyebrow {
  color: var(--rose);
}

.business-card p {
  color: var(--muted);
}

.business-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.business-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.services-section {
  background: var(--soft);
}

.service-menu {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(31, 32, 36, 0.08);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 239, 0.72);
}

.service-tab {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font: 900 12px / 1.1 var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.service-tab:last-child {
  border-right: 0;
}

.service-tab:hover,
.service-tab.is-active {
  color: var(--ink);
  background: var(--white);
}

.service-tab.is-active svg {
  color: var(--rose);
}

.service-panels {
  padding: clamp(22px, 4vw, 42px);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.service-panel[hidden] {
  display: none;
}

.menu-copy {
  position: sticky;
  top: 104px;
}

.menu-copy h3 {
  color: var(--taupe-dark);
  font-size: clamp(32px, 4vw, 52px);
}

.menu-copy p:not(.service-kicker) {
  max-width: 430px;
  color: var(--muted);
}

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

.menu-columns.single {
  grid-template-columns: 1fr;
}

.menu-group {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.menu-group h4 {
  margin: 0 0 18px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.05;
}

.price-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.price-list dt {
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr);
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.price-list dt::after {
  align-self: end;
  border-bottom: 1px dotted rgba(117, 104, 95, 0.5);
  content: "";
  transform: translateY(-5px);
}

.price-list dd {
  color: var(--taupe-dark);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.menu-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.service-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(22px, 4vw, 42px);
  border-top: 1px solid var(--line);
  background: rgba(181, 191, 174, 0.24);
}

.service-menu-footer p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gift-panel {
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
}

.gift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.gift-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.gift-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 34px;
}

.service-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card.feature {
  background: var(--sage);
  color: var(--ink);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--sage-deep);
}

.service-card.feature .card-icon {
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
}

.service-kicker {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card.feature .service-kicker {
  color: var(--rose);
}

.service-card p:not(.service-kicker) {
  margin: 17px 0 0;
  color: var(--muted);
}

.service-card.feature p:not(.service-kicker) {
  color: rgba(31, 32, 36, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--sage-deep);
  font-weight: 900;
}

.service-card.feature .text-link {
  color: var(--ink);
}

.work {
  background: var(--paper);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(31, 32, 36, 0.08);
}

.work-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.work-grid figcaption {
  padding: 18px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.social-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.social-panel .eyebrow {
  color: var(--blush);
}

.social-panel h3 {
  font-size: 34px;
}

.gallery {
  background: var(--white);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gallery-filter-button {
  min-width: 92px;
  padding: 0 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 34px;
}

.gallery-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-grid .gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 514px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 0;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(31, 32, 36, 0.58);
}

.gallery-grid figcaption span,
.gallery-grid figcaption strong {
  display: block;
}

.gallery-grid figcaption span {
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid figcaption strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.05;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.price-copy p {
  max-width: 660px;
  margin-top: 18px;
}

.price-copy .button {
  margin-top: 30px;
}

.price-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.retail-preview,
.reviews-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--soft);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.55fr);
  gap: 30px;
  align-items: center;
  background: #dfe6dc;
  color: var(--ink);
}

.visit .eyebrow {
  color: var(--rose);
}

.visit-copy p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-stack {
  display: grid;
  gap: 10px;
}

.contact-stack a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 32, 36, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.contact-stack span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 28px;
  padding: 36px clamp(18px, 6vw, 92px);
  background: #8d7b6f;
  color: var(--white);
}

.site-footer strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.fine-print {
  align-self: end;
  font-size: 13px;
}

.retail-page,
.waitlist-page,
.reviews-page {
  background: var(--white);
}

.page-hero,
.reviews-hero {
  padding-top: clamp(132px, 18vh, 190px);
  background: var(--paper);
}

.page-hero h1,
.reviews-hero h1 {
  max-width: 1040px;
}

.page-hero p,
.reviews-hero p {
  max-width: 760px;
  margin-top: 20px;
}

.retail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
}

.product-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.product-card.soft-card {
  background: #f1e8e4;
}

.product-visual {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 0.72;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blush), var(--sage));
  color: var(--ink);
}

.product-visual svg {
  width: 42px;
  height: 42px;
}

.product-card p:not(.service-kicker) {
  color: var(--muted);
}

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 18px;
  background: var(--white);
}

.waitlist-form {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.waitlist-form {
  display: grid;
  gap: 16px;
}

.form-head p:last-child {
  color: var(--muted);
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--taupe-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  text-transform: none;
}

.waitlist-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.review-card,
.review-empty {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.review-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  text-align: center;
}

.review-empty svg {
  width: 34px;
  height: 34px;
  color: var(--rose);
}

.review-empty p {
  max-width: 520px;
  margin: 10px auto 0;
  color: var(--muted);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--rose);
}

.review-card blockquote {
  margin: 28px 0 20px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.28;
}

.review-card p {
  margin: 0;
  font-weight: 900;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding: clamp(108px, 14vh, 142px) clamp(18px, 6vw, 92px) clamp(28px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.home-hero-copy {
  min-width: 0;
  max-width: 820px;
}

.home-hero h1 {
  max-width: 760px;
  color: var(--taupe);
  font-size: clamp(52px, 8vw, 96px);
}

.home-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.home-portrait img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center 18%;
}

.home-portrait figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.home-portrait strong,
.home-portrait span {
  display: block;
}

.home-portrait strong {
  font-family: var(--font-display);
  font-size: 25px;
}

.home-portrait span {
  color: var(--muted);
  font-weight: 800;
}

.answer-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

  .answer-strip article {
    min-width: 0;
    min-height: 210px;
    padding: 24px;
    border-right: 1px solid var(--line);
  }

.answer-strip article:last-child {
  border-right: 0;
}

.answer-strip svg,
.credential-grid svg,
.forms-grid svg {
  color: var(--rose);
}

.answer-strip h2 {
  margin-top: 26px;
  color: var(--taupe-dark);
  font-size: 28px;
}

.answer-strip p,
.home-service-card p,
.trust-block p,
.booking-details p,
.service-detail-head p,
.detail-grid p,
.requirement-card p,
.education-card p,
.credential-grid p,
.business-story p,
.forms-grid p,
.faq-list p {
  color: var(--muted);
}

.home-services {
  background: var(--soft);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.home-service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.home-service-card.is-priority {
  background: #e8dfd7;
}

.home-service-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.home-service-card h3 {
  margin-top: 34px;
  color: var(--taupe-dark);
  font-size: 34px;
}

.home-service-card strong {
  display: inline-flex;
  margin-top: auto;
  color: var(--sage-deep);
  font-size: 14px;
}

.proof-snapshot,
.service-detail-list,
.faq-list,
.forms-grid,
.education-grid {
  background: var(--white);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 28px;
}

.snapshot-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.snapshot-grid.small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.snapshot-grid.small figure {
  min-height: 280px;
}

.snapshot-feature {
  grid-row: span 2;
  min-height: 454px;
}

.snapshot-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.snapshot-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 0;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(31, 32, 36, 0.58);
}

.trust-block,
.booking-details,
.business-story,
.requirement-layout,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 24px;
  align-items: center;
}

.trust-block {
  background: #eee6df;
}

.testimonial-mini,
.requirement-card,
.credential-grid article,
.forms-grid article,
.education-card,
.service-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.testimonial-mini {
  padding: clamp(22px, 4vw, 34px);
}

.testimonial-mini blockquote {
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.testimonial-mini span {
  color: var(--muted);
  font-weight: 800;
}

.booking-details {
  background: #dfe6dc;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.68fr);
  gap: 22px;
  align-items: stretch;
  background: var(--white);
}

.contact-page-layout .contact-stack a {
  min-height: 68px;
  background: var(--soft);
}

.contact-page-layout .requirement-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page-layout .button {
  margin-top: 22px;
}

.booking-details h2,
.trust-block h2 {
  color: var(--taupe-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-self: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.content-page {
  background: var(--white);
}

.content-page .page-hero h1 {
  font-size: clamp(46px, 7vw, 86px);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 18%;
}

.credential-grid,
.forms-grid,
.education-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.credential-grid article,
.forms-grid article,
.education-card,
.step-grid article {
  padding: 24px;
}

.credential-grid h2,
.forms-grid h2,
.education-card h2,
.step-grid h3 {
  margin-top: 26px;
  color: var(--taupe-dark);
  font-size: 31px;
}

.business-story {
  background: var(--paper);
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  padding: clamp(22px, 4vw, 38px);
}

.service-detail-head {
  max-width: 920px;
}

.service-detail-head h2 {
  color: var(--taupe-dark);
  font-size: clamp(38px, 5vw, 62px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.detail-grid div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
}

.detail-grid h3 {
  color: var(--rose);
  font-size: 23px;
}

.detail-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0 0;
}

.detail-prices div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-prices dt,
.detail-prices dd {
  margin: 0;
}

.detail-prices dt {
  font-weight: 800;
}

.detail-prices dd {
  color: var(--taupe-dark);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.weight-hero {
  background: #eee6df;
}

.program-steps {
  background: var(--soft);
}

.step-grid {
  margin-top: 28px;
}

.step-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.step-grid span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.requirement-layout {
  background: var(--paper);
}

.requirement-card {
  height: 100%;
  padding: clamp(24px, 4vw, 38px);
}

.requirement-card h2 {
  color: var(--taupe-dark);
}

.muted-card {
  background: #e5ece2;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.faq-list summary {
  padding: 20px 22px;
  color: var(--taupe-dark);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

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

.education-card.is-featured {
  grid-column: span 2;
  background: #e8dfd7;
}

.education-card span {
  display: inline-flex;
  margin-top: 22px;
  color: var(--sage-deep);
  font-weight: 900;
}

.cta-band {
  background: #dfe6dc;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: flex;
    width: calc(100vw - 36px);
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding: 6px;
    border-radius: 999px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 9px 13px;
  }

  .hero-split,
  .home-hero,
  .sprint-offer,
  .about-grid,
  .about-hero,
  .business-story,
  .trust-block,
  .booking-details,
  .contact-page-layout,
  .requirement-layout,
  .cta-band,
  .pricing,
  .visit,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 520px;
  }

  .explore-switcher {
    position: static;
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .home-service-grid,
  .answer-strip,
  .credential-grid,
  .detail-grid,
  .forms-grid,
  .education-grid,
  .step-grid,
  .service-tabs,
  .work-grid,
  .sprint-grid,
  .review-grid,
  .gallery-grid,
  .snapshot-grid,
  .retail-list,
  .waitlist-layout {
    grid-template-columns: 1fr;
  }

  .snapshot-feature,
  .education-card.is-featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .detail-prices {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-feature {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tab {
    border-bottom: 1px solid var(--line);
  }

  .service-tab:nth-child(2n) {
    border-right: 0;
  }

  .service-panel,
  .gift-panel,
  .menu-columns,
  .menu-columns.single {
    grid-template-columns: 1fr;
  }

  .menu-copy {
    position: static;
  }

  .service-menu-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .retail-preview,
  .reviews-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 132px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .book-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
  }

  .icon-button {
    width: 44px;
    padding: 0;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    justify-content: stretch;
    overflow: visible;
    border-radius: 22px;
  }

  .main-nav a {
    min-width: 0;
    padding: 9px 6px;
    font-size: 12px;
  }

  .hero-split {
    min-height: auto;
    padding-top: 148px;
  }

  .home-hero {
    padding-top: 336px;
  }

  .page-hero,
  .reviews-hero {
    padding-top: 336px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .home-hero .hero-status {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero .hero-status span {
    width: 100%;
    text-align: center;
  }

  .home-portrait img,
  .about-photo img {
    min-height: 360px;
  }

  .answer-strip article,
  .home-service-card,
  .step-grid article {
    min-height: auto;
  }

  .answer-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .answer-strip article {
    padding: 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }

  .answer-strip article:nth-child(2n) {
    border-right: 0;
  }

  .answer-strip h2 {
    margin-top: 12px;
    font-size: 18px;
  }

  .answer-strip p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 430px;
  }

  .button {
    width: 100%;
  }

  .sprint-actions {
    display: grid;
  }

  .hero-status {
    gap: 7px;
  }

  .booking-strip {
    grid-template-columns: 1fr;
  }

  .explore-switcher {
    padding: 16px 14px;
  }

  .explore-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explore-tab {
    min-height: 44px;
    font-size: 11px;
  }

  .social-links-strip {
    grid-template-columns: 1fr 1fr;
  }

  .booking-strip a {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-links-strip a:nth-child(2n) {
    border-right: 0;
  }

  .social-links-strip a {
    min-height: 58px;
    font-size: 14px;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-feature,
  .snapshot-grid figure,
  .snapshot-feature,
  .snapshot-grid.small figure {
    min-height: 180px;
  }

  .snapshot-feature {
    min-height: 220px;
  }

  .gallery-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-filter-button {
    min-width: 0;
  }

  .section-heading,
  .social-panel {
    display: block;
  }

  .social-panel .button {
    margin-top: 22px;
  }

  .contact-stack a {
    font-size: 14px;
  }

  .service-tab {
    min-height: 62px;
    font-size: 11px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-list dt {
    display: block;
  }

  .price-list dt::after {
    content: none;
  }

  .price-list dd {
    text-align: left;
  }

  .detail-prices div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .detail-prices dd {
    text-align: left;
  }

  .faq-list summary {
    font-size: 24px;
  }
}
