/* ============================================================
   NAYARA — Luxury Watersports Concierge · Dubai
   Design source: Figma "nayara-homepage" (1440px)
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #04031d;
  --navy-2: #0a0a2e;
  --gold: #c9a558;
  --cream: #f5f2ed;
  --sand: #eae6df;
  --slate: #4a585c;
  --mist: #8d9a9e;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --pad-x: 80px;
  --max-w: 1440px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, blockquote { font-weight: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Shared type ---------- */
.eyebrow {
  font: 600 13px/1.3 var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font: 300 44px/1.15 var(--serif);
  color: var(--navy-2);
  margin-top: 16px;
}
.gold { color: var(--gold); }
.gold-line { display: block; width: 40px; height: 1px; background: var(--gold); }
.gold-line-wide { width: 60px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 2px;
  font: 600 13px/1 var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-solid {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.btn-solid:hover { background: transparent; color: var(--gold); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 40px var(--pad-x) 0;
  transition: background-color .4s var(--ease), padding .4s var(--ease);
}
.navbar-inner {
  max-width: calc(var(--max-w) - 2 * var(--pad-x));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .9);
  padding-bottom: 20px;
  opacity: .95;
}
.navbar.scrolled {
  background: rgba(4, 3, 29, .92);
  backdrop-filter: blur(8px);
  padding-top: 16px;
}
.navbar.scrolled .navbar-inner { border-bottom-color: transparent; padding-bottom: 16px; }
.navbar-logo img { width: 133px; height: 20px; }
.navbar-links { display: flex; gap: 40px; }
.navbar-links a {
  font: 500 13px/1 var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color .3s var(--ease);
}
.navbar-links a:hover { color: var(--gold); }
.navbar-burger { display: none; }

/* ---------- Mobile menu ---------- */
.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(4, 3, 29, .97);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.mobile-menu nav a {
  font: 500 18px/1 var(--sans);
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
}
.mobile-menu nav a.btn { color: var(--gold); }
.mobile-menu nav a.btn:hover { color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 80px;
}
.hero-media, .hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 3, 29, .55) 0%, rgba(4, 3, 29, .25) 45%, rgba(4, 3, 29, .65) 100%);
}
.hero-content {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 140px;
}
.hero-title {
  font: 300 72px/1.1 var(--serif);
  color: var(--white);
  text-align: center;
  max-width: 800px;
  opacity: 0;
  translate: 0 30px;
  animation: hero-in 1s var(--ease) .2s forwards;
}
@keyframes hero-in { to { opacity: 1; translate: 0 0; } }
.hero-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: calc(var(--max-w) - 2 * var(--pad-x));
  margin: 0 auto;
  width: 100%;
}
.hero-coords {
  font: 400 12px/1.4 var(--sans);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .6);
}
.hero-scroll {
  font: 400 12px/1.4 var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Experiences ---------- */
.experiences { background: var(--cream); padding: 120px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.section-lede {
  font: 400 16px/1.5 var(--sans);
  color: rgba(10, 10, 46, .7);
  max-width: 380px;
}
.card-grid { display: grid; gap: 32px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); margin-bottom: 32px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.exp-card {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.exp-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.exp-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(4, 3, 29, .45);
  transition: background-color .5s var(--ease);
}
.exp-card:hover .exp-card-bg { transform: scale(1.06); }
.exp-card:hover::after { background: rgba(4, 3, 29, .3); }
.exp-card-top, .exp-card-body { position: relative; z-index: 1; }
.exp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.exp-card-top .gold-line { margin-top: 6px; }
.exp-card-loc {
  font: 500 12px/1.3 var(--sans);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .6);
}
.exp-card-body h3 {
  font: 500 28px/1.2 var(--serif);
  color: var(--white);
}
.exp-card-body p {
  font: 400 14px/1.4 var(--sans);
  color: rgba(255, 255, 255, .8);
  margin-top: 12px;
}
.enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font: 600 12px/1 var(--sans);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.enquire img { transition: transform .3s var(--ease); }
.enquire:hover img { transform: translateX(4px); }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); padding: 120px 0; overflow: hidden; }
.section-head-center { text-align: center; margin-bottom: 64px; padding: 0 var(--pad-x); }
.section-head-center .section-title { color: var(--navy); }
.marquee { display: flex; flex-direction: column; gap: 38px; }
.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-set {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}
.marquee-set img {
  width: 227px;
  height: 284px;
  object-fit: cover;
  flex-shrink: 0;
}
.marquee-left { animation: scroll-left 80s linear infinite; }
.marquee-right { animation: scroll-right 80s linear infinite; }
.marquee:hover .marquee-left,
.marquee:hover .marquee-right { animation-play-state: paused; }
@keyframes scroll-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- Intro ---------- */
.intro { background: var(--cream); padding: 120px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .section-title { color: var(--navy); }
.intro-lead {
  font: 400 18px/1.6 var(--sans);
  color: var(--slate);
  margin-top: 32px;
}
.intro-sub {
  font: 400 15px/1.6 var(--sans);
  color: var(--mist);
  margin-top: 24px;
}
.intro-media img {
  border-radius: 4px;
  width: 100%;
  height: 540px;
  object-fit: cover;
}

/* ---------- Press bar ---------- */
.press { background: var(--sand); padding: 48px 0; }
.press-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.press-label {
  font: 600 11px/1.3 var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate);
}
.press-names {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.press-names span {
  font: 500 18px/1.3 var(--serif);
  letter-spacing: 1px;
  color: rgba(4, 3, 29, .6);
}

/* ---------- Highlight / CTA ---------- */
.highlight {
  position: relative;
  min-height: 716px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad-x);
}
.highlight-media, .highlight-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.highlight-overlay {
  position: absolute; inset: 0;
  background: rgba(4, 3, 29, .55);
}
.highlight-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  text-align: center;
}
.highlight-content blockquote {
  font: 300 48px/1.3 var(--serif);
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer { background: var(--navy); padding: 96px 0 48px; color: var(--white); }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.footer-brand { max-width: 405px; }
.footer-brand p {
  font: 400 14px/1.6 var(--sans);
  color: rgba(255, 255, 255, .6);
  margin-top: 24px;
}
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  transition: background-color .3s var(--ease);
}
.footer-social a:hover { background: var(--gold); }
.footer-cols { display: flex; gap: 96px; }
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col h4 {
  font: 600 12px/1.3 var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col a, .footer-col span {
  font: 400 14px/1.4 var(--sans);
  color: rgba(255, 255, 255, .7);
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  margin: 80px 0 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-legal a {
  font: 400 12px/1.4 var(--sans);
  color: rgba(255, 255, 255, .4);
}
.footer-legal { display: flex; gap: 32px; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
html.js .reveal {
  opacity: 0;
  translate: 0 30px;
  transition: opacity .5s var(--ease), translate .5s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.in { opacity: 1; translate: 0 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-left, .marquee-right { animation: none; }
  .marquee-track { flex-wrap: wrap; width: auto; }
  .hero-title { animation: none; opacity: 1; translate: 0 0; }
  html.js .reveal { opacity: 1; translate: 0 0; transition: none; }
  .exp-card:hover .exp-card-bg { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  :root { --pad-x: 48px; }
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { gap: 56px; }
}

@media (max-width: 900px) {
  :root { --pad-x: 32px; }
  .hero-title { font-size: clamp(44px, 9vw, 64px); }
  .section-title { font-size: 36px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-media img { height: 420px; }
  .footer-top { flex-direction: column; }
  .footer-cols { flex-wrap: wrap; gap: 48px; }
  .highlight-content blockquote { font-size: 36px; }
  .press-inner { justify-content: center; }
  .press-names { gap: 32px; justify-content: center; }
}

@media (max-width: 720px) {
  .navbar { padding-top: 20px; }
  .navbar-links, .navbar-cta { display: none; }
  .navbar-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .navbar-burger span {
    width: 22px; height: 2px;
    background: var(--white);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .navbar-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar-burger.open span:nth-child(2) { opacity: 0; }
  .navbar-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .exp-card { height: 420px; }
  .hero { padding-bottom: 48px; }
  .hero-content { margin-bottom: 90px; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .experiences, .gallery, .intro { padding: 80px 0; }
  .marquee-set img { width: 170px; height: 213px; }
  .footer { padding-top: 64px; }
  .footer-divider { margin-top: 48px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
