/* ============================================================
   RETRO WHEELS — styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --cream:        #FFF8E7;
  --red:          #C0392B;
  --red-dark:     #96291E;
  --red-light:    #E84A3A;
  --gold:         #B8860B;
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.16);
}

[data-theme="light"] {
  --bg:           #FFF8E7;
  --bg-alt:       #FFF1CC;
  --bg-card:      #FFFDF5;
  --text:         #1A1208;
  --text-muted:   #5C4A2A;
  --text-invert:  #FFF8E7;
  --border:       #E8D8B0;
  --header-bg:    #FFF8E7;
  --header-text:  #1A1208;
  --footer-bg:    #1A1208;
  --footer-text:  #FFF8E7;
  --footer-muted: #C8B88A;
  --btn-bg:       #C0392B;
  --btn-text:     #FFF8E7;
  --btn-hover:    #96291E;
  --overlay:      rgba(26,18,8,.13);
}

[data-theme="dark"] {
  --bg:           #1A1208;
  --bg-alt:       #241A0C;
  --bg-card:      #2C2010;
  --text:         #FFF8E7;
  --text-muted:   #C8B88A;
  --text-invert:  #1A1208;
  --border:       #3D2E14;
  --header-bg:    #1A1208;
  --header-text:  #FFF8E7;
  --footer-bg:    #0D0904;
  --footer-text:  #FFF8E7;
  --footer-muted: #8A7050;
  --btn-bg:       #C0392B;
  --btn-text:     #FFF8E7;
  --btn-hover:    #E84A3A;
  --overlay:      rgba(10,6,2,.55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color var(--transition), color var(--transition);
  line-height: 1.65;
  word-break: break-word;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family:'Fraunces',serif; font-weight:700; line-height:1.2; color:var(--text); }
h1 { font-size: clamp(2rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.8rem, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.5rem); }
h4 { font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem); }
p  { font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem); }

/* ---------- Container ---------- */
.container {
  width: 100%; max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4em; font-family:'DM Sans',sans-serif; font-weight:600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  padding: clamp(0.6rem,1.2vw,0.9rem) clamp(1.2rem,2.5vw,2rem);
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background:var(--btn-bg); color:var(--btn-text); border-color:var(--btn-bg); }
.btn-primary:hover { background:var(--btn-hover); border-color:var(--btn-hover); color:var(--btn-text); }
.btn-outline { background:transparent; color:var(--red); border-color:var(--red); }
.btn-outline:hover { background:var(--red); color:var(--cream); }
.btn-ghost { background:transparent; color:var(--text-invert); border-color:var(--text-invert); }
.btn-ghost:hover { background:var(--text-invert); color:var(--red); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 6vw, 6rem); }
.section--alt { background: var(--bg-alt); }
.section__head { text-align:center; margin-bottom: clamp(2rem,4vw,3.5rem); }
.section__head p { color:var(--text-muted); max-width:600px; margin-inline:auto; margin-top:0.75rem; }
.section__label {
  display:inline-block; font-family:'DM Sans',sans-serif;
  font-size:0.78rem; font-weight:600; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--red); margin-bottom:0.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position:sticky; top:0; z-index:1000;
  background:var(--header-bg); border-bottom:1px solid var(--border);
  height: clamp(56px, 5vw + 44px, 72px);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.hdr-wrap {
  height:100%; display:flex; align-items:center;
  justify-content:space-between; gap: clamp(0.5rem,2vw,1.5rem);
  padding-inline: clamp(16px,4vw,40px); max-width:1200px; margin-inline:auto;
}
.hdr-logo { display:flex; align-items:center; gap: clamp(6px,1vw,10px); text-decoration:none; flex-shrink:0; }
.hdr-logo svg { width: clamp(28px,3vw+16px,40px); height: clamp(28px,3vw+16px,40px); flex-shrink:0; }
.hdr-logo-text {
  font-family:'Fraunces',serif; font-weight:900;
  font-size: clamp(1rem,1.5vw+0.5rem,1.4rem);
  color:var(--header-text); white-space:nowrap;
}
.hdr-logo-text span { color:var(--red); }

.hdr-nav { display:none; }
.hdr-nav ul { display:flex; align-items:center; gap: clamp(0.8rem,1.5vw,1.8rem); }
.hdr-nav a {
  font-family:'DM Sans',sans-serif; font-size: clamp(0.85rem,0.8vw+0.5rem,1rem);
  font-weight:500; color:var(--header-text); white-space:nowrap;
  padding-block:0.25em; position:relative;
}
.hdr-nav a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:2px;
  background:var(--red); transition:width var(--transition);
}
.hdr-nav a:hover::after, .hdr-nav a.active::after { width:100%; }
.hdr-nav a:hover { color:var(--red); }

