:root {
  --carbon: #25242B;
  --gunmetal: #313B43;
  --slate: #394E51;
  --industrial: #4B6363;
  --red: #C1232E;
  --red-dark: #A52831;
  --signal-red: #EB0704;
  --cyan: #649897;
  --cyan-soft: #78B5B4;
  --steel: #DDE4E4;
  --silver: #F2F4F4;
  --white: #FDFDFD;
  --paper: var(--carbon);
  --ink: var(--white);
  --muted: #A0ACAC;
  --line: rgba(75, 99, 99, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  --shadow-strong: 0 34px 100px rgba(0, 0, 0, 0.42);
  --navy-950: var(--carbon);
  --navy-900: var(--gunmetal);
  --navy-800: var(--slate);
  --navy-700: var(--industrial);
  --gold: var(--cyan);
  --gold-soft: var(--cyan-soft);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(235, 7, 4, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(100, 152, 151, 0.18), transparent 30%),
    linear-gradient(180deg, var(--carbon) 0%, #202025 48%, var(--carbon) 100%);
  min-width: 320px;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(37, 36, 43, 0.9);
  border-bottom: 1px solid rgba(221, 228, 228, 0.12);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  background: #c91d2b;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.brand strong, .brand small { display: block; }
.brand small { color: rgba(255, 255, 255, 0.68); margin-top: 2px; }
.brand strong { letter-spacing: 0; }
.site-nav {
  position: fixed;
  inset: 78px 14px auto 14px;
  display: none;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--carbon);
  box-shadow: var(--shadow);
}
.site-nav.open { display: flex; }
.site-nav a {
  position: relative;
  padding: 12px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
  font-size: 0.9rem;
  transition: color 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}
.site-nav a.active,
.site-nav a:hover {
  color: var(--white);
  background: rgba(193, 35, 46, 0.16);
}
.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}
.admin-link {
  border: 1px solid rgba(100, 152, 151, 0.5);
  background: rgba(100, 152, 151, 0.08);
}
.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  transition: border-color 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); }
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 164, 65, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.page { display: none; }
.page.active { display: block; }
.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  padding: 72px clamp(18px, 5vw, 64px) 42px;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  will-change: opacity;
}
.hero-slide-one {
  animation-name: heroSlideOne;
}
.hero-slide-two {
  animation-name: heroSlideTwo;
}
.hero-slide-three {
  animation-name: heroSlideThree;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(235, 7, 4, 0.18), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(100, 152, 151, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(20, 20, 24, 0.84) 0%, rgba(37, 36, 43, 0.68) 44%, rgba(20, 20, 24, 0.54) 100%),
    linear-gradient(0deg, rgba(20, 20, 24, 0.78), rgba(20, 20, 24, 0.38) 56%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--signal-red), var(--cyan));
  z-index: 1;
}
.hero-content, .hero-panel { position: relative; z-index: 2; max-width: 760px; }
@keyframes heroSlideOne {
  0%, 28% {
    opacity: 1;
  }
  34%, 94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heroSlideTwo {
  0%, 28% {
    opacity: 0;
  }
  34%, 61% {
    opacity: 1;
  }
  67%, 100% {
    opacity: 0;
  }
}
@keyframes heroSlideThree {
  0%, 61% {
    opacity: 0;
  }
  67%, 94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-soft);
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.15rem, 6.5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 16px;
  max-width: 860px;
  color: var(--white);
  font-weight: 800;
}
h2 { color: var(--white); font-size: clamp(1.58rem, 4.2vw, 2.7rem); line-height: 1.11; letter-spacing: 0; font-weight: 800; }
h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 8px; font-weight: 800; }
.hero-copy {
  font-size: clamp(1rem, 2.6vw, 1.32rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 610px;
  line-height: 1.5;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.trust-strip span,
.trust-strip a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(100, 152, 151, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(49, 59, 67, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: clamp(0.74rem, 2.2vw, 0.82rem);
  font-weight: 800;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease), background 240ms var(--ease);
}
.trust-strip a:not(.btn):hover {
  transform: translateY(-2px);
  color: var(--cyan-soft);
  border-color: rgba(120, 181, 180, 0.72);
  background: rgba(100, 152, 151, 0.16);
}
.hero-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(6, 13, 28, 0.12);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease), color 260ms var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 560ms var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 13, 28, 0.2);
}
.btn:hover::before {
  transform: translateX(120%);
}
.btn:active {
  transform: translateY(0);
}
.btn.primary {
  color: var(--white);
  background: var(--red);
}
.btn.primary:hover { background: var(--signal-red); }
.btn.accent {
  color: #071f1f;
  border-color: rgba(120, 181, 180, 0.9);
  background: var(--cyan-soft);
}
.btn.accent:hover {
  color: var(--white);
  background: var(--cyan);
}
.btn.success {
  color: #052f22;
  border-color: rgba(74, 222, 128, 0.72);
  background: #86efac;
}
.btn.success:hover {
  color: #021a13;
  background: #bbf7d0;
  box-shadow: 0 18px 40px rgba(74, 222, 128, 0.18);
}
.btn.secondary {
  color: var(--cyan-soft);
  border: 2px solid var(--cyan);
  background: transparent;
}
.btn.secondary:hover { color: var(--carbon); background: var(--cyan-soft); }
.btn.ghost { color: var(--white); border-color: rgba(221, 228, 228, 0.32); background: rgba(57, 78, 81, 0.32); }
.btn.whatsapp { color: #063d2c; background: #c9f7dd; border-color: #86d9ad; }
.btn.ghost-danger {
  color: #ffd6da;
  border-color: rgba(235, 7, 4, 0.45);
  background: rgba(235, 7, 4, 0.12);
}
.btn.ghost-danger:hover {
  color: var(--white);
  background: rgba(235, 7, 4, 0.48);
}
.btn.compact { min-height: 40px; padding: 0 14px; font-size: 0.9rem; }
.btn.full { width: 100%; }
.hero-panel {
  width: min(100%, 380px);
  margin-top: 42px;
  padding: 20px;
  border: 1px solid rgba(100, 152, 151, 0.4);
  border-radius: 14px;
  background: rgba(49, 59, 67, 0.92);
  box-shadow: 0 0 24px rgba(100, 152, 151, 0.16), var(--shadow-strong);
  backdrop-filter: blur(18px);
}
.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}
.hero-panel strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
}
.station-info-list {
  display: grid;
  gap: 0;
}
.station-info-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(221, 228, 228, 0.14);
}
.station-info-list small {
  color: var(--steel);
  font-weight: 760;
}
.station-info-list b {
  color: var(--white);
  font-size: 1.02rem;
}
.section, .form-layout, .contact-layout, .admin-shell, .login-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}
.section-tight { padding-top: 68px; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2, .highlight-copy h2 { margin-bottom: 0; }
.section-head h2::after,
.highlight-copy h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 20px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}
.service-grid, .price-grid, .highlight-grid {
  display: grid;
  gap: 18px;
}
.service-card, .price-card, .admin-panel, .form-panel, .side-note, .contact-panel, .login-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--gunmetal);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}
.service-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  opacity: 0;
  transition: opacity 260ms var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 152, 151, 0.82);
  box-shadow: 0 0 25px rgba(100, 152, 151, 0.25), 0 24px 70px rgba(0, 0, 0, 0.26);
  background: var(--slate);
}
.service-card:hover::after { opacity: 1; }
.service-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  font-weight: 900;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.service-card:hover span {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 22px rgba(100, 152, 151, 0.26);
}
.service-card p, .wide-service p, .side-note p, .about-copy p, .page-hero p { color: var(--steel); line-height: 1.7; }
.highlight-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 36, 43, 0.98), rgba(49, 59, 67, 0.94)),
    url("assets/hero.png") center / cover;
}
.highlight-grid { margin-top: 28px; }
.highlight-item {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.highlight-item:hover {
  transform: translateX(4px);
  border-top-color: rgba(100, 152, 151, 0.74);
}
.highlight-item b { color: var(--cyan-soft); margin-right: 14px; }
.highlight-item strong { display: block; margin: 8px 0; font-size: 1.2rem; }
.highlight-item span { color: rgba(255, 255, 255, 0.72); }

.page-hero {
  padding: 88px clamp(18px, 5vw, 64px) 68px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 36, 43, 0.97), rgba(49, 59, 67, 0.92)),
    url("assets/hero.png") center / cover;
}
.page-hero h1 { max-width: 940px; font-size: clamp(2.4rem, 8vw, 5.1rem); }
.page-hero p:not(.eyebrow) { max-width: 760px; color: rgba(255, 255, 255, 0.74); font-size: 1.08rem; }
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.price-card { padding: 28px; position: relative; overflow: hidden; }
.price-card,
.wide-service,
.values-list span,
.contact-panel,
.form-panel,
.admin-panel {
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}
.price-card:hover,
.wide-service:hover,
.values-list span:hover,
.contact-panel:hover,
.form-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 152, 151, 0.74);
  box-shadow: 0 0 25px rgba(100, 152, 151, 0.25), 0 24px 70px rgba(0, 0, 0, 0.24);
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}
.price-card.fuel-pms::before { background: var(--red); }
.price-card.fuel-diesel::before { background: var(--cyan); }
.price-card .fuel-name { color: var(--muted); font-weight: 900; text-transform: uppercase; }
.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-card .price { margin: 16px 0; color: var(--white); font-size: clamp(2.4rem, 10vw, 4.4rem); font-weight: 900; line-height: 1; }
.price-card.fuel-pms .price { color: #ffccd0; }
.price-card.fuel-diesel .price { color: var(--cyan-soft); }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
}
.badge.available { color: #071f1f; background: var(--cyan-soft); }
.badge.low-stock { color: var(--white); background: var(--red-dark); }
.badge.out-of-stock { color: var(--white); background: var(--signal-red); }
.badge.gold { color: var(--carbon); background: var(--cyan-soft); }

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 18px;
  place-items: center;
}
.price-modal.open {
  display: grid;
}
.price-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(235, 7, 4, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(100, 152, 151, 0.18), transparent 30%),
    rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(14px);
}
.price-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(560px, calc(100svh - 36px));
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(100, 152, 151, 0.42);
  border-radius: 16px;
  color: var(--white);
  background: rgba(49, 59, 67, 0.86);
  box-shadow: 0 0 40px rgba(100, 152, 151, 0.22), 0 36px 110px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(24px);
}
.price-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--signal-red), var(--cyan));
}
.price-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  line-height: 1.1;
}
.confirm-dialog {
  width: min(440px, 100%);
  padding: 24px;
}
.confirm-dialog h2 {
  margin-right: 38px;
}
.confirm-copy {
  margin: 0;
  color: var(--steel);
  line-height: 1.6;
}
.confirm-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.confirm-actions .btn {
  width: 100%;
}
.confirm-actions .btn.success {
  order: 2;
}
.confirm-actions .btn.ghost-danger {
  order: 2;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(221, 228, 228, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(37, 36, 43, 0.8);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
}
.modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 181, 180, 0.66);
  background: rgba(193, 35, 46, 0.68);
}
.modal-toolbar {
  padding: 10px 0 12px;
  border-top: 1px solid rgba(221, 228, 228, 0.12);
  font-size: 0.86rem;
}
.modal-price-grid {
  gap: 10px;
  grid-template-columns: 1fr;
}
.modal-price-grid .price-card {
  padding: 16px;
  min-height: auto;
}
.modal-price-grid .price-card .price {
  margin: 10px 0;
  font-size: clamp(1.35rem, 5.5vw, 1.95rem);
}
.modal-price-grid .price-line {
  align-items: center;
}
.modal-price-grid .price-card .fuel-name {
  font-size: 0.75rem;
}
.modal-price-grid .badge {
  min-height: 26px;
  padding: 0 8px;
  font-size: 0.74rem;
}

