/* ================================================================
   NICKERIE WHEELS — Stylesheet
   Palette: Padi Earth (forest green + terracotta + bone)
   ================================================================ */

:root {
  --bg-bone:      #EFEAE0;
  --bg-bone-2:    #E5DECF;
  --forest:       #2D3D2A;
  --forest-soft:  #3D5039;
  --terracotta:   #C66B3D;
  --terracotta-2: #D88556;
  --ink:          #1A1815;
  --muted:        #6B6055;
  --line:         #D6CEBC;
  --line-dark:    #1F2D1C;
  --serif:        'Fraunces', Georgia, serif;
  --sans:         'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg-bone);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

/* ======================== NAV ======================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 234, 224, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { height: 36px; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--forest);
}
.nav-links a { transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  background: var(--forest); color: var(--bg-bone);
  padding: 11px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--forest-soft); opacity: 1; }

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--forest);
  transform: translate(-50%, -50%);
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.nav-toggle span:nth-child(1) { top: calc(50% - 6px); }
.nav-toggle span:nth-child(3) { top: calc(50% + 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-inner { padding: 14px 20px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    background: var(--bg-bone);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px -16px rgba(45, 61, 42, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
  }
  .nav-links.is-open {
    max-height: 480px;
    padding-top: 8px;
    padding-bottom: 20px;
  }
  .nav-links a {
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 12px;
    border: none;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
  }
}

/* ======================== HERO ======================== */
.hero {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px 100px;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--terracotta);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--forest);
  margin-bottom: 32px;
  max-width: 14ch;
  word-break: break-word;
  hyphens: auto;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 44px;
  line-height: 1.55;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: none; cursor: pointer;
  font-family: var(--sans);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--forest); color: var(--bg-bone);
}
.btn-primary:hover { background: var(--forest-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--bg-bone); }
.btn-full { width: 100%; justify-content: center; padding: 18px 28px; font-size: 16px; }

.hero-meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.hero-meta div { font-size: 13px; color: var(--muted); }
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px; font-weight: 500;
  color: var(--forest); margin-bottom: 4px;
  letter-spacing: -0.02em;
}

/* Decorative sun accent */
.hero-decor {
  position: absolute;
  top: 80px; right: 32px;
  width: 280px; height: 280px;
  pointer-events: none;
  opacity: 0.85;
}
@media (max-width: 980px) { .hero-decor { display: none; } }

/* ======================== USP STRIP ======================== */
.usps {
  background: var(--forest);
  color: var(--bg-bone);
  padding: 80px 32px;
}
.usps-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 56px;
}
.usp-num {
  font-family: var(--serif);
  font-size: 14px; color: var(--terracotta-2);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}
.usp h3 {
  font-family: var(--serif);
  font-weight: 500; font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--bg-bone);
}
.usp p {
  font-size: 15px;
  color: rgba(239, 234, 224, 0.65);
  line-height: 1.6;
}

/* ======================== SECTION ======================== */
.section {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 32px;
}
.section-head {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; margin-bottom: 72px;
  align-items: end;
}
@media (max-width: 760px) {
  .section { padding: 80px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}
.section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--forest);
}
.section-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.section-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 50ch;
}

/* ======================== FLEET CARDS ======================== */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .fleet { grid-template-columns: 1fr; } }
.fleet-card {
  background: var(--bg-bone-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(45, 61, 42, 0.25);
}
.fleet-card-icon {
  width: 56px; height: 56px;
  background: var(--forest); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--terracotta-2);
}
.fleet-card h3 {
  font-family: var(--serif);
  font-weight: 500; font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--forest);
}
.fleet-card .models {
  font-size: 13px; color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}
.fleet-card p {
  font-size: 15px; color: var(--ink);
  line-height: 1.6;
  margin-bottom: 28px;
}
.fleet-card .price {
  font-family: var(--serif);
  font-size: 14px; color: var(--muted);
  margin-bottom: 24px;
}
.fleet-card .price strong {
  font-size: 28px; color: var(--forest);
  font-weight: 500; display: block; margin-top: 4px;
}
.fleet-card .price small { color: var(--muted); font-size: 13px; }
.fleet-card-cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px; font-weight: 500;
  color: var(--terracotta);
  transition: gap 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.fleet-card-cta:hover { gap: 10px; }

