/* site.css - happyhaulexpress.com
   Hand-written stylesheet re-creating the design tokens of the reference
   site (oklch palette, Archivo display / Manrope body, red+gold brand).
   The site is light-only by design. Self-hosted fonts live in /assets/fonts. */

/* ---------- Fonts (variable, latin + latin-ext subsets) ---------- */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url(/assets/fonts/archivo-600-900-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url(/assets/fonts/archivo-600-900-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/manrope-400-700-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/manrope-400-700-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */

:root {
  color-scheme: light;
  --radius: 0.9rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.01 40);
  --primary: oklch(0.56 0.235 28.5);          /* brand red  (~#E11B22) */
  --primary-foreground: oklch(0.99 0 0);
  --secondary: oklch(0.97 0.015 60);
  --secondary-foreground: oklch(0.22 0.02 40);
  --muted: oklch(0.97 0.008 60);
  --muted-foreground: oklch(0.5 0.02 45);
  --gold: oklch(0.845 0.166 86);              /* brand gold (~#F5C518) */
  --gold-foreground: oklch(0.2 0.03 60);
  --ink: oklch(0.17 0.01 40);                 /* footer ground */
  --soft: oklch(0.975 0.012 45);              /* tinted section ground */
  --border: oklch(0.92 0.012 60);
  --input: oklch(0.9 0.012 60);
  --ring: oklch(0.56 0.235 28.5);
  --gradient-brand: linear-gradient(135deg, oklch(0.56 0.235 28.5), oklch(0.63 0.21 38));
  --gradient-gold: linear-gradient(135deg, oklch(0.87 0.16 92), oklch(0.8 0.17 72));
  --shadow-card: 0 8px 26px -14px oklch(0.18 0.01 40 / 0.28);
  --shadow-lift: 0 18px 42px -20px oklch(0.56 0.235 28.5 / 0.42);
  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  overflow-wrap: break-word;
}

p { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.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;
}

.icon { width: 1.25rem; height: 1.25rem; flex: none; }

.container { max-width: 80rem; margin-inline: auto; padding-inline: 1rem; }
.container-narrow { max-width: 48rem; }

.section { padding-block: 4rem; }
.section-soft { background: var(--soft); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.section-cta { margin-top: 2.5rem; text-align: center; }

.fine-note { font-size: 0.85rem; color: var(--muted-foreground); }
.promise-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 1.5rem 0;
}
.text-brand { color: var(--primary); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: calc(var(--radius) - 0.3rem);
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  font: 700 0.9rem/1.2 var(--font-sans);
  color: var(--foreground);
  background: var(--secondary);
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn .icon { width: 1.1em; height: 1.1em; }

.btn-hero {
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lift);
}
.btn-hero:hover { filter: brightness(1.1); }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  box-shadow: var(--shadow-card);
}
.btn-gold:hover { filter: brightness(1.05); }

.btn-outline-brand {
  background: var(--background);
  color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
}
.btn-outline-brand:hover { background: var(--primary); color: var(--primary-foreground); }

.btn-outline-light {
  background: transparent;
  color: var(--primary-foreground);
  box-shadow: inset 0 0 0 2px oklch(0.99 0 0 / 0.7);
}
.btn-outline-light:hover { background: var(--primary-foreground); color: var(--primary); }

.btn-sm { min-height: 2.25rem; padding: 0.35rem 1rem; font-size: 0.82rem; border-radius: 999px; }
.btn-lg { min-height: 3rem; padding: 0.6rem 1.75rem; font-size: 1rem; border-radius: 999px; }
.btn-xl { min-height: 3.5rem; padding: 0.7rem 2rem; font-size: 1.05rem; border-radius: 999px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(1 0 0 / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
}

.header-logo { flex: none; }
.header-logo img { width: 4.5rem; height: 4.5rem; object-fit: contain; }

.header-nav { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.header-phone span { display: none; }
.header-social { display: none; }

/* Language switcher: details/summary dropdown, no JS needed. */
.lang-switcher { position: relative; }
.lang-switcher summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.6rem;
  font: 700 0.82rem/1 var(--font-sans);
  cursor: pointer;
  user-select: none;
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher[open] summary { background: var(--muted); }
.lang-switcher ul {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 9rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 0.35rem;
  list-style: none;
  z-index: 60;
}
.lang-switcher li a {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.88rem;
}
.lang-switcher li a:hover { background: var(--muted); text-decoration: none; }
.lang-switcher li a[aria-current="true"] { color: var(--primary); font-weight: 700; }

#lang-desktop { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  background: var(--background);
  color: var(--foreground);
  cursor: pointer;
}
.menu-toggle .menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: inline-flex; }

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1rem 1.5rem;
  max-height: 80vh;
  overflow: auto;
}
.mobile-menu ul { list-style: none; }
.mobile-menu nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  font-weight: 600;
}
.mobile-menu nav a:hover { background: var(--muted); text-decoration: none; }
.mobile-menu nav a[aria-current="page"] { color: var(--primary); }
.mobile-menu .social-links { margin-top: 1rem; }