.form-layout, .contact-layout { display: grid; gap: 24px; }
.form-panel, .side-note, .contact-panel, .login-panel, .admin-panel { padding: clamp(22px, 4vw, 34px); }
label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--steel); font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(221, 228, 228, 0.18);
  border-radius: 8px;
  padding: 14px 14px;
  background: rgba(37, 36, 43, 0.78);
  color: var(--white);
  outline: none;
}
textarea { resize: vertical; }
input,
textarea,
select {
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--cyan);
  background: rgba(49, 59, 67, 0.92);
  box-shadow: 0 0 0 4px rgba(100, 152, 151, 0.18);
}
.form-message { min-height: 24px; margin: 14px 0 0; color: #ffb6bd; font-weight: 800; }
.form-message.success { color: var(--cyan-soft); }
.side-note {
  align-self: start;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(37, 36, 43, 0.98), rgba(57, 78, 81, 0.92)),
    url("assets/hero.png") center / cover;
  box-shadow: var(--shadow-strong);
}
.side-note h2 { margin: 18px 0 12px; }
.side-note p { color: rgba(255, 255, 255, 0.72); }
.wide-service {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 26px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--gunmetal);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}
.wide-service::after {
  content: "";
  position: absolute;
  inset: auto 26px 0 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}
.wide-service:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.wide-service b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--signal-red));
}
.about-grid { display: grid; gap: 24px; }
.values-list { display: grid; gap: 12px; }
.values-list span {
  padding: 20px;
  border-left: 4px solid var(--cyan);
  border-radius: 12px;
  background: var(--gunmetal);
  color: var(--steel);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}
