:root {
  --bg: #fcfbf9;
  --bg-alt: #f3f0ea;
  --surface: #ffffff;
  --ink: #161513;
  --ink-soft: #3a3733;
  --muted: #6f6b64;
  --line: rgba(22, 21, 19, 0.12);
  --line-soft: rgba(22, 21, 19, 0.07);
  --dark: #161513;
  --dark-line: rgba(252, 251, 249, 0.18);

  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  background: #ffffff;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p { margin: 0; }

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}
.button:hover { background: transparent; color: var(--ink); transform: translateY(-1px); }
.button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.button--lg { min-height: 54px; padding: 0 30px; font-size: 15px; }
.button--block { width: 100%; }

.button--ghost { background: transparent; color: var(--ink); }
.button--ghost:hover { background: var(--ink); color: var(--bg); }

.button--invert {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.button--invert:hover { background: transparent; color: var(--bg); border-color: var(--bg); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: gap 160ms var(--ease), border-color 160ms var(--ease);
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { gap: 12px; border-color: var(--ink); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand { display: grid; justify-items: start; gap: 2px; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0; }
.brand__logo {
  width: 116px;
  height: auto;
  mix-blend-mode: multiply;
}
.brand__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin-inline: auto; background: var(--ink); transition: transform 180ms var(--ease), opacity 180ms var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; }

/* Hero */
.hero { padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 7vw, 96px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero__title { font-size: clamp(40px, 6.4vw, 76px); }
.hero__lede {
  margin-top: 22px;
  max-width: 30ch;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
}
.hero__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin: 48px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__facts dt { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero__facts dd { margin: 4px 0 0; font-family: var(--font-display); font-weight: 500; }

.hero__media { margin: 0; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Sections */
.section { padding: clamp(56px, 9vw, 116px) 0; }
.section--alt { background: var(--bg-alt); }

.section__head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 10px; }
.section__intro { margin-top: 16px; color: var(--muted); }

.kicker {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker--light { color: rgba(252, 251, 249, 0.66); }

/* Services */
.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(22, 21, 19, 0.1); border-color: var(--line); }
.service-card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.service-card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px; flex: 1; }
.service-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.service-card__top h3 { font-size: 21px; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.service-card__body p { font-size: 15px; color: var(--muted); }
.service-card .meta { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.service-card__body .button { margin-top: auto; }
.service-card--feature { border-color: var(--ink); }

/* Band */
.band { position: relative; }
.band__img { width: 100%; height: clamp(280px, 42vw, 520px); object-fit: cover; }
.band__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(28px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  color: #fff;
}
.band__quote {
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

/* About */
.about { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.about__head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 10px; }
.about__text { display: grid; gap: 20px; max-width: 56ch; font-size: clamp(17px, 1.8vw, 19px); color: var(--ink-soft); }

/* Prices */
.prices { border-top: 1px solid var(--line); }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 16px 28px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.price-row__name { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.price-row__meta { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.price-row__amt { font-family: var(--font-display); font-weight: 600; font-size: 20px; min-width: 64px; text-align: right; }
.price-row--feature .price-row__name::after { content: " ·"; }
.prices__note { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* Reviews */
.reviews { max-width: 760px; text-align: center; margin-inline: auto; }
.reviews__quote {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}
.reviews__source { font-size: 14px; color: var(--muted); }

/* Booking (dark) */
.section--dark { background: var(--dark); color: var(--bg); }
.booking { max-width: 720px; }
.booking__title { font-size: clamp(30px, 4.6vw, 48px); margin: 12px 0 20px; }
.booking__lede { max-width: 52ch; color: rgba(252, 251, 249, 0.74); font-size: clamp(17px, 1.8vw, 19px); }
.booking .button { margin-top: 32px; }
.booking__hint { margin-top: 18px; font-size: 14px; color: rgba(252, 251, 249, 0.55); }

/* Contact */
.contact__head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.contact__head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 10px; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-style: normal;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact__item { display: grid; gap: 8px; }
.contact__label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact__value { font-family: var(--font-display); font-weight: 500; font-size: 17px; line-height: 1.4; }
a.contact__value { border-bottom: 1px solid var(--line); padding-bottom: 2px; width: fit-content; transition: border-color 160ms var(--ease); }
a.contact__value:hover { border-color: var(--ink); }
.contact__link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--muted); }
.contact__link:hover { color: var(--ink); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer__inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__brand { font-family: var(--font-display); font-weight: 600; }
.footer__logo {
  width: 112px;
  height: auto;
  mix-blend-mode: multiply;
}
.footer__meta { color: var(--muted); font-size: 14px; }
.footer__top { margin-left: auto; font-size: 14px; color: var(--muted); }
.footer__top:hover { color: var(--ink); }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .header__actions .button { display: none; }
  .nav-toggle { display: flex; }

  .mobile-nav {
    display: grid;
    gap: 4px;
    padding: 12px 22px 22px;
    border-top: 1px solid var(--line-soft);
    background: var(--bg);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 12px 4px; font-family: var(--font-display); font-weight: 500; border-bottom: 1px solid var(--line-soft); }
  .mobile-nav .button { margin-top: 12px; border-bottom: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 11; }
  .hero__facts { gap: 20px 32px; }
}

@media (max-width: 520px) {
  .services { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row__meta { grid-column: 1 / -1; order: 3; margin-top: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* Mobile-first homepage mock-up */
.home-shell {
  --home-bg: #ffffff;
  --home-ink: #030303;
  --home-muted: #6f6b64;
  --home-line: rgba(3, 3, 3, 0.12);
  --home-line-soft: rgba(3, 3, 3, 0.08);
  --home-shadow: 0 20px 58px rgba(3, 3, 3, 0.08);
  --home-radius-card: 24px;
  --home-radius-media: 28px;
  --home-radius-inner: 18px;
  --home-radius-control: 14px;
  --home-radius-field: 12px;
  --home-radius-input: 999px;
  --home-radius-textarea: 28px;
  --home-radius-pill: 999px;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--home-bg);
  color: var(--home-ink);
}

.home-shell :where(h1, h2, h3) {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--home-bg);
  border-bottom: 1px solid var(--home-line);
  transition:
    box-shadow 220ms var(--ease),
    background-color 220ms var(--ease);
}

.home-header.is-compact {
  box-shadow: 0 10px 26px rgba(3, 3, 3, 0.045);
}

.home-header__inner {
  --header-pill-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  width: min(100% - 42px, 900px);
  margin-inline: auto;
  transition: min-height 220ms var(--ease);
}

.home-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 min(72vw, 318px);
  max-width: min(72vw, 318px);
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition:
    max-width 220ms var(--ease),
    flex-basis 220ms var(--ease),
    opacity 220ms var(--ease);
}

.home-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  animation: logo-intro 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform-origin: center;
  transition: max-height 220ms var(--ease);
}

.home-header--hero-logo {
  position: relative;
  top: auto;
  z-index: 4;
  overflow: visible;
}

.home-header--hero-logo .home-header__inner {
  align-items: flex-start;
  min-height: 78px;
  padding-top: 4px;
}

.home-header--hero-logo .home-logo--hero {
  position: relative;
  z-index: 2;
  flex-basis: min(88vw, 390px);
  max-width: min(88vw, 390px);
  margin-bottom: -54px;
  transform: translateY(6px);
}

.home-header--hero-logo .home-logo--hero img {
  max-height: none;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.home-header--hero-logo + .home-main {
  padding-top: 78px;
}

@media (min-width: 760px) {
  .home-header--hero-logo .home-header__inner {
    min-height: 96px;
    padding-top: 6px;
  }

  .home-header--hero-logo .home-logo--hero {
    flex-basis: min(70vw, 520px);
    max-width: min(70vw, 520px);
    margin-bottom: -76px;
  }

  .home-header--hero-logo + .home-main {
    padding-top: 108px;
  }
}

@keyframes logo-intro {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.home-header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--header-pill-height);
  min-height: var(--header-pill-height);
  padding: 0 25px;
  border-radius: var(--home-radius-pill);
  background: var(--home-ink);
  color: var(--home-bg);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease);
}

.home-header-book:hover,
.home-header-book:focus-visible {
  background: #24221f;
  transform: translateY(-1px);
}

.home-main {
  width: min(100% - 42px, 900px);
  margin-inline: auto;
  padding: 38px 0 72px;
}

.home-hero {
  position: relative;
  display: grid;
  gap: 28px;
  isolation: isolate;
}

.hero-watermark {
  position: absolute;
  top: 18px;
  right: -18px;
  z-index: -1;
  width: min(42vw, 180px);
  height: auto;
  opacity: 0.035;
  filter: grayscale(100%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 18px;
  border-radius: inherit;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3, 3, 3, 0.045), transparent 44%),
    linear-gradient(180deg, #f9f8f5, #eeece7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(3, 3, 3, 0.06);
  border-radius: calc(var(--home-radius-media) - 10px);
  pointer-events: none;
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: var(--home-radius-pill);
  background: rgba(255, 255, 255, 0.48);
  color: rgba(3, 3, 3, 0.48);
  font-family: var(--font-display);
  font-size: clamp(0.86rem, 4vw, 1.1rem);
  font-weight: 700;
}

.photo-stack {
  position: relative;
  z-index: 1;
  height: 520px;
}

.photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--home-radius-media);
  background: #e9e8e5;
  box-shadow: var(--home-shadow);
  opacity: 1;
  transform: translate3d(var(--float-start-x), var(--float-start-y), 0) rotate(var(--float-start-rotate));
  animation: photo-card-float var(--float-duration) ease-in-out var(--float-delay) infinite;
  transition:
    box-shadow 180ms var(--ease);
  will-change: transform;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.04);
  animation: photo-image-drift 8s ease-in-out infinite alternate;
}

.photo-card--large {
  top: 0;
  left: 0;
  width: 67%;
  height: 76%;
  --photo-x: -22px;
  --photo-y: 26px;
  --photo-delay: 40ms;
  --float-start-x: 6px;
  --float-start-y: 7px;
  --float-start-rotate: 0.3deg;
  --float-x: -5px;
  --float-y: -9px;
  --float-rotate: -0.6deg;
  --float-duration: 5.8s;
  --float-delay: -1.1s;
}

.photo-card--large img {
  filter: none;
  object-position: 50% 18%;
}

.photo-card--tall {
  top: 58px;
  right: 0;
  width: 40%;
  height: 49%;
  --photo-x: 24px;
  --photo-y: 18px;
  --photo-delay: 180ms;
  --float-start-x: -5px;
  --float-start-y: 6px;
  --float-start-rotate: -0.4deg;
  --float-x: 6px;
  --float-y: -10px;
  --float-rotate: 0.7deg;
  --float-duration: 6.6s;
  --float-delay: -2.2s;
}

.photo-card--wide {
  right: 5%;
  bottom: 0;
  width: 62%;
  height: 28%;
  --photo-x: 0;
  --photo-y: 30px;
  --photo-delay: 300ms;
  --float-start-x: 4px;
  --float-start-y: 5px;
  --float-start-rotate: -0.2deg;
  --float-x: -6px;
  --float-y: -8px;
  --float-rotate: 0.5deg;
  --float-duration: 5.2s;
  --float-delay: -1.7s;
}

.photo-card--info {
  display: grid;
  background: #ffffff;
}

.photo-card--info-dark {
  border-color: rgba(3, 3, 3, 0.96);
  background: var(--home-ink);
  color: #ffffff;
}

.hero-info-card {
  display: grid;
  align-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 4vw, 30px);
  background:
    linear-gradient(145deg, rgba(3, 3, 3, 0.035), transparent 48%),
    #ffffff;
}

.photo-card--info-dark .hero-info-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 50%),
    var(--home-ink);
}

