:root {
  --paper: #f4efe8;
  --paper-2: #e9dfd2;
  --ink: #181614;
  --muted: #746a61;
  --line: rgba(24, 22, 20, 0.14);
  --accent: #8f6556;
  --accent-dark: #5f3d34;
  --cream: #fffaf3;
  --shadow: 0 30px 80px rgba(24, 22, 20, .12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 2026-07 responsive banner, transparent logo and editorial gallery */
.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
  height: 58px;
  font-size: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.08);
}

.hero-backdrop-image {
  position: absolute;
  inset: -5%;
  z-index: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: blur(30px) brightness(.56) saturate(.82);
  transform: scale(1.08);
}

.hero-fullscreen .hero-cover-image {
  object-fit: contain;
  object-position: center;
}

.hero-fullscreen .hero-title-scroll {
  font-family: "Playfair Display", "Cormorant Garamond", cursive;
  font-style: italic;
  font-weight: 500;
}

.gallery-intro {
  justify-self: end;
  width: min(440px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 72px;
  gap: 18px;
}

.gallery .gallery-item {
  grid-column: span 4;
  grid-row: span 5;
  min-height: 360px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(24, 22, 20, .09);
}

.gallery .gallery-item--portrait { grid-row: span 7; }
.gallery .gallery-item--landscape { grid-column: span 8; }
.gallery .gallery-item--square { grid-row: span 6; }

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease;
}

.gallery .gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.gallery .gallery-item figcaption {
  opacity: .94;
  transform: translateY(5px);
  transition: transform .35s ease, opacity .35s ease;
}

.gallery .gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .gallery .gallery-item,
  .gallery .gallery-item--portrait,
  .gallery .gallery-item--landscape,
  .gallery .gallery-item--square {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .brand { width: 94px; height: 52px; }

  .gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery .gallery-item,
  .gallery .gallery-item--portrait,
  .gallery .gallery-item--landscape,
  .gallery .gallery-item--square {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

/* Brittany Signature wordmark and Instagram booking CTA */
.site-header .brand {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
  border-radius: 0;
  padding: 2px 8px 4px;
  color: var(--ink);
}

.site-header .brand span {
  display: block;
  font-family: "Brittany Signature", "Allura", cursive;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-fullscreen .hero-title-scroll {
  font-family: "Brittany Signature", "Allura", cursive;
}

.instagram-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  padding: 17px 24px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease;
}

.instagram-appointment:hover {
  transform: translateY(-3px);
  background: #fff;
}

.instagram-appointment span { font-size: 18px; }

.instagram-booking {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(244,239,232,.2);
  border-radius: 26px;
  background: rgba(244,239,232,.06);
}

.instagram-booking > span {
  color: rgba(244,239,232,.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.instagram-booking p {
  margin: 18px 0 24px;
  color: rgba(244,239,232,.72);
  font-size: 16px;
  line-height: 1.7;
}

.instagram-booking strong {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .site-header .brand { padding-left: 2px; }
  .site-header .brand span { font-size: 32px; }
  .instagram-appointment { width: 100%; margin-top: 26px; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
picture { display: block; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  z-index: 2000;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ink);
}

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3000;
  background: var(--paper);
  transition: opacity .55s ease, visibility .55s ease;
}

.preloader.hide { opacity: 0; visibility: hidden; }

.preloader-inner {
  width: 180px;
  height: 180px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  animation: loaderIn 1.4s ease-in-out infinite alternate;
}

.preloader-inner span,
.preloader-inner small,
.brand,
h1, h2, blockquote {
  font-family: var(--serif);
  font-weight: 600;
}

.preloader-inner span { font-size: 36px; line-height: .9; }
.preloader-inner small { font-size: 22px; }

@keyframes loaderIn {
  from { transform: scale(.96); opacity: .72; }
  to { transform: scale(1.03); opacity: 1; }
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top .35s ease, transform .35s ease;
  pointer-events: none;
}

.site-header.is-scrolled { top: 12px; }

.navbar {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  height: 68px;
  padding: 0 24px;
  border: 1px solid rgba(24, 22, 20, .10);
  border-radius: 999px;
  background: rgba(244, 239, 232, .76);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  box-shadow: 0 18px 50px rgba(24, 22, 20, .08);
}

.brand {
  font-size: 25px;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(24,22,20,.72);
  font-size: 13px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .28s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform .3s ease;
}

.nav-toggle.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

 .hero {
  min-height: 165svh;
  padding: 118px 0 86px;
  display: block;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 38vw;
  height: 38vw;
  background: rgba(143, 101, 86, .08);
  border-radius: 50%;
  transform: translate(18%, -36%);
  pointer-events: none;
}

.hero-layout {
  position: sticky;
  top: 104px;
  display: block;
}

.hero-intro {
  width: min(760px, 100%);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  margin-top: 24px;
}

.hero-intro p,
.large-copy p,
.atelier-copy p,
.experience-copy p {
  width: min(560px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.location,
.section-label,
.gallery-item figcaption,
.hero-media figcaption,
.counter-line,
.footer h3,
.booking-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--muted);
}

h1 {
  margin: 28px 0 24px;
  font-size: clamp(64px, 9vw, 134px);
  line-height: .82;
  letter-spacing: -.07em;
}

.hero-actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: transform .25s ease, color .25s ease;
}

.text-link:hover { transform: translateX(4px); color: var(--accent-dark); }
.text-link.muted { color: var(--muted); }

.hero-mark { display: none; }

.hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
  height: calc(100svh - 172px);
  min-height: 570px;
}

.media-frame {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9cbbd;
  clip-path: none;
  isolation: isolate;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(24,22,20,.18), transparent 34%, rgba(24,22,20,.24)),
    linear-gradient(90deg, rgba(244,239,232,.16), transparent 28%, rgba(24,22,20,.10));
  pointer-events: none;
}

.hero-visual-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(24,22,20,.14), rgba(24,22,20,.26)),
    url("assets/nail-art.png?v=20260708nailart") center center / cover no-repeat;
  transform: scale(calc(1.02 + var(--hero-progress, 0) * .03)) translateY(calc(var(--hero-progress, 0) * -12px));
  transition: transform .08s linear;
}