.contact-panel dl { display: grid; gap: 16px; margin: 0 0 24px; }
.contact-panel div { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.contact-panel {
  min-height: 420px;
}
dt { color: var(--muted); font-weight: 900; }
dd { margin: 4px 0 0; font-weight: 800; }
.map-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  height: 100%;
}
.location-picker {
  position: relative;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(100, 152, 151, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(57, 78, 81, 0.98), rgba(49, 59, 67, 0.96));
  box-shadow: 0 0 24px rgba(100, 152, 151, 0.12), 0 16px 48px rgba(0, 0, 0, 0.24);
  overflow: visible;
}
.location-picker::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--signal-red), var(--cyan));
}
.picker-label {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.location-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(221, 228, 228, 0.18);
  border-radius: 10px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(37, 36, 43, 0.96), rgba(37, 36, 43, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}
.location-select-button:hover,
.location-select-button[aria-expanded="true"] {
  border-color: rgba(120, 181, 180, 0.54);
}
.location-select-button:focus {
  outline: none;
  border-color: var(--cyan-soft);
  box-shadow: 0 0 0 4px rgba(100, 152, 151, 0.18);
}
.select-chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cyan-soft);
  border-bottom: 2px solid var(--cyan-soft);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms var(--ease);
}
.location-select-button[aria-expanded="true"] .select-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}
.location-menu {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% - 14px);
  z-index: 10;
  padding: 8px;
  border: 1px solid rgba(120, 181, 180, 0.42);
  border-radius: 10px;
  background: rgba(37, 36, 43, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}