.hdr-controls { display:flex; align-items:center; gap: clamp(0.5rem,1vw,1rem); flex-shrink:0; }
.theme-toggle {
  background:none; border:none; cursor:pointer;
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; color:var(--header-text);
  transition:background var(--transition),color var(--transition);
}
.theme-toggle:hover { background:var(--bg-alt); }
.theme-toggle svg { width:20px; height:20px; }
[data-theme="light"] .icon-moon { display:block; }
[data-theme="light"] .icon-sun  { display:none; }
[data-theme="dark"]  .icon-moon { display:none; }
[data-theme="dark"]  .icon-sun  { display:block; }

.site-header .hdr-cta { display:none; }

.hdr-burger {
  background:none; border:none; cursor:pointer;
  width:44px; height:44px; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:5px;
  border-radius:var(--radius); transition:background var(--transition);
}
.hdr-burger:hover { background:var(--bg-alt); }
.hdr-burger span { display:block; width:22px; height:2px; background:var(--header-text); border-radius:2px; transition:transform 0.3s,opacity 0.3s,width 0.3s; }
.hdr-burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity:0; width:0; }
.hdr-burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.hdr-drawer {
  display:none; position:fixed;
  top: clamp(56px,5vw+44px,72px); left:0; right:0;
  background:var(--header-bg); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding: clamp(1rem,3vw,1.5rem) clamp(16px,4vw,40px);
  box-shadow:var(--shadow-lg); z-index:999;
}
.hdr-drawer.open { display:block; }
.hdr-drawer ul { display:flex; flex-direction:column; gap:0.25rem; }
.hdr-drawer a {
  display:block; font-size: clamp(1rem,2vw+0.5rem,1.1rem); font-weight:500;
  color:var(--header-text); padding-block:0.65em;
  border-bottom:1px solid var(--border);
}
.hdr-drawer a:last-child { border-bottom:none; }
.hdr-drawer a:hover { color:var(--red); }
.hdr-drawer .drawer-cta { margin-top:1rem; width:100%; text-align:center; }

@media (min-width:768px)  { .site-header .hdr-cta { display:inline-flex; } }
@media (min-width:1023px) { .hdr-nav { display:flex; } .hdr-burger { display:none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position:relative; min-height: clamp(460px,60vw,700px);
  display:flex; align-items:center; overflow:hidden;
}
.hero__bg {
  position:absolute; inset:0;
  background-image:url('img/hero.png');
  background-size:cover; background-position:center; z-index:0;
}
.hero__overlay { position:absolute; inset:0; background:var(--overlay); z-index:1; }
.hero__content { position:relative; z-index:2; max-width:680px; padding-block: clamp(3rem,6vw,5rem); }
.hero__tag {
  display:inline-flex; align-items:center; gap:0.4em;
  background:var(--red); color:#FFF8E7;
  font-size: clamp(0.72rem,1vw+0.3rem,0.85rem); font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:0.35em 0.85em; border-radius:4px; margin-bottom:1rem;
}
.hero h1 { color:#FFF8E7; margin-bottom:1rem; text-shadow:0 2px 12px rgba(0,0,0,0.25); }
.hero p  { color:rgba(255,248,231,0.9); font-size: clamp(1rem,1.5vw+0.4rem,1.2rem); margin-bottom:2rem; max-width:540px; }
.hero__actions { display:flex; flex-wrap:wrap; gap:0.75rem; align-items:center; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap: clamp(1rem,2vw,1.5rem);
}
@media (min-width:1023px) { .services__grid { grid-template-columns:repeat(3,1fr); } }
@media (max-width:375px)  { .services__grid { grid-template-columns:1fr; } }

.service-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding: clamp(1.2rem,2.5vw,2rem);
  transition:box-shadow var(--transition),transform var(--transition);
}
.service-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.service-card__icon {
  width: clamp(44px,5vw+24px,60px); height: clamp(44px,5vw+24px,60px);
  background:linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%);
  border-radius:var(--radius); display:flex; align-items:center; justify-content:center;
  margin-bottom:1rem;
}
.service-card__icon svg { width:26px; height:26px; color:#FFF8E7; }
.service-card h3 { margin-bottom:0.5rem; }
.service-card p { color:var(--text-muted); font-size: clamp(0.85rem,1vw+0.3rem,0.95rem); }

/* ============================================================
   FLEET
   ============================================================ */
.fleet__grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap: clamp(0.75rem,1.5vw,1.25rem);
}
@media (max-width:767px) { .fleet__grid { grid-template-columns:repeat(2,1fr); } }