.hero-focus-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: clamp(26px, 4vw, 52px);
}

.hero-focus-image {
  width: min(38vw, 520px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(24, 22, 20, .24);
  transform: scale(calc(1 + var(--hero-progress, 0) * .02)) translateY(calc(var(--hero-progress, 0) * -10px));
  transition: transform .08s linear;
  image-rendering: auto;
}

.hero-title-scroll {
  position: absolute;
  left: clamp(22px, 6vw, 82px);
  top: 47%;
  z-index: 2;
  display: grid;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(72px, 13vw, 190px);
  font-weight: 600;
  line-height: .75;
  letter-spacing: -.08em;
  text-shadow: 0 22px 70px rgba(0,0,0,.28);
  opacity: var(--hero-title-opacity, 0);
  transform: translate3d(0, var(--hero-title-y, -22vh), 0) scale(var(--hero-title-scale, .96));
  transition: opacity .08s linear, transform .08s linear;
  pointer-events: none;
}

.hero-title-scroll span:last-child {
  padding-left: clamp(34px, 8vw, 124px);
}

.hero-banner-meta {
  position: absolute;
  inset: auto clamp(18px, 3vw, 34px) clamp(18px, 3vw, 34px) clamp(18px, 3vw, 34px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-banner-meta a {
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(24,22,20,.16);
  backdrop-filter: blur(12px);
  transition: background .25s ease, transform .25s ease;
}

.hero-banner-meta a:hover {
  transform: translateY(-2px);
  background: rgba(24,22,20,.36);
}

.hero-media figcaption {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 3;
  display: flex;
  gap: 18px;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,.28);
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: -58px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--muted);
  padding-left: 50px;
}

.scroll-hint::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: .38fr 1fr;
  gap: clamp(34px, 7vw, 120px);
  border-top: 1px solid var(--line);
  padding-top: clamp(50px, 6vw, 82px);
}

.large-copy h2,
.services-heading h2,
.atelier-copy h2,
.gallery-head h2,
.experience-copy h2,
.appointment-layout h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.06em;
}

.large-copy p,
.atelier-copy p,
.experience-copy p { margin-top: 28px; }

.signature {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 28px;
}

.services {
  background: var(--ink);
  color: var(--paper);
}

.services .section-label,
.services .service-row span,
.services .service-row p { color: rgba(244,239,232,.62); }

.services-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 7vw, 96px);
  align-items: start;
}

.services-heading {
  position: sticky;
  top: 120px;
}

.service-list {
  border-top: 1px solid rgba(244,239,232,.17);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 42px;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(244,239,232,.17);
}

.service-row h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.05em;
}

.service-row p {
  margin: 0;
  line-height: 1.75;
}

