/* ==========================================================================
   Arunika. Wedding photography, told from first light to the last dance.

   Night and dawn: a deep indigo ground, apricot light, lilac shadow, and a
   cool off-white for type. Fraunces carries the voice, Inter does the work.
   ========================================================================== */

@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/fraunces-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/fraunces-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/fraunces-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/fraunces-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-600-normal.woff2") format("woff2"); }

:root {
  --night: #131120;
  --night-2: #1a1729;
  --dusk: #262038;
  --line: rgba(244, 240, 247, 0.12);
  --line-strong: rgba(244, 240, 247, 0.26);
  --cream: #f4f0f7;
  --mist: #aaa3c0;
  --dawn: #e8a48b;
  --dawn-deep: #cf7a60;
  --lilac: #b8a7e6;
  --wa: #25d366;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-display: clamp(2.9rem, 1.5rem + 6.2vw, 7.2rem);
  --fs-h2: clamp(2rem, 1.3rem + 3vw, 4rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.9rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  --fs-body: clamp(0.95rem, 0.9rem + 0.2vw, 1.075rem);
  --fs-small: 0.875rem;
  --fs-label: 0.72rem;
  --tracking-label: 0.22em;

  --gutter: clamp(1.25rem, 0.9rem + 2vw, 3.5rem);
  --wrap: 84rem;
  --section-y: clamp(5rem, 3rem + 8vw, 11rem);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 400ms;
  --dur-slow: 900ms;
  --nav-h: 4.5rem;
}

/* Base --------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* A film grain over everything. Static, so it costs nothing to scroll. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
a { color: inherit; }
ol, ul { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 em, h2 em, .statement__text em {
  font-style: italic;
  font-weight: 400;
  color: var(--dawn);
}

p { text-wrap: pretty; }

:focus-visible { outline: 2px solid var(--dawn); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 1rem; top: 1rem; z-index: 600;
  padding: 0.75rem 1rem; background: var(--cream); color: var(--night);
  text-decoration: none; font-size: var(--fs-small);
  transform: translateY(-150%); transition: transform var(--dur) var(--ease);
}
.skip:focus-visible { transform: translateY(0); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--dawn);
  font-weight: 500;
}

/* Reveal ------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:active { transform: scale(0.98); }

.btn--solid { background: var(--dawn); color: var(--night); }
.btn--solid:hover { background: var(--cream); }

.btn--line { border-color: var(--line-strong); color: var(--cream); }
.btn--line:hover { border-color: var(--cream); background: rgba(244, 240, 247, 0.06); }

/* Opening ------------------------------------------------------------------ */

.dawn {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: var(--night);
  overflow: hidden;
}

.dawn__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 164, 139, 0.55) 0%, rgba(184, 167, 230, 0.18) 38%, transparent 68%);
  transform: translate(-50%, -30%) scale(0.5);
  opacity: 0;
  filter: blur(10px);
}

.dawn__line {
  position: absolute;
  left: 8vw;
  right: 8vw;
  top: 50%;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  opacity: 0.9;
}

.dawn__word {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(14px);
}

.no-js .dawn { display: none; }

/* Nav ---------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav.stuck {
  background: rgba(19, 17, 32, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.nav__links { display: none; }

@media (min-width: 60rem) {
  .nav__links { display: flex; align-items: center; gap: 2.25rem; }
}

.nav__links a {
  position: relative;
  font-size: var(--fs-small);
  color: var(--mist);
  text-decoration: none;
  padding-block: 0.5rem;
  transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--dawn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: none; }
@media (min-width: 60rem) { .nav__cta { display: inline-flex; } }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
}
@media (min-width: 60rem) { .burger { display: none; } }

.burger__bars { position: relative; width: 22px; height: 11px; }
.burger__bars span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--cream); transition: transform var(--dur) var(--ease);
}
.burger__bars span:nth-child(1) { top: 0; }
.burger__bars span:nth-child(2) { bottom: 0; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars span:nth-child(2) { transform: translateY(-4.75px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: var(--nav-h) var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  background: var(--night);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.drawer.open { visibility: visible; opacity: 1; }
@media (min-width: 60rem) { .drawer { display: none; } }

.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 1.2rem + 3vw, 2.6rem);
  text-decoration: none;
}
.drawer__link span {
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  color: var(--dawn);
}
.no-js .burger, .no-js .drawer { display: none; }

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(19, 17, 32, 0.97) 0%, rgba(19, 17, 32, 0.62) 36%, rgba(19, 17, 32, 0.3) 62%, rgba(19, 17, 32, 0.66) 100%);
}

/* Dawn light rising behind the words. */
.hero__glow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -30vmax;
  width: 120vmax;
  height: 90vmax;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 164, 139, 0.5) 0%, rgba(207, 122, 96, 0.22) 28%, rgba(184, 167, 230, 0.1) 50%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero__dust {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: clamp(4rem, 12vh, 8rem);
}

.hero__eyebrow { margin-bottom: 1.25rem; }

.hero__title {
  font-size: var(--fs-display);
  max-width: 11ch;
}

.split-line { display: block; }