.fleet-item { border-radius:var(--radius-lg); overflow:hidden; position:relative; aspect-ratio:4/3; cursor:pointer; }
.fleet-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.fleet-item:hover img { transform:scale(1.05); }
.fleet-item__label {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent,rgba(26,18,8,0.78));
  color:#FFF8E7; font-family:'Fraunces',serif;
  font-size: clamp(0.8rem,1.2vw+0.3rem,1rem); font-weight:700;
  padding: clamp(0.5rem,1.5vw,1rem) clamp(0.75rem,1.5vw,1.2rem);
  letter-spacing:0.04em;
}

/* ============================================================
   WHY US
   ============================================================ */
.why__grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap: clamp(1.2rem,2.5vw,2rem);
}
@media (min-width:1023px) { .why__grid { grid-template-columns:repeat(4,1fr); } }
@media (max-width:375px)  { .why__grid { grid-template-columns:1fr; } }

.why-item {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding: clamp(1.2rem,2.5vw,2rem); text-align:center;
  transition:box-shadow var(--transition),transform var(--transition);
}
.why-item:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.why-item__num {
  font-family:'Fraunces',serif; font-size: clamp(2rem,4vw,3rem);
  font-weight:900; color:var(--red); line-height:1; margin-bottom:0.25rem;
}
.why-item h4 { margin-bottom:0.4rem; }
.why-item p  { color:var(--text-muted); font-size: clamp(0.82rem,1vw+0.3rem,0.92rem); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap: clamp(0.75rem,1.5vw,1.25rem);
}
@media (max-width:767px) { .gallery__grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:375px) { .gallery__grid { grid-template-columns:1fr; } }