.service-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244,239,232,.25);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.service-row:hover a {
  background: var(--paper);
  color: var(--ink);
  transform: translate(4px, -4px);
}

.atelier-layout,
.quote-layout,
.experience-layout,
.appointment-layout,
.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.atelier-copy { max-width: 520px; }

.counter-line {
  margin-top: 52px;
  display: flex;
  gap: 76px;
  color: var(--ink);
}

.portrait,
.quote-image,
.experience-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.portrait {
  height: min(72vw, 720px);
  border-radius: 320px 320px 28px 28px;
}

.portrait img,
.quote-image img,
.experience-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.portrait:hover img,
.quote-image:hover img,
.experience-image:hover img,
.gallery-item:hover img { transform: scale(1.045); }

.portrait figcaption,
.quote-image figcaption {
  position: absolute;
  left: 26px;
  bottom: 24px;
  padding: 10px 16px;
  background: rgba(244,239,232,.78);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.quote-section { padding-top: 40px; }

.quote-layout {
  grid-template-columns: .9fr 1.1fr;
}

.quote-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(42px, 8vw, 90px) 0;
}

blockquote {
  margin: 28px 0 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.06em;
}

.quote-image {
  height: 520px;
  border-radius: 28px;
}

.gallery { padding-top: 70px; }

.gallery-head {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.filter-pills {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.pill:hover,
.pill.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper-2);
}

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

.gallery-item.hide {
  display: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--paper);
  text-shadow: 0 2px 22px rgba(0,0,0,.45);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.52));
}

.gallery-item figcaption { z-index: 1; }

.experience {
  background: var(--paper-2);
}

.experience-image {
  height: 620px;
  border-radius: 28px;
}

.experience-copy { max-width: 540px; justify-self: end; }
.experience-copy .text-link { margin-top: 34px; }

.appointment-layout {
  align-items: start;
  padding: clamp(38px, 6vw, 76px);
  background: var(--ink);
  color: var(--paper);
  border-radius: 34px;
}

.appointment-layout .section-label { color: rgba(244,239,232,.62); }

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form label {
  color: rgba(244,239,232,.72);
}

.booking-form input,
.booking-form select {
  width: 100%;
  margin-top: 9px;
  border: 1px solid rgba(244,239,232,.2);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  padding: 14px 0;
  outline: 0;
  border-width: 0 0 1px;
}

.booking-form input::placeholder { color: rgba(244,239,232,.38); }
.booking-form select option { color: var(--ink); }

.form-submit {
  grid-column: 1 / -1;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 17px 24px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 8px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.form-submit:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--paper);
}

.footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-layout {
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  align-items: start;
}

.footer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 12px 0 0;
}

