:root {
  --black: #08090d;
  --black-soft: #11131a;
  --ink: #fbf8ef;
  --muted: rgba(251, 248, 239, .72);
  --paper: #f7f2e7;
  --paper-2: #ebe1d0;
  --paper-ink: #17130f;
  --muted-dark: rgba(23, 19, 15, .66);
  --line: rgba(251, 248, 239, .18);
  --line-dark: rgba(23, 19, 15, .13);
  --red: #e7364d;
  --gold: #cda85b;
  --blue: #7aa7b8;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  font-family: Geist, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(251, 248, 239, .08);
  background: rgba(8, 9, 13, .72);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand img { width: 52px; height: 52px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.45)); }
.brand span { white-space: nowrap; }
nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); }
nav a, .nav-action {
  color: rgba(251, 248, 239, .76);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

nav a:hover, .nav-action:hover { color: #fff; }
.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 17px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 5vw, 72px) 64px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 45%;
  filter: saturate(.92) contrast(1.03);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,9,13,.98) 0%, rgba(8,9,13,.82) 35%, rgba(8,9,13,.42) 68%, rgba(8,9,13,.70) 100%),
    linear-gradient(180deg, rgba(8,9,13,.55) 0%, transparent 32%, rgba(8,9,13,.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 940px;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .2em;
  line-height: 1.7;
  text-transform: uppercase;
}

.eyebrow.dark { color: #8f2532; }
h1, h2, h3 {
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.15rem, 7.2vw, 8.8rem);
  font-weight: 700;
  max-width: 1060px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.55rem, 5.2vw, 6.3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 750;
}

.lead {
  max-width: 700px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 850;
  letter-spacing: -.015em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--ink); color: #0b0c11; }
.button.primary:hover { background: #fff; }
.button.secondary { border: 1px solid var(--line); background: rgba(251,248,239,.08); color: var(--ink); }
.button.secondary:hover { border-color: rgba(251,248,239,.46); background: rgba(251,248,239,.12); }
.dark-button { color: var(--paper-ink); border-color: rgba(23,19,15,.22); background: rgba(23,19,15,.04); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(251,248,239,.82);
  background: rgba(8,9,13,.38);
  font-size: .9rem;
}

.section-pad {
  padding: clamp(82px, 11vw, 142px) clamp(22px, 5vw, 72px);
}

.intro,
.split,
.video-section,
.contact {
  background: var(--paper);
  color: var(--paper-ink);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.intro > * {
  width: min(var(--max), 100%);
}

.intro p:not(.eyebrow),
.split-copy p,
.video-copy p,
.contact-copy p,
.booking-panel p {
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
}

.services,
.method,
.booking {
  background:
    radial-gradient(circle at 10% 8%, rgba(122,167,184,.16), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(231,54,77,.16), transparent 26rem),
    var(--black);
}

.section-head {
  width: min(var(--max), 100%);
  margin-inline: auto;
  margin-bottom: 46px;
}

.section-head h2 { max-width: 980px; }
.section-head.compact { margin-bottom: 38px; }

.service-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-grid article,
.timeline article {
  background: rgba(17, 19, 26, .82);
  padding: clamp(24px, 3vw, 36px);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-grid span,
.timeline strong {
  margin-bottom: auto;
  color: var(--red);
  font-size: .75rem;
  letter-spacing: .2em;
}

.service-grid p,
.timeline p {
  margin-top: 16px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.portrait {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
}

.split-copy { max-width: 780px; }
.split-copy p { margin-top: 26px; }

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(23,19,15,.78);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.timeline {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline article { min-height: 300px; }

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.video-copy p { margin-top: 24px; }
.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #8f2532;
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #05060a;
  box-shadow: 0 28px 70px rgba(23,19,15,.22);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.booking h2 { max-width: 760px; }
.booking-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(251,248,239,.08);
}

.booking-panel p { color: rgba(251,248,239,.74); }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.contact-copy p {
  max-width: 680px;
  margin-top: 24px;
}

.contact-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255,255,255,.36);
  padding: 26px;
}

.contact-card > a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1.08rem;
  font-weight: 800;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(23,19,15,.72);
  font-weight: 750;
  font-size: .9rem;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #05060a;
}

footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

footer img { width: 42px; height: 42px; }
footer p { text-align: center; font-size: .9rem; }
footer a {
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto 1fr; }
  nav { display: none; }
  .nav-action { justify-self: end; }
  .intro,
  .split,
  .video-section,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }
  .service-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-card { width: min(520px, 100%); }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
    display: flex;
    justify-content: space-between;
    padding-inline: 16px;
  }
  .brand img { width: 44px; height: 44px; }
  .brand span { display: none; }
  .nav-action { display: none; }
  .hero {
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding: 106px 22px 42px;
    max-width: 100vw;
  }
  .hero-content { width: calc(100vw - 44px); max-width: calc(100vw - 44px); }
  .hero-content > * { max-width: 100%; }
  .hero-media img { object-position: 68% 42%; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8,9,13,.96), rgba(8,9,13,.74) 56%, rgba(8,9,13,.62)),
      linear-gradient(180deg, rgba(8,9,13,.58), transparent 35%, rgba(8,9,13,.92));
  }
  .eyebrow { max-width: 310px; font-size: .66rem; letter-spacing: .16em; }
  h1 { width: 100%; font-size: clamp(2.05rem, 9.8vw, 2.65rem); line-height: 1.02; text-wrap: auto; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .lead { max-width: 100%; font-size: 1.02rem; }
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero .actions,
  .hero .hero-facts {
    width: 330px;
    max-width: calc(100vw - 44px);
  }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-facts { display: grid; max-width: 100%; }
  .hero-facts span { min-width: 0; }
  .section-pad { padding-inline: 22px; }
  .service-grid article,
  .timeline article { min-height: 245px; }
  .timeline { grid-template-columns: 1fr; }
  .video-section { gap: 28px; }
  .video-frame { margin-inline: -22px; border-radius: 0; }
  .booking-panel, .contact-card { padding: 20px; }
  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