.hero-info-card span {
  color: var(--home-muted);
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 2.4vw, 0.78rem);
  font-weight: 700;
  line-height: 1.1;
}

.photo-card--info-dark .hero-info-card span {
  color: rgba(255, 255, 255, 0.62);
}

.hero-info-card strong {
  max-width: 8ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 6.6vw, 2.55rem);
  font-weight: 700;
  line-height: 0.98;
}

.photo-card--tall .hero-info-card strong {
  font-size: clamp(1.15rem, 5.1vw, 2.1rem);
}

.hero-info-card small {
  max-width: 17ch;
  color: var(--home-muted);
  font-size: clamp(0.78rem, 2.7vw, 0.95rem);
  font-weight: 600;
  line-height: 1.35;
}

.photo-card--info-dark .hero-info-card small {
  color: rgba(255, 255, 255, 0.72);
}

.photo-stack:hover .photo-card {
  box-shadow: 0 24px 70px rgba(3, 3, 3, 0.12);
}

@keyframes photo-card-float {
  0%,
  100% {
    transform: translate3d(var(--float-start-x), var(--float-start-y), 0) rotate(var(--float-start-rotate));
  }

  48% {
    transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-rotate));
  }
}

@keyframes photo-image-drift {
  from {
    transform: scale(1.04) translate3d(-1.5%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.5%, -1%, 0);
  }
}

