@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --blush: #f4ebeb;
  --cream: #fbf6f3;
  --gold: #e49237;
  --coral: #ff5757;
  --navy: #343e59;
  --ink: #040507;
  --white: #fff;
  --muted: #736f6d;
  --line: rgba(4, 5, 7, 0.13);
  --shadow: 0 22px 70px rgba(52, 62, 89, 0.12);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", Arial, Helvetica, sans-serif;
  --script: "Great Vibes", "Brush Script MT", cursive;
  --max: 1240px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.25rem, 7.4vw, 7.75rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  letter-spacing: -0.025em;
}

.editorial-heading {
  padding-right: 0.06em;
  font-style: italic;
  text-wrap: balance;
}

.home-hero-title .hero-serif,
.feature-copy h3,
.quick-book h2,
.quick-book-card h3,
.package-title-row h3,
.price,
.consult-card h3,
.shared-calendar h3,
.experience-details h2,
.contact-form-wrap h2,
.instagram-copy h2,
.policy-hero h1,
.policy-contact-card h2,
.policy-section h2 {
  font-style: normal;
}

h1 em,
h2 em,
.large-quote em {
  color: var(--coral);
  font-weight: 500;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--coral);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 246, 243, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(4, 5, 7, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}

.site-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.68rem 1.1rem;
  border: 1px solid var(--navy);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta[aria-current="page"] {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-primary:hover {
  background: #ea4444;
}

.button-outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.button-row.centered {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffd2c5;
}

.script-accent {
  margin: 0 0 -0.4rem -0.2rem;
  color: var(--coral);
  font-family: var(--script);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  transform: rotate(-2deg);
}

.light-script {
  color: #ffd2c5;
}

.lead {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.5;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) max(24px, calc((100vw - var(--max)) / 2));
}

.soft-bg {
  background: var(--blush);
}

.dark-section {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.section-heading,
.service-group-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.55fr);
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading h2,
.service-group-heading h2 {
  margin-bottom: 0;
}

.section-heading > a,
.section-heading > p,
.service-group-heading > p {
  justify-self: end;
  margin-bottom: 0.6rem;
}

.section-aside {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dark-section .section-aside {
  color: rgba(255, 255, 255, 0.55);
}

.google-rating {
  display: grid;
  min-width: 175px;
  justify-self: end;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.75rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.google-rating:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.google-rating strong {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.google-rating > span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.google-rating small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.media-placeholder {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--blush);
  isolation: isolate;
}

.media-placeholder > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder > img.focus-top { object-position: center 22%; }
.media-placeholder > img.focus-upper { object-position: center 35%; }
.media-placeholder > img.focus-bottom { object-position: center 78%; }
.media-placeholder > img.focus-left { object-position: 28% center; }
.media-placeholder > img.focus-right { object-position: 72% center; }

.media-placeholder::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.12) 25.2%, transparent 25.7%),
    linear-gradient(28deg, rgba(4, 5, 7, 0.12), transparent 55%);
  content: "";
  opacity: 0.75;
  z-index: 1;
}

.media-placeholder:has(> img)::before {
  opacity: 0.16;
}