.social-links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  color: var(--muted-foreground);
}
.social-links a:hover { color: var(--primary); background: var(--muted); }

/* ---------- Hero ---------- */

.hero { padding-block: 3.5rem 3rem; }

.hero-grid { display: grid; gap: 2.5rem; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font: 700 0.8rem/1.4 var(--font-sans);
}

.hero-copy h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin: 1rem 0; }
.hero-subtitle { font-size: 1.1rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.hero-phone-line { margin-top: 1.25rem; color: var(--muted-foreground); }
.hero-phone-line strong { color: var(--foreground); }

.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% -5% -5% 10%;
  background: var(--gradient-brand);
  filter: blur(48px);
  opacity: 0.3;
  border-radius: 2rem;
  z-index: -1;
}
.hero-media img {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

/* ---------- Trust bar ---------- */

.trust-bar { border-block: 1px solid var(--border); background: var(--background); }
.trust-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding-block: 1.1rem;
  list-style: none;
}
.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font: 700 0.9rem/1.3 var(--font-sans);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--primary-foreground);
}
.trust-badge .icon { width: 1.35rem; height: 1.35rem; }

/* ---------- Section headings ---------- */

.section-heading { text-align: center; max-width: 46rem; margin: 0 auto 2.5rem; }
.section-heading-left { text-align: left; margin-inline: 0; }
.section-heading h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }

.eyebrow {
  display: inline-flex;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: oklch(0.56 0.235 28.5 / 0.08);
  color: var(--primary);
  font: 700 0.78rem/1.4 var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.sh-subtitle { color: var(--muted-foreground); font-size: 1.02rem; }

/* ---------- Page hero ---------- */

.page-hero {
  background: var(--soft);
  padding-block: 3.5rem 3rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0.25rem 0 0.75rem; }
.ph-subtitle { max-width: 46rem; margin: 0 auto; color: var(--muted-foreground); font-size: 1.08rem; }

/* ---------- Cards & grids ---------- */

.card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.card h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--muted-foreground); margin-bottom: 0; }
.card p + p { margin-top: 0.75rem; }

.card-lift { box-shadow: var(--shadow-card); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--soft);
  color: var(--primary);
  margin-bottom: 1rem;
}
.card-icon .icon { width: 1.5rem; height: 1.5rem; }
.card-icon-brand {
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  border-radius: 999px;
}

.card-eyebrow {
  font: 700 0.72rem/1.4 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.35rem;
}

.badge-gold {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  font: 700 0.75rem/1.4 var(--font-sans);
  white-space: nowrap;
}

.grid-services, .grid-steps, .grid-products, .grid-values {
  display: grid;
  gap: 1.25rem;
  list-style: none;
}
.grid-values { margin-top: 4rem; }

.step-card { position: relative; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  font: 800 1.05rem/1 var(--font-display);
  margin-bottom: 1rem;
}

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.check-icon { color: var(--primary); margin-top: 0.15rem; }

.check-list { list-style: none; display: grid; gap: 0.5rem; margin-top: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.95rem; }

.store-card .card-icon { margin-bottom: 0.75rem; }

.notice-card { border: 2px solid var(--gold); margin-top: 2rem; }
.notice-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.notice-head .card-icon { margin-bottom: 0; width: 2.5rem; height: 2.5rem; }
.notice-head h3 { margin: 0; }
.soft-note { background: var(--soft); border-color: var(--border); margin-top: 2rem; }

/* ---------- Split sections & route map ---------- */

.split-grid { display: grid; gap: 2.5rem; align-items: center; }
.split-img {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  width: 100%;
}

