:root {
  --black: #090806;
  --soft-black: #12100d;
  --paper: #f1eadf;
  --white: #fffaf0;
  --gold: #c89b50;
  --light-gold: #efd594;
  --muted: #978f83;
  --line: rgba(220, 180, 105, .22);
  --serif: "Italiana", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(1200px, calc(100% - 64px)); margin-inline: auto; }

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 5, .88);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  color: var(--light-gold);
  font-size: 1.7rem;
  filter: drop-shadow(0 0 7px rgba(229, 190, 112, .45));
  animation: wingPulse 3s ease-in-out infinite;
}
@keyframes wingPulse {
  50% { transform: translateY(-3px) scale(1.08); filter: drop-shadow(0 0 14px rgba(239, 211, 148, .75)); }
}
.brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .16em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .58rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a[aria-current="page"] { color: var(--light-gold); }
.nav-reserve {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  color: #17110a;
  background: linear-gradient(110deg, #a77937, #ebce8b, #ad7e3d);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  animation: reservePulse 2.7s ease-in-out infinite;
}
@keyframes reservePulse {
  50% { box-shadow: 0 0 20px rgba(225, 183, 100, .48); }
}

.hero {
  position: relative;
  min-height: 850px;
  display: grid;
  align-items: end;
  padding: 160px 0 105px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,4,3,.95), rgba(5,4,3,.66) 48%, rgba(5,4,3,.14)),
    linear-gradient(0deg, #090806 0%, transparent 35%);
}
.eyebrow {
  margin: 0 0 23px;
  color: var(--light-gold);
  font-size: .61rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(4.3rem, 8.5vw, 8.8rem);
  line-height: .82;
  letter-spacing: -.04em;
}
h1 em, h2 em { color: var(--light-gold); font-weight: 400; }
.hero-copy {
  max-width: 590px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.68);
  font-size: .94rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--line);
  color: var(--light-gold);
  background: rgba(213, 171, 91, .06);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.button.gold {
  border: 0;
  color: #17110a;
  background: linear-gradient(110deg, #a77937, #ebce8b, #ad7e3d);
}

.trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0b08;
}
.trust {
  padding: 29px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.trust:last-child { border: 0; }
.trust strong { display: block; color: var(--light-gold); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.trust span { color: var(--muted); font-size: .53rem; letter-spacing: .12em; text-transform: uppercase; }

.intro { padding: 140px 0; background: var(--soft-black); }
.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.section-label {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: .57rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro h2, .faq h2, .cta h2 {
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: .88;
}
.prose { color: var(--muted); font-size: .9rem; }
.prose p { margin: 0 0 20px; }

.features { padding: 130px 0; background: var(--paper); color: #191611; }
.features-head { max-width: 790px; margin-bottom: 60px; }
.features h2 { margin-bottom: 20px; font-size: clamp(3.4rem, 6vw, 6.5rem); line-height: .88; }
.features-head p { color: #6e675d; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.card {
  min-height: 330px;
  padding: 36px 30px;
  border: 1px solid rgba(53,42,26,.16);
  background: rgba(255,255,255,.28);
}
.card small { color: #8f682f; font-size: .53rem; letter-spacing: .16em; text-transform: uppercase; }
.card h3 { margin: 60px 0 15px; font-size: 1.9rem; line-height: 1.05; }
.card p { margin: 0; color: #6c655c; font-size: .8rem; }

.gallery {
  height: clamp(560px, 62vw, 760px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  overflow: hidden;
}
.gallery-side {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
}

.faq { padding: 140px 0; background: #0a0907; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 24px 45px 24px 0;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; color: var(--light-gold); }
details[open] summary::after { content: "×"; }
.answer { padding: 0 45px 24px 0; color: var(--muted); font-size: .82rem; }
.answer p { margin: 0; }

.cta {
  padding: 130px 0;
  background:
    radial-gradient(circle at center, rgba(196,149,67,.16), transparent 38%),
    #11100d;
  text-align: center;
}
.cta h2 { margin-inline: auto; }
.cta p { color: var(--muted); }
.phone { display: block; margin: 24px 0 30px; color: var(--light-gold); font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); text-decoration: none; }
footer { padding: 23px 0; color: #716b62; background: #080705; font-size: .56rem; letter-spacing: .12em; text-align: center; text-transform: uppercase; }

.legal-main { padding: 180px 0 110px; background: var(--black); }
.legal-shell { max-width: 900px; }
.legal-main h1 { margin-bottom: 24px; font-size: clamp(3.8rem, 8vw, 7.4rem); }
.legal-updated { margin-bottom: 70px; color: var(--muted); font-size: .72rem; }
.legal-content { padding: clamp(30px, 5vw, 64px); border: 1px solid var(--line); background: #100e0b; }
.legal-content h2 { margin: 52px 0 14px; color: var(--light-gold); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0; color: #aaa195; font-size: .88rem; }
.legal-content a { color: var(--light-gold); }
.legal-footer { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 30px; padding-inline: 20px; }
.legal-footer a { color: var(--light-gold); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.daily-hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  padding-top: 82px;
  background:
    radial-gradient(circle at 25% 30%, rgba(196, 149, 69, .12), transparent 30%),
    var(--black);
}

.daily-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 80px 5vw 130px max(5vw, calc((100vw - 1200px) / 2));
  overflow: hidden;
}

.daily-hero-copy::before {
  content: "01";
  position: absolute;
  right: -.03em;
  bottom: -.15em;
  color: rgba(221, 180, 101, .035);
  font-family: var(--serif);
  font-size: clamp(20rem, 35vw, 40rem);
  line-height: .8;
}

.daily-hero-copy > div { position: relative; z-index: 1; }
.daily-hero-copy h1 { max-width: 650px; }

.daily-hero-visual {
  position: relative;
  min-height: 738px;
  overflow: hidden;
}

.daily-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.87) contrast(1.04);
}

.daily-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,7,5,.28), transparent 35%);
  pointer-events: none;
}

.daily-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(360px, 70%);
  padding: 28px 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(9, 8, 6, .88);
  backdrop-filter: blur(15px);
}

.daily-badge small {
  display: block;
  color: var(--gold);
  font-size: .52rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.daily-badge strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.daily-page .gallery {
  height: 640px;
  min-height: 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 12px;
  padding: 12px;
  background: #0d0b08;
  overflow: hidden;
}

.daily-page .gallery-side {
  height: 100%;
  gap: 12px;
  overflow: hidden;
}
.daily-page .gallery img {
  min-height: 0;
  border-radius: 2px;
}
.daily-page .gallery > img { object-position: center 35%; }

@media (max-width: 900px) {
  .shell { width: min(100% - 38px, 700px); }
  .brand strong { display: none; }
  .nav { gap: 14px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .5rem; letter-spacing: .08em; }
  .nav-reserve { padding: 0 10px; }
  .two-col, .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .gallery { height: 620px; min-height: 0; }
  .daily-hero {
    grid-template-columns: 1fr;
    padding-top: 82px;
  }
  .daily-hero-copy {
    min-height: 630px;
    padding: 100px 7vw;
  }
  .daily-hero-visual { min-height: 720px; }
}

@media (max-width: 580px) {
  .shell { width: calc(100% - 28px); }
  .topbar { position: absolute; }
  .nav {
    min-height: 108px;
    flex-wrap: wrap;
    align-content: center;
    gap: 8px;
    padding-block: 10px;
  }
  .brand { display: flex; }
  .brand strong { display: block; font-size: .92rem; }
  .brand-mark { font-size: 1.35rem; }
  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 6px;
  }
  .nav-links a { font-size: .45rem; letter-spacing: .04em; }
  .nav-reserve {
    margin-left: auto;
    min-height: 36px;
    font-size: .45rem;
    letter-spacing: .06em;
  }
  .hero { min-height: 790px; padding: 165px 0 80px; }
  h1 { font-size: clamp(3.8rem, 20vw, 5.8rem); }
  .trustbar { grid-template-columns: 1fr 1fr; }
  .trust:nth-child(2) { border-right: 0; }
  .trust:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro, .features, .faq, .cta { padding: 95px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: 270px; }
  .gallery {
    height: 950px;
    grid-template-columns: 1fr;
    grid-template-rows: 430px 520px;
    min-height: 0;
  }
  .gallery-side {
    height: 520px;
    min-height: 0;
  }
  .daily-hero {
    padding-top: 108px;
  }
  .daily-hero-copy {
    min-height: 610px;
    padding: 90px 20px;
  }
  .daily-hero-visual { min-height: 600px; }
  .daily-badge { width: 84%; padding: 23px; }
  .daily-page .gallery {
    height: 980px;
    grid-template-columns: 1fr;
    grid-template-rows: 450px 506px;
    min-height: 0;
  }
  .daily-page .gallery-side {
    height: 506px;
  }
  .legal-main { padding: 155px 0 80px; }
  .legal-content { padding: 28px 22px; }
}

@media (max-width: 380px) {
  .shell { width: calc(100% - 20px); }
  .nav { gap: 5px; }
  .brand strong { font-size: .84rem; }
  .nav-links { gap: 4px; }
  .nav-links a {
    font-size: .4rem;
    letter-spacing: .01em;
  }
  .nav-reserve {
    min-height: 34px;
    padding-inline: 7px;
    font-size: .4rem;
    letter-spacing: .02em;
  }
  h1 { font-size: 3.55rem; }
  .phone {
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 12vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