.media-placeholder::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.88);
  content: attr(data-label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.media-placeholder:not([data-label])::after {
  display: none;
}

.tone-rose { background: linear-gradient(145deg, #dfb9b4, #ab706b 52%, #543d46); }
.tone-gold { background: linear-gradient(145deg, #efbe75, #bd7540 52%, #61424a); }
.tone-navy { background: linear-gradient(145deg, #697793, #343e59 55%, #111622); }
.tone-coral { background: linear-gradient(145deg, #ff9690, #d85658 50%, #5d3e50); }
.tone-dark { background: linear-gradient(145deg, #566278, #202838 55%, #050609); }
.tone-sand { background: linear-gradient(145deg, #e5d5c8, #b79b8c 52%, #64545c); }

.play-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-image-placeholder,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-image-placeholder {
  background:
    radial-gradient(circle at 76% 24%, rgba(228, 146, 55, 0.66), transparent 20%),
    radial-gradient(circle at 67% 57%, rgba(255, 87, 87, 0.35), transparent 26%),
    linear-gradient(112deg, #101722, #4f5b70 43%, #b48670 78%, #7b4e54);
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-image-placeholder::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.5), rgba(4, 5, 7, 0.06) 70%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.25), transparent 55%);
  content: "";
  z-index: 1;
}

.image-note {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-wash {
  background: linear-gradient(90deg, rgba(4, 5, 7, 0.1), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin-top: -1rem;
}

.hero-content h1 {
  max-width: 1040px;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.home-hero-title .hero-serif,
.home-hero-title .hero-script {
  display: block;
}

.home-hero-title .hero-serif {
  text-shadow: 0 3px 24px rgba(4, 5, 7, 0.32);
}

.home-hero-title .hero-script {
  width: fit-content;
  margin-top: 0.04em;
  color: var(--coral);
  font-family: var(--script);
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 3px 22px rgba(4, 5, 7, 0.28);
  transform: rotate(-1.5deg);
}

.hero-content .hero-copy {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  text-shadow: 0 2px 14px rgba(4, 5, 7, 0.45);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-intro {
  background: var(--cream);
  text-align: center;
}

body[data-page="home"] .section h2,
body[data-page="home"] .closing-cta h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
}

body[data-page="home"] .section-intro {
  text-align: left;
}

body[data-page="home"] .section-intro .narrow {
  width: min(900px, 100%);
}

.narrow {
  width: min(850px, 100%);
  margin: 0 auto;
}

.section-intro blockquote {
  position: relative;
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.5;
}

body[data-page="home"] .section-intro blockquote {
  max-width: none;
  margin: 2.5rem 0 0;
  padding: 1.35rem 1.6rem;
  border-top: 0;
  border-left: 4px solid var(--coral);
  background: var(--blush);
  color: var(--navy);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.92fr);
  min-height: 390px;
  background: var(--cream);
}

body[data-page="home"] .feature-card {
  border-top: 4px solid var(--coral);
  box-shadow: 0 16px 44px rgba(52, 62, 89, 0.07);
}

body[data-page="home"] .feature-card:nth-child(2) {
  border-top-color: var(--gold);
}

.feature-card-large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  min-height: 500px;
}

.feature-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.feature-card .media-placeholder {
  height: 100%;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 3.5rem);
}

.feature-copy > span,
.visual-number {
  margin-bottom: auto;
  color: var(--coral);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.feature-copy .text-link {
  margin-top: 0.65rem;
}

.editorial-grid {
  display: grid;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.editorial-grid .media-placeholder {
  min-height: 0;
}

.editorial-grid .tall { grid-row: span 2; }
.editorial-grid .wide { grid-column: span 2; }

.centered-action {
  margin-top: 3rem;
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.quote-card {
  min-height: 360px;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--navy);
}

.quote-mark {
  display: block;
  height: 65px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}

.quote-card blockquote {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
}

body[data-page="home"] .testimonials {
  padding-right: max(24px, calc((100vw - 1360px) / 2));
  padding-left: max(24px, calc((100vw - 1360px) / 2));
}

body[data-page="home"] .quote-card {
  min-height: 330px;
}

body[data-page="home"] .quote-mark {
  color: var(--coral);
}

body[data-page="home"] .quote-card blockquote {
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
}

.quote-card figcaption {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card figcaption a {
  color: #ffd2c5;
}

.quote-card figcaption a:hover {
  color: var(--white);
}

.about-preview-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.portrait-frame {
  position: relative;
  padding: 0 2.5rem 2.5rem 0;
}

.portrait-frame::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 72%;
  background: var(--coral);
  content: "";
}

.media-placeholder.portrait {
  min-height: 640px;
}

.frame-caption {
  position: absolute;
  right: 0;
  bottom: 8px;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.about-preview-copy {
  max-width: 550px;
}

body[data-page="home"] .about-preview-copy {
  max-width: 650px;
}

.about-preview-copy .button {
  margin-top: 1.2rem;
}

.closing-cta {
  position: relative;
  padding: clamp(6rem, 12vw, 11rem) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(228, 146, 55, 0.25), transparent 25%),
    radial-gradient(circle at 87% 72%, rgba(255, 87, 87, 0.16), transparent 28%),
    var(--ink);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.closing-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.15), transparent);
  content: "";
}

.closing-cta > div {
  position: relative;
  width: min(780px, 100%);
  margin: 0 auto;
}

.closing-cta h2 {
  color: var(--white);
}

body[data-page="home"] .closing-cta {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 87, 87, 0.25), transparent 27%),
    radial-gradient(circle at 88% 74%, rgba(228, 146, 55, 0.13), transparent 24%),
    var(--navy);
}

body[data-page="home"] .closing-cta::before {
  display: none;
}

.site-footer {
  padding: 5rem max(24px, calc((100vw - var(--max)) / 2)) 2rem;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-grid > div:first-child p {
  max-width: 430px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.footer-grid a:not(.brand) {
  color: var(--navy);
  font-size: 0.82rem;
}

.footer-grid a:not(.brand):hover {
  color: var(--coral);
}

.footer-label {
  margin-bottom: 0.6rem;
  color: var(--coral) !important;
  font-size: 0.62rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared interior hero */
.page-hero {
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero-copy h1 {
  margin-bottom: 1.6rem;
}

.page-hero-art {
  position: relative;
  height: 500px;
}

.page-hero-art .media-placeholder {
  position: absolute;
  width: 48%;
  min-height: 0;
}

.stagger-one { top: 0; left: 25%; height: 75%; }
.stagger-two { bottom: 0; left: 0; height: 54%; }
.stagger-three { right: 0; bottom: 8%; height: 40%; }

.page-hero-portfolio {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-portfolio::before {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: 0;
  width: 46%;
  height: 78%;
  background: var(--blush);
  content: "";
}

.page-hero-portfolio .eyebrow {
  color: var(--coral);
}

.page-hero-portfolio .portfolio-hero-title {
  max-width: 650px;
  margin-bottom: 1.9rem;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 0.92;
}

.portfolio-hero-serif,
.portfolio-hero-serif > span,
.portfolio-hero-script {
  display: block;
}

.portfolio-hero-serif {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3.35rem, 5.25vw, 5.75rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.portfolio-hero-script {
  width: fit-content;
  margin: 0.06em 0 0 0.14em;
  color: var(--coral);
  font-family: var(--script);
  font-size: clamp(5.25rem, 8vw, 8.75rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 0.78;
  transform: rotate(-1.5deg);
}

.page-hero-portfolio .page-hero-art .media-placeholder {
  box-shadow: 0 20px 50px rgba(52, 62, 89, 0.14);
}

.page-hero-portfolio .page-hero-art::before {
  position: absolute;
  z-index: 4;
  top: 10%;
  right: 4%;
  width: 8px;
  height: 58px;
  background: var(--gold);
  content: "";
}

/* Portfolio */
.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.portfolio-toolbar > p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.filter-button {
  padding: 0.48rem 0.72rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--coral);
  color: var(--ink);
}

.portfolio-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 340px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease;
}

.portfolio-item[hidden] {
  display: none;
}

.portfolio-item.item-tall { grid-row: span 2; }
.portfolio-item.item-wide { grid-column: span 2; }

.portfolio-item .media-placeholder {
  height: 100%;
}

.portfolio-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.2rem 1.3rem 1.05rem;
  transform: none;
  background: linear-gradient(transparent, rgba(4, 5, 7, 0.72));
  color: var(--white);
  opacity: 0.96;
  transition: opacity 220ms ease, transform 220ms ease;
}

.portfolio-item:hover .portfolio-caption,
.portfolio-item:focus-within .portfolio-caption {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-caption span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portfolio-caption h2 {
  margin: 0.35rem 0 0;
  color: var(--white);
  font-size: 1.2rem;
}

.filter-empty {
  padding: 4rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.film-card {
  margin: 0;
}

#great-lakes-electric-brand-reel,
#social-content-reel,
#behind-the-scenes {
  scroll-margin-top: 7rem;
}

.film-card .video {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.portfolio-video-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.reel-player {
  background: var(--ink);
}

.portfolio-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--ink);
}

.film-card p {
  margin: 1rem 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.film-card small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Experience */
.experience-hero {
  background: linear-gradient(115deg, var(--cream) 0 66%, var(--blush) 66%);
}

body[data-page="experience"] .page-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.8vw, 6rem);
  letter-spacing: -0.04em;
}

body[data-page="experience"] .service-group-heading h2,
body[data-page="experience"] .consultation-heading h2,
body[data-page="experience"] .experience-details h2,
body[data-page="experience"] .closing-cta h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
}

body[data-page="experience"] .script-accent {
  color: #ffaaa4;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.experience-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.experience-hero-visual .media-placeholder {
  width: 88%;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.experience-hero-visual p {
  width: 76%;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service-jump {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-jump a {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.service-jump a:last-child { border-right: 0; }
.service-jump a:hover { background: var(--navy); color: var(--white); }
.service-jump span { color: var(--coral); font-size: 0.58rem; }

body[data-page="experience"] .service-jump a:hover {
  background: var(--coral);
}

.service-group-heading > p {
  max-width: 440px;
  color: var(--muted);
}

.package-card {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 620px;
  margin-top: clamp(3rem, 7vw, 7rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

body[data-page="experience"] .package-card {
  border-top: 4px solid var(--coral);
}

.package-card-reverse .package-visual { order: 2; }

.package-visual {
  position: relative;
  min-height: 540px;
}

.package-visual .media-placeholder {
  height: 100%;
}

.package-visual .visual-number {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  left: 1.2rem;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0;
  place-items: center;
  background: var(--cream);
}

.package-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 5rem);
}

.package-title-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid var(--line);
}

.package-type {
  margin-bottom: 0.45rem;
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-title-row h3 {
  margin: 0;
}

.price {
  flex: 0 0 auto;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: right;
}

.package-lead {
  margin: 1.8rem 0 0.8rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.5;
}

.perfect-for {
  color: var(--muted);
  font-size: 0.82rem;
}

.package-note {
  margin: 0.15rem 0 0.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--coral);
  color: var(--muted);
  font-size: 0.76rem;
}

.deliverables {
  width: 100%;
  margin: 1rem 0 2rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}

.deliverables h4 {
  margin-bottom: 0.9rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.deliverables ul,
.plain-checks {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
  list-style: none;
}

.deliverables li,
.plain-checks li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.deliverables li::before,
.plain-checks li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  color: var(--coral);
  content: "✦";
  font-size: 0.55rem;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin: 1.25rem 0 clamp(5rem, 9vw, 9rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(52, 62, 89, 0.15);
  background: rgba(255, 255, 255, 0.52);
}

.booking-intro h3 {
  margin-bottom: 1rem;
}

.booking-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.calendar-placeholder {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px dashed rgba(52, 62, 89, 0.35);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(52, 62, 89, 0.04) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(52, 62, 89, 0.04) 50%, transparent 50.3%),
    var(--cream);
  background-size: 28px 28px;
  text-align: center;
}

.calendar-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
}

.calendar-placeholder strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.calendar-placeholder p {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.calendar-placeholder small {
  min-height: 1.4em;
  margin-top: 0.8rem;
  color: var(--coral);
  font-size: 0.68rem;
}

.calendar-placeholder .booking-privacy-note {
  max-width: 440px;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.55;
}

.calendar-placeholder .booking-privacy-note a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.calendar-dark .booking-privacy-note {
  color: rgba(255, 255, 255, 0.62);
}

.consultation-section {
  padding-top: clamp(6rem, 10vw, 10rem);
}

.content-partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.content-partnership-card {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(52, 62, 89, 0.14);
  background: rgba(255, 255, 255, 0.66);
}

.content-partnership-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.content-partnership-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.content-partnership-card .package-lead {
  max-width: 620px;
}

.partnership-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0;
}

.partnership-meta p {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(52, 62, 89, 0.15);
  color: var(--navy);
  font-size: 0.82rem;
}

.partnership-meta span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--coral);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-partnership-card .deliverables {
  flex-grow: 1;
}

.content-partnership-card.featured .package-type,
.content-partnership-card.featured .price,
.content-partnership-card.featured .package-lead,
.content-partnership-card.featured .deliverables h4,
.content-partnership-card.featured .deliverables li,
.content-partnership-card.featured .partnership-meta p {
  color: var(--white);
}

.content-partnership-card.featured .price span,
.content-partnership-card.featured .package-type {
  color: rgba(255, 255, 255, 0.62);
}

.content-partnership-card.featured .partnership-meta p,
.content-partnership-card.featured .deliverables {
  border-color: rgba(255, 255, 255, 0.18);
}

.content-partnership-card.featured .deliverables li::before {
  color: var(--coral);
}

.production-note {
  margin: -0.45rem 0 1.4rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--coral);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.content-partnership-card.featured .production-note {
  color: rgba(255, 255, 255, 0.68);
}

.consultation-heading {
  width: min(850px, 100%);
  margin: 0 auto 4rem;
  text-align: center;
}

.consultation-heading > p:not(.script-accent) {
  width: min(650px, 100%);
  margin: 0 auto;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.consult-card {
  min-height: 390px;
  padding: 2rem;
  background: var(--navy);
}

.consult-card.featured {
  background: #414c68;
}

.consult-card > span {
  color: #ffd2c5;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consult-card h3 {
  min-height: 2.2em;
  margin-top: 1.3rem;
  font-size: 1.65rem;
}

.consult-card > p:not(.consult-price):not(.commitment):not(.client-footage-note) {
  font-size: 0.82rem;
}

.consult-price {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.consult-price small {
  font-family: var(--sans);
  font-size: 0.6rem;
}

.commitment {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  line-height: 1.55;
}

.consult-inclusions {
  display: grid;
  gap: 0.48rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.consult-inclusions li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.5;
}

.consult-inclusions li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 600;
}

.client-footage-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  line-height: 1.55;
}

.shared-calendar {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 5, 7, 0.18);
}

.shared-calendar h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.consult-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.consult-tags li {
  padding: 0.36rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-dark {
  border-color: rgba(255, 255, 255, 0.25);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.04) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(255, 255, 255, 0.04) 50%, transparent 50.3%),
    rgba(255, 255, 255, 0.05);
  background-size: 28px 28px;
}

.calendar-dark strong { color: var(--white); }
.calendar-dark p { color: rgba(255, 255, 255, 0.55); }

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
  border-top: 1px solid var(--line);
}

.details-grid details {
  border-bottom: 1px solid var(--line);
}

.details-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  list-style: none;
}

.details-grid summary::-webkit-details-marker { display: none; }
.details-grid summary span {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 1.3rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}
.details-grid details[open] summary span { transform: rotate(45deg); }
.details-grid details p { padding-right: 2rem; color: var(--muted); font-size: 0.85rem; }
.details-grid details a { color: var(--coral); text-decoration: underline; }

body[data-page="experience"] .closing-cta {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 87, 87, 0.24), transparent 27%),
    radial-gradient(circle at 88% 74%, rgba(228, 146, 55, 0.11), transparent 24%),
    var(--navy);
}

body[data-page="experience"] .closing-cta::before {
  display: none;
}

/* About */
.about-hero {
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, var(--blush) 0 40%, var(--cream) 40%);
}

.about-hero-image {
  position: relative;
}

.about-hero-image .media-placeholder {
  min-height: 640px;
  box-shadow: var(--shadow);
}

.about-hero-image > span {
  position: absolute;
  right: -2.6rem;
  bottom: 2.8rem;
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.about-hero-copy .lead {
  max-width: 680px;
}

body[data-page="about"] .about-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  letter-spacing: -0.04em;
}

body[data-page="about"] .about-hero-copy .script-accent,
body[data-page="about"] .values-copy .script-accent {
  color: var(--coral);
  font-size: clamp(2.35rem, 4.2vw, 3.9rem);
}

body[data-page="about"] .about-story h2,
body[data-page="about"] .approach-copy h2,
body[data-page="about"] .values-copy h2,
body[data-page="about"] .personal-heading h2,
body[data-page="about"] .closing-cta h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
}

.about-hero-copy > p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.story-lede {
  max-width: 770px;
}

.story-columns {
  display: grid;
  max-width: 1000px;
  margin: 2rem 0 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 7rem);
}

.story-columns p {
  color: var(--muted);
}

.large-quote {
  max-width: 1000px;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.2;
  text-align: center;
}

.approach-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.approach-visual {
  position: relative;
  padding: 0 4rem 4rem 0;
}

.approach-visual > .tall {
  min-height: 700px;
}

.approach-visual .small-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  min-height: 270px;
  border: 12px solid var(--blush);
}

.approach-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.plain-checks {
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.plain-checks li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.personal-grid span {
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.values-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.values-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.values-copy > p:not(.script-accent) {
  max-width: 760px;
}

.values-closing {
  margin-top: 1.8rem;
  padding: 1rem 0 1rem 1.1rem;
  border-left: 3px solid var(--coral);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
}

.values-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.values-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.values-list span::before {
  color: var(--coral);
  content: "+";
  font-size: 0.8rem;
}

.personal-heading {
  max-width: 700px;
}

.personal-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.personal-grid > div {
  min-height: 200px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.personal-grid p {
  margin: 3rem 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.4;
}

body[data-page="about"] .personal-grid span {
  opacity: 0.48;
  font-size: 0.55rem;
}

body[data-page="about"] .closing-cta {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 87, 87, 0.24), transparent 27%),
    radial-gradient(circle at 88% 74%, rgba(228, 146, 55, 0.11), transparent 24%),
    var(--navy);
}

body[data-page="about"] .closing-cta::before {
  display: none;
}

/* Contact */
.contact-hero {
  display: grid;
  min-height: 580px;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.45fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - var(--max)) / 2));
}