.home-book-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: var(--home-radius-pill);
  background: var(--home-ink);
  color: var(--home-bg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  transition:
    transform 180ms var(--ease),
    background-color 180ms var(--ease);
}

.home-book-button:hover,
.home-book-button:focus-visible {
  background: #22201e;
  transform: translateY(-1px);
}

.home-hero-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.hero-next-slot {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  margin: -2px auto 0;
  padding: 0 16px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-pill);
  background: #ffffff;
  color: var(--home-ink);
  box-shadow: 0 10px 24px rgba(3, 3, 3, 0.035);
  font-family: var(--font-display);
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease);
}

.hero-next-slot[hidden] {
  display: none;
}

.hero-next-slot:hover,
.hero-next-slot:focus-visible {
  border-color: var(--home-ink);
  transform: translateY(-1px);
}

.hero-next-slot span {
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-next-slot strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.home-secondary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-pill);
  background: #ffffff;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease);
}

.home-secondary-button:hover,
.home-secondary-button:focus-visible {
  border-color: var(--home-ink);
  transform: translateY(-1px);
}

.home-card {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-card);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(3, 3, 3, 0.04);
}

.home-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.home-card__head h1,
.home-card__head h2 {
  font-size: 1.38rem;
}

.next-slots-card {
  margin-top: 30px;
}