.gallery-item { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:1; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.gallery-item:hover img { transform:scale(1.06); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%);
  padding-block: clamp(3rem,6vw,5rem); text-align:center;
}
.cta-banner h2 { color:#FFF8E7; margin-bottom:1rem; }
.cta-banner p  { color:rgba(255,248,231,0.9); margin-bottom:2rem; max-width:560px; margin-inline:auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width:800px; margin-inline:auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-item__question {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding-block: clamp(1rem,2vw,1.25rem); cursor:pointer;
  font-family:'Fraunces',serif; font-weight:700;
  font-size: clamp(0.95rem,1.2vw+0.4rem,1.1rem);
  color:var(--text); background:none; border:none; width:100%; text-align:left;
  transition:color var(--transition);
}
.faq-item__question:hover { color:var(--red); }
.faq-item__question svg { width:20px; height:20px; flex-shrink:0; color:var(--red); transition:transform var(--transition); }
.faq-item.open .faq-item__question svg { transform:rotate(180deg); }
.faq-item__answer { display:none; padding-bottom: clamp(1rem,2vw,1.25rem); color:var(--text-muted); font-size: clamp(0.88rem,1vw+0.3rem,1rem); line-height:1.7; }
.faq-item.open .faq-item__answer { display:block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap: clamp(2rem,4vw,4rem); align-items:start;
}
@media (max-width:767px) { .contact__inner { grid-template-columns:1fr; } }

.contact-info h3 { margin-bottom:1.25rem; }
.contact-info__items { display:flex; flex-direction:column; gap:1rem; margin-bottom:1.5rem; }
.contact-info__item { display:flex; align-items:flex-start; gap:0.75rem; }
.contact-info__item svg { width:20px; height:20px; color:var(--red); flex-shrink:0; margin-top:2px; }
.contact-info__item span { color:var(--text-muted); font-size: clamp(0.88rem,1vw+0.3rem,1rem); }
.contact-info__item strong { display:block; color:var(--text); font-size: clamp(0.92rem,1vw+0.35rem,1.02rem); }

.hours-list { display:flex; flex-direction:column; gap:0.4rem; }
.hours-list li { display:flex; justify-content:space-between; font-size: clamp(0.85rem,1vw+0.3rem,0.95rem); color:var(--text-muted); padding-bottom:0.4rem; border-bottom:1px solid var(--border); }
.hours-list li:last-child { border-bottom:none; }
.hours-list li span:first-child { font-weight:500; color:var(--text); }

.contact-form { display:flex; flex-direction:column; gap:1rem; }
.form-row { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
@media (max-width:767px) { .form-row { grid-template-columns:1fr; } }

.form-group { display:flex; flex-direction:column; gap:0.35rem; }
.form-group label { font-size:0.85rem; font-weight:600; color:var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  color:var(--text); font-family:'DM Sans',sans-serif; font-size: clamp(0.88rem,1vw+0.3rem,1rem);
  padding: clamp(0.55rem,1vw,0.8rem) clamp(0.75rem,1.5vw,1rem);
  transition:border-color var(--transition),box-shadow var(--transition);
  outline:none; -webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(192,57,43,.15); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color:#e74c3c; }
.form-group textarea { resize:vertical; min-height:110px; }
.field-error { font-size:0.78rem; color:#e74c3c; display:none; }
.field-error.show { display:block; }
.form-success { display:none; background:#d4edda; color:#155724; border:1px solid #c3e6cb; border-radius:var(--radius); padding:1rem 1.25rem; font-size:0.95rem; margin-top:0.5rem; }
.form-success.show { display:block; }

/* ============================================================
   MAP
   ============================================================ */
.map-section { padding-block:0; }
.map-section img { width:100%; height: clamp(220px,35vw,420px); object-fit:cover; display:block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background:var(--footer-bg); color:var(--footer-text); padding-block: clamp(2.5rem,5vw,4rem) clamp(1.5rem,3vw,2rem); }
.footer__top {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap: clamp(1.5rem,3vw,3rem); padding-bottom: clamp(2rem,3vw,3rem);
  border-bottom:1px solid rgba(255,248,231,0.12); margin-bottom: clamp(1.5rem,3vw,2rem);
}
@media (min-width:768px)  { .footer__top { grid-template-columns:2fr 1fr 1fr; } }
@media (min-width:1023px) { .footer__top { grid-template-columns:2.5fr 1fr 1fr 1.5fr; } }
@media (max-width:375px)  { .footer__top { grid-template-columns:1fr; } }

.footer__col h4 { color:var(--footer-text); margin-bottom:1rem; font-size: clamp(0.9rem,1vw+0.4rem,1.05rem); }
.footer__col p, .footer__col li, .footer__col a { color:var(--footer-muted); font-size: clamp(0.82rem,1vw+0.3rem,0.92rem); line-height:1.8; }
.footer__col ul { display:flex; flex-direction:column; gap:0.25rem; }
.footer__col a:hover { color:var(--footer-text); }
.footer__logo { display:flex; align-items:center; gap:8px; text-decoration:none; margin-bottom:0.75rem; }
.footer__logo svg { width:32px; height:32px; }
.footer__logo-text { font-family:'Fraunces',serif; font-weight:900; font-size: clamp(1.1rem,1.5vw+0.4rem,1.3rem); color:var(--footer-text); }
.footer__logo-text span { color:var(--red-light); }
.footer__bottom { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:0.75rem; font-size: clamp(0.78rem,1vw+0.25rem,0.88rem); color:var(--footer-muted); }
.footer__bottom a { color:var(--footer-muted); }
.footer__bottom a:hover { color:var(--footer-text); }
.footer__links { display:flex; gap:1.25rem; flex-wrap:wrap; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position:fixed; bottom:0; left:0; right:0; z-index:2000;
  background:var(--bg-card); border-top:2px solid var(--red);
  padding: clamp(1rem,2.5vw,1.5rem) clamp(1rem,4vw,2.5rem);
  box-shadow:0 -4px 24px rgba(0,0,0,.12);
  display:none; align-items:center; justify-content:space-between; gap:1.25rem; flex-wrap:wrap;
}
.cookie-banner.show { display:flex; }
.cookie-banner p { color:var(--text); font-size: clamp(0.82rem,1vw+0.3rem,0.95rem); flex:1; min-width:200px; }
.cookie-banner p a { color:var(--red); }
.cookie-banner__actions { display:flex; gap:0.75rem; flex-wrap:wrap; flex-shrink:0; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-hero { background:var(--bg-alt); padding-block: clamp(3rem,6vw,5rem); text-align:center; border-bottom:1px solid var(--border); }
.inner-hero h1 { font-size: clamp(1.8rem,3vw+1rem,3rem); }
.inner-content { max-width:780px; margin-inline:auto; padding-block: clamp(2rem,4vw,4rem); padding-inline: clamp(1rem,4vw,2rem); }
.inner-content h2 { margin-block:2rem 0.75rem; }
.inner-content h3 { margin-block:1.5rem 0.5rem; color:var(--red); }
.inner-content p  { margin-bottom:0.75rem; color:var(--text-muted); }
.inner-content ul { list-style:disc; padding-left:1.5rem; display:flex; flex-direction:column; gap:0.5rem; margin-bottom:1rem; }
.inner-content ul li { color:var(--text-muted); font-size: clamp(0.88rem,1vw+0.3rem,1rem); }

/* ============================================================
   UTILITY & REVEAL
   ============================================================ */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.text-center { text-align:center; }
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:none; }