/* ============================================
   TRAVOLAZA v2 — Premium Design System
   ============================================ */
:root {
  --yellow: #F2C200;
  --yellow-deep: #B8920A;
  --yellow-soft: #FFE980;
  --ink: #14141A;
  --ink-soft: #54545E;
  --ink-faint: #8A8A93;
  --white: #FFFFFF;
  --cream: #FFFBF0;
  --charcoal: #1C1C22;
  --line: #EAEAEE;
  --success: #1F7A4D;

  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 6px;
  --max-width: 1200px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2.5px solid var(--yellow-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Eyebrow / Route Label
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--yellow-deep);
  border-radius: 2px;
}

/* ============================================
   Top Utility Bar
   ============================================ */
.utility-bar {
  background: var(--charcoal);
  color: #D8D8DD;
  font-size: 13px;
  font-family: var(--font-mono);
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}
.utility-bar a {
  color: var(--yellow);
  font-weight: 700;
}
.utility-bar .util-left span { margin-right: 22px; }
.utility-bar .ext-tag {
  background: rgba(242,194,0,0.15);
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  margin-left: 6px;
  font-weight: 700;
}

/* ============================================
   Header / Nav
   ============================================ */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 500;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .mark {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo .mark svg { width: 20px; height: 20px; }
.logo span.brand-z { color: var(--yellow-deep); }

nav.main-nav ul {
  display: flex;
  gap: 38px;
  list-style: none;
}
nav.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--ink); }
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn-call-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--yellow-soft);
  border: 1.5px solid var(--yellow);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-call-nav:hover { background: var(--yellow); }
.btn-call-nav .phone-icon { font-size: 15px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--yellow-deep);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

/* ============================================
   Hero — Boarding Pass Motif
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #FFF6D9 100%);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
}
.hero-copy {
  padding: 40px 56px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-copy h1 .accent {
  color: var(--yellow-deep);
  position: relative;
}
.hero-copy p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* The ticket stub */
.ticket-stub {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  position: relative;
  align-self: center;
  margin: 24px 0;
  box-shadow: 0 28px 56px -18px rgba(20,20,26,0.22);
}
.ticket-top { padding: 30px 30px 24px; }
.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.ticket-route {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}
.ticket-route .arrow { color: var(--yellow-deep); margin: 0 8px; }
.ticket-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticket-meta div span {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.ticket-perforation {
  position: relative;
  height: 0;
  border-top: 2.5px dashed var(--line);
}
.ticket-perforation::before,
.ticket-perforation::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--cream);
  border-radius: 50%;
  top: -13px;
}
.ticket-perforation::before { left: -13px; }
.ticket-perforation::after { right: -13px; }
.ticket-bottom {
  padding: 24px 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ticket-call { display: flex; flex-direction: column; gap: 3px; }
.ticket-call .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.ticket-call .number {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--yellow-deep);
}
.ticket-badge {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* trust strip below hero */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-strip strong { color: var(--ink); font-weight: 700; }

/* ============================================
   Section base
   ============================================ */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 17px; }
.bg-cream { background: var(--cream); }

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 38px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: "";
  position: absolute;
  top: -2px; left: 28px;
  width: 44px; height: 5px;
  background: var(--yellow);
  border-radius: 0 0 4px 4px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -22px rgba(20,20,26,0.2);
  border-color: var(--yellow);
}
.service-card .code {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow-deep);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; margin-bottom: 13px; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.service-card a.link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* ============================================
   Destinations strip
   ============================================ */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dest-card {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
  transition: border-color var(--transition);
}
.dest-card:hover { border-color: var(--yellow); }
.dest-card .pair { font-family: var(--font-display); font-size: 21px; font-weight: 700; }
.dest-card .pair .arrow { color: var(--yellow-deep); }
.dest-card .name { font-size: 13px; color: var(--ink-soft); margin-top: 6px; font-weight: 500; }

/* ============================================
   Why-us strip
   ============================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-deep);
  margin-bottom: 12px;
  display: block;
}
.why-item h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.why-item p { color: var(--ink-soft); font-size: 14.5px; }

/* ============================================
   CTA band
   ============================================ */