.next-slots {
  display: grid;
  gap: 14px;
}

.next-slots__loading,
.next-slots__empty {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.next-slots__grid {
  display: grid;
  gap: 10px;
}

.next-slot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-inner);
  background: #fbfaf8;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.next-slot:hover,
.next-slot:focus-visible {
  border-color: rgba(3, 3, 3, 0.34);
  box-shadow: 0 14px 28px rgba(3, 3, 3, 0.06);
  transform: translateY(-1px);
}

.next-slot span {
  color: var(--home-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.next-slot strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.next-slot small {
  color: var(--home-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.next-slot small span {
  color: var(--home-muted);
  font-weight: 600;
}

.next-slots__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-pill);
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-sticky-book {
  position: fixed;
  right: 18px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: var(--home-radius-pill);
  background: var(--home-ink);
  color: var(--home-bg);
  box-shadow: 0 18px 44px rgba(3, 3, 3, 0.18);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  transform: translateZ(0);
}

.mobile-sticky-book--smart {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 34px, 0) scale(0.96);
  transition:
    visibility 0ms linear 420ms,
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms var(--ease);
}

.mobile-sticky-book--smart.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0ms;
}

.mobile-sticky-book:hover,
.mobile-sticky-book:focus-visible {
  background: #24221f;
}

.home-icon {
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  aspect-ratio: 1;
  border: 1px solid var(--home-ink);
  border-radius: 50%;
  box-sizing: border-box;
}

.home-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-price-list {
  display: grid;
}

.home-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  border-bottom: 1px solid var(--home-line-soft);
}

.home-price-row:last-child {
  border-bottom: 0;
}

.home-price-row span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.home-price-row strong,
.home-price-row b {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.home-price-row small {
  color: var(--home-muted);
  font-size: 0.78rem;
}

.home-price-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--home-line-soft);
  color: var(--home-muted);
  font-size: 0.92rem;
}