.footer h3 {
  margin: 0 0 12px;
  color: var(--ink);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .navbar { height: 64px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 82px 22px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a { padding: 16px; border-bottom: 1px solid var(--line); }
  .nav-menu a:last-child { border-bottom: 0; }

  .hero-layout,
  .split-section,
  .services-layout,
  .atelier-layout,
  .quote-layout,
  .experience-layout,
  .appointment-layout,
  .gallery-head,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 116px; align-items: start; }
  .hero-copy { padding-bottom: 0; }
  .media-frame { min-height: 520px; border-radius: 220px 220px 24px 24px; }
  .hero-media figcaption { left: 20px; bottom: 20px; transform: none; color: var(--paper); text-shadow: 0 2px 20px rgba(0,0,0,.35); }
  .scroll-hint { position: relative; margin-top: 22px; }
  .hero-mark { bottom: 44%; }
  .services-heading { position: relative; top: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }
  .filter-pills { justify-content: flex-start; }
  .footer-layout { gap: 34px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 12px; }
  .navbar { width: min(100% - 28px, 1180px); padding: 0 16px; }
  .brand { font-size: 21px; }
  h1 { font-size: clamp(60px, 18vw, 86px); }
  .section { padding: 78px 0; }
  .hero-layout { grid-template-columns: 1fr; }
  .media-frame { min-height: 440px; }
  .service-row { grid-template-columns: 44px 1fr 34px; gap: 14px; padding: 28px 0; }
  .service-row h3 { font-size: 36px; }
  .portrait, .experience-image, .quote-image { height: 430px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .booking-form { grid-template-columns: 1fr; }
  .appointment-layout { padding: 30px 22px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}


@media (max-width: 980px) {
  .hero { min-height: 155svh; padding-top: 98px; }
  .hero-layout { top: 88px; }
  .hero-media { height: calc(100svh - 124px); min-height: 520px; }
  .hero-focus-image { width: min(64vw, 480px); }
  .media-frame { border-radius: 28px; }
  .hero-intro { display: block; }
  .hero-intro .text-link { margin-top: 18px; }
  .hero-title-scroll { font-size: clamp(68px, 17vw, 142px); left: 26px; }
}

@media (max-width: 640px) {
  .hero { min-height: 150svh; padding-top: 90px; }
  .hero-layout { top: 82px; }
  .hero-media { height: calc(100svh - 112px); min-height: 500px; }
  .hero-focus-shell { padding: 22px; }
  .hero-focus-image { width: min(78vw, 420px); border-radius: 22px; }
  .media-frame { border-radius: 24px; }
  .hero-title-scroll {
    top: 44%;
    left: 18px;
    right: 18px;
    font-size: clamp(58px, 18vw, 96px);
  }
  .hero-title-scroll span:last-child { padding-left: 34px; }
  .hero-banner-meta {
    align-items: flex-start;
    flex-direction: column;
    letter-spacing: .10em;
  }
  .hero-banner-meta a { padding: 10px 15px; }
  .scroll-hint { bottom: -54px; }
}


/* Full-screen hero revision: 20260708slowitalic */
.hero.hero-fullscreen {
  position: relative;
  min-height: 240svh;
  padding: 0;
  overflow: visible;
  background: var(--ink);
}

.hero.hero-fullscreen::before { display: none; }

.hero-full-layout {
  width: 100%;
  max-width: none;
  position: sticky;
  top: 0;
  height: 100svh;
  display: block;
  overflow: hidden;
}

.hero-fullscreen .hero-media {
  height: 100svh;
  min-height: 100svh;
  margin: 0;
}

.hero-fullscreen .media-frame {
  height: 100svh;
  min-height: 100svh;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: #191716;
}

.hero-fullscreen .media-frame::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(14, 13, 12, .62) 0%, rgba(14, 13, 12, .34) 38%, rgba(14, 13, 12, .08) 64%, rgba(14, 13, 12, .38) 100%),
    linear-gradient(180deg, rgba(14, 13, 12, .32) 0%, rgba(14, 13, 12, .04) 42%, rgba(14, 13, 12, .55) 100%);
}

.hero-cover-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(calc(1.01 + var(--hero-progress, 0) * .035));
  transition: transform .08s linear;
  image-rendering: auto;
}

.hero-copy-overlay {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 7vw, 112px);
  top: clamp(132px, 21vh, 210px);
  width: min(760px, calc(100% - 48px));
  color: var(--cream);
  pointer-events: none;
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(0, var(--hero-copy-y, 0px), 0);
  transition: opacity .08s linear, transform .08s linear;
}

