/* Self-hosted latin subsets (Google Fonts) — removes a render-blocking third party. */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-400-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0B0B0C;
  --ink-2: #0E0E0F;
  --ink-3: #121213;
  --ink-4: #131311;
  --ink-5: #141415;
  --ink-hover: #111112;
  --paper: #F4F1EC;
  --gold: #C9A96A;
  --gold-light: #E4CFA4;
  --line: rgba(244, 241, 236, .1);
  --line-2: rgba(244, 241, 236, .12);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', Helvetica, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

@keyframes nlPulse {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50%      { opacity: .8;  transform: translateY(6px); }
}

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--tight { font-size: 10px; letter-spacing: .26em; }

.btn {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--lg { padding: 17px 34px; }
.btn--light { color: var(--ink); background: var(--paper); padding: 11px 22px; }
.btn--light:hover { background: var(--gold); color: var(--ink); }
.btn--gold { color: var(--ink); background: var(--gold); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(244, 241, 236, .24);
  font-size: 12px;
  padding: 15px;
}
.btn--outline:hover { background: var(--paper); color: var(--ink); }
.btn--ghost {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(244, 241, 236, .8);
  background: transparent;
  border: 1px solid rgba(244, 241, 236, .24);
  padding: 16px 26px;
}
.btn--ghost:hover { border-color: rgba(244, 241, 236, .6); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }

.section {
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  border-top: 1px solid var(--line);
}
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto clamp(44px, 6vw, 76px);
}
.section__head--portfolio { gap: 28px; margin-bottom: clamp(36px, 4vw, 54px); }
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 16px 0 0;
}
.section__aside {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 241, 236, .6);
  margin: 0;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.hero__plate {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink-3);
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Two scrims: a vertical one for the nav/stats bands, plus a left-side wash so the
   headline and lede stay legible over bright exteriors. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(11, 11, 12, .78) 0%,
      rgba(11, 11, 12, .55) 38%,
      rgba(11, 11, 12, .12) 68%,
      rgba(11, 11, 12, 0) 100%),
    linear-gradient(180deg,
      rgba(11, 11, 12, .88) 0%,
      rgba(11, 11, 12, .52) 38%,
      rgba(11, 11, 12, .66) 72%,
      var(--ink) 100%);
}

@media (max-width: 700px) {
  /* No room to fall off to the right on narrow screens — flatten to an even wash. */
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(11, 11, 12, .88) 0%,
        rgba(11, 11, 12, .62) 38%,
        rgba(11, 11, 12, .72) 72%,
        var(--ink) 100%);
  }
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 26px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: flex; flex-direction: column; gap: 2px; color: var(--paper); margin-right: auto; }
.wordmark:hover { color: var(--paper); }
.wordmark__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .24em;
  line-height: 1;
}
.wordmark__place {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .3em;
  color: rgba(244, 241, 236, .45);
  text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .72);
}
.nav__link:hover { color: var(--paper); }
.nav__tel {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--paper);
}
.nav__tel:hover { color: var(--gold); }

.hero__body {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 9vh, 110px) var(--gutter) 0;
  max-width: 1180px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.6vw, 116px);
  line-height: .94;
  letter-spacing: -.02em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lede {
  max-width: 46ch;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(244, 241, 236, .66);
  margin: 26px 0 0;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  /* The stats band that used to sit opposite is gone; keep the cue on the right. */
  justify-content: flex-end;
  gap: 32px;
  padding: clamp(40px, 7vh, 90px) var(--gutter) 34px;
}
.scroll-cue {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 241, 236, .4);
}
.scroll-cue__line {
  display: block;
  width: 1px;
  height: 26px;
  background: rgba(244, 241, 236, .35);
  animation: nlPulse 2.4s ease-in-out infinite;
}

