/* ═══════════════════════════════════════════════════
   SANGANEB LIMOUSINE — Global Design System
   Hostinger static site, no build tools required
═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --ink:      #0d0c0a;
  --ink-2:    #3a3530;
  --ink-3:    #7a736a;
  --paper:    #faf8f4;
  --paper-2:  #f2ede5;
  --paper-3:  #e8e0d4;
  --white:    #ffffff;
  --gold:     #b89a5a;
  --gold-lt:  #d4b97a;
  --gold-dk:  #8a7240;
  --gold-faint: rgba(184,154,90,.10);
  --danger:   #c0392b;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --sh-sm: 0 1px 4px rgba(13,13,13,.07);
  --sh-md: 0 4px 20px rgba(13,13,13,.10);
  --sh-lg: 0 12px 48px rgba(13,13,13,.14);

  --max-w: 1160px;
  --nav-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Layout ── */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}
section { padding: 5.5rem 0; }

/* ── Type ── */
.t-label {
  font-family: var(--sans);
  font-size: .70rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: .6rem;
}
.section-head p {
  font-size: .94rem;
  color: var(--ink-3);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.8;
}
.divider-gold {
  width: 36px; height: 1px;
  background: var(--gold);
  margin: .9rem auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sans); font-size: .80rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  cursor: pointer; border: 1px solid transparent;
  transition: all .2s ease-out; white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--paper-3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dk); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(250,248,244,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--paper-3);
}
#nav .container {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
#nav.scrolled .nav-logo img { filter: none; }
#nav.solid    .nav-logo img { filter: none; }
.nav-logo span {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--white); transition: color .3s; letter-spacing: .02em;
}
#nav.scrolled .nav-logo span,
#nav.solid    .nav-logo span { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: .78rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.80); transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
#nav.scrolled .nav-links a,
#nav.solid    .nav-links a { color: var(--ink-2); }
#nav.scrolled .nav-links a:hover,
#nav.solid    .nav-links a:hover { color: var(--gold-dk); }
.nav-links a.active { color: var(--white); font-weight: 500; }
#nav.scrolled .nav-links a.active,
#nav.solid    .nav-links a.active { color: var(--gold-dk); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-size: .80rem; font-weight: 500; color: var(--white); transition: color .3s; }
#nav.scrolled .nav-phone,
#nav.solid    .nav-phone { color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .25s; }
#nav.scrolled .nav-toggle span,
#nav.solid    .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white); border: 1px solid var(--paper-3);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  min-width: 220px; padding: .5rem 0;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
/* Invisible bridge fills the gap between nav link and dropdown menu
   so the mouse doesn't leave the hover zone while travelling down */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: .6rem 1.2rem;
  font-size: .82rem; color: var(--ink-2) !important;
  text-transform: none !important; letter-spacing: 0 !important;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--paper); color: var(--gold-dk) !important; }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--paper-3);
  padding: 1.5rem; flex-direction: column; gap: .25rem;
  box-shadow: var(--sh-md); z-index: 99;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: .88rem; color: var(--ink-2);
  padding: .7rem .5rem; border-bottom: 1px solid var(--paper-2);
  letter-spacing: .03em;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.sub {
  padding-left: 1.4rem; font-size: .82rem;
  color: var(--ink-3); border-bottom-color: transparent;
}
.nav-drawer .drawer-section-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  padding: .9rem .5rem .3rem; border-bottom: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(170deg,rgba(10,8,5,.80) 0%,rgba(20,15,8,.55) 60%,rgba(30,22,10,.82) 100%);
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5; pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 4rem 0 3.5rem;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .10em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: var(--gold-lt); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: .9rem;
  max-width: 720px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: clamp(.88rem, 2vw, 1rem);
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--ink);
  padding: 1.1rem 0; overflow: hidden;
}
.trust-strip-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
/* icon colours handled by css/icons.css */

/* ── BOOKING CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 3rem 0;
}
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.cta-band h3 em { font-style: italic; }
.cta-band-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--gold-dk); border-color: var(--white); }
.btn-white:hover { background: var(--paper); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-white-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: .9rem; opacity: .65; }
.footer-brand p { font-size: .82rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  font-family: var(--serif); font-size: .92rem; font-weight: 400;
  color: rgba(255,255,255,.75); margin-bottom: .8rem; letter-spacing: .03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul li a {
  font-size: .80rem; color: rgba(255,255,255,.4); transition: color .15s;
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.4rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .76rem; }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90; padding: .7rem 1rem;
  background: var(--white); border-top: 1px solid var(--paper-3);
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
  gap: .6rem;
}
.sticky-cta .btn { flex: 1; text-align: center; justify-content: center; padding: .75rem .5rem; font-size: .74rem; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FORM STYLES ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .38rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .73rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
input, select, textarea {
  font-family: var(--sans); font-size: .88rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: var(--r-sm); padding: .72rem 1rem;
  width: 100%; outline: none; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,154,90,.15);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
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='%237a736a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem; cursor: pointer;
}
textarea { resize: vertical; min-height: 86px; }
input.invalid, select.invalid { border-color: var(--danger); }
.field-error { font-size: .73rem; color: var(--danger); display: none; margin-top: .15rem; }
.hp-field { display: none !important; visibility: hidden !important; }
.form-msg { display: none; padding: .85rem 1.1rem; border-radius: var(--r-sm); font-size: .86rem; font-weight: 500; margin-bottom: 1rem; }
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-msg.error   { background: #ffebee; color: var(--danger); border: 1px solid #ffcdd2; }
.form-trust { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .9rem; }
.form-trust-item { display: flex; align-items: center; gap: .35rem; font-size: .73rem; color: var(--ink-3); }
.form-trust-item span { color: var(--gold-dk); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 66px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
}