.home-price-note a {
  color: var(--home-ink);
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 1px solid var(--home-line);
}

.map-panel {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-inner);
  background: #fbfaf8;
}

.map-preview {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='320' viewBox='0 0 720 320'%3E%3Cg fill='none' stroke='%23d9d7d2' stroke-width='1.2'%3E%3Cpath d='M-80 70 C30 4 88 48 150 12 S260 42 310 -30'/%3E%3Cpath d='M-90 190 C30 95 92 220 170 126 S300 120 360 42 S440 -2 520 44 S620 22 780 -42'/%3E%3Cpath d='M-30 330 C48 238 86 252 136 194 S244 280 314 206 S390 104 464 160 S604 104 760 128'/%3E%3Cpath d='M418 -20 C354 70 452 74 418 148 S458 254 540 214 S646 190 800 206'/%3E%3Cpath d='M520 92 C592 80 596 126 650 118 S704 86 780 116'/%3E%3Cpath d='M520 130 C592 118 596 164 650 156 S704 124 780 154'/%3E%3C/g%3E%3C/svg%3E"),
    #fbfaf8;
  background-position: center;
  background-size: cover;
}

.map-preview.is-hidden {
  display: none;
}

.map-load {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--home-ink);
  border-radius: 999px;
  background: var(--home-ink);
  color: var(--home-bg);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
}

.map-pin {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--home-ink);
}

.map-pin svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
}

.map-pin circle {
  fill: var(--home-bg);
}

.location-meta {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--home-muted);
  font-size: 0.92rem;
}

.location-meta a {
  width: fit-content;
  margin-top: 6px;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 1px solid var(--home-line);
}

.contact-card {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.contact-card a {
  font-family: var(--font-display);
  font-weight: 600;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-pill);
  background: #ffffff;
  color: var(--home-ink);
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease);
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--home-ink);
  transform: translateY(-1px);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link__dot {
  fill: currentColor;
  stroke: none;
}

.about-main {
  padding-top: 26px;
}

.about-hero {
  display: grid;
  gap: 20px;
}

.about-portrait {
  position: relative;
  min-height: clamp(380px, 118vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-media);
  background: #eceae6;
  box-shadow: var(--home-shadow);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-intro {
  display: grid;
  gap: 12px;
  padding: 22px 2px 4px;
}

.about-intro span {
  color: var(--home-muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.about-intro h1 {
  margin: 0;
  font-size: clamp(2.45rem, 13vw, 5.4rem);
  line-height: 0.95;
}

.about-intro p,
.about-copy p,
.about-cta p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.about-card {
  margin-top: 24px;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-points article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-inner);
  background: #ffffff;
}

.about-points strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.about-points p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-cta {
  display: grid;
  gap: 14px;
  text-align: center;
}

.about-cta .home-book-button {
  width: 100%;
}

.about-back-link {
  width: fit-content;
  margin-inline: auto;
  color: var(--home-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid var(--home-line);
}

.work-showcase {
  margin-top: 36px;
  overflow: hidden;
}

.work-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.work-showcase__head > div {
  display: grid;
  gap: 6px;
}

.work-showcase__head span {
  color: var(--home-muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.work-showcase__head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 8vw, 3.6rem);
  line-height: 0.95;
}

.work-showcase__head p {
  max-width: 24ch;
  color: var(--home-muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.work-carousel {
  position: relative;
  width: 100%;
  touch-action: pan-y;
}

.work-carousel__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-media);
  background: #f1f0ee;
  box-shadow: 0 12px 34px rgba(3, 3, 3, 0.04);
  isolation: isolate;
}

.work-carousel__track {
  position: relative;
  height: clamp(420px, 126vw, 620px);
}

.work-slide {
  position: absolute;
  inset: 0 auto 0 50%;
  width: min(76%, 430px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-radius-media);
  background: #f1f0ee;
  box-shadow: 0 18px 45px rgba(3, 3, 3, 0.14);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transform: translate3d(-50%, 3%, 0) scale(0.72);
  transition:
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 760ms var(--ease),
    filter 760ms var(--ease),
    box-shadow 760ms var(--ease);
  will-change: transform, opacity;
  clip-path: inset(0 round var(--home-radius-media));
}

.work-slide img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.work-slide__button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.work-slide__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -8px;
}

.work-slide--active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  border-radius: var(--home-radius-media);
  box-shadow: 0 24px 64px rgba(3, 3, 3, 0.16);
  transform: translate3d(-50%, 0, 0) scale(1);
}

.work-slide--active img {
  transform: scale(1.01) translate3d(0, 0, 0);
}

.work-slide--prev {
  z-index: 3;
  opacity: 0.46;
  filter: saturate(0.88) brightness(0.96);
  border-radius: var(--home-radius-media);
  transform: translate3d(calc(-50% - min(46vw, 305px)), 4%, 0) scale(0.78);
}

.work-slide--prev img {
  transform: scale(1.1) translate3d(3%, 0, 0);
}

.work-slide--next {
  z-index: 3;
  opacity: 0.46;
  filter: saturate(0.88) brightness(0.96);
  border-radius: var(--home-radius-media);
  transform: translate3d(calc(-50% + min(46vw, 305px)), 4%, 0) scale(0.78);
}

.work-slide--next img {
  transform: scale(1.1) translate3d(-3%, 0, 0);
}

.work-slide--far-prev {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.65) brightness(0.86);
  transform: translate3d(calc(-50% - min(75vw, 520px)), 5%, 0) scale(0.68);
}

