/* ===================================================================
   ANU TOUR & TRAVELS — stylesheet
   Concept: the boarding pass. Ink-navy + boarding-pass cream, brass
   foil accent, teal ink-stamp accent. The route rail is the signature
   element — a dashed flight path with a plane that tracks scroll
   progress from HERE to ANYWHERE.
=================================================================== */

:root{
  /* palette */
  --ink:        #16233d;
  --ink-2:      #1e2f52;
  --paper:      #f6f1e4;
  --paper-2:    #efe6d0;
  --paper-3:    #fbf8f0;
  --gold:       #c68a2e;
  --gold-light: #e2ab53;
  --teal:       #2f6f63;
  --teal-light: #4a9184;
  --coral:      #c4472f;
  --line:       rgba(22,35,61,0.14);
  --line-light: rgba(246,241,228,0.22);
  --shadow:     0 20px 50px -25px rgba(22,35,61,0.45);

  /* type */
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --wrap: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

::selection{ background: var(--gold); color: var(--ink); }

:focus-visible{
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- eyebrow / section heads ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before{
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.section{ padding: 96px 0; }
.section--tint{ background: var(--paper-2); }
.section--dark{
  background: var(--ink);
  color: var(--paper);
}
.section--dark .eyebrow{ color: var(--gold-light); }

.section-head{
  max-width: 620px;
  margin: 0 0 52px;
}
.section-head h2{ font-size: clamp(28px, 3.4vw, 42px); }
.section-head--light h2{ color: var(--paper); }
.section-sub{
  color: rgba(22,35,61,0.65);
  font-size: 16.5px;
  max-width: 52ch;
}
.section-head--light .section-sub{ color: rgba(246,241,228,0.72); }

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover{
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{
  background: var(--ink);
  color: var(--paper);
}
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn-block{ width: 100%; padding: 16px; }

/* ===================================================================
   ROUTE RAIL — signature scroll element
=================================================================== */
.route-rail{
  position: fixed;
  top: 0;
  left: 22px;
  height: 100vh;
  width: 40px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.route-code{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--ink);
  writing-mode: vertical-rl;
  padding: 10px 0;
  opacity: 0.55;
}
.route-code--from{ margin-top: 78px; }
.route-code--to{ margin-bottom: 30px; transform: rotate(180deg); }
.route-line{
  flex: 1;
  width: 40px;
  color: var(--ink);
  opacity: 0.28;
}
.route-line line{ stroke: currentColor; stroke-width: 2; }
.route-plane{
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  color: var(--gold);
  filter: drop-shadow(0 3px 6px rgba(198,138,46,0.5));
  transition: top 0.05s linear;
}
.route-plane svg{ width: 100%; height: 100%; transform: rotate(90deg); }

@media (max-width: 960px){
  .route-rail{ display: none; }
}

/* ===================================================================
   HEADER
=================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,241,228,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled{
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(22,35,61,0.5);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-stub{
  font-family: var(--font-mono);
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 9px;
  border-radius: 4px;
}
.brand-word{ display: flex; flex-direction: column; line-height: 1.2; }
.brand-word strong{
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.brand-word em{
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.main-nav{
  display: flex;
  gap: 30px;
}
.main-nav a{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.header-actions{ display: flex; align-items: center; gap: 16px; }
.header-phone{
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 860px){ .header-phone{ display: none; } }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px){
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper-3);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open{ max-height: 400px; }
  .main-nav a{ padding: 16px 28px; border-top: 1px solid var(--line); }
  .nav-toggle{ display: flex; }
}

/* ===================================================================
   HERO
=================================================================== */
.hero{
  padding: 76px 0 60px;
  overflow: hidden;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1{
  font-size: clamp(34px, 4.6vw, 58px);
  max-width: 15ch;
}
.hero-lede{
  font-size: 17.5px;
  color: rgba(22,35,61,0.7);
  max-width: 46ch;
}
.hero-cta{ display: flex; gap: 14px; margin: 30px 0 36px; flex-wrap: wrap; }

.hero-trustline{
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.avatars{ display: flex; }
.avatars span{
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--teal), var(--ink));
}
.avatars span:first-child{ margin-left: 0; }
.avatars span:nth-child(2){ background: linear-gradient(135deg, var(--gold), var(--coral)); }
.avatars span:nth-child(3){ background: linear-gradient(135deg, var(--ink-2), var(--teal)); }
.avatars span:nth-child(4){ background: linear-gradient(135deg, var(--coral), var(--gold-light)); }
.hero-trustline p{
  margin: 0;
  font-size: 13.5px;
  color: rgba(22,35,61,0.62);
  max-width: 30ch;
}

/* ---------- boarding-pass ticket ---------- */
.hero-visual{ display: flex; justify-content: center; }
.ticket{
  width: 100%;
  max-width: 420px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 26px 26px 0;
  box-shadow: var(--shadow);
  position: relative;
  transform: rotate(-2deg);
}
.ticket-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ticket-brand{ display: flex; flex-direction: column; }
.ticket-brand-mark{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.ticket-brand-sub{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}
.ticket-status{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  background: var(--teal-light);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.ticket-route{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 26px;
}
.ticket-city{ display: flex; flex-direction: column; }
.ticket-city--end{ align-items: flex-end; text-align: right; }
.ticket-code{
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ticket-label{
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,228,0.55);
}
.ticket-path{ flex: 1; color: var(--gold-light); }
.ticket-path svg{ width: 100%; height: 14px; overflow: visible; }
.ticket-path path{ stroke: currentColor; stroke-width: 1.6; fill: none; }
.ticket-path circle{ fill: currentColor; }

.ticket-fields{
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  padding-bottom: 22px;
}
.ticket-fields div{ display: flex; flex-direction: column; gap: 3px; }
.ticket-fields span{
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,228,0.5);
}
.ticket-fields strong{ font-size: 14px; font-weight: 600; }

.ticket-perforation{
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(246,241,228,0.25);
  margin: 0 -26px;
}
.ticket-perforation::before,
.ticket-perforation::after{
  content: "";
  position: absolute;
  top: -11px;
  width: 22px; height: 22px;
  background: var(--paper);
  border-radius: 50%;
}
.ticket-perforation::before{ left: -11px; }
.ticket-perforation::after{ right: -11px; }

.ticket-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 20px;
  gap: 16px;
}
.ticket-barcode{
  flex: 1;
  height: 34px;
  background: repeating-linear-gradient(90deg, var(--paper) 0 2px, transparent 2px 5px, var(--paper) 5px 6px, transparent 6px 10px);
  opacity: 0.85;
}
.ticket-ref{
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(246,241,228,0.5);
  white-space: nowrap;
}

@media (max-width: 940px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
}

/* ===================================================================
   STATS BAND
=================================================================== */
.stats-band{
  background: var(--ink);
  color: var(--paper);
  padding: 46px 0;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat{ display: flex; flex-direction: column; gap: 6px; }
.stat-number{
  font-family: var(--font-mono);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label{
  font-size: 13px;
  color: rgba(246,241,228,0.65);
}
@media (max-width: 760px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

/* ===================================================================
   SERVICES
=================================================================== */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card{
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--teal);
  margin-bottom: 18px;
}
.service-icon svg{ width: 22px; height: 22px; }
.service-card h3{ font-size: 19px; margin-bottom: 8px; }
.service-card p{ font-size: 14.5px; color: rgba(22,35,61,0.66); margin: 0; }

@media (max-width: 860px){
  .service-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .service-grid{ grid-template-columns: 1fr; }
}

/* ===================================================================
   DESTINATIONS
=================================================================== */
.tabs{
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 40px;
}
.tab{
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  color: rgba(22,35,61,0.6);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.tab.is-active{ background: var(--ink); color: var(--paper); }

.dest-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card{
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.dest-card.is-hidden{ display: none; }

.dest-image{
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
}
.dest-image::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,35,61,0.05) 40%, rgba(22,35,61,0.55) 100%);
}
.dest-image--1{ background-color: var(--teal); }
.dest-image--2{ background-color: var(--coral); }
.dest-image--3{ background-color: var(--gold); }
.dest-image--4{ background-color: var(--ink-2); }
.dest-image--5{ background-color: #8a5a2e; }
.dest-image--6{ background-color: #3a5a4e; }
.dest-code{
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--paper);
  background: rgba(22,35,61,0.55);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

.dest-body{ padding: 22px; }
.dest-kicker{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.dest-body h3{ font-size: 20px; margin-bottom: 8px; }
.dest-body > p{ font-size: 14px; color: rgba(22,35,61,0.65); min-height: 42px; }
.dest-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.dest-footer span{ font-weight: 700; }
.dest-link{
  font-weight: 700;
  color: var(--teal);
  transition: transform 0.2s ease;
  display: inline-block;
}
.dest-link:hover{ transform: translateX(3px); }

@media (max-width: 900px){
  .dest-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .dest-grid{ grid-template-columns: 1fr; }
}

/* ===================================================================
   GALLERY
=================================================================== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item{
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  grid-column: span 1;
}
.gallery-item--wide{ grid-column: span 2; }
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(22,35,61,0.82), transparent);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 860px){
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item--wide{ grid-column: span 2; }
}
@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item--wide{ grid-column: span 1; }
}

/* ===================================================================
   WHY US
=================================================================== */
.why-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.why-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
}
.why-item h3{
  font-size: 16.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-item h3::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.why-item p{ font-size: 14px; color: rgba(22,35,61,0.65); margin: 0; }

@media (max-width: 860px){
  .why-grid{ grid-template-columns: 1fr; }
  .why-list{ grid-template-columns: 1fr; }
}

/* ===================================================================
   PROCESS
=================================================================== */
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  overflow: hidden;
}
.process-step{
  background: var(--ink);
  padding: 34px 26px;
}
.process-step-no{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}
.process-step h3{ color: var(--paper); font-size: 18px; margin-bottom: 8px; }
.process-step p{ color: rgba(246,241,228,0.65); font-size: 14px; margin: 0; }

@media (max-width: 860px){
  .process-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .process-grid{ grid-template-columns: 1fr; }
}

/* ===================================================================
   TESTIMONIALS
=================================================================== */
.slider{ position: relative; }
.slider-track{
  display: flex;
  overflow: hidden;
}
.testimonial{
  min-width: 100%;
  margin: 0;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px clamp(24px, 6vw, 64px);
  text-align: center;
}
.testimonial blockquote{
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 22px;
}
.testimonial figcaption strong{ display: block; font-size: 14.5px; }
.testimonial figcaption span{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
}

.slider-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}
.slider-btn{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-3);
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.slider-btn:hover{ background: var(--ink); color: var(--paper); }
.slider-dots{ display: flex; gap: 8px; }
.slider-dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dots button.is-active{ background: var(--gold); transform: scale(1.3); }

/* ===================================================================
   CTA + FORM
=================================================================== */
.section--cta{ background: var(--paper-2); }
.cta-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-list{
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-list li{
  font-size: 14.5px;
  padding-left: 26px;
  position: relative;
}
.cta-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.office-photo{
  margin: 34px 0 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  max-width: 360px;
}
.office-photo img{ width: 100%; height: 200px; object-fit: cover; }
.office-photo figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(22,35,61,0.82), transparent);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 600;
}

.quote-form{
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row{ margin-bottom: 18px; }
.form-row--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row--split > div{ margin-bottom: 18px; }
.form-row label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
}
.form-row input,
.form-row textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus{ border-color: var(--teal); outline: none; }
.form-row input.is-invalid,
.form-row textarea.is-invalid{ border-color: var(--coral); }
.form-row textarea{ resize: vertical; min-height: 90px; }
.form-error{
  display: block;
  min-height: 16px;
  font-size: 12px;
  color: var(--coral);
  margin-top: 5px;
}
.form-success{
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin: 14px 0 0;
}

@media (max-width: 860px){
  .cta-grid{ grid-template-columns: 1fr; }
  .form-row--split{ grid-template-columns: 1fr; }
  .form-row--split > div{ margin-bottom: 18px; }
}

/* ===================================================================
   FAQ
=================================================================== */
.accordion{ border-top: 1px solid var(--line); }
.accordion-item{ border-bottom: 1px solid var(--line); }
.accordion-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.accordion-icon{
  flex: none;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.accordion-item.is-open .accordion-icon{ transform: rotate(45deg); }
.accordion-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-item.is-open .accordion-panel{
  max-height: 220px;
  padding-bottom: 22px;
}
.accordion-panel p{
  margin: 0;
  font-size: 14.5px;
  color: rgba(22,35,61,0.66);
  max-width: 62ch;
}

/* ===================================================================
   FOOTER
=================================================================== */
.site-footer{
  background: var(--ink);
  color: rgba(246,241,228,0.75);
  padding: 70px 0 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand p{ font-size: 13.5px; max-width: 32ch; margin: 14px 0 18px; }
.footer-social{ display: flex; gap: 10px; }
.footer-social a{
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover{ background: var(--gold); color: var(--ink); }

.footer-col h4{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 16px;
}
.footer-col{ display: flex; flex-direction: column; }
.footer-col a{
  font-size: 14px;
  padding: 6px 0;
  color: rgba(246,241,228,0.75);
  transition: color 0.2s ease;
}
.footer-col a:hover{ color: var(--gold-light); }
.footer-contact p{ font-size: 12.5px; margin-top: 10px; color: rgba(246,241,228,0.5); }

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(246,241,228,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}