@font-face {
  font-family: 'Ardela Edge';
  src: url('./assets/fonts/ardela-edge-x01-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Ardela Edge';
  src: url('./assets/fonts/ardela-edge-x01-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('./assets/fonts/Avenir Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('./assets/fonts/Avenir Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

:root {
  --bg: #ffffff;
  --bg-dark: #161616;
  --panel: #111111;
  --panel-soft: #1c1c1c;
  --text: #1a1a1a;
  --text-light: #ffffff;
  --muted: #666666;
  --muted-light: #bababa;
  --line: rgba(0, 0, 0, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --orange: #F95A19;
  --orange-deep: #d8450a;
  --blue: #8eb7ff;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Avenir', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Ardela Edge', sans-serif;
  letter-spacing: 1px;
}


body.nav-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px 16px 72px;
  border-bottom: 1px solid var(--orange);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  opacity: 0.84;
}

.mobile-bg {
  display: none;
}

.hero-shade {
  background: transparent;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: min(var(--max), calc(100vw - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: auto;
  height: 150px;
  margin-left: -12px;
}

.brand-mark {
  position: relative;
  display: grid;
  min-width: 72px;
  height: 38px;
  place-items: center;
  color: #fff;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: -8px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--orange);
  transform: rotate(180deg);
}

.brand-text {
  align-self: end;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 8px;
  padding-bottom: 1px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--orange);
}

.nav-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--orange);
}

.nav-mobile-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  margin-right: 15px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 38px;
  height: 4px;
  margin: 0;
  border-radius: 4px;
  background: var(--orange);
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.site-header.nav-open .menu-toggle {
  background: transparent;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.nav-panel-head,
.nav-panel-stores,
.nav-panel-contact {
  display: none;
}

.btn,
.header-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 99px;
  background: var(--panel-soft);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.btn::after,
.header-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--orange);
  transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
  border-radius: 99px;
}

.btn.primary,
.header-cta {
  background: transparent;
  color: #fff;
  border: 1px solid var(--orange);
}

.btn.primary::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  z-index: -2;
  border-radius: 99px;
}

.btn.primary::after,
.header-cta::after {
  background: var(--orange-deep);
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249, 90, 25, 0.3);
  outline: none;
  color: #fff;
}

.btn:hover::after,
.header-cta:hover::after {
  height: 100%;
}

.hero-content,
.section,
.quick-info,
footer {
  width: min(var(--max), calc(100vw - 32px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: 'Ardela Edge', sans-serif;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.text-orange {
  color: var(--orange);
}

.text-black {
  color: var(--text);
}

.hero-title {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--orange);
  font-size: clamp(26px, 4.3vw, 56px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-desc-border {
  border-left: 4px solid var(--orange);
  padding-left: 16px;
  margin: 36px 0 0;
  max-width: 500px;
}

.hero-copy {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.4;
  font-weight: 400;
}

.hero-visual {
  display: none;
}

.hero-phones {
  max-width: 120%;
  height: auto;
  object-fit: contain;
  margin-right: -20%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-width: 210px;
}

.hero-proof {
  padding: 26px;
  border: 1px solid rgba(255, 90, 18, 0.4);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 90, 18, 0.1), transparent 50%),
    rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero-proof span {
  color: var(--orange);
  font-size: 40px;
  font-weight: 950;
  line-height: 1;
}

.hero-proof strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.hero-proof p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.quick-info {
  position: relative;
  z-index: 4;
  background: var(--bg-dark);
  width: 100%;
}

.quick-info-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
  padding: 48px 0;
}

.quick-info article {
  position: relative;
  display: flex;
  gap: 20px;
  min-width: 0;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 90, 18, 0.07), transparent 50%),
    rgba(17, 17, 17, 0.95);
  transition: border-color 0.2s;
}

.quick-info article > div,
.hours-button span {
  min-width: 0;
}

.info-icon {
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.info-icon svg {
  width: 30px;
  height: 30px;
}

.quick-info h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  color: #ffffff;
  font-family: 'Ardela Edge', sans-serif;
  letter-spacing: 0.5px;
}

.quick-info p {
  margin: 10px 0 0;
  color: #bababa;
  line-height: 1.5;
  font-size: 15px;
}

.hours-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted-light);
  padding: 0;
  margin-top: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.hours-button strong,
.hours-button em {
  display: block;
}

.hours-button strong {
  font-size: 20px;
  font-style: normal;
  line-height: 1.1;
}

.hours-button em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.4;
}

.hours-arrow {
  color: var(--orange);
  font-size: 26px;
  transition: transform 160ms ease;
}

.hours-card.open .hours-arrow {
  transform: rotate(180deg);
}

.hours-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 15;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8);
}

.hours-dropdown div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.hours-dropdown div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-dropdown strong {
  color: #fff;
}

.section {
  padding: 82px 0;
}

.section-inner {
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
  padding: 0 0 72px;
}

.services-section {
  padding-top: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(249, 90, 25, 0.35) 0%, transparent 50%),
    #161616;
  color: #fff;
  width: 100%;
}

.services-section .section-heading h2 {
  color: #ffffff;
}