.hero__lead {
  margin-top: 1.5rem;
  max-width: 34ch;
  font-size: var(--fs-lead);
  color: var(--mist);
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--mist);
}
.hero__cue span {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--dawn), transparent);
  animation: cue 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue { 0% { transform: scaleY(0); } 40% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

@media (max-width: 47.99rem) {
  .hero__cue { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* Manifesto ---------------------------------------------------------------- */

.manifesto { padding-block: var(--section-y); }

.manifesto__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 60rem) {
  .manifesto__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: 5rem;
  }
}

.manifesto__text {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Words start dim and the scroll brings them up, one after another. */
.manifesto__text .w,
.statement__text .w { opacity: 0.22; display: inline-block; }
.no-motion .manifesto__text .w,
.no-motion .statement__text .w { opacity: 1; }

.manifesto__fig {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dusk);
  justify-self: end;
  width: min(100%, 24rem);
  aspect-ratio: 3 / 4;
}
.manifesto__fig img { width: 100%; height: 100%; object-fit: cover; }

.manifesto__fig--small {
  width: min(58%, 14rem);
  justify-self: start;
  margin-top: -18%;
  margin-left: 6%;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}

@media (min-width: 60rem) {
  .manifesto__fig { grid-column: 2; grid-row: 1; }
  .manifesto__fig--small { grid-column: 2; grid-row: 1; align-self: end; margin: 0 0 -3rem -2rem; z-index: 1; }
  .manifesto__text { grid-column: 1; grid-row: 1; }
}

/* One day, start to finish ------------------------------------------------- */

.day { position: relative; height: 560vh; }

.day__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--night-2);
}

.day__media { position: absolute; inset: 0; }

.day__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  will-change: transform, opacity;
}

.day__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(19, 17, 32, 0.94) 0%, rgba(19, 17, 32, 0.7) 40%, rgba(19, 17, 32, 0.2) 75%, rgba(19, 17, 32, 0.35) 100%);
}

/* On wide screens the photograph is a framed portrait card, never wider than
   its 800px source, so it is always drawn smaller than it was shot and stays
   sharp. The words keep the left half, like a spread. A dawn glow sits behind
   the card so it reads as lit rather than pasted. */
@media (min-width: 60rem) {
  .day__stage::before {
    content: "";
    position: absolute;
    right: 8%;
    top: 50%;
    width: 60vmin;
    height: 60vmin;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 164, 139, 0.28) 0%, rgba(184, 167, 230, 0.12) 45%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
  }

  .day__media {
    inset: auto;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    width: min(36vw, 600px);
    height: min(76vh, 720px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  }

  .day__media::after {
    background: linear-gradient(to top, rgba(19, 17, 32, 0.45) 0%, transparent 40%);
  }
}

.day__ui {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 9vh, 6rem);
}

@media (min-width: 60rem) {
  .day__ui > * { max-width: 36rem; }
}

.day__eyebrow { margin-bottom: 1rem; }

.day__clock {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 2rem + 6vw, 7rem);
  line-height: 1;
  color: var(--dawn);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.day__chapters {
  position: relative;
  min-height: 11rem;
  margin-top: 1.5rem;
}

.day__chapter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.day__chapter h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.day__chapter p { color: var(--mist); max-width: 44ch; }

.day__progress {
  margin-top: 2rem;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.day__progress span {
  display: block;
  height: 100%;
  background: var(--dawn);
  transform: scaleX(0);
  transform-origin: left;
}

.day__dots { display: flex; gap: 0.6rem; margin-top: 1rem; }
.day__dots li {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line-strong);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.day__dots li.is-on { background: var(--dawn); transform: scale(1.3); }

@media (max-width: 47.99rem) {
  /* Room for the booking bar so the dots never sit under it. */
  .day__ui { padding-bottom: 6.5rem; }
}

@media (max-width: 59.99rem) {
  .day__media::after {
    background: linear-gradient(to top, rgba(19, 17, 32, 0.96) 0%, rgba(19, 17, 32, 0.72) 42%, rgba(19, 17, 32, 0.1) 75%);
  }
  .day__chapters { min-height: 12rem; }
}

/* Without motion the day is a plain, readable list. */
.no-motion .day { height: auto; }
.no-motion .day__stage { position: static; height: auto; padding-block: var(--section-y); }
.no-motion .day__media { position: relative; aspect-ratio: 16 / 9; margin-bottom: 2rem; }
.no-motion .day__img:first-child { opacity: 1; transform: none; }
.no-motion .day__ui { height: auto; }
.no-motion .day__chapters { min-height: 0; display: grid; gap: 1.5rem; }
.no-motion .day__chapter { position: static; opacity: 1; }
.no-motion .day__progress, .no-motion .day__dots, .no-motion .day__clock { display: none; }

/* Gallery strip ------------------------------------------------------------ */

.strip { position: relative; }

.strip__head {
  padding-top: var(--section-y);
  padding-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 3rem;
}
.strip__head .eyebrow { flex: 1 1 100%; }
.strip__title { font-size: var(--fs-h2); }
.strip__hint { color: var(--mist); font-size: var(--fs-small); }

.strip__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.strip__track {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
  padding-inline: var(--gutter);
  will-change: transform;
}

.frame {
  position: relative;
  flex: none;
  height: 60vh;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dusk);
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}
.frame--wide { aspect-ratio: 4 / 3; height: 48vh; }
.frame--tall { height: 72vh; }