.work-slide--far-next {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.65) brightness(0.86);
  transform: translate3d(calc(-50% + min(75vw, 520px)), 5%, 0) scale(0.68);
}

.home-shell.is-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(250, 249, 247, 0.94);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox.is-open {
  opacity: 1;
}

.gallery-lightbox__figure {
  display: grid;
  gap: 12px;
  width: min(100%, 520px);
  margin: 0;
  transform: translateY(8px) scale(0.98);
  transition: transform 180ms var(--ease);
}

.gallery-lightbox.is-open .gallery-lightbox__figure {
  transform: translateY(0) scale(1);
}

.gallery-lightbox__figure img {
  display: block;
  width: 100%;
  max-height: min(74vh, 760px);
  border-radius: var(--home-radius-media);
  object-fit: contain;
  background: #f1f0ee;
  box-shadow: 0 26px 70px rgba(3, 3, 3, 0.18);
}

.gallery-lightbox__figure figcaption {
  color: var(--home-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--home-line-soft);
  border-radius: 999px;
  background: #ffffff;
  color: var(--home-ink);
  box-shadow: 0 10px 30px rgba(3, 3, 3, 0.08);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}

.gallery-lightbox__close {
  top: max(18px, env(safe-area-inset-top));
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 1.55rem;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: 14px;
}

.gallery-lightbox__nav--next {
  right: 14px;
}

.reviews-card {
  margin-bottom: 8px;
}

.maker-credit {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 18px auto 0;
}

.maker-credit__card {
  position: relative;
  isolation: isolate;
  width: 100%;
  border: 4px solid #b6d900;
  border-radius: var(--home-radius-pill);
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  box-shadow:
    0 12px 34px rgba(3, 3, 3, 0.12),
    0 0 0 1px rgba(225, 255, 0, 0.16),
    0 0 22px rgba(225, 255, 0, 0.16);
  transition:
    border-radius 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.maker-credit__card::before {
  content: "";
  position: absolute;
  left: -54px;
  top: -54px;
  z-index: 0;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(225, 255, 0, 0.7) 0%, rgba(225, 255, 0, 0.28) 38%, rgba(225, 255, 0, 0) 70%);
  filter: blur(9px);
  opacity: 0.72;
  pointer-events: none;
  animation: maker-glow-orbit 6.2s linear infinite;
  will-change: left, top;
}

.maker-credit__card.is-open {
  border-color: #b6d900;
  border-radius: var(--home-radius-card);
  box-shadow:
    0 18px 46px rgba(3, 3, 3, 0.16),
    0 0 0 1px rgba(225, 255, 0, 0.12),
    0 0 20px rgba(225, 255, 0, 0.12);
}

