/* ─────────────────────────────────────────
   MIRAS STUDIO — Shared Styles
   ───────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #09090f;
  --bg-mid:    #0f0f18;
  --gold:      #b89a6a;
  --gold-dim:  rgba(184,154,106,0.15);
  --gold-border: rgba(184,154,106,0.2);
  --white:     #ffffff;
  --off:       #e2ddd6;
  --muted:     #6b7280;
  --muted2:    #4b5360;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px;
  height: 76px;
  transition: background 0.4s, border-bottom 0.4s;
}
.nav.scrolled {
  background: rgba(9,9,15,0.96);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 21px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-book {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bg);
  background: var(--gold); padding: 11px 28px;
  transition: opacity 0.25s; border: none; cursor: pointer;
  font-family: var(--font-sans);
}
.nav-book:hover { opacity: 0.82; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); transition: all 0.3s;
}

/* ── MOBILE NAV ───────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300;
  letter-spacing: 0.05em; color: var(--white);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 28px; right: 56px;
  font-size: 28px; color: var(--muted); cursor: pointer;
  transition: color 0.25s;
}
.mobile-nav-close:hover { color: var(--white); }

/* ── UTILITY ──────────────────────────── */
.label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.serif-heading {
  font-family: var(--font-serif);
  font-weight: 300; line-height: 1.08;
}
.serif-heading em { font-style: italic; color: var(--gold); }

.gold-line {
  width: 40px; height: 1px; background: var(--gold);
}

.btn-gold {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bg);
  background: var(--gold); padding: 15px 40px;
  transition: opacity 0.25s; border: none; cursor: pointer;
  font-family: var(--font-sans);
}
.btn-gold:hover { opacity: 0.82; }

.btn-outline {
  display: inline-block;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--gold-border); padding: 15px 40px;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--white); }

/* ── MARQUEE ──────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden; padding: 16px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 11px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.marquee-item::after {
  content: '✦'; color: var(--gold); font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PAGE HERO (inner pages) ──────────── */
.page-hero {
  padding: 160px 56px 100px;
  border-bottom: 1px solid var(--gold-border);
}
.page-hero .label { margin-bottom: 28px; }
.page-hero h1 { font-size: clamp(44px, 5vw, 78px); max-width: 700px; }
.page-hero p {
  font-size: 15px; color: var(--muted); font-weight: 300;
  max-width: 480px; line-height: 1.85; margin-top: 24px;
}

/* ── FOOTER ───────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
}
.footer-main {
  padding: 72px 56px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 12px; color: var(--muted2); font-weight: 300;
  line-height: 1.7; max-width: 240px;
}
.footer-col-title {
  font-size: 9px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 13px; font-weight: 300; color: var(--muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-contact-item {
  display: flex; flex-direction: column; gap: 3px;
}
.footer-contact-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted2); font-weight: 500;
}
.footer-contact-val {
  font-size: 13px; font-weight: 300; color: var(--muted);
  transition: color 0.25s;
}
a.footer-contact-val:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 56px;
  border-top: 1px solid var(--gold-border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 11px; color: var(--muted2); letter-spacing: 0.06em;
}
.footer-bottom-links {
  display: flex; gap: 24px;
}
.footer-bottom-links a {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted2); transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 860px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 120px 20px 70px; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px; padding: 52px 20px 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }

  /* Larger touch targets on mobile */
  .btn-gold, .btn-outline, .btn-dark {
    min-height: 52px; display: inline-flex;
    align-items: center; justify-content: center;
    padding-left: 32px; padding-right: 32px;
  }
  .mobile-nav a { min-height: 56px; display: flex; align-items: center; }
  .whatsapp-btn { min-height: 52px; }
}

@media (max-width: 480px) {
  .marquee-item { font-size: 10px; padding: 0 20px; gap: 20px; }
  .label { font-size: 9px; letter-spacing: 0.22em; }
  .gold-line { margin: 24px 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-contact-val { font-size: 12px; word-break: break-all; }
}