.frame img {
  width: 116%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  margin-left: -8%;
  will-change: transform;
}

.frame__cap {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 17, 32, 0.62);
  backdrop-filter: blur(6px);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

@media (hover: hover) {
  .frame:hover { transform: translateY(-6px); }
}

/* On a phone the strip is a native sideways scroll, no pinning. */
@media (max-width: 47.99rem) {
  .strip__stage { position: static; height: auto; display: block; overflow: visible; }
  .strip__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-bottom: 1.5rem;
    scrollbar-width: none;
  }
  .strip__track::-webkit-scrollbar { display: none; }
  .frame { scroll-snap-align: start; height: 62vh; }
  .frame--wide { height: 50vh; }
  .frame--tall { height: 66vh; }
  .frame img { width: 100%; margin-left: 0; }
}

.no-motion .strip__stage { position: static; height: auto; display: block; overflow: visible; }
.no-motion .strip__track { overflow-x: auto; }

/* Services ----------------------------------------------------------------- */

.services { padding-block: var(--section-y); }
.services__title { font-size: var(--fs-h2); margin-top: 1rem; max-width: 16ch; }

.cards {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 48rem) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--night-2);
  transform-style: preserve-3d;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card:hover { border-color: var(--line-strong); }

.card--lead {
  background: linear-gradient(140deg, rgba(232, 164, 139, 0.16), rgba(184, 167, 230, 0.08) 60%, var(--night-2));
  border-color: rgba(232, 164, 139, 0.35);
}

.card__num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dawn);
}
.card__title { margin-top: 2.5rem; font-size: var(--fs-h3); }
.card__desc { margin-top: 0.8rem; color: var(--mist); }
.card__tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--dawn);
  color: var(--night);
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Ticker ------------------------------------------------------------------- */

.ticker {
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid var(--line);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
  color: var(--cream);
}
.ticker__track i { font-style: normal; color: var(--dawn); }

/* Statement ---------------------------------------------------------------- */

.statement {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.statement__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  height: 136%;
  z-index: 0;
  will-change: transform;
}
.statement__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.statement__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 17, 32, 0.72);
}

.statement .wrap { position: relative; z-index: 1; padding-block: var(--section-y); }

.statement__text {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.2rem + 3.4vw, 4.6rem);
  line-height: 1.12;
  max-width: 22ch;
  letter-spacing: -0.01em;
}

/* Location ----------------------------------------------------------------- */

.location { padding-block: var(--section-y); }

.location__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 60rem) {
  .location__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); column-gap: 5rem; }
}

.location__title { font-size: var(--fs-h2); margin-top: 1rem; }
.location__text { margin-top: 1.25rem; color: var(--mist); max-width: 44ch; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--dusk);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(185deg) saturate(0.55) brightness(0.92);
}

/* Contact ------------------------------------------------------------------ */

.contact {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
  background: var(--night-2);
  isolation: isolate;
}

.contact__glow {
  position: absolute;
  left: 50%;
  top: 60%;
  width: 90vmax;
  height: 60vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(232, 164, 139, 0.32) 0%, rgba(184, 167, 230, 0.14) 40%, transparent 68%);
  filter: blur(20px);
  animation: breathe 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes breathe { from { transform: translate(-52%, -48%) scale(0.95); } to { transform: translate(-48%, -52%) scale(1.08); } }

.contact__inner { position: relative; z-index: 1; text-align: center; }
.contact__title { font-size: var(--fs-h2); margin-top: 1rem; }
.contact__text { margin: 1.25rem auto 0; color: var(--mist); max-width: 40ch; }
.contact__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.contact__meta { margin-top: 2rem; font-size: var(--fs-small); color: var(--mist); }

@media (max-width: 26rem) { .contact__actions .btn { flex: 1 1 100%; } }

/* Footer ------------------------------------------------------------------- */

.foot { padding-block: 2rem calc(2rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.foot__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem; font-size: var(--fs-small); color: var(--mist); }
@media (max-width: 47.99rem) { .foot { padding-bottom: 6rem; } }

/* Lightbox ----------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(19, 17, 32, 0.96);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(19, 17, 32, 0.6);
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* Sticky booking bar, phones ----------------------------------------------- */

.bookbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--gutter) calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(26, 23, 41, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--dur) var(--ease);
}
.bookbar.is-up { transform: translateY(0); }
.bookbar strong { display: block; font-family: var(--font-serif); font-weight: 500; }
.bookbar span { font-size: var(--fs-label); color: var(--mist); }
@media (max-width: 47.99rem) { .bookbar { display: flex; } }

.wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 95;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
  transition: transform var(--dur) var(--ease);
}
.wa:hover { transform: translateY(-3px); }
@media (max-width: 47.99rem) { .wa { display: none; } }

/* Reduced motion ----------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .dawn { display: none; }
}