.maker-credit__card:hover,
.maker-credit__card:focus-within {
  border-color: #d7ff00;
  box-shadow:
    0 15px 38px rgba(3, 3, 3, 0.16),
    0 0 0 1px rgba(225, 255, 0, 0.2),
    0 0 26px rgba(225, 255, 0, 0.18);
  transform: translateY(-1px);
}

@keyframes maker-glow-orbit {
  0% {
    left: -54px;
    top: -54px;
  }

  24% {
    left: calc(100% - 62px);
    top: -54px;
  }

  50% {
    left: calc(100% - 62px);
    top: calc(100% - 62px);
  }

  76% {
    left: -54px;
    top: calc(100% - 62px);
  }

  100% {
    left: -54px;
    top: -54px;
  }
}

.maker-credit__pill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.maker-credit__label {
  color: rgba(255, 255, 255, 0.78);
}

.maker-credit__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 146px;
  height: 24px;
  padding-inline: 0;
  overflow: hidden;
  transition:
    width 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms var(--ease),
    transform 300ms var(--ease);
}

.maker-credit__brand-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
}

.maker-credit__card.is-open .maker-credit__brand {
  width: 0;
  padding-inline: 0;
  opacity: 0;
  transform: scale(0.88);
}

.maker-credit__plus {
  position: relative;
  width: 13px;
  height: 13px;
  margin-left: 4px;
}

.maker-credit__plus::before,
.maker-credit__plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: #e5ff00;
  box-shadow: 0 0 10px rgba(229, 255, 0, 0.56);
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease), opacity 180ms var(--ease);
}

.maker-credit__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.maker-credit__card.is-open .maker-credit__plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.24);
}

.maker-credit__panel {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition:
    max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms var(--ease),
    transform 260ms var(--ease),
    visibility 0s linear 420ms;
  visibility: hidden;
}

.maker-credit__card.is-open .maker-credit__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms var(--ease),
    transform 260ms var(--ease),
    visibility 0s linear 0s;
  visibility: visible;
}

.maker-credit__panel-inner {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
  background: #000000;
}

.maker-credit__logo {
  width: min(100%, 500px);
  margin-inline: auto;
}

.maker-credit__panel-inner p {
  max-width: 26rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.maker-credit__actions {
  display: grid;
  gap: 10px;
}

.maker-credit__social,
.maker-credit__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--home-radius-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.maker-credit__social {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.maker-credit__cta {
  background: #e5ff00;
  color: #030303;
  box-shadow: 0 0 26px rgba(229, 255, 0, 0.24);
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-inner);
  background: #fbfaf8;
}

.review-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-item strong,
.review-item__top span {
  font-family: var(--font-display);
  font-weight: 700;
}

.review-item__top span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review-item p {
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.review-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin: 18px auto 0;
  padding: 0 20px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-pill);
  background: #ffffff;
  color: var(--home-ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease);
}

.review-toggle:hover,
.review-toggle:focus-visible {
  border-color: var(--home-ink);
  transform: translateY(-1px);
}

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

.review-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--home-radius-card);
  background: #ffffff;
}

.review-form label {
  display: grid;
  gap: 6px;
}

.review-form label span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-input);
  background: #ffffff;
  color: var(--home-ink);
  font: inherit;
}

.review-form input,
.review-form select {
  min-height: 46px;
  padding: 0 14px;
}

.review-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  border-radius: var(--home-radius-textarea);
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: 2px solid var(--home-ink);
  outline-offset: 2px;
}

.review-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--home-radius-pill);
  cursor: pointer;
  font-size: 1rem;
}

.review-note {
  color: var(--home-muted);
  font-size: 0.9rem;
}

.review-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(250, 249, 247, 0.72);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.review-popup[hidden] {
  display: none;
}

.review-popup.is-open {
  opacity: 1;
}

.review-popup__panel {
  width: min(100%, 360px);
  padding: 24px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-card);
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(5, 5, 5, 0.12);
  text-align: center;
  transform: translateY(8px) scale(0.98);
  transition: transform 180ms var(--ease);
}