/* ---------- packages ---------- */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(244, 241, 236, .12);
  max-width: 1440px;
  margin: 0 auto;
}
.pkg {
  background: var(--ink);
  padding: clamp(30px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: background .3s ease;
}
.pkg:not(.pkg--featured):hover { background: var(--ink-hover); }
.pkg--featured {
  background: var(--ink-4);
  position: relative;
  border-top: 2px solid var(--gold);
}
.pkg__badge {
  position: absolute;
  top: 0;
  right: clamp(30px, 3vw, 46px);
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.pkg__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.pkg__name { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0; }
.pkg__dur {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .24em;
  color: rgba(244, 241, 236, .4);
}
.pkg__price { display: flex; align-items: baseline; gap: 8px; }
.pkg__amount { font-family: var(--serif); font-size: 46px; line-height: 1; }
.pkg__amount--gold { color: var(--gold); }
.pkg__cur { font-size: 12px; color: rgba(244, 241, 236, .45); }
.pkg__desc { font-size: 14.5px; line-height: 1.6; color: rgba(244, 241, 236, .6); margin: 0; }
.pkg__desc--bright { color: rgba(244, 241, 236, .66); }
.pkg__list {
  list-style: none;
  padding: 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-2);
  padding-top: 22px;
}
.pkg__list--bright { border-top-color: rgba(244, 241, 236, .14); }
.pkg__list li { display: flex; gap: 12px; font-size: 14px; color: rgba(244, 241, 236, .78); }
.pkg__list--bright li { color: rgba(244, 241, 236, .85); }
.pkg__list span { color: var(--gold); }
.pkg__cta { margin-top: auto; }

/* ---------- portfolio ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  background: transparent;
  color: rgba(244, 241, 236, .7);
  border: 1px solid rgba(244, 241, 236, .2);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.filter:hover { border-color: rgba(244, 241, 236, .5); color: var(--paper); }
.filter[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}
.shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-5);
  display: flex;
  align-items: flex-end;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.shot:hover { transform: scale(1.015); }
.shot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot__cap {
  position: relative;
  pointer-events: none;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(0deg,
    rgba(11, 11, 12, .72) 0%,
    rgba(11, 11, 12, .3) 55%,
    transparent 100%);
}
.shot__title { font-family: var(--serif); font-size: 21px; line-height: 1.15; }
.shot__tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- booking ---------- */

.booking { border-top: 1px solid var(--line); background: var(--ink-2); }
.booking__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  max-width: 1600px;
  margin: 0 auto;
}
.booking__aside {
  padding: clamp(60px, 8vw, 130px) clamp(24px, 4vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 34px;
  border-right: 1px solid var(--line);
}
.booking__lede {
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 241, 236, .6);
  margin: 20px 0 0;
  text-wrap: pretty;
}
.facts { margin: 0; border-top: 1px solid var(--line-2); }
.fact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
}
.fact dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
}
.fact dd { margin: 0; font-size: 14px; text-align: right; }

.booking__main { padding: clamp(60px, 8vw, 130px) clamp(24px, 4vw, 80px); }

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
}
.field__input,
.field__select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 241, 236, .22);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  padding: 11px 0;
  transition: border-color .25s ease;
}
.field__input[type="date"] { color-scheme: dark; }
textarea.field__input { resize: vertical; }
.field__select { background: var(--ink-2); cursor: pointer; }
.field__select--gold { border-bottom-color: rgba(201, 169, 106, .5); }
.field__input::placeholder, textarea::placeholder { color: rgba(244, 241, 236, .32); }
.field__input:focus, .field__select:focus { outline: none; border-color: var(--gold); }

.form__foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}
.form__note {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .34);
}
.form__foot .btn { padding: 17px 40px; }
.form__foot .btn[disabled] { opacity: .55; cursor: progress; }

.field--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form__error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(198, 92, 78, .5);
  background: rgba(198, 92, 78, .09);
  color: #e8b4aa;
  font-size: 13.5px;
  line-height: 1.5;
}

.confirm {
  border: 1px solid rgba(201, 169, 106, .4);
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.confirm[hidden] { display: none; }
.confirm__title { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 0; }
.confirm__text { font-size: 15px; line-height: 1.65; color: rgba(244, 241, 236, .62); margin: 0; }
.confirm__btn { align-self: flex-start; margin-top: 10px; padding: 14px 24px; }

/* ---------- footer ---------- */

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px var(--gutter);
  border-top: 1px solid var(--line);
}
.footer__mark { font-family: var(--serif); font-size: 16px; letter-spacing: .24em; }
.footer__legal {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .36);
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__link {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}
.footer__link:hover { color: var(--gold); }

/* ---------- legal pages ---------- */

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) var(--gutter) clamp(70px, 9vw, 130px);
}
.legal__back {
  display: block;
  width: fit-content;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .5);
  margin-bottom: 34px;
}
.legal .eyebrow { display: block; }
.legal__back:hover { color: var(--gold); }
.legal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 16px 0 0;
}
.legal__updated {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .4);
  margin-top: 18px;
}
.legal__intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244, 241, 236, .72);
  margin: 30px 0 0;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-2);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.2;
  margin: 48px 0 0;
}
.legal h2 + p, .legal h2 + ul { margin-top: 14px; }
.legal p { font-size: 15px; line-height: 1.75; color: rgba(244, 241, 236, .66); margin: 16px 0 0; }
.legal ul { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.legal li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 241, 236, .66);
}
.legal li::before { content: "—"; color: var(--gold); flex: none; }
.legal strong { color: rgba(244, 241, 236, .88); font-weight: 500; }
.legal__note {
  margin-top: 52px;
  padding: 24px 26px;
  border: 1px solid rgba(201, 169, 106, .35);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 241, 236, .72);
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .nav { gap: 20px; }
  .nav__links { gap: 20px; }
  .booking__aside { border-right: none; border-bottom: 1px solid var(--line); }
}

/* Nav folds to two rows: wordmark + CTA, then the link row beneath. */
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; row-gap: 18px; padding-block: 20px; }
  .nav__cta { order: 1; padding: 10px 18px; font-size: 11px; }
  .nav__links {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  .nav__link, .nav__tel { font-size: 11.5px; }
}

@media (max-width: 620px) {
  .form { grid-template-columns: minmax(0, 1fr); }
  .fact { flex-direction: column; gap: 6px; }
  .fact dd { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .shot:hover { transform: none; }
}
