/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #1c1c1c;
  --dark:    #141414;
  --panel:   #222222;
  --border:  #2e2e2e;
  --gold:    #FFC904;
  --gold-lt: #ffd84d;
  --gold-dk: #c99e00;
  --white:   #F1F1F1;
  --muted:   #a0a098;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --max-w: 1200px;
  --section-pad: 5rem 2rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── UTILITY ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
}
.gold-rule.left { margin-left: 0; }

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--white);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover  { background: var(--gold); color: var(--black); }
.btn.filled { background: var(--gold); color: var(--black); }
.btn.filled:hover { background: var(--gold-lt); }

/* ── NAV ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, padding 0.35s, border-bottom 0.35s;
}

#nav.scrolled {
  background: rgba(20,20,20,0.97);
  padding: 0.9rem 2.5rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,20,0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-drawer.open { opacity: 1; }

.nav-drawer a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,20,20,0.95) 38%, rgba(20,20,20,0.2) 100%),
    linear-gradient(to bottom, rgba(20,20,20,0.3) 0%, rgba(20,20,20,0.0) 40%, rgba(20,20,20,0.5) 100%),
    url('orlando-skyline.jpg') center 60%/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 3rem;
  margin-left: 6%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-detail {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── TRUST STRIP ──────────────────────────────────────── */
#trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  padding: 1.75rem 2rem;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item { text-align: center; }

.trust-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ── SERVICES ─────────────────────────────────────────── */
#services {
  padding: var(--section-pad);
  background: var(--black);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.service-card:hover { background: var(--panel); }

.service-accent {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 1.03rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
}

.service-card .card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.service-card:hover .card-link { border-color: var(--gold); }

/* ── BOOKING ──────────────────────────────────────────── */
#booking {
  padding: var(--section-pad);
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.booking-copy { padding-top: 0.5rem; }

.booking-copy p {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.25rem;
}

.booking-embed {
  background: var(--panel);
  border: 1px solid var(--border);
  min-height: 480px;
}

/* ── WHY US ───────────────────────────────────────────── */
#why {
  padding: var(--section-pad);
  background: var(--panel);
  border-top: 1px solid var(--border);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-copy .section-title { margin-bottom: 1.25rem; }

.why-copy p {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--black);
}

.pillar-accent {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────────────── */
#contact {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info .section-title { margin-bottom: 1.25rem; }

.contact-info > p {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.contact-row-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  width: 60px;
  flex-shrink: 0;
}

.contact-row-value {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
}

.contact-row-value a { transition: color 0.2s; }
.contact-row-value a:hover { color: var(--gold); }
.contact-row-value { overflow-wrap: anywhere; }

/* Disclaimer column: vertically centers the box on desktop */
.disclaimer-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer {
  width: 100%;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold-dk);
  background: var(--panel);
}

.disclaimer p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
}

.disclaimer strong { color: var(--white); font-weight: 500; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
}

footer span { color: var(--gold); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════ */

/* ── TABLET: iPad portrait & landscape (481–860px) ────── */
@media (max-width: 860px) {

  :root { --section-pad: 4rem 1.5rem; }

  /* Nav: show hamburger, hide desktop links */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #nav {
    padding: 1.1rem 1.5rem;
    position: fixed;
  }
  #nav.scrolled { padding: 0.85rem 1.5rem; }

  /* Center logo between hamburger and left edge */
  #nav > a:first-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hero: heavier overlay on mobile/tablet */
  .hero-bg {
    background:
      linear-gradient(to bottom,
        rgba(20,20,20,0.75) 0%,
        rgba(20,20,20,0.55) 35%,
        rgba(20,20,20,0.72) 65%,
        rgba(20,20,20,0.88) 100%),
      url('orlando-skyline.jpg') center 45%/cover no-repeat;
  }

  /* Text shadow so headlines pop over any residual photo brightness */
  .hero-title,
  .hero-eyebrow,
  .hero-sub {
    text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
  }

  .hero-content {
    padding: 0 1.75rem;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }

  /* Services: 1 column on tablet */
  .services-grid { grid-template-columns: 1fr; }

  /* Booking: stack */
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Why / Contact: stack */
  .why-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; align-items: center; }
  .contact-inner > * { min-width: 0; }

  /* Stack label above value on tablet/mobile */
  .contact-row { flex-direction: column; gap: 0.2rem; }
  .contact-row-label { width: auto; }
  .contact-row-value { font-size: 0.95rem; }
  .pillars      { grid-template-columns: repeat(2, 1fr); }

  /* Trust: tighten gap */
  .trust-inner  { gap: 2rem; }

  /* Disclaimer: swap border-left for border-top, horizontally centered */
  .disclaimer-col {
    display: flex;
    justify-content: center;
  }
  .disclaimer {
    border-left: none;
    border-top: 2px solid var(--gold-dk);
    max-width: 480px;
    width: 100%;
    text-align: center;
  }
}

/* ── MOBILE: phones (≤480px) ──────────────────────────── */
@media (max-width: 480px) {

  :root { --section-pad: 3.5rem 1.25rem; }

  body { font-size: 17px; }

  /* Nav */
  #nav { padding: 1rem 1.25rem; }

  /* Logo slightly smaller on small screens */
  .nav-logo-img { height: 32px; }

  /* Hero */
  .hero-content {
    padding: 0 1.25rem;
    padding-top: 2rem;
  }

  #hero .hero-bg {
    background:
      linear-gradient(to bottom,
        rgba(20,20,20,0.7) 0%,
        rgba(20,20,20,0.5) 30%,
        rgba(20,20,20,0.75) 65%,
        rgba(20,20,20,0.92) 100%),
      url('orlando-skyline.jpg') center 35%/cover no-repeat;
  }

  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  .hero-sub {
    font-size: 1.03rem;
    color: rgba(241, 241, 241, 0.9);
  }

  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; gap: 1rem; }

  .btn { display: block; text-align: center; padding: 1.1rem 1.5rem; }

  .hero-detail { text-align: center; font-size: 0.78rem; }

  /* Trust: 2x2 grid on mobile */
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  /* Services */
  .service-card { padding: 2rem 1.5rem; }

  /* Booking */
  .booking-embed { min-height: 400px; }

  /* Pillars: single column on phone */
  .pillars { grid-template-columns: 1fr; }

  /* Contact: make phone/email tap-friendly */
  .contact-row-value { font-size: 0.9rem; }
  .contact-row-value a {
    display: inline-block;
    padding: 0.5rem 0;
  }

  /* Section titles slightly smaller */
  .section-title { font-size: clamp(1.9rem, 7vw, 2.5rem); }

  /* Footer */
  footer { padding: 2rem 1.25rem; }
  footer p { font-size: 0.82rem; line-height: 1.9; }
}
