/* Immersive Journeying — site styles.
   Deep teal/navy palette, serif display headings, cinematic photo hero.
   Kept dependency-free (system fonts) to match the original look. */

:root {
  --ink:      #0B2939;   /* deepest teal-navy: footer, dark surfaces, text */
  --ink-2:    #113A51;
  --brand:    #184D6A;
  --brand-2:  #1E5F82;   /* primary button */
  --brand-3:  #2b76a0;   /* button hover */
  --tint:     #E9F2F7;   /* pale wash section bg */
  --tint-2:   #D6E7F0;
  --line:     #dbe7ef;
  --line-2:   #c3d7e4;
  --paper:    #ffffff;
  --muted:    #557184;
  --gold:     #b3893f;   /* warm accent for kickers / small flourishes */
  --gold-2:   #caa057;
  --good:     #2f8f6b;
  --bad:      #c0455b;

  --serif: Georgia, "Times New Roman", "Playfair Display", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(11, 41, 57, .45);
  --shadow-sm: 0 8px 24px -14px rgba(11, 41, 57, .40);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---- Kicker + section headings ------------------------------------------ */
.kicker {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 12px;
}
.section { padding: 92px 0; }
.section--tint { background: var(--tint); }
.section--dark { background: linear-gradient(180deg, #1a4a63 0%, #123a4f 100%); color: #fff; }
.section--dark .section-head h2 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 16px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease; text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--brand-2); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-3); transform: translateY(-1px); }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #24170a; }
.btn--gold:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--outline { background: transparent; color: var(--brand-2); border-color: var(--line-2); }
.btn--outline:hover { background: var(--tint); }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 34px; font-size: 16px; }