.services-section .section-heading .btn {
  margin-top: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--orange);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: 1px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.03), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--panel);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card.accent {
  background:
    linear-gradient(135deg, rgba(255, 90, 18, 0.26), rgba(255, 90, 18, 0.03)),
    var(--panel-soft);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 90, 18, 0.15);
}

.service-card:hover h3 {
  color: var(--orange);
  transition: color 160ms ease;
}

.service-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.service-card p,
.store-item p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.contact-help p {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  position: relative;
  background-image: url('assets/contact-bg.png');
  background-size: cover;
  background-position: center;
  width: 100%;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
  padding: 80px 0 60px;
}

.contact-heading {
  margin-bottom: 48px;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.1;
  color: #1a1a1a;
}

.contact-layout {
  width: 100%;
}

.contact-form {
  border: 1px solid var(--orange);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  display: grid;
  gap: 16px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
  font-size: 15px;
  letter-spacing: 0;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #7f7f7f;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
}

.form-submit {
  width: 100%;
}

.contact-help {
  display: grid;
  gap: 14px;
  padding: 26px;
  justify-items: center;
  text-align: center;
  border-color: rgba(255, 90, 18, 0.45);
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 90, 18, 0.1), transparent 50%),
    rgba(15, 15, 15, 0.9);
}

.contact-help h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.98;
}

.contact-help .btn {
  width: fit-content;
  min-width: 210px;
}

.contact-result {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-result pre {
  max-height: 220px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #070707;
  color: #e9e9e9;
  white-space: pre-wrap;
  word-break: break-word;
}

.reviews-section {
  width: 100%;
  overflow: hidden;
  margin-top: 54px;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(249, 90, 25, 0.35) 0%, transparent 50%),
    #161616;
  color: #fff;
}

.light-reviews {
  /* No longer used as light */
}

.reviews-heading {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 38px 0 18px;
}

.reviews-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.1;
}

.reviews-section .kicker {
  color: var(--orange);
}

.reviews-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  contain: paint;
  padding: 0 0 42px;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 18px;
  will-change: transform;
  animation: reviews-marquee 42s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  display: grid;
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  min-height: 210px;
  align-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 120, 30, 0.1), transparent 45%),
    linear-gradient(145deg, #fff8ec 0%, #fbf4ea 55%, #eef1f4 100%);
  color: #111;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 250, 238, 0.66), transparent 42%);
  opacity: 0.7;
  pointer-events: none;
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-card span {
  color: var(--orange);
  font-size: 22px;
  font-weight: 950;
}

.review-card p {
  margin: 14px 0;
  color: #1f1f1f;
  line-height: 1.45;
}

.review-card strong {
  color: #626262;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.stores-section {
  padding-bottom: 70px;
}

.stores-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.map-visual {
  position: relative;
  display: flex;
  min-height: 150px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  padding: 18px 22px;
}

.map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.64) 38%, rgba(5, 5, 5, 0.18) 100%);
  pointer-events: none;
}

.map-card-head {
  display: grid;
  gap: 5px;
  position: relative;
  z-index: 2;
}

.map-card-head strong {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}

.map-card-head span {
  color: var(--muted);
}

.plan-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.07) 49% 51%, transparent 51%),
    repeating-linear-gradient(36deg, transparent 0 46px, rgba(255, 255, 255, 0.055) 47px 49px),
    repeating-linear-gradient(124deg, transparent 0 54px, rgba(142, 183, 255, 0.055) 55px 57px),
    radial-gradient(circle at 80% 18%, rgba(142, 183, 255, 0.16), transparent 24%),
    radial-gradient(circle at 25% 75%, rgba(255, 90, 18, 0.16), transparent 28%),
    #0d0d0d;
}

.road {
  position: absolute;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.road-main {
  left: -8%;
  right: -5%;
  top: 54%;
  transform: rotate(-8deg);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07);
}

.road-bourg {
  left: 12%;
  right: 46%;
  top: 68%;
  transform: rotate(15deg);
  background: rgba(255, 90, 18, 0.72);
}

.road-pont {
  left: 48%;
  right: 8%;
  top: 34%;
  transform: rotate(18deg);
  background: rgba(142, 183, 255, 0.72);
}

.map-pin {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.pin-bourg {
  left: 44%;
  top: 58%;
}

.pin-pont {
  right: 12%;
  top: 21%;
  background: var(--blue);
  color: #050505;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-item {
  display: grid;
  position: relative;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(249, 90, 25, 0.25) 0%, transparent 60%),
    #161616;
  color: #fff;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.store-item > * {
  position: relative;
  z-index: 1;
}

.store-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}

.store-item h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

.store-item p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.85);
}

.store-item .btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.store-map {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 170px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #ebe4d6;
}