.contact-hero-copy > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

body[data-page="contact"] .contact-hero-copy h1,
.thank-you-page .contact-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  letter-spacing: -0.04em;
}

body[data-page="contact"] .contact-hero-copy .script-accent,
body[data-page="contact"] .instagram-copy .script-accent,
.thank-you-page .contact-hero-copy .script-accent {
  color: var(--coral);
  font-size: clamp(2.35rem, 4.2vw, 3.9rem);
}

body[data-page="contact"] .quick-book h2,
body[data-page="contact"] .custom-contact-strip h2,
body[data-page="contact"] .contact-form-wrap h2,
body[data-page="contact"] .instagram-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
}

.contact-note {
  padding: 3rem;
  border-left: 4px solid var(--coral);
  background: var(--blush);
}

.contact-note span {
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-note strong {
  display: block;
  margin: 1rem 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.quick-book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(52, 62, 89, 0.14);
}

.quick-book-card {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: center;
  padding: 1.7rem 3.5rem 1.7rem 1.7rem;
  border-top: 3px solid var(--coral);
  background: var(--cream);
  transition: background 180ms ease, color 180ms ease;
}

.quick-book-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
}

.quick-book-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.quick-book-card b {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--coral);
}

.quick-book-card:hover {
  background: var(--navy);
}