.hero-copy-overlay .location {
  color: rgba(255,255,255,.78);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-copy-overlay h1 {
  margin: 22px 0 0;
  width: min(680px, 100%);
  color: var(--cream);
  font-size: clamp(52px, 7.6vw, 128px);
  line-height: .88;
  letter-spacing: -.075em;
  text-shadow: 0 24px 80px rgba(0,0,0,.38);
}

.hero-fullscreen .hero-title-scroll {
  left: 50%;
  top: 52%;
  z-index: 5;
  display: block;
  width: max-content;
  max-width: calc(100% - 36px);
  color: var(--cream);
  font-family: "Playfair Display", "Cormorant Garamond", "Bodoni Moda", serif;
  font-size: clamp(58px, 10.4vw, 184px);
  font-weight: 500;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.075em;
  text-align: center;
  white-space: nowrap;
  opacity: var(--hero-title-opacity, 0);
  transform: translate3d(-50%, -50%, 0) translateX(var(--hero-title-x, 96vw)) scale(var(--hero-title-scale, .94));
  transition: opacity .08s linear, transform .08s linear;
  text-shadow: 0 28px 90px rgba(0,0,0,.42);
  will-change: transform, opacity;
}

.hero-fullscreen .hero-title-scroll span:last-child { padding-left: 0; }

.hero-fullscreen .hero-banner-meta {
  z-index: 6;
  left: auto;
  right: clamp(24px, 5vw, 74px);
  bottom: clamp(24px, 5vh, 52px);
  inset: auto clamp(24px, 5vw, 74px) clamp(24px, 5vh, 52px) auto;
  display: flex;
  justify-content: flex-end;
}

.hero-fullscreen .hero-banner-meta a {
  border-color: rgba(255,255,255,.72);
  color: var(--cream);
  background: rgba(14,13,12,.18);
}

.hero-fullscreen .hero-media figcaption {
  z-index: 6;
  left: clamp(24px, 5vw, 74px);
  top: auto;
  bottom: clamp(24px, 5vh, 52px);
  color: rgba(255,255,255,.74);
}

.hero-fullscreen .scroll-hint {
  position: absolute;
  z-index: 6;
  left: clamp(24px, 7vw, 112px);
  bottom: clamp(76px, 11vh, 116px);
  color: rgba(255,255,255,.72);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-fullscreen .scroll-hint::before { background: rgba(255,255,255,.78); }

.hero-fullscreen .hero-intro,
.hero-fullscreen .hero-visual-layer,
.hero-fullscreen .hero-focus-shell,
.hero-fullscreen .hero-focus-image { display: none !important; }

@media (max-width: 980px) {
  .hero.hero-fullscreen { min-height: 225svh; padding: 0; }
  .hero-full-layout { top: 0; height: 100svh; }
  .hero-fullscreen .hero-media,
  .hero-fullscreen .media-frame { height: 100svh; min-height: 100svh; border-radius: 0; }
  .hero-copy-overlay { top: 128px; left: 26px; width: calc(100% - 52px); }
  .hero-copy-overlay h1 { font-size: clamp(50px, 13.5vw, 104px); width: min(680px, 100%); }
  .hero-fullscreen .hero-title-scroll { left: 50%; top: 53%; font-size: clamp(52px, 15vw, 132px); }
  .hero-fullscreen .scroll-hint { left: 26px; bottom: 92px; margin-top: 0; }
  .hero-fullscreen .hero-media figcaption { left: 26px; bottom: 28px; }
}

@media (max-width: 640px) {
  .hero.hero-fullscreen { min-height: 235svh; padding: 0; }
  .hero-full-layout { top: 0; height: 100svh; }
  .hero-fullscreen .hero-media { height: 100svh; min-height: 100svh; }
  .hero-fullscreen .media-frame { height: 100svh; min-height: 100svh; border-radius: 0; }
  .hero-cover-image { object-position: center center; }
  .hero-copy-overlay { top: 116px; left: 18px; width: calc(100% - 36px); }
  .hero-copy-overlay h1 {
    font-size: clamp(48px, 17vw, 82px);
    line-height: .88;
    letter-spacing: -.07em;
  }
  .hero-fullscreen .hero-title-scroll {
    left: 50%;
    top: 54%;
    right: auto;
    font-size: clamp(50px, 16vw, 86px);
    white-space: normal;
    width: min-content;
    min-width: 320px;
    max-width: calc(100% - 32px);
    letter-spacing: -.065em;
  }
  .hero-fullscreen .hero-banner-meta {
    right: 18px;
    bottom: 24px;
    align-items: flex-end;
  }
  .hero-fullscreen .hero-banner-meta a { padding: 10px 15px; }
  .hero-fullscreen .hero-media figcaption { left: 18px; bottom: 24px; }
  .hero-fullscreen .scroll-hint { left: 18px; bottom: 82px; }
}

/* Keep the complete banner visible at every viewport ratio. */
.hero-fullscreen .hero-cover-image {
  object-fit: contain;
  object-position: center;
}

/* Centered hero, readable logo and Pinterest-style gallery. */
.site-header .navbar { height: 82px; }

.site-header .brand {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  overflow: hidden;
  border-radius: 50%;
}

.site-header .brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero.hero-fullscreen { min-height: 360svh; }

.hero-copy-overlay {
  left: 50%;
  width: min(900px, calc(100% - 48px));
  text-align: center;
  transform: translate3d(-50%, var(--hero-copy-y, 0px), 0);
}

.hero-copy-overlay h1 {
  width: 100%;
  margin-inline: auto;
}

.hero-fullscreen .hero-title-scroll {
  font-family: "Allura", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.035em;
}

.gallery .gallery-grid {
  display: block;
  column-count: 4;
  column-gap: 18px;
}

.gallery .gallery-item,
.gallery .gallery-item--portrait,
.gallery .gallery-item--landscape,
.gallery .gallery-item--square,
.gallery .gallery-item--pin {
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 18px;
  break-inside: avoid;
  aspect-ratio: auto;
}

.gallery .gallery-item img {
  width: 100%;
  height: auto;
  min-height: 210px;
  max-height: 520px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .hero.hero-fullscreen { min-height: 340svh; }
  .hero-copy-overlay { left: 50%; width: min(760px, calc(100% - 40px)); }
  .gallery .gallery-grid { column-count: 3; }
}

@media (max-width: 640px) {
  .site-header .navbar { height: 68px; }
  .site-header .brand { width: 62px; height: 62px; flex-basis: 62px; }
  .hero.hero-fullscreen { min-height: 330svh; }
  .hero-copy-overlay { left: 50%; top: 112px; width: calc(100% - 28px); }
  .hero-copy-overlay h1 { font-size: clamp(46px, 15vw, 72px); }
  .gallery .gallery-grid { column-count: 2; column-gap: 10px; }
  .gallery .gallery-item,
  .gallery .gallery-item--portrait,
  .gallery .gallery-item--landscape,
  .gallery .gallery-item--square,
  .gallery .gallery-item--pin { margin-bottom: 10px; }
  .gallery .gallery-item img { min-height: 150px; max-height: 360px; }
  .gallery .gallery-item figcaption { left: 12px; right: 12px; bottom: 12px; font-size: 9px; }
}

/* Final wordmark override: text replaces the former circular PNG. */
.site-header .brand {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
  border-radius: 0;
  padding: 2px 8px 4px;
}

.site-header .brand span {
  display: block;
  font-family: "Brittany Signature", "Allura", cursive;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-fullscreen .hero-title-scroll {
  font-family: "Brittany Signature", "Allura", cursive;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 640px) {
  .site-header .brand {
    width: auto;
    height: auto;
    flex-basis: auto;
    padding-left: 2px;
  }

  .site-header .brand span { font-size: 32px; }
}

/* Smaller signatures and a longer, slower scroll runway. */
.hero.hero-fullscreen { min-height: 430svh; }

.site-header .brand span {
  font-size: clamp(32px, 2.7vw, 44px);
}

.hero-fullscreen .hero-title-scroll {
  font-size: clamp(48px, 8.6vw, 140px);
}

@media (max-width: 980px) {
  .hero.hero-fullscreen { min-height: 415svh; }
  .hero-fullscreen .hero-title-scroll { font-size: clamp(44px, 12vw, 100px); }
}

@media (max-width: 640px) {
  .hero.hero-fullscreen { min-height: 400svh; }
  .site-header .brand span { font-size: 27px; }
  .hero-fullscreen .hero-title-scroll {
    font-size: clamp(40px, 12.5vw, 68px);
    min-width: 280px;
  }
}

/* LUMÉ-inspired full-runway word motion and footer typography. */
.site-header .brand span {
  font-size: clamp(26px, 2.1vw, 34px);
}

.hero-fullscreen .hero-title-scroll {
  color: #111;
  font-size: clamp(42px, 7.2vw, 112px);
  text-shadow: 0 2px 18px rgba(255,255,255,.34);
}

.footer .footer-brand {
  font-family: "Brittany Signature", "Allura", cursive;
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.footer .footer-layout a:not(.footer-brand) {
  font-family: var(--sans);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

@media (max-width: 640px) {
  .site-header .brand span { font-size: 23px; }
  .hero-fullscreen .hero-title-scroll {
    width: max-content;
    min-width: 0;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(34px, 10.5vw, 54px);
  }
  .footer .footer-brand { font-size: 23px; }
}

/* Stable, frame-synchronised hero motion on desktop and mobile. */
.hero-copy-overlay {
  left: 50%;
  top: 32%;
  width: min(920px, calc(100% - 48px));
  text-align: center;
  transform: translate3d(-50%, calc(-50% + var(--hero-copy-y, 0px)), 0);
  transition: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-copy-overlay h1 {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.hero-fullscreen .hero-title-scroll,
.hero-fullscreen .hero-cover-image {
  transition: none;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 980px) {
  .hero-copy-overlay {
    left: 50%;
    top: 30%;
    width: min(820px, calc(100% - 40px));
  }
}

@media (max-width: 640px) {
  .hero-copy-overlay {
    left: 50%;
    top: 29%;
    width: calc(100% - 28px);
  }

  .hero-copy-overlay h1 {
    font-size: clamp(44px, 14vw, 68px);
    line-height: .9;
  }

  .hero-fullscreen .hero-title-scroll {
    transform: translate3d(-50%, -50%, 0) translate3d(var(--hero-title-x, 96vw), 0, 0) scale(var(--hero-title-scale, .94));
    will-change: transform, opacity;
  }
}