.route-svg { width: 100%; height: auto; margin-block: 1.5rem; }
.route-path { fill: none; stroke: var(--primary); stroke-width: 2.5; }
.route-dash {
  stroke-dasharray: 10 8;
  animation: dash-fly 6s linear infinite;
}
@keyframes dash-fly { from { stroke-dashoffset: 240; } to { stroke-dashoffset: 0; } }
.route-dot-ca { fill: var(--primary); }
.route-dot-ph { fill: var(--gold); }
.route-label { font: 700 0.8rem var(--font-sans); fill: var(--muted-foreground); }

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  text-align: center;
  padding-block: 4rem;
}
.final-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.final-cta p { max-width: 42rem; margin: 0 auto 1.75rem; opacity: 0.92; }
.cta-icon { width: 2.5rem; height: 2.5rem; margin: 0 auto 1rem; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Forms ---------- */

.form { display: grid; gap: 1.5rem; }
.form-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
.form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.form legend {
  font: 800 1.05rem/1.3 var(--font-display);
  padding: 0;
  margin-bottom: 1rem;
}
.fs-grid { display: grid; gap: 1rem; }
.field-wide { display: grid; gap: 1rem; }

.form-soft-box {
  background: var(--soft);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: grid;
  gap: 0.6rem;
}
.form-terms-box {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
.btn-block { width: 100%; }
.form-footnote { text-align: center; margin: 0; }

.field { display: grid; gap: 0.35rem; }
.field label { font: 600 0.88rem/1.3 var(--font-sans); }

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: 0.55rem;
  background: var(--background);
  color: var(--foreground);
  font: 400 0.95rem/1.4 var(--font-sans);
  padding: 0.55rem 0.75rem;
  box-shadow: 0 1px 2px oklch(0.18 0.01 40 / 0.05);
}
.field textarea { resize: vertical; min-height: 3.75rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--ring);
  outline-offset: 1px;
}
.field input[type="file"] { padding: 0.45rem; font-size: 0.85rem; }

.field-hint { font-size: 0.78rem; color: var(--muted-foreground); margin: 0; }
.field-error { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin: 0; }
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: var(--primary);
}

.field-check label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}
.field-check input {
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  margin-top: 0.15rem;
  border: 2px solid var(--primary);
  border-radius: 999px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}
.field-check input:checked::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
}

/* Honeypot: visually removed, still submittable by naive bots. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

/* Server-redirect error banners, revealed by URL fragment. */
.form-banner {
  display: none;
  border: 2px solid var(--primary);
  background: oklch(0.56 0.235 28.5 / 0.06);
  color: var(--primary);
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.25rem;
}
.form-banner:target { display: block; }

.thanks-panel { text-align: center; }
.thanks-panel .btn-row { justify-content: center; margin-top: 1.5rem; }

/* ---------- Contact page ---------- */

.contact-grid { display: grid; gap: 2rem; }
.contact-cards { display: grid; gap: 1.25rem; align-content: start; }

.contact-phone-card {
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  border: 0;
}
.contact-phone-card .card-eyebrow { color: oklch(0.99 0 0 / 0.75); }
.card .contact-phone {
  color: var(--primary-foreground);
  font: 800 2rem/1.1 var(--font-display);
  margin-bottom: 1.25rem;
}
.contact-cards .social-links { margin-top: 0.75rem; }
.contact-cards .social-links a {
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
}
.contact-cards .social-links a:hover { background: var(--soft); }

.hours-list { list-style: none; display: grid; gap: 0.5rem; margin-top: 0.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding-bottom: 0.35rem;
}
.hours-list span:last-child { color: var(--muted-foreground); }

.contact-form-col .section-heading { margin-bottom: 1.5rem; }

/* ---------- Payments ---------- */

.payments { border-top: 1px solid oklch(1 0 0 / 0.12); margin-top: 2.5rem; padding-top: 2rem; }
.payments-heading { color: var(--gold); font-size: 1rem; margin-bottom: 0.15rem; }
.payments-sub { font-size: 0.85rem; color: oklch(0.9 0 0 / 0.6); }
.payments-groups { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.payments-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.pay-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.6rem;
  height: 2.5rem;
  min-width: 4rem;
  padding-inline: 0.6rem;
}
.pay-chip img { max-height: 1.5rem; width: auto; max-width: 4rem; object-fit: contain; }
.payments-tiles { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; }
.payments-tiles li { display: flex; align-items: center; gap: 0.6rem; }
.payments-tiles img, .payments-tiles svg { width: 2.5rem; height: 2.5rem; border-radius: 0.6rem; }
.payments-tiles strong { display: block; font-size: 0.88rem; color: #fff; }
.payments-tiles span { font-size: 0.75rem; color: oklch(0.9 0 0 / 0.6); }
.payments-note { font-size: 0.8rem; color: oklch(0.9 0 0 / 0.6); margin: 1rem 0 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: oklch(0.97 0.005 60);
  border-top: 4px solid var(--gold);
  margin-top: 6rem;
  padding-block: 3.5rem 2rem;
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--gold); }