.location-menu button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--steel);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.location-menu button:hover,
.location-menu button.active {
  color: var(--white);
  background: rgba(100, 152, 151, 0.18);
}
.map-placeholder {
  position: relative;
  display: grid;
  min-height: 340px;
  height: 100%;
  place-items: center;
  border: 1px solid rgba(16, 38, 69, 0.12);
  border-radius: 12px;
  color: var(--white);
  background: var(--gunmetal);
  box-shadow: var(--shadow);
  font-weight: 900;
  overflow: hidden;
}
.map-placeholder > span {
  position: relative;
  z-index: 1;
  color: var(--steel);
  font-size: 1.05rem;
}
.map-placeholder.empty::before {
  content: "";
  position: absolute;
  inset: 26px;
  background: url("assets/logo.png") center / contain no-repeat;
  opacity: 0.06;
}
.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}
.map-directions {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(221, 228, 228, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(37, 36, 43, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  font-size: 0.9rem;
  transition: transform 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
}
.map-directions:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 181, 180, 0.72);
  background: rgba(193, 35, 46, 0.88);
}
.login-shell { min-height: calc(100svh - 150px); display: grid; place-items: center; }
.login-panel { width: min(440px, 100%); }
.login-panel h1 { color: var(--white); font-size: 2.2rem; line-height: 1.04; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.admin-top h1 { color: var(--white); font-size: clamp(2.1rem, 7vw, 4.2rem); }
.admin-grid { display: grid; gap: 18px; }
.admin-panel-wide { grid-column: 1 / -1; }
.panel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.panel-title-row h2,
.admin-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.15;
}
.panel-title-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.compact-panel-title { margin-bottom: 14px; }
.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(221, 228, 228, 0.1);
  border-radius: var(--radius);
  background: rgba(37, 36, 43, 0.36);
}
.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(221, 228, 228, 0.09);
  text-align: left;
  vertical-align: middle;
}
.clean-request-table th,
.clean-request-table td {
  padding: 12px 14px;
}
.clean-request-table {
  min-width: 860px;
}
.clean-request-table td:first-child {
  min-width: 260px;
}
.clean-request-table td:nth-child(2),
.clean-request-table td:nth-child(3),
.clean-request-table td:nth-child(5) {
  white-space: nowrap;
}
.clean-request-table td:nth-child(4) {
  min-width: 150px;
}
.clean-request-table td:nth-child(6) {
  min-width: 220px;
}
.admin-table th {
  color: var(--cyan-soft);
  background: rgba(37, 36, 43, 0.52);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.admin-table tbody tr:last-child td { border-bottom: 0; }
.admin-table tbody tr:hover { background: rgba(100, 152, 151, 0.07); }
.admin-table td strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}
.admin-table td span,
.admin-table td small {
  display: block;
  max-width: 360px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}
