:root {
  --paper: #f2f0ea;
  --paper-deep: #e4e0d6;
  --ink: #0a0a09;
  --ink-soft: #33312d;
  --ash: #706d66;
  --line: rgba(10, 10, 9, 0.14);
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 64px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 0, 0, 0.035), transparent 22rem),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.028), transparent 20rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.014) 1px, transparent 1px),
    var(--paper);
  background-size:
    auto,
    auto,
    19px 19px,
    23px 23px,
    auto;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.05) 0 1px,
    transparent 1px 9px
  );
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--gutter);
  color: rgba(10, 10, 9, 0.78);
  background: var(--paper);
  border-bottom: 1px solid rgba(10, 10, 9, 0.08);
}
.nav-mark,
.footer-mark,
.signature {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
}
.hero h1,
.section-heading h2,
.about-copy h1,
.proof-card h3,
.booking h2 {
  font-family: "Cinzel", Georgia, serif;
}
.nav-mark {
  font-size: 32px;
}
.site-nav nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav a {
  transition: opacity 180ms ease;
}
.site-nav a:hover {
  opacity: 0.55;
}
main {
  padding-top: clamp(50px, 8vw, 80px);
}
.section-frame,
.content-section {
  position: relative;
  padding-inline: var(--gutter);
}
.hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
}
.hero-inner {
  width: min(840px, 100%);
  text-align: center;
  animation: slowReveal 1200ms ease both;
}
.eyebrow,
.section-kicker,
.card-label {
  margin: 0;
  color: var(--ash);
  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-kicker {
  margin-bottom: 40px;
}
.hero-lockup {
  width: min(620px, 94vw);
  margin: clamp(8px, 3vw, 26px) auto;
  mix-blend-mode: multiply;
  filter: contrast(1.08);
}
.hero h1,
.section-heading h2,
.about-copy h1,
.booking h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
}
.hero-copy {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.social-row a {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}
.social-row a:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ash);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  animation: drift 1600ms ease-in-out infinite;
}
.ink-wash {
  position: absolute;
  border-radius: 999px;
  background: rgba(10, 10, 9, 0.075);
  filter: blur(30px);
  mix-blend-mode: multiply;
  transform: rotate(-18deg);
}
.ink-wash-one {
  top: 12%;
  left: -7%;
  width: 36vw;
  height: 16vw;
}
.ink-wash-two {
  right: -10%;
  bottom: 14%;
  width: 34vw;
  height: 15vw;
}
.content-section {
  width: min(var(--max), 100%);
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(40px, 5vw, 60px);
  margin: 0 auto;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.5fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-top: 18px;
  margin-bottom: clamp(34px, 6vw, 74px);
}
.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.listen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.proof-card {
  border: 1px solid var(--line);
  background: rgba(242, 240, 234, 0.52);
  backdrop-filter: blur(3px);
}
.feature-card {
  padding: 0;
}
.feature-card .card-label,
.booking-panel .card-label {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: none;
}
.feature-card + .feature-card {
  margin-top: 40px;
}
.video-shell {
  overflow: hidden;
  border: 1px solid rgba(10, 10, 9, 0.16);
  background: var(--paper-deep);
}
.video-shell {
  aspect-ratio: 16 / 9;
}
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  cursor: pointer;
  background: var(--ink);
  border: 0;
}
.embed-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  mix-blend-mode: screen;
}
.embed-placeholder--light {
  color: var(--ink);
  background:
    radial-gradient(
      circle at 40% 42%,
      rgba(10, 10, 9, 0.08),
      transparent 11rem
    ),
    var(--paper);
}
.is-missing-source .embed-placeholder {
  outline: 1px dashed rgba(10, 10, 9, 0.34);
  outline-offset: -14px;
}
.is-missing-source .embed-copy {
  color: inherit;
}
.play-button {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(242, 240, 234, 0.82);
  border-radius: 50%;
}
.play-button::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
  transform: translate(-35%, -50%);
}
.embed-copy {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.placeholder-mark {
  color: rgba(10, 10, 9, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 108px;
  font-weight: 700;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
}
.portrait-frame {
  position: relative;
  margin: 0;
}
.portrait-frame::before {
  position: absolute;
  inset: 8% -7% -6% 14%;
  z-index: -1;
  content: "";
  background: rgba(10, 10, 9, 0.08);
  filter: blur(18px);
  transform: rotate(-7deg);
}
.portrait-frame img {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.03);
}
.about-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}
.about.content-section {
  padding-top: clamp(20px, 3vw, 32px);
}
.about-social {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: clamp(22px, 4vw, 64px);
  row-gap: 10px;
}
.about-social .social-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-social .social-row a,
.about-social .social-link {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  position: relative;
  place-items: unset;
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.about-social .social-link:hover {
  background: transparent;
  border-color: transparent;
  color: var(--ink-soft);
}
.social-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}
.about-social .social-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.about-social .social-link span {
  display: block;
  white-space: nowrap;
  line-height: 1.25;
}
.about-social .social-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.about-social .social-link:hover::after {
  transform: scaleX(1);
}
@media (max-width: 560px) {
  .about-social {
    grid-template-columns: 1fr;
  }
}
.signature {
  display: block;
  margin-top: 34px;
  color: rgba(10, 10, 9, 0.22);
  font-size: clamp(72px, 10vw, 132px);
}
.proof-carousel {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(10, 10, 9, 0.46) rgba(10, 10, 9, 0.08);
}
.proof-card {
  min-height: 100%;
  padding: 14px;
  scroll-snap-align: start;
}
.proof-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 9, 0.16);
  background: var(--paper-deep);
}
.proof-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.proof-card-content {
  padding: clamp(18px, 2.5vw, 26px) clamp(8px, 1.8vw, 16px)
    clamp(8px, 1.8vw, 16px);
}
.proof-card h3 {
  margin: 22px 0 14px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.proof-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
.carousel-status {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
.booking-panel {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 0;
}
.booking.content-section {
  padding-bottom: clamp(70px, 9vw, 120px);
}
.booking-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.25;
}
.booking-email .social-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.booking-email::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.booking-email:hover::after {
  transform: scaleX(1);
}
.site-footer {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 70px var(--gutter) 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-mark {
  color: rgba(10, 10, 9, 0.42);
  font-size: 70px;
}
.site-footer .social-row {
  margin: 0;
}
.site-footer p {
  margin: 0;
  color: var(--ash);
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@keyframes slowReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drift {
  50% {
    transform: translateY(5px);
  }
}
@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    justify-content: center;
  }
  .nav-mark {
    display: none;
  }
  .section-heading,
  .listen-grid,
  .about-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }
  .booking-panel {
    display: grid;
    align-items: start;
  }
  .portrait-frame {
    max-width: 480px;
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  :root {
    --gutter: 18px;
  }
  .nav-mark {
    display: none;
  }
  .site-footer p {
    font-size: 10px;
  }
  .hero {
    min-height: 96svh;
  }
  .hero h1 {
    font-size: clamp(42px, 15vw, 70px);
  }
  .hero-lockup {
    width: 108vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .section-heading h2,
  .about-copy h1,
  .booking h2 {
    font-size: clamp(28px, 10vw, 48px);
  }
  .proof-carousel {
    grid-auto-columns: minmax(250px, 82vw);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