.footer-grid { display: grid; gap: 2.5rem; }
.footer-grid h2 {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-grid ul { list-style: none; display: grid; gap: 0.45rem; font-size: 0.92rem; }
.footer-grid .social-links { display: flex; gap: 0.4rem; margin-top: 0.75rem; }

.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 1rem;
  padding: 0.4rem;
  margin-bottom: 1rem;
}
.footer-logo img { width: 5rem; height: 5rem; object-fit: contain; }
.footer-brand p { font-size: 0.9rem; color: oklch(0.9 0 0 / 0.7); }
.footer-tagline { color: var(--gold) !important; font-weight: 700; }

.footer-contact li a { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer .social-links a {
  color: oklch(0.95 0 0 / 0.85);
  background: oklch(1 0 0 / 0.1);
  border-radius: 999px;
}
.site-footer .social-links a:hover { color: var(--gold); background: oklch(1 0 0 / 0.16); }

.footer-fineprint {
  border-top: 1px solid oklch(1 0 0 / 0.12);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: oklch(0.9 0 0 / 0.55);
}
.footer-fineprint a { text-decoration: underline; }

/* ---------- Floating contact ---------- */

.floating-contact {
  position: fixed;
  bottom: 1.25rem;
  right: 1rem;
  z-index: 70;
}
.floating-contact summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-brand);
  color: var(--primary-foreground);
  font: 700 0.85rem/1 var(--font-sans);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-lift);
  cursor: pointer;
  user-select: none;
}
.floating-contact summary::-webkit-details-marker { display: none; }
.floating-contact .fc-close { display: none; }
.floating-contact[open] .fc-open { display: none; }
.floating-contact[open] .fc-close { display: inline-flex; }

.fc-actions {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.6rem);
  display: grid;
  gap: 0.5rem;
  list-style: none;
  min-width: 13rem;
}
.fc-actions a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: 700 0.85rem/1 var(--font-sans);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.fc-actions a:hover { text-decoration: none; filter: brightness(1.08); }
.fc-call { background: var(--gradient-brand); color: var(--primary-foreground); }
.fc-wa { background: var(--ink); color: #fff; }
.fc-sms { background: var(--gradient-gold); color: var(--gold-foreground); }

/* ---------- Legal prose ---------- */

.prose h2 { font-size: 1.3rem; margin-top: 2rem; }
.prose p { color: var(--muted-foreground); }

/* ---------- Motion ---------- */

.fade-up { animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .route-dash, .fade-up { animation: none; }
  .card-lift, .card-lift:hover { transform: none; transition: none; }
}

/* ---------- Breakpoints ---------- */

@media (min-width: 40rem) {
  .section { padding-block: 5rem; }
  .fs-grid { grid-template-columns: 1fr 1fr; }
  .fs-grid .field-wide { grid-column: 1 / -1; }
  .form-card { padding: 2.25rem; }
  .grid-services, .grid-products, .grid-values { grid-template-columns: repeat(2, 1fr); }
  .grid-steps { grid-template-columns: repeat(2, 1fr); }
  .floating-contact { bottom: 2rem; right: 2rem; }
  .header-phone span { display: inline; }
}

@media (min-width: 48rem) {
  .header-social { display: flex; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

@media (min-width: 64rem) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .split-grid { grid-template-columns: 1fr 1fr; }
  .grid-services, .grid-products, .grid-values { grid-template-columns: repeat(4, 1fr); }
  .grid-steps { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 80rem) {
  /* With the full nav visible the row is tight until ~1536px; the
     social icons yield rather than squeezing the logo out. */
  .header-social { display: none; }
  .header-nav { display: block; }
  .header-nav ul { display: flex; gap: 0.15rem; list-style: none; }
  .header-nav a {
    display: inline-block;
    padding: 0.5rem 0.6rem;
    border-radius: 999px;
    color: var(--foreground);
    font: 600 0.9rem/1.3 var(--font-sans);
    white-space: nowrap;
  }
  .header-nav a:hover { background: var(--muted); text-decoration: none; }
  .header-nav a[aria-current="page"] {
    color: var(--primary);
    background: oklch(0.56 0.235 28.5 / 0.08);
  }
  .menu-toggle, #lang-mobile { display: none; }
  #lang-desktop { display: inline-block; }
}

@media (min-width: 96rem) {
  .header-social { display: flex; }
}