.admin-table td small {
  color: rgba(221, 228, 228, 0.74);
}
.admin-table a {
  color: var(--cyan-soft);
  font-weight: 800;
}
.admin-table input,
.admin-table select {
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.95rem;
  background: rgba(37, 36, 43, 0.88);
}
.price-admin-table { min-width: 680px; }
.price-admin-table input { width: 130px; }
.price-admin-table select { width: 170px; }
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 180px;
}
.table-action { min-width: 92px; }
.request-meta { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.subscriber-list {
  display: grid;
  gap: 10px;
}
.subscriber-export {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(221, 228, 228, 0.1);
  border-radius: var(--radius);
  background: rgba(37, 36, 43, 0.36);
}
.subscriber-export strong {
  color: var(--white);
  font-size: 1.15rem;
}
.subscriber-export p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.settings-panel { grid-column: 1 / -1; }
.footer {
  position: relative;
  color: var(--steel);
  background:
    linear-gradient(135deg, rgba(37, 36, 43, 0.98), rgba(49, 59, 67, 0.96)),
    url("assets/hero.png") center / cover;
  overflow: hidden;
}
body.admin-view .footer {
  display: none;
}
.footer::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 16%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  background: url("assets/logo.png") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}
.footer-accent {
  position: relative;
  z-index: 1;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--signal-red), var(--cyan));
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 44px;
}
.footer-col {
  padding: 24px;
  border: 1px solid rgba(221, 228, 228, 0.2);
  border-radius: 14px;
  background: rgba(49, 59, 67, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease);
}
.footer-col:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 152, 151, 0.62);
  background: rgba(57, 78, 81, 0.98);
}
.footer-brand {
  background: linear-gradient(180deg, rgba(57, 78, 81, 0.98), rgba(49, 59, 67, 0.94));
}
.footer-col h2,
.footer-col h3 {
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col h2 {
  font-size: 1.35rem;
  line-height: 1.1;
}
.footer-col h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cyan-soft);
}
.footer-col p {
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-kicker {
  margin-bottom: 10px;
  color: var(--cyan-soft);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}
.footer-lead {
  color: var(--white);
  font-weight: 900;
}
.footer-logo {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 12px;
  object-fit: cover;
  background: #c91d2b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}
.footer address,
.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
  line-height: 1.55;
}
.contact-list span {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(221, 228, 228, 0.16);
  color: var(--steel);
}
.contact-list span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-list b {
  color: var(--cyan-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
}
.contact-list a {
  width: fit-content;
  color: var(--white);
  font-weight: 850;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a {
  width: fit-content;
  border-bottom: 1px solid transparent;
  color: var(--steel);
  font-weight: 750;
  transition: color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.footer-links a:hover {
  color: var(--cyan-soft);
  border-bottom-color: rgba(247, 223, 158, 0.42);
  transform: translateX(3px);
}
.link-group-title {
  margin-top: 8px;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}
.link-group-title:first-child {
  margin-top: 0;
}
.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.newsletter-control {
  display: grid;
  gap: 10px;
}
.newsletter-form input {
  border-color: rgba(221, 228, 228, 0.28);
  color: var(--white);
  background: rgba(37, 36, 43, 0.92);
}
.newsletter-form input:focus {
  border-color: rgba(247, 223, 158, 0.72);
  box-shadow: 0 0 0 4px rgba(247, 223, 158, 0.14);
}
.newsletter-form .btn {
  width: fit-content;
}
.newsletter-form input::placeholder {
  color: #A0ACAC;
}
.newsletter-note {
  min-height: 22px;
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}
.newsletter-note.success {
  color: #c9f7dd;
  font-weight: 850;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid var(--red);
  font-weight: 800;
  color: var(--steel);
}
.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;
}
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 719px) {
  .hero {
    --hero-mobile-height: clamp(360px, 52svh, 460px);
    display: grid;
    grid-template-rows: var(--hero-mobile-height) auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: var(--carbon);
  }
  .hero-media {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    inset: auto;
    display: block;
    height: var(--hero-mobile-height);
    transform: none;
    overflow: hidden;
    z-index: 0;
  }
  .hero-slide {
    object-position: center;
  }
  .hero-shade {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    inset: auto;
    height: var(--hero-mobile-height);
    z-index: 1;
  }
  .hero::after {
    display: none;
  }
  .hero-content {
    position: relative;
    grid-column: 1;
    grid-row: 1 / 3;
    z-index: 2;
    display: grid;
    grid-template-rows: var(--hero-mobile-height) auto;
    opacity: 1;
    max-width: none;
    transform: none;
  }
  .hero-main-copy {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: var(--hero-mobile-height);
    padding: 0 18px 24px;
    z-index: 1;
  }
  .hero-main-copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8vw, 2.55rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }
  .hero-main-copy .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .hero-main-copy .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.42;
  }
  .hero-quick-links {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    z-index: 3;
    padding: 18px 18px 26px;
    background: var(--carbon);
    border-bottom: 1px solid rgba(221, 228, 228, 0.1);
  }
  .hero-slide-one {
    object-position: center;
  }
  .trust-strip,
  .hero-actions {
    width: 100%;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 8px 18px rgba(6, 13, 28, 0.14);
  }
  .admin-shell {
    padding-inline: 14px;
  }
  .admin-top {
    align-items: flex-start;
  }
  .admin-top h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .panel-title-row {
    margin-bottom: 14px;
  }
  .admin-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .admin-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .admin-table tbody {
    display: grid;
    gap: 12px;
  }
  .admin-table tr {
    padding: 14px;
    border: 1px solid rgba(221, 228, 228, 0.1);
    border-radius: var(--radius);
    background: rgba(37, 36, 43, 0.48);
  }
  .admin-table td {
    display: grid;
    grid-template-columns: minmax(88px, 0.42fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(221, 228, 228, 0.08);
  }
  .admin-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .admin-table td::before {
    content: attr(data-label);
    color: var(--cyan-soft);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }
  .admin-table td:first-child {
    min-width: 0;
  }
  .admin-table td span,
  .admin-table td small {
    max-width: none;
  }
  .admin-table input,
  .admin-table select,
  .price-admin-table input,
  .price-admin-table select {
    width: 100%;
  }
  .table-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
  }
  .table-actions .btn {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
  }
  .clean-request-table td:nth-child(2),
  .clean-request-table td:nth-child(3),
  .clean-request-table td:nth-child(5) {
    white-space: normal;
  }
}

