/* =============================================
   SMARTRIDE TRANSFERS — Stylesheet v2
   Mobile-first, fully responsive
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark: #1c1c1c;
  --border: #2e2e2e;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #f5f0e8;
  --muted: #9a9590;
  --text: #d8d3c8;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::selection { background: var(--gold); color: var(--black); }

/* ── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo: transparent PNG, inverted to white */
.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(10);
}

/* Mobile nav drawer */
.nav-links {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.99);
  flex-direction: column;
  list-style: none;
  padding: 0 1.5rem 2rem;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  border-bottom: 1px solid var(--border);
  display: flex;
}

.nav-links.open { transform: translateY(0); }

.nav-links li { border-bottom: 1px solid var(--border); }
.nav-links li:last-child { border-bottom: none; margin-top: 1rem; }

.nav-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 0;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.85rem 1.5rem !important;
  text-align: center;
  display: block;
  letter-spacing: 0.12em;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  -webkit-tap-highlight-color: transparent;
}

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

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

/* ── HERO ───────────────────────────────────── */
#hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 7rem;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black, transparent);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.12s ease both;
}

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

.hero-sub {
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s 0.24s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.36s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.95rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  line-height: 1;
}

.btn-primary:hover, .btn-primary:active { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

.btn-outline:hover, .btn-outline:active { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1.5rem;
  animation: fadeUp 0.8s 0.48s ease both;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── SECTION COMMONS ────────────────────────── */
section { padding: 4rem 1.5rem; }

.inner { max-width: 1160px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--gold); }
.section-lead { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }

.divider { width: 40px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ── BOOK BANNER ────────────────────────────── */
#book-banner {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.book-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.booking-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.booking-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.book-banner-cta { display: flex; flex-direction: column; gap: 0.9rem; }

.book-cta-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

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

.services-header { margin-bottom: 2rem; }

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

.service-card {
  background: var(--black);
  padding: 2rem 1.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover { background: var(--charcoal); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── FAQ ────────────────────────────────────── */
#faq { background: var(--charcoal); border-top: 1px solid var(--border); }

.faq-header { margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.4;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  min-width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-dim); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding-bottom: 1.2rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 500px; }

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

.contact-body { display: flex; flex-direction: column; gap: 3rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.8rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: var(--gold);
}

.contact-item-text p {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item-text a, .contact-item-text span {
  font-size: 0.86rem; color: var(--text);
  text-decoration: none; line-height: 1.6; display: block;
  word-break: break-word;
}

.contact-item-text a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--charcoal);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 1rem; /* prevents iOS zoom */
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--charcoal);
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--dark); }

.form-notice { font-size: 0.75rem; color: var(--muted); line-height: 1.6; }

#form-success {
  display: none;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  text-align: center;
}

/* ── POLICIES ───────────────────────────────── */
#policies { background: var(--charcoal); border-top: 1px solid var(--border); }

.policy-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.policy-tabs::-webkit-scrollbar { display: none; }

.policy-tab {
  background: none; border: none;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  cursor: pointer; position: relative;
  transition: color 0.25s; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.policy-tab::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}

.policy-tab:hover { color: var(--text); }
.policy-tab.active { color: var(--gold); }
.policy-tab.active::after { transform: scaleX(1); }

.policy-panel { display: none; animation: fadeIn 0.3s ease; }
.policy-panel.active { display: block; }

.policy-content { font-size: 0.87rem; color: var(--muted); line-height: 1.9; }

.policy-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--white);
  margin: 1.8rem 0 0.6rem;
}

.policy-content h3:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 0.8rem; }

.policy-content ul { margin: 0.5rem 0 0.8rem; padding-left: 0; list-style: none; }

.policy-content ul li {
  padding: 0.2rem 0 0.2rem 1.2rem;
  position: relative;
}

.policy-content ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.8rem;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}

.footer-brand img {
  height: 38px; width: auto;
  filter: invert(1) brightness(10);
  margin-bottom: 0.8rem;
  object-fit: contain;
}

.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul li a {
  font-size: 0.82rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }
.footer-bottom span { color: var(--gold); }

/* ── BOOKING PAGE (full-screen slide-in) ─────── */
#booking-page {
  position: fixed; inset: 0;
  z-index: 2000;
  background: var(--black);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#booking-page.open { transform: translateX(0); }

.bp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  height: var(--nav-h);
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
  flex-shrink: 0;
}

.bp-header img {
  height: 38px; width: auto;
  filter: invert(1) brightness(10);
  object-fit: contain;
}

.bp-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 1rem;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.bp-close:hover { border-color: var(--gold); color: var(--gold); }

.bp-body {
  flex: 1;
  padding: 2.5rem 1.25rem 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}

.bp-intro { text-align: center; max-width: 560px; }
.bp-intro .section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.bp-intro p { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; }

.bp-widget {
  width: 100%; max-width: 600px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ── TABLET 600px+ ──────────────────────────── */
@media (min-width: 600px) {
  section { padding: 5rem 2.5rem; }
  footer { padding: 4rem 2.5rem 2.5rem; }
  nav { padding: 0 2rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .bp-body { padding: 3rem 2.5rem; }
}

/* ── DESKTOP 960px+ ─────────────────────────── */
@media (min-width: 960px) {
  :root { --nav-h: 76px; }
  nav { padding: 0 3.5rem; }
  section { padding: 6.5rem 3.5rem; }
  footer { padding: 5rem 3.5rem 3rem; }

  /* Horizontal nav */
  .nav-links {
    position: static;
    transform: none !important;
    flex-direction: row;
    background: none;
    padding: 0;
    gap: 2.2rem;
    border-bottom: none;
    align-items: center;
  }

  .nav-links li { border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; }
  .nav-links a { font-size: 0.73rem; padding: 0; }
  .nav-cta { padding: 0.6rem 1.4rem !important; display: inline-block; }
  .hamburger { display: none; }

  /* Layouts */
  .book-banner-inner { flex-direction: row; align-items: center; gap: 5rem; }
  .book-banner-text { flex: 1; }
  .book-banner-cta { flex-shrink: 0; align-items: flex-start; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .faq-inner-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-body {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
  }

  .footer-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
  }

  .footer-brand { margin-bottom: 0; }
  .footer-brand p { margin-bottom: 0; }
  .footer-cols { display: contents; }

  .bp-body { padding: 4rem 3.5rem; }
  .bp-widget { max-width: 680px; }
}

/* ── WIDE 1200px+ ───────────────────────────── */
@media (min-width: 1200px) {
  nav { padding: 0 4.5rem; }
  section { padding: 7rem 4.5rem; }
  footer { padding: 5.5rem 4.5rem 3rem; }
}