.footer-wrap {
  width: 100%;
  border-top: 2px solid var(--orange);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 120, 30, 0.13), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(255, 80, 10, 0.08), transparent 50%),
    linear-gradient(160deg, #0e0e0e 0%, #111 40%, #0a0a0a 100%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.8fr);
  gap: 44px;
  padding: 54px 0 58px;
  color: #d9d9d9;
  position: relative;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand .brand-logo {
  height: 64px;
}

.footer-brand p {
  margin: 0;
  color: rgba(200, 200, 200, 0.55);
  line-height: 1.5;
}

.footer-brand a:not(.brand) {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  color: rgba(220, 220, 220, 0.6);
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
  padding-left: 4px;
  outline: none;
}


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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-links {
    gap: 10px;
  }

  nav a {
    font-size: 13px;
    letter-spacing: 0;
  }

  .header-cta {
    justify-self: end;
    padding: 12px 16px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy-block {
    display: flex;
    flex-direction: column;
  }

  .hero-desc-border {
    order: -1;
    margin-inline: auto;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .hero-copy {
    color: #1a1a1a;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .quick-info-wrapper {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .stores-layout {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    width: min(420px, 100%);
    padding: 16px;
  }

  .hero-proof span {
    font-size: 28px;
  }

  .hero-proof strong {
    font-size: 18px;
    margin-top: 6px;
  }

  .hero-proof p {
    font-size: 14px;
    margin: 6px 0 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 85vh;
    padding: 160px 20px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero h1 {
    /* No shadow needed with the gradient overlay */
  }

  .hero-bg {
    object-position: center;
  }

  .desktop-bg {
    display: none;
  }

  .mobile-bg {
    display: block;
  }

  .mobile-bg::before,
  .mobile-bg::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background-image: url("assets/hero-bg.png");
    background-repeat: no-repeat;
    opacity: 0.84;
  }

  .mobile-bg::before {
    top: 0;
    height: 55%;
    background-image: url("assets/hero-bg-smeared.png");
    background-size: auto 100vh;
    background-position: 18% 30%;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    z-index: 1;
  }

  .mobile-bg::after {
    bottom: 0;
    height: 70%;
    background-size: auto 85vh;
    background-position: 80% bottom;
    z-index: 0;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0) 100%);
  }

  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    grid-template-columns: auto auto;
    align-items: start;
  }

  .header-cta {
    display: none;
  }

  .site-header::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      background 220ms ease;
  }

  .site-header.nav-open::before {
    background: rgba(0, 0, 0, 0.58);
    opacity: 1;
    pointer-events: auto;
  }

  .brand-text {
    display: none;
  }

  .site-header > .brand .brand-logo {
    height: 160px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    justify-self: end;
    position: relative;
    z-index: 40;
    margin-top: 48px;
    margin-right: -4px;
    transition: margin-top 220ms ease;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: start;
    width: min(340px, calc(100vw - 28px));
    height: 100dvh;
    padding: 60px 14px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    z-index: 30;
    border-left: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.46);
    font-size: 12px;
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .site-header.nav-open nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 46px 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: none;
  }

  .nav-panel-head .brand-mark {
    min-width: 58px;
    height: 32px;
    font-size: 25px;
  }

  .nav-panel-head .brand-logo {
    height: 42px;
  }

  .nav-panel-head .brand-mark::before {
    left: -6px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 13px;
  }

  .nav-panel-head strong,
  .nav-panel-head small {
    display: block;
  }

  .nav-panel-head strong {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
  }

  .nav-panel-head small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
  }

  nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    color: #ffffff;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-dot {
    display: none;
  }

  .nav-mobile-cta {
    display: flex;
    justify-content: center;
    border-color: transparent;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  }

  .nav-panel-stores,
  .nav-panel-contact {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    text-transform: none;
  }

  .nav-panel-stores strong {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
  }

  .nav-panel-contact {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-actions,
  footer {
    display: grid;
  }

  .hero-actions .btn,
  .store-item .btn {
    width: 100%;
    min-height: 52px;
  }

  .quick-info {
    margin-top: 0;
  }

  .quick-info-wrapper {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .quick-info article {
    min-height: 0;
  }

  .quick-info article.hours-card {
    flex-direction: column;
  }

  .hours-dropdown {
    position: static;
    margin: 0 20px 20px;
    width: calc(100% - 40px);
  }

  .hours-dropdown div:last-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-grid,
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .contact-form,
  .contact-help,
  .store-item {
    padding: 20px;
  }

  .map-visual {
    min-height: 132px;
    padding: 16px;
  }

  .map-card-head strong {
    font-size: 24px;
  }

  .map-pin {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 14px;
  }

  .pin-bourg {
    left: 58%;
    top: 58%;
  }

  .pin-pont {
    right: 8%;
    top: 24%;
  }

  .store-list {
    grid-template-columns: 1fr;
  }

  .store-map {
    min-height: 190px;
  }

  .review-card {
    flex-basis: 260px;
    width: 260px;
    min-height: 180px;
    padding: 16px;
  }
  
  .review-card span {
    font-size: 18px;
  }
  
  .review-card p {
    font-size: 14px;
    margin: 10px 0;
  }

  .store-item {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Ticker */
.scrolling-ticker {
  background-color: var(--orange);
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
}

.ticker-dot {
  margin: 0 20px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fix dropdown display issue */
.hours-dropdown[hidden] {
  display: none !important;
}