.review-popup.is-open .review-popup__panel {
  transform: translateY(0) scale(1);
}

.review-popup__eyebrow {
  color: var(--home-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.review-popup__panel h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.review-popup__panel p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-popup__close {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--home-radius-pill);
  background: var(--home-ink);
  color: var(--home-bg);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-popup__close:hover,
.review-popup__close:focus-visible {
  background: #24221f;
}

@media (max-width: 380px) {
  .home-header__inner,
  .home-main {
    width: min(100% - 28px, 900px);
  }

  .home-header__inner {
    --header-pill-height: 50px;
    gap: 10px;
    min-height: 66px;
  }

  .home-logo {
    flex-basis: min(74vw, 268px);
    max-width: min(74vw, 268px);
    padding-inline: 0;
    font-size: 2.2rem;
  }

  .home-logo img {
    max-height: 32px;
  }

  .photo-stack {
    height: 450px;
  }

  .hero-info-card {
    padding: 16px;
  }

  .photo-card {
    border-radius: var(--home-radius-media);
  }

  .home-card {
    padding: 20px;
    border-radius: var(--home-radius-card);
  }

  .home-price-row {
    min-height: 58px;
  }
}

@media (max-width: 759px) {
  .work-showcase__head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .work-showcase__head p {
    max-width: 100%;
    text-align: left;
  }
}

.home-logo.home-logo--brand {
  flex-basis: min(56vw, 176px);
  max-width: min(56vw, 176px);
}

.home-logo.home-logo--brand img {
  width: auto;
  height: clamp(52px, 15vw, 68px);
  max-height: none;
  mix-blend-mode: multiply;
}

@media (min-width: 760px) {
  .home-header__inner {
    --header-pill-height: 58px;
    min-height: 82px;
  }

  .home-logo {
    flex-basis: 356px;
    max-width: 356px;
    padding-inline: 0;
    font-size: 3.25rem;
  }

  .home-logo img {
    max-height: 42px;
  }

  .home-main {
    padding-top: 52px;
    padding-bottom: 78px;
  }

  .mobile-sticky-book {
    display: none;
  }

  .photo-stack {
    height: 720px;
  }

  .photo-card--large {
    width: 65%;
  }

  .photo-card--tall {
    top: 88px;
    width: 39%;
    height: 50%;
  }

  .photo-card--wide {
    width: 60%;
    height: 30%;
  }

  .home-book-button {
    min-height: 68px;
    font-size: 1.45rem;
  }

  .maker-credit__pill {
    min-height: 68px;
    font-size: 1.08rem;
  }

  .maker-credit__panel-inner {
    padding: 0 24px 22px;
  }

  .maker-credit__actions {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-actions {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .home-secondary-button {
    min-height: 68px;
    padding-inline: 32px;
    font-size: 1rem;
  }

  .home-card {
    margin-top: 42px;
    padding: 34px;
  }

  .next-slots-card {
    margin-top: 36px;
  }

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

  .next-slot {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 128px;
    padding: 20px;
  }

  .next-slot strong {
    grid-row: auto;
    grid-column: auto;
    font-size: 1.6rem;
  }

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

  .review-form {
    max-width: 560px;
    margin-inline: auto;
  }

  .home-card__head h1,
  .home-card__head h2 {
    font-size: 1.7rem;
  }

  .home-price-row {
    min-height: 72px;
  }

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

  .about-main {
    padding-top: 42px;
  }

  .about-hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
  }

  .about-portrait {
    min-height: 620px;
  }

  .about-intro {
    padding: 0;
  }

  .about-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .about-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .about-cta .home-book-button {
    width: auto;
    min-width: 190px;
    padding-inline: 32px;
  }

  .about-back-link {
    grid-column: 1 / -1;
    margin-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo img {
    animation: none !important;
  }

  .maker-credit__card::before {
    animation: none !important;
  }

  .work-slide {
    transition:
      transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 760ms var(--ease),
      filter 760ms var(--ease),
      box-shadow 760ms var(--ease) !important;
  }

  .work-slide img {
    transition: transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

}