.cta-band { background: var(--ink); color: var(--white); padding: 76px 0; }
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  max-width: 480px;
}
.cta-band h2 .accent { color: var(--yellow); }
.cta-band .cta-phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
}
.cta-band .cta-phone .label {
  display: block;
  font-size: 12px;
  font-family: var(--font-mono);
  color: #A6A6AE;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 32px;
}
.testimonial .stars { color: var(--yellow); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p.quote { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.testimonial .who { font-family: var(--font-mono); font-size: 13px; font-weight: 700; }
.testimonial .who span { color: var(--ink-soft); font-weight: 400; }

/* ============================================
   Footer
   ============================================ */
footer.site-footer { background: var(--charcoal); color: #C7C7CC; padding: 72px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 48px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col p { color: #9F9FA6; margin-bottom: 14px; line-height: 1.75; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #C7C7CC; transition: color var(--transition); font-weight: 500; }
.footer-col a:hover { color: var(--yellow); }
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .mark {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo .mark svg { width: 18px; height: 18px; }
.footer-phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  margin: 12px 0 2px;
}
.footer-ext { font-family: var(--font-mono); font-size: 12px; color: #9F9FA6; }

.accred-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.accred-row .logo-chip {
  background: var(--white);
  border-radius: 7px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}
.accred-row .logo-chip svg { height: 20px; width: auto; display: block; }

.payment-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.payment-row .logo-chip {
  background: var(--white);
  border-radius: 7px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}
.payment-row .logo-chip svg { height: 18px; width: auto; display: block; }

.footer-bottom {
  border-top: 1px solid #34343C;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #84848C;
}
.footer-bottom a { color: #84848C; font-weight: 500; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-disclaimer {
  font-size: 12.5px;
  color: #75757D;
  line-height: 1.75;
  padding-bottom: 28px;
  border-bottom: 1px solid #34343C;
  margin-bottom: 22px;
}
.footer-disclaimer strong { color: #9F9FA6; }

/* ============================================
   Call Popup Modal
   ============================================ */
.call-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,26,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.call-popup-overlay.active { display: flex; }
.call-popup {
  background: var(--white);
  border-radius: 16px;
  max-width: 430px;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 36px 72px -18px rgba(0,0,0,0.4);
  animation: popIn 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.call-popup-top { background: var(--yellow); padding: 28px 32px 24px; color: var(--ink); }
.call-popup-top .eyebrow { color: rgba(20,20,26,0.65); }
.call-popup-top .eyebrow::before { background: rgba(20,20,26,0.5); }
.call-popup-top h3 { font-family: var(--font-display); font-size: 25px; font-weight: 700; margin-top: 4px; }
.call-popup-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(20,20,26,0.12);
  border: none;
  color: var(--ink);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.call-popup-close:hover { background: rgba(20,20,26,0.22); }
.call-popup-body { padding: 28px 32px 32px; }
.call-popup-body p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.call-popup-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  border: 2px dashed var(--yellow-deep);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
}
.call-popup-body .btn-primary { width: 100%; justify-content: center; }
.call-popup-fine { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 16px; }

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  z-index: 1800;
  transform: translateY(110%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { font-size: 13.5px; color: #C7C7CC; max-width: 700px; }
.cookie-banner a { color: var(--yellow); text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 22px; font-size: 14px; }
.btn-cookie-decline { background: transparent; border: 2px solid #4A4A52; color: #C7C7CC; }
.btn-cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ============================================
   Mobile call button (floating)
   ============================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--yellow);
  color: var(--ink);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -6px rgba(242,194,0,0.6);
  z-index: 1500;
  font-size: 24px;
}

/* ============================================
   Inner page header
   ============================================ */
.page-hero { background: var(--cream); padding: 60px 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: -0.02em; }
.page-hero p { color: var(--ink-soft); margin-top: 12px; max-width: 580px; font-size: 16.5px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--yellow-deep); font-weight: 600; }

/* Legal page typography */
.legal-content { max-width: 760px; }
.legal-content h2 { font-family: var(--font-display); font-size: 25px; font-weight: 700; margin: 40px 0 15px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); margin-bottom: 15px; font-size: 15.5px; }
.legal-content ul { margin: 15px 0 15px 22px; color: var(--ink-soft); }
.legal-content li { margin-bottom: 9px; font-size: 15.5px; }
.legal-content strong { color: var(--ink); }
.legal-updated { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); margin-bottom: 34px; display: block; font-weight: 600; }
.legal-toc {
  background: var(--cream);
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 36px;
}
.legal-toc h4 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; color: var(--yellow-deep); font-weight: 700; }
.legal-toc ol { list-style: none; counter-reset: toc; columns: 2; gap: 20px; }
.legal-toc li { counter-increment: toc; font-size: 14px; margin-bottom: 8px; }
.legal-toc li a { color: var(--ink-soft); font-weight: 500; }
.legal-toc li a:hover { color: var(--yellow-deep); }
.legal-toc li::before { content: counter(toc) ".  "; color: var(--yellow-deep); font-weight: 700; font-family: var(--font-mono); font-size: 13px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid img { border-radius: 14px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; padding-top: 30px; border-top: 1.5px solid var(--line); }
.stat-row .num { font-family: var(--font-display); font-size: 34px; color: var(--yellow-deep); font-weight: 700; }
.stat-row .label { font-size: 13px; color: var(--ink-soft); margin-top: 4px; font-weight: 500; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card { background: var(--cream); border-radius: 14px; padding: 38px; }
.contact-info-card .row { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info-card .row .icon {
  width: 40px; height: 40px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.contact-info-card .row h4 { font-size: 14px; margin-bottom: 5px; font-weight: 700; }
.contact-info-card .row p, .contact-info-card .row a { font-size: 14.5px; color: var(--ink-soft); }
.contact-info-card .row a.phone-link { color: var(--yellow-deep); font-weight: 700; font-family: var(--font-display); font-size: 17px; }
.contact-info-card .row .ext-note { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); margin-top: 2px; display: block; }

.form-field { margin-bottom: 19px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--yellow-deep);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
}
.checkbox-field input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--yellow-deep);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-field label {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-field label strong { color: var(--ink); }

/* Service detail page blocks */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.service-detail .panel { border: 1.5px solid var(--line); border-radius: 12px; padding: 32px; }
.service-detail .panel h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.service-detail .panel ul { padding-left: 18px; color: var(--ink-soft); font-size: 14.5px; }
.service-detail .panel li { margin-bottom: 9px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-copy { padding: 24px 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .legal-toc ol { columns: 1; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  nav.main-nav { display: none; }
  .menu-toggle { display: flex; }
  .btn-call-nav span.label-text { display: none; }
  .hero-copy h1 { font-size: 38px; }
  .section-head h2 { font-size: 29px; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .float-call { display: flex; }
  section { padding: 60px 0; }
  .page-hero h1 { font-size: 31px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cookie-banner .wrap { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