/* ---- Header / nav -------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav.scrolled { background: rgba(11, 41, 57, .94); backdrop-filter: blur(10px); box-shadow: 0 6px 24px -16px rgba(0,0,0,.6); padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7); display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: .5px;
}
.brand__name { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: .3px; line-height: 1; }
.brand__sub { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: rgba(255,255,255,.9); font-size: 12.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__auth { display: flex; align-items: center; gap: 12px; }
.nav__auth .nav-user { color: #fff; font-size: 13.5px; font-weight: 600; }
.nav-cta { display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,.5); background: transparent; color: #fff; transition: all .16s; }
.nav-cta:hover { background: rgba(255,255,255,.14); }
.nav-cta--solid { background: var(--gold); border-color: transparent; color: #24170a; }
.nav-cta--solid:hover { filter: brightness(1.05); background: var(--gold); }
.nav__toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; text-align: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.hero__scrim { position: absolute; inset: 0; background:
   linear-gradient(180deg, rgba(11,41,57,.62) 0%, rgba(11,41,57,.42) 40%, rgba(11,41,57,.86) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 120px 24px 90px; }
.hero__eyebrow { font-size: 13px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; margin: 0 0 22px; }
.hero h1 { color: #fff; font-size: clamp(42px, 7vw, 82px); margin: 0 0 20px; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero__tagline { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.5vw, 26px); color: rgba(255,255,255,.94); margin: 0 auto 38px; max-width: 640px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.75); font-size: 22px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---- About --------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about__body p { color: #33505f; font-size: 16.5px; margin: 0 0 18px; }
.about__body p:first-of-type::first-letter { font-family: var(--serif); font-size: 46px; font-weight: 700; float: left; line-height: .8; padding: 6px 12px 0 0; color: var(--brand-2); }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about__media .stamp {
  position: absolute; bottom: -22px; left: -22px; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); max-width: 210px;
}
.about__media .stamp b { font-family: var(--serif); font-size: 26px; display: block; }
.about__media .stamp span { font-size: 12px; color: rgba(255,255,255,.72); letter-spacing: .04em; }

/* ---- Feature cards (What makes us different) ----------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 14px 14px 24px; text-align: left; transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__img { width: 100%; aspect-ratio: 5/7; object-fit: cover; border-radius: 12px; margin-bottom: 16px; display: block; }
.feature h3 { font-size: 22px; margin: 0 4px 10px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0 4px; }
.different-close { text-align: center; color: rgba(255,255,255,.9); max-width: 760px; margin: 44px auto 0; font-size: 16.5px; line-height: 1.7; }

/* Trailer */
.trailer-section { background: var(--ink); }
.trailer-section .section-head h2, .trailer-section .section-head p { color: #fff; }
.trailer-wrap { max-width: 920px; margin: 0 auto; position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #000; }
.trailer-wrap video { width: 100%; display: block; aspect-ratio: 16/9; background: #000; }
.trailer__play { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.92); display: grid; place-items: center; transition: transform .15s, background .15s; box-shadow: 0 10px 30px -8px rgba(0,0,0,.6); }
.trailer__play::before { content: ''; width: 0; height: 0; border-style: solid; border-width: 13px 0 13px 21px; border-color: transparent transparent transparent var(--ink); margin-left: 5px; }
.trailer__play:hover { transform: scale(1.06); background: #fff; }
.trailer__play.hidden { display: none; }

/* ---- Menu / packages ----------------------------------------------------- */
.menu-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.menu-tab {
  border: 1px solid var(--line-2); background: var(--paper); color: var(--ink);
  padding: 9px 20px; border-radius: 999px; font: 600 13.5px var(--sans); cursor: pointer; transition: all .15s;
}
.menu-tab:hover { border-color: var(--brand-2); }
.menu-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dish {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish__img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.dish__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dish__tag { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.dish h3 { font-size: 20px; margin: 0 0 8px; }
.dish p { color: var(--muted); font-size: 14.5px; margin: 0 0 14px; flex: 1; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; }
.dish__price { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--brand-2); }

/* ---- Partners / badges --------------------------------------------------- */
.partners { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: .9; }
.partners img { height: 46px; width: auto; filter: grayscale(.2); }

/* ---- Visit us / CTA band ------------------------------------------------- */
.visit { background: var(--ink); color: #fff; }
.visit .section-head h2, .visit h2, .visit h3 { color: #fff; }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.visit__info h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 18px; }
.visit__info .line { display: flex; gap: 12px; margin: 12px 0; color: rgba(255,255,255,.86); font-size: 16px; }
.visit__info .line .ic { color: var(--gold-2); }
.visit__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.visit__map img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin: 0 0 16px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 17px; margin: 0 auto 28px; max-width: 560px; }

/* ---- Footer -------------------------------------------------------------- */
.footer { background: #071e2b; color: rgba(255,255,255,.72); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 16px; }
.footer a { color: rgba(255,255,255,.72); display: block; margin: 8px 0; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { font-size: 14.5px; max-width: 320px; margin: 14px 0 0; }
.footer__badges { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin: 4px 0 30px; }
.footer__badges a { display: inline-flex; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 16px -10px rgba(0,0,0,.6); transition: transform .15s ease, box-shadow .15s ease; }
.footer__badges a:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(0,0,0,.7); }
.footer__badges img { height: 42px; width: auto; display: block; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* ---- Modal (auth + contact) --------------------------------------------- */
.overlay { position: fixed; inset: 0; background: rgba(7, 24, 33, .72); backdrop-filter: blur(4px); z-index: 60; display: none; align-items: center; justify-content: center; padding: 24px; overflow: auto; }
.overlay[aria-hidden="false"], .overlay.open { display: flex; }
.modal { background: var(--paper); border-radius: 18px; width: 100%; max-width: 460px; padding: 34px 34px 30px; box-shadow: var(--shadow); position: relative; }
.modal__close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; }
.modal h3 { font-size: 26px; margin: 0 0 6px; }
.modal .modal__sub { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.tabs { display: flex; gap: 6px; background: var(--tint); padding: 5px; border-radius: 12px; margin-bottom: 22px; }
.tabs button { flex: 1; border: none; background: transparent; padding: 10px; border-radius: 9px; font: 600 14px var(--sans); color: var(--muted); cursor: pointer; }
.tabs button.active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---- Forms --------------------------------------------------------------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea, .input {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 10px;
  font: 14px var(--sans); color: var(--ink); background: #fbfdfe; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus, .input:focus {
  outline: none; border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(30, 95, 130, .12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); margin: 12px 0; }
.check input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-msg { font-size: 13px; margin: 10px 0 0; }
.form-msg.err { color: var(--bad); } .form-msg.ok { color: var(--good); }
.form-alt { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--muted); }

/* ---- Cookie banner ------------------------------------------------------- */
.cookie { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 560px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow); z-index: 55; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie p { margin: 0; font-size: 13.5px; flex: 1; min-width: 200px; color: rgba(255,255,255,.85); }
.cookie .btn { padding: 9px 16px; font-size: 13px; }

.hidden { display: none !important; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,41,57,.98); padding: 20px 24px; gap: 16px;
  }
  .about__grid, .visit__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .features, .menu-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .features, .menu-grid, .footer__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