.quick-book-card:hover h3,
.quick-book-card:hover p {
  color: var(--white);
}

.custom-contact-strip {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding: clamp(4rem, 8vw, 7rem) max(24px, calc((100vw - var(--max)) / 2));
}

.custom-contact-strip h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.custom-contact-copy p {
  margin-bottom: 1.7rem;
}

.contact-main {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-form-wrap h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.contact-form {
  margin-top: 3rem;
}

.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label small {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(52, 62, 89, 0.35);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 52px;
}

.contact-form textarea {
  padding: 0.8rem 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--coral);
  background: rgba(255, 87, 87, 0.04);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-form .consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.75rem;
  margin: 0 0 1.8rem;
}

.contact-form .consent-field input {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
  accent-color: var(--coral);
}

.contact-form .consent-field > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.contact-form .consent-field a,
.policy-page a,
.policy-contact-card a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-hero {
  align-items: center;
}

.policy-date {
  color: var(--muted);
  font-size: 0.76rem;
}

.policy-contact-card {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(52, 62, 89, 0.16);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.policy-contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.policy-contact-card a {
  display: block;
  width: fit-content;
  margin-top: 0.55rem;
}

.policy-page {
  max-width: 1080px;
}

.policy-intro {
  max-width: 820px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.45;
}

.policy-sections {
  display: grid;
  gap: clamp(3.5rem, 7vw, 6rem);
}

.policy-section {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.policy-section p,
.policy-section ul {
  max-width: 820px;
}

.policy-section li + li {
  margin-top: 0.6rem;
}

.policy-inline-contact {
  max-width: 820px;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-style: normal;
}

.policy-inline-contact strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: 0.78rem;
}

.contact-details .media-placeholder {
  min-height: 470px;
  margin-bottom: 2.5rem;
}

.contact-detail-block {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.contact-detail-block p,
.contact-detail-block a {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-detail-block a:hover {
  color: var(--coral);
}

.instagram-strip {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.48fr);
  gap: 3rem;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) clamp(5rem, 9vw, 9rem);
}

.instagram-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.instagram-grid .media-placeholder {
  min-height: 0;
  aspect-ratio: 1;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .feature-card:not(.feature-card-large) { grid-template-columns: 1fr; }
  .feature-card-wide { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) !important; }
  .feature-card:not(.feature-card-large) .media-placeholder { min-height: 300px; }
  .consultation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-grid { grid-auto-rows: 300px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .header-inner { width: min(var(--max), calc(100% - 32px)); }
  .nav-toggle { display: block; z-index: 2; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 28px 50px rgba(4, 5, 7, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms ease, opacity 180ms ease;
  }
  .site-nav.is-open { max-height: calc(100svh - var(--header-height)); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 1.1rem 24px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { border: 0; background: var(--navy); color: var(--white) !important; }
  .page-hero,
  .about-hero,
  .contact-hero { grid-template-columns: 1fr; }
  .page-hero { padding-top: 5rem; }
  .page-hero-art { height: 440px; }
  .page-hero-portfolio::before { top: 43%; width: 72%; height: 50%; }
  .page-hero-portfolio .portfolio-hero-title { max-width: 700px; }
  .portfolio-hero-serif { font-size: clamp(3.3rem, 8vw, 5rem); }
  .portfolio-hero-script { font-size: clamp(5.4rem, 13vw, 8rem); }
  .experience-hero { background: var(--cream); }
  .experience-hero-visual { align-items: flex-start; }
  .experience-hero-visual .media-placeholder { width: 100%; }
  .experience-hero-visual p { width: 100%; }
  .about-hero { background: linear-gradient(180deg, var(--blush) 0 48%, var(--cream) 48%); }
  .about-hero-image { width: min(560px, 88%); }
  .about-hero-image > span { right: -2.4rem; }
  .contact-hero { min-height: auto; }
  .contact-note { width: min(420px, 100%); }
  .section-heading,
  .service-group-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading > a,
  .section-heading > p,
  .service-group-heading > p { justify-self: start; }
  .google-rating { justify-self: start; }
  .feature-card-large { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card { min-height: 0; }
  .about-preview-grid,
  .approach-grid,
  .values-section,
  .custom-contact-strip,
  .contact-main,
  .instagram-strip { grid-template-columns: 1fr; }
  .about-preview-grid { gap: 4rem; }
  .about-preview-copy { max-width: 700px; }
  .portrait-frame { width: min(620px, 100%); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .film-grid { grid-template-columns: 1fr; }
  .film-card .video { aspect-ratio: 16 / 8; }
  .package-card { grid-template-columns: 1fr; }
  .package-card-reverse .package-visual { order: 0; }
  .package-visual { min-height: 500px; }
  .content-partnership-grid { grid-template-columns: 1fr; }
  .booking-shell,
  .shared-calendar { grid-template-columns: 1fr; }
  .story-columns { max-width: none; margin-left: 0; }
  .approach-copy { max-width: 720px; }
  .personal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .instagram-copy { text-align: center; }
  .instagram-copy .text-link { justify-content: center; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  body[data-page] .page-hero-copy h1.editorial-heading,
  body[data-page] .about-hero-copy h1.editorial-heading,
  body[data-page] .contact-hero-copy h1.editorial-heading,
  .thank-you-page .contact-hero-copy h1.editorial-heading {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
    line-height: 1.02;
  }
  body[data-page] .section h2.editorial-heading,
  body[data-page] .custom-contact-strip h2.editorial-heading,
  body[data-page] .closing-cta h2.editorial-heading {
    font-size: clamp(2.15rem, 9.8vw, 3.2rem);
    line-height: 1.07;
  }
  .brand-logo { height: 54px; }
  .footer-brand .brand-logo { width: 195px; height: auto; }
  .home-hero { min-height: calc(100svh - var(--header-height)); }
  .hero-content { width: calc(100% - 32px); padding-bottom: 2rem; }
  .hero-content h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero-content h1.home-hero-title { margin-bottom: 1rem; font-size: clamp(2.8rem, 13vw, 4.35rem); }
  .home-hero-title .hero-script { margin-top: 0.1em; font-size: 0.8em; }
  .hero-content .button-row { margin-top: 1.4rem; }
  .hero-copy { line-height: 1.6; }
  .hero-content .button { width: 100%; }
  .image-note { right: 16px; bottom: 14px; max-width: 60%; text-align: right; }
  .scroll-cue { display: none; }
  .section { padding-right: 20px; padding-left: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card-large { grid-column: auto; grid-template-columns: 1fr; min-height: 0; }
  .feature-card-wide { grid-column: auto; grid-template-columns: 1fr !important; }
  .feature-card .media-placeholder { min-height: 340px; }
  .feature-copy { min-height: 300px; }
  .editorial-grid { grid-auto-rows: 170px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-grid .wide { grid-column: span 2; }
  .media-placeholder.portrait { min-height: 500px; }
  .page-hero { min-height: auto; padding: 4rem 20px; }
  .page-hero-art { height: 360px; }
  .page-hero-art .media-placeholder { width: 56%; }
  .page-hero-portfolio { gap: 2.7rem; padding-top: 3.5rem; padding-bottom: 4.5rem; }
  .page-hero-portfolio::before { top: 49%; right: -12%; width: 88%; height: 43%; }
  .page-hero-portfolio .portfolio-hero-title { max-width: 100%; margin-bottom: 1.7rem; }
  .portfolio-hero-serif { padding-right: 0.05em; font-size: clamp(2.35rem, 11.7vw, 3.4rem); letter-spacing: -0.045em; line-height: 1; }
  .portfolio-hero-script { margin-top: 0.11em; margin-left: 0.12em; font-size: clamp(4.6rem, 23vw, 6.8rem); line-height: 0.76; }
  .page-hero-portfolio .page-hero-copy > p:not(.eyebrow) { max-width: 36rem; }
  .page-hero-portfolio .page-hero-art::before { top: 6%; right: 1%; width: 7px; height: 46px; }
  .portfolio-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-list { justify-content: flex-start; }
  .portfolio-grid { grid-auto-rows: 260px; grid-template-columns: 1fr; }
  .portfolio-item.item-tall { grid-row: span 1; min-height: 420px; }
  .portfolio-item.item-wide { grid-column: span 1; }
  .portfolio-caption { transform: none; opacity: 1; }
  .service-jump { width: 100%; overflow-x: auto; grid-template-columns: repeat(5, minmax(145px, 1fr)); }
  .service-jump a { min-height: 66px; }
  .package-card { margin-right: -4px; margin-left: -4px; }
  .package-visual { min-height: 380px; }
  .package-content { padding: 1.7rem; }
  .package-title-row { flex-direction: column; }
  .price span { text-align: left; }
  .deliverables ul { grid-template-columns: 1fr; }
  .content-partnership-card { min-height: 0; padding: 1.7rem; }
  .partnership-meta { grid-template-columns: 1fr; }
  .booking-shell { margin-right: -4px; margin-left: -4px; padding: 1.4rem; }
  .calendar-placeholder { min-height: 300px; padding: 1.2rem; }
  .consultation-grid { grid-template-columns: 1fr; }
  .consult-card { min-height: 0; }
  .shared-calendar { padding: 1.4rem; }
  .details-grid { grid-template-columns: 1fr; }
  .about-hero { min-height: auto; padding: 4rem 20px; }
  .about-hero-image { width: calc(100% - 25px); }
  .about-hero-image .media-placeholder { min-height: 500px; }
  .story-columns { grid-template-columns: 1fr; gap: 0; }
  .approach-visual { padding: 0 2.2rem 2.2rem 0; }
  .approach-visual > .tall { min-height: 520px; }
  .approach-visual .small-overlay { min-height: 190px; border-width: 7px; }
  .personal-grid { grid-template-columns: 1fr; }
  .personal-grid > div { min-height: 155px; }
  .personal-grid p { margin-top: 2rem; }
  .contact-hero { padding: 4rem 20px; }
  .contact-note { padding: 2rem; }
  .quick-book-grid { grid-template-columns: 1fr; }
  .quick-book-card { min-height: 190px; }
  .quick-book-card h3 { margin-top: 0; }
  .custom-contact-strip { padding-right: 20px; padding-left: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .instagram-strip { padding-right: 20px; padding-left: 20px; }
  .instagram-grid { gap: 0.35rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
}

/* Focused booking pages */
.booking-header .header-inner {
  gap: 1.5rem;
}

.booking-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-back span {
  color: var(--coral);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.booking-back:hover span {
  transform: translateX(-4px);
}

.booking-main {
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 87, 87, 0.11), transparent 25%),
    linear-gradient(135deg, var(--blush), var(--cream) 48%);
}

.booking-layout {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) 0;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.booking-copy h1 {
  max-width: 560px;
  margin-bottom: 1.4rem;
  color: var(--navy);
  font-size: clamp(3.25rem, 5.4vw, 5.8rem);
}

.booking-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.booking-summary {
  display: grid;
  max-width: 500px;
  margin: 2rem 0 1.6rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-summary p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

.booking-summary span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-note {
  max-width: 500px;
  margin: 0;
  padding-left: 0.9rem;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 0.75rem;
}

.booking-embed-shell {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(52, 62, 89, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-embed-heading {
  padding: 0.75rem clamp(0.25rem, 1vw, 0.75rem) 1.5rem;
  border-bottom: 1px solid var(--line);
}

.booking-embed-heading h2 {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-style: normal;
}

.booking-embed-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.booking-month-jump {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1rem 0 0;
  padding: 1rem clamp(0.75rem, 1.5vw, 1.15rem);
  border: 1px solid rgba(255, 87, 87, 0.18);
  background: var(--blush);
}

.booking-month-jump p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.booking-month-jump p strong,
.booking-month-jump p span {
  display: block;
}

.booking-month-jump p strong {
  margin-bottom: 0.15rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.booking-month-jump label {
  flex: 0 0 min(250px, 46%);
}

.booking-month-jump label > span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--coral);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-month-jump select {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 2.4rem 0.65rem 0.8rem;
  border: 1px solid var(--navy);
  border-radius: 0;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
}

.booking-month-jump select:disabled {
  cursor: wait;
  opacity: 0.58;
}

.booking-embed-frame {
  position: relative;
  min-height: 760px;
  margin-top: 1rem;
  overflow: hidden;
  background: var(--white);
}

.cal-inline {
  width: 100%;
  min-height: 760px;
  overflow: auto;
}

.cal-inline iframe {
  display: block;
  width: 100% !important;
  min-height: 760px;
  border: 0 !important;
}

.booking-loader {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  min-height: 760px;
  align-content: center;
  justify-items: center;
  padding: 2rem;
  background: var(--white);
  color: var(--muted);
  text-align: center;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.booking-loader p {
  max-width: 430px;
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.booking-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--blush);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: booking-spin 850ms linear infinite;
}

.booking-embed-shell.is-ready .booking-loader {
  visibility: hidden;
  opacity: 0;
}

.booking-embed-shell.has-error .booking-spinner {
  display: none;
}

.booking-support {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.2rem clamp(0.25rem, 1vw, 0.75rem) 0.35rem;
  border-top: 1px solid var(--line);
}

.booking-support p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

.booking-support a {
  color: var(--coral);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-fallback {
  flex: 0 1 340px;
}

.booking-privacy {
  flex: 0 1 300px;
  text-align: right;
}

.booking-focused-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-focused-footer nav {
  display: flex;
  gap: 1.3rem;
}

.booking-focused-footer a:hover {
  color: var(--coral);
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-copy {
    position: static;
  }

  .booking-copy h1,
  .booking-copy > p:not(.eyebrow),
  .booking-summary,
  .booking-note {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .booking-header .header-inner {
    width: calc(100% - 32px);
  }

  .booking-back {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .booking-layout {
    width: calc(100% - 40px);
    padding: 3rem 0;
  }

  .booking-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.1rem);
    line-height: 1.02;
  }

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

  .booking-embed-shell {
    margin-right: -4px;
    margin-left: -4px;
    padding: 0.75rem;
  }

  .booking-month-jump {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .booking-month-jump label {
    flex-basis: auto;
  }

  .booking-embed-frame,
  .cal-inline,
  .cal-inline iframe,
  .booking-loader {
    min-height: 720px;
  }

  .booking-support,
  .booking-focused-footer {
    flex-direction: column;
  }

  .booking-fallback,
  .booking-privacy {
    flex-basis: auto;
    text-align: left;
  }

  .booking-focused-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-spinner {
    animation-duration: 1.8s;
  }
}