@media (min-width: 720px) {
  .hero { align-items: center; grid-template-columns: minmax(0, 1fr); gap: 38px; padding-bottom: 68px; }
  .service-grid, .price-grid { grid-template-columns: repeat(3, 1fr); }
  .modal-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlight-band { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 40px; align-items: start; }
  .highlight-grid { margin-top: 0; grid-template-columns: repeat(2, 1fr); }
  .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-layout, .about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .contact-layout { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1.18fr 1fr 0.95fr 1.05fr; align-items: stretch; }
  .newsletter-control { grid-template-columns: 1fr auto; }
  .newsletter-form .btn { width: auto; }
  .confirm-actions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
  .hero-content {
    max-width: 820px;
  }
  .hero-content h1 {
    font-size: clamp(3.2rem, 5.6vw, 4.85rem);
  }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-nav a { padding: 10px 12px; }
  .site-header {
    padding-inline: max(54px, calc((100vw - 1320px) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide {
    animation-duration: 15s !important;
    animation-iteration-count: infinite !important;
    animation-timing-function: ease-in-out !important;
  }
  .hero-slide-one { animation-name: heroSlideOne !important; }
  .hero-slide-two { animation-name: heroSlideTwo !important; }
  .hero-slide-three { animation-name: heroSlideThree !important; }
}