/* ======================== HOW IT WORKS ======================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative;
}
.step::before {
  content: "0" counter(step);
  position: absolute; top: -1px; left: 0;
  background: var(--bg-bone);
  padding-right: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--terracotta);
  transform: translateY(-50%);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500; font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--forest);
}
.step p {
  font-size: 15px; color: var(--muted);
  line-height: 1.6;
}

/* ======================== BOOKING ======================== */
.booking {
  background: var(--bg-bone-2);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: ""; position: absolute;
  top: -100px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 107, 61, 0.12), transparent 70%);
  pointer-events: none;
}
.booking-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
@media (max-width: 900px) {
  .booking { padding: 72px 20px; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
}
.booking-intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest);
  margin-bottom: 20px;
}
.booking-intro h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.booking-intro > p {
  font-size: 16px; color: var(--muted);
  line-height: 1.7; margin-bottom: 28px;
  max-width: 42ch;
}
.booking-checks {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px; color: var(--ink);
}
.booking-checks li {
  position: relative; padding-left: 28px;
}
.booking-checks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(-45deg);
}

/* ============== Form ============== */
.booking-form {
  background: var(--bg-bone);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 24px 48px -32px rgba(45, 61, 42, 0.25);
}
@media (max-width: 760px) {
  .booking-form { padding: 24px; border-radius: 16px; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}
.field label {
  font-size: 13px; font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.field label span[aria-hidden="true"] { color: var(--terracotta); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg-bone);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #BCB29D; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 61, 42, 0.1);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none;
  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 fill='none' stroke='%232D3D2A' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}

/* ======================== SERVICE AREA ======================== */
.area {
  background: var(--forest);
  color: var(--bg-bone);
  padding: 100px 32px;
}
.area-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .area-inner { grid-template-columns: 1fr; gap: 48px; }
}
.area .section-eyebrow { color: var(--terracotta-2); }
.area h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bg-bone);
  margin-bottom: 24px;
}
.area h2 em { font-style: italic; color: var(--terracotta-2); font-weight: 400; }
.area p {
  font-size: 17px; color: rgba(239, 234, 224, 0.75);
  line-height: 1.6; margin-bottom: 24px;
  max-width: 48ch;
}
.area .btn-primary { background: var(--terracotta); }
.area .btn-primary:hover { background: var(--terracotta-2); }
.area-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  margin-top: 32px;
}
.area-list li {
  font-size: 15px; color: var(--bg-bone);
  padding-left: 20px; position: relative;
}
.area-list li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--terracotta-2); font-weight: 500;
}

/* ======================== FAQ ======================== */
.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  font-family: var(--serif);
  font-weight: 500; font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 4px 0;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px; font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--terracotta); }
.faq-item p {
  font-size: 16px; color: var(--muted);
  line-height: 1.7;
  padding-top: 14px;
  max-width: 64ch;
}

/* ======================== CTA ======================== */
.cta {
  background: var(--forest);
  color: var(--bg-bone);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 2;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta h2 em { font-style: italic; color: var(--terracotta-2); font-weight: 400; }
.cta p {
  font-size: 18px;
  color: rgba(239, 234, 224, 0.75);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta .btn-primary {
  background: var(--terracotta); color: var(--bg-bone);
  font-size: 16px; padding: 18px 32px;
}
.cta .btn-primary:hover { background: var(--terracotta-2); }
.cta-decor {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 107, 61, 0.18), transparent 70%);
  pointer-events: none;
}

/* ======================== FOOTER ======================== */
footer {
  background: var(--forest);
  color: rgba(239, 234, 224, 0.6);
  padding: 60px 32px 40px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
footer h4 {
  font-family: var(--serif);
  color: var(--bg-bone); font-weight: 500;
  font-size: 16px; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a:hover { color: var(--terracotta-2); }
.footer-brand p {
  max-width: 32ch; line-height: 1.6;
  margin-top: 16px;
}
.footer-bottom {
  max-width: 1280px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(239, 234, 224, 0.4);
}

/* ======================== ANIMATIONS ======================== */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: riseUp 0.7s ease-out 0.1s both; }
.hero h1      { animation: riseUp 0.8s ease-out 0.2s both; }
.hero-lead    { animation: riseUp 0.8s ease-out 0.4s both; }
.hero-actions { animation: riseUp 0.8s ease-out 0.55s both; }
.hero-meta    { animation: riseUp 0.8s ease-out 0.7s both; }
.hero-decor   { animation: riseUp 1.2s ease-out 0.3s both; }

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

/* ================================================================
   RESPONSIVE — tablet & mobile refinements
   ================================================================ */

/* Tablet & smaller (≤ 900px) */
@media (max-width: 900px) {
  html { scroll-padding-top: 64px; }

  .nav-inner { padding: 14px 20px; gap: 12px; }
  .nav-logo { height: 32px; }

  .hero { padding: 56px 20px 72px; }
  .hero h1 { margin-bottom: 28px; }
  .hero-lead { margin-bottom: 32px; }
  .hero-meta { margin-top: 48px; padding-top: 24px; gap: 20px 24px; }
  .hero-meta strong { font-size: 26px; }

  .usps { padding: 64px 20px; }
  .usps-inner { gap: 36px; }

  .area, .booking { padding: 72px 20px; }
  .area-inner, .booking-inner { gap: 40px; }

  .cta { padding: 80px 20px; }
  .cta p { font-size: 16px; margin-bottom: 32px; }

  footer { padding: 48px 20px 32px; }
  .footer-inner { gap: 32px; }
  .footer-bottom { margin-top: 36px; padding-top: 20px; }

  .section { padding: 80px 20px; }
  .section-head { margin-bottom: 48px; gap: 20px; }

  .fleet-card { padding: 28px 24px; }
  .fleet-card-icon { width: 48px; height: 48px; margin-bottom: 20px; border-radius: 12px; }
  .fleet-card h3 { font-size: 24px; }

  .booking-form { padding: 24px; border-radius: 16px; }
  .booking-checks { font-size: 14px; }
}

/* Phones (≤ 600px) */
@media (max-width: 600px) {
  .nav-inner { padding: 12px 16px; }
  .nav-logo { height: 28px; }
  .nav-cta { padding: 9px 16px; font-size: 13px; }

  .hero { padding: 40px 16px 56px; }
  .hero-eyebrow { margin-bottom: 20px; font-size: 11px; }
  .hero-eyebrow::before { width: 24px; }
  .hero h1 { max-width: 100%; }
  .hero-lead { font-size: 16px; max-width: 100%; }
  .hero-actions { gap: 10px; width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; padding: 14px 20px; font-size: 14px; }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    margin-top: 40px;
  }
  .hero-meta strong { font-size: 22px; }
  .hero-meta div { font-size: 12px; }

  .usps { padding: 56px 16px; }
  .usps-inner { gap: 32px; }
  .usp h3 { font-size: 22px; }
  .usp p { font-size: 14px; }

  .section { padding: 64px 16px; }
  .section-head h2,
  .booking-intro h2,
  .area h2 { font-size: clamp(30px, 8vw, 44px); }
  .section-head { margin-bottom: 40px; }
  .section-intro { font-size: 15px; }

  .fleet { gap: 16px; }
  .fleet-card { padding: 24px 20px; border-radius: 14px; }
  .fleet-card h3 { font-size: 22px; }
  .fleet-card p { font-size: 14px; margin-bottom: 20px; }
  .fleet-card .price strong { font-size: 24px; }

  .steps { gap: 32px; }
  .step { padding-top: 32px; }
  .step h3 { font-size: 20px; }

  .booking { padding: 56px 16px; }
  .booking-inner { gap: 32px; }
  .booking-intro > p { font-size: 15px; max-width: 100%; }
  .booking-form { padding: 20px; gap: 14px; }
  .field input, .field select, .field textarea {
    font-size: 16px; /* prevent iOS auto-zoom on focus */
    padding: 11px 12px;
  }
  .btn-full { padding: 16px 20px; font-size: 15px; }

  .area { padding: 56px 16px; }
  .area p { font-size: 15px; }
  .area-inner { gap: 32px; }
  .area-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .faq-item { padding: 20px 0; }
  .faq-item summary { font-size: 17px; }
  .faq-item p { font-size: 15px; padding-top: 12px; }

  .cta { padding: 64px 16px; }
  .cta h2 { font-size: clamp(32px, 9vw, 48px); }
  .cta p { font-size: 15px; margin-bottom: 28px; }
  .cta .btn-primary { width: 100%; justify-content: center; }

  footer { padding: 40px 16px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { font-size: 12px; gap: 8px; flex-direction: column; align-items: flex-start; }
}

/* Very small phones (≤ 360px) — iPhone SE 1st gen, Galaxy Fold cover */
@media (max-width: 360px) {
  .hero { padding: 32px 14px 48px; }
  .hero h1 { font-size: 36px; }
  .nav-inner { gap: 8px; }
  .nav-logo { height: 26px; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Landscape phones — keep nav usable */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding-top: 32px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(36px, 6vw, 64px); }
  .hero-meta { margin-top: 24px; padding-top: 16px; }
}
