/* ==================================================================
   AMIR APPLIANCES — Shared stylesheet
   Production-ready, single source of truth across all pages
================================================================== */

:root {
  --bg:        #F7F5F1;
  --bg-alt:    #EEEAE2;
  --bg-deep:   #E5E0D5;
  --surface:   #FFFFFF;
  --ink:       #161616;
  --ink-2:     #2C2C2C;
  --ink-soft:  #5A5A5A;
  --ink-mute:  #8C8C8C;
  --line:      #D8D2C5;
  --line-soft: #E8E3D7;

  --red:       #B0292C;
  --red-deep:  #8A1F22;

  --f-disp:    "Archivo", system-ui, -apple-system, sans-serif;
  --f-body:    "Archivo", system-ui, -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ------------- Eyebrow & utilities ------------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--red);
}

/* ------------- TOP BAR ------------- */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-divider { width: 1px; height: 12px; background: rgba(247,245,241,0.2); }
.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BD16F;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(91,209,111,0.6);
  animation: pulse 2.2s ease-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(91,209,111,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(91,209,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,209,111,0); }
}
.topbar-phone {
  font-weight: 600;
  background: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ------------- NAV ------------- */
.nav {
  position: sticky; top: 0;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--max); margin: 0 auto;
  gap: 32px;
}
.brand-lockup { display: flex; align-items: center; gap: 14px; }
.brand-lockup img { width: 52px; height: 52px; object-fit: contain; }
.brand-lockup .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup .brand-name {
  font-family: var(--f-disp);
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
}
.brand-lockup .brand-tag {
  font-family: var(--f-mono);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links > a, .nav-links .dropdown > a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a::after, .nav-links .dropdown > a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--red);
  transition: right 0.3s ease;
}
.nav-links > a:hover::after, .nav-links .dropdown:hover > a::after { right: 0; }
.nav-links > a.active { color: var(--red); }
.nav-links > a.active::after { right: 0; }

/* Dropdown for Services */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease;
  box-shadow: 0 22px 40px -22px rgba(0,0,0,0.18);
  z-index: 60;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.15s;
}
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--red); padding-left: 22px; }
.dropdown-caret {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 3px;
  transition: transform 0.2s;
}
.dropdown:hover .dropdown-caret { transform: rotate(225deg); margin-bottom: -3px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: var(--bg);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.nav-cta::before { content: "→"; font-weight: 400; }

.mobile-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.mobile-toggle span {
  width: 16px; height: 1.5px; background: var(--ink);
  position: relative;
  transition: all 0.25s;
}
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 100%; height: 1.5px; background: var(--ink);
  transition: all 0.25s;
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after  { top: 6px; }
.mobile-toggle.open span { background: transparent; }
.mobile-toggle.open span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  background: var(--bg);
  z-index: 49;
  padding: 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  text-transform: uppercase;
}
.mobile-menu .submenu-header {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 18px 0 8px;
  font-weight: 500;
}
.mobile-menu .submenu a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  text-transform: none;
  letter-spacing: 0;
}

/* ------------- BUTTONS ------------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink);
  color: var(--bg);
  padding: 19px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--red); transform: translateY(-1px); }
.btn-primary .num {
  font-family: var(--f-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn-primary .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 13px;
  transition: all 0.2s;
}
.btn-primary:hover .arrow { background: var(--ink); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--red); border-bottom-color: var(--red); }

/* ------------- HERO (homepage) ------------- */
.hero { position: relative; padding: 80px 0 0; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: end;
}
.hero-left { padding-bottom: 80px; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(46px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero h1 .red { color: var(--red); }
.hero h1 .small {
  display: block;
  font-size: 0.20em;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  margin-top: 28px;
  text-transform: none;
  line-height: 1.55;
  max-width: 580px;
}
.hero-actions {
  display: flex; gap: 16px;
  margin-top: 44px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-right { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s ease-out;
}
.hero-img-wrap:hover img { transform: scale(1.05); }

.hero-img-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.hero-img-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}
.hero-img-rating {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--bg);
  padding: 14px 18px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.25);
}
.hero-img-rating .stars { color: var(--red); font-size: 13px; letter-spacing: 0.06em; }
.hero-img-rating .num {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}
.hero-img-rating .label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* Service-page hero */
.service-hero {
  background: var(--bg);
  padding: 70px 0 0;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 80px;
}
.service-hero-grid h1 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 22px 0 26px;
}
.service-hero-grid h1 .red { color: var(--red); }
.service-hero-grid p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}
.service-hero-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-img .tag {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--bg);
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 10px;
}
.breadcrumb a { color: var(--ink-soft); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--ink-mute); }
.breadcrumb .current { color: var(--ink); }

/* ------------- TRUST STRIP ------------- */
.trust-strip {
  background: var(--ink);
  color: var(--bg);
  margin-top: 80px;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}
.trust-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(247,245,241,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item .num {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.trust-item .num .red { color: var(--red); }
.trust-item .label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,241,0.6);
  line-height: 1.45;
}

/* ------------- BRAND MARQUEE ------------- */
.marquee {
  background: var(--bg);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-label {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 32px; z-index: 3;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}
.marquee-track span {
  font-family: var(--f-disp);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 56px;
}
.marquee-track span::after {
  content: "/";
  color: var(--red);
  font-weight: 300;
  opacity: 0.6;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------- SECTION HEAD ------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section-head h2 .red { color: var(--red); }
.section-head .right p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 480px;
}

/* ------------- SERVICES GRID ------------- */
.services { padding: 110px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-card {
  background: var(--bg);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.25s ease;
  min-height: 280px;
}
.svc-card:hover { background: var(--surface); }
.svc-card .head { display: flex; justify-content: space-between; align-items: flex-start; }
.svc-card .num {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.svc-card .icon-box {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: all 0.25s;
}
.svc-card:hover .icon-box { background: var(--red); border-color: var(--red); color: var(--bg); }
.svc-card .icon-box svg { width: 26px; height: 26px; }
.svc-card h3 {
  font-family: var(--f-disp);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}
.svc-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.svc-card .footer-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.svc-card .footer-row .arrow { color: var(--red); transition: transform 0.25s; }
.svc-card:hover .footer-row .arrow { transform: translateX(4px); }

.svc-card.dark { background: var(--ink); color: var(--bg); }
.svc-card.dark:hover { background: var(--red); }
.svc-card.dark .num { color: rgba(247,245,241,0.5); }
.svc-card.dark .icon-box { border-color: rgba(247,245,241,0.2); color: var(--bg); }
.svc-card.dark:hover .icon-box { background: var(--bg); color: var(--red); border-color: var(--bg); }
.svc-card.dark p { color: rgba(247,245,241,0.7); }
.svc-card.dark .footer-row { color: rgba(247,245,241,0.6); border-top-color: rgba(247,245,241,0.15); }
.svc-card.dark .footer-row .arrow { color: var(--bg); }

/* ------------- ABOUT ------------- */
.about { background: var(--bg-alt); padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-img-stack { position: relative; aspect-ratio: 4/5; }
.about-img-1, .about-img-2 {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-deep);
}
.about-img-1 { inset: 0 30% 30% 0; z-index: 1; }
.about-img-2 { inset: 30% 0 0 30%; z-index: 2; border: 8px solid var(--bg-alt); }
.about-img-1 img, .about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--red);
  color: var(--bg);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 18px 36px -18px rgba(176,41,44,0.6);
}
.about-badge .big { font-family: var(--f-disp); font-size: 32px; font-weight: 800; line-height: 1; }
.about-badge .small {
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

.about-content h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 18px 0 28px;
}
.about-content h2 .red { color: var(--red); }
.about-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 18px;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.about-point { border-top: 2px solid var(--ink); padding-top: 16px; }
.about-point .num {
  font-family: var(--f-disp);
  font-size: 24px; font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.about-point .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.about-point .text { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.4; }

/* ------------- HOW IT WORKS ------------- */
.how { background: var(--ink); color: var(--bg); padding: 110px 0; }
.how .section-head h2 { color: var(--bg); }
.how .section-head h2 .red { color: var(--red); }
.how .section-head .eyebrow { color: rgba(247,245,241,0.6); }
.how .section-head .eyebrow::before { background: var(--red); }
.how .section-head .right p { color: rgba(247,245,241,0.65); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(247,245,241,0.15);
}
.step { position: relative; }
.step .step-num {
  width: 72px; height: 72px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.step:nth-child(2) .step-num { background: var(--red); color: var(--bg); }
.step h4 {
  font-family: var(--f-disp);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  margin-top: 24px;
}
.step p { color: rgba(247,245,241,0.65); font-size: 14.5px; line-height: 1.6; }

/* ------------- SERVICE AREAS ------------- */
.service-areas {
  padding: 110px 0;
  background: var(--bg);
}
.service-areas-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.service-areas-left h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 22px 0 22px;
}
.service-areas-left h2 .red { color: var(--red); }
.service-areas-left p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 28px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  margin-top: 8px;
}
.area-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.areas-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.area-cell {
  background: var(--bg);
  padding: 22px 20px;
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.22s;
  cursor: default;
}
.area-cell:hover { background: var(--ink); color: var(--bg); }
.area-cell:hover .area-cell-num { color: var(--red); }
.area-cell-num {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  transition: color 0.22s;
  min-width: 22px;
}

/* ------------- GALLERY ------------- */
.gallery { padding: 110px 0; background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
  cursor: pointer;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.g-item:hover::after { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 5; grid-row: span 2; }
.g-2 { grid-column: span 4; grid-row: span 1; }
.g-3 { grid-column: span 3; grid-row: span 2; }
.g-4 { grid-column: span 4; grid-row: span 1; }
.g-5 { grid-column: span 4; grid-row: span 1; }
.g-6 { grid-column: span 3; grid-row: span 1; }

/* ------------- TESTIMONIALS ------------- */
.testimonials { padding: 110px 0; background: var(--bg); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.t-card {
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 20px;
  border-radius: 6px;
  transition: all 0.25s;
}
.t-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 22px 40px -28px rgba(0,0,0,0.2);
  background: var(--surface);
}
.t-card .head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 16px;
}
.t-card .stars { color: var(--red); font-size: 13px; letter-spacing: 0.08em; }
.t-card .source {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.t-card blockquote {
  font-family: var(--f-disp);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.t-card .author {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.t-card .author .name { font-weight: 600; font-size: 13.5px; }
.t-card .author .where {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ------------- COMMON ISSUES (service pages) ------------- */
.issues {
  padding: 100px 0;
  background: var(--bg);
}
.issues-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.issues-left h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 22px 0 24px;
}
.issues-left h2 .red { color: var(--red); }
.issues-left p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 360px;
}
.issues-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.issue-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.issue-row .num {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  padding-top: 4px;
}
.issue-row h4 {
  font-family: var(--f-disp);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.issue-row p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 540px;
}

/* ------------- BRANDS GRID (service pages) ------------- */
.brands-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.brand-cell {
  background: var(--bg);
  padding: 28px 22px;
  font-family: var(--f-disp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  transition: all 0.25s;
}
.brand-cell:hover { background: var(--ink); color: var(--bg); }

/* ------------- FINAL CTA ------------- */
.final-cta {
  position: relative;
  background: var(--red);
  color: var(--bg);
  padding: 100px 0 90px;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(0,0,0,0.04) 18px 19px);
  pointer-events: none;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.final-cta h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.final-cta h2 .underline {
  text-decoration: underline;
  text-decoration-color: rgba(247,245,241,0.5);
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}
.final-cta p {
  font-size: 16px;
  color: rgba(247,245,241,0.85);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 380px;
}
.final-cta .btn-primary { background: var(--ink); color: var(--bg); }
.final-cta .btn-primary:hover { background: var(--bg); color: var(--ink); }
.final-cta .btn-primary:hover .arrow { background: var(--red); color: var(--bg); }

/* ------------- FOOTER ------------- */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,245,241,0.15);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-row { display: flex; align-items: center; gap: 14px; }
.footer-logo-row img {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: brightness(1.1) saturate(1.2);
}
.footer-logo-row .text-block .name {
  font-family: var(--f-disp);
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bg);
  display: block;
  line-height: 1;
}
.footer-logo-row .text-block .tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,241,0.6);
  margin-top: 6px;
  display: block;
}
.footer-brand p {
  color: rgba(247,245,241,0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,241,0.5);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li { font-size: 14px; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.footer-contact .phone {
  font-family: var(--f-disp);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: 8px;
  color: var(--bg);
}
.footer-contact .addr {
  font-size: 13.5px;
  color: rgba(247,245,241,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-contact .hours {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(247,245,241,0.2);
  padding: 8px 14px;
  border-radius: 999px;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,245,241,0.45);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--bg); }

/* ------------- ANIMATIONS ------------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ------------- RESPONSIVE ------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { padding-bottom: 0; }
  .hero-right { max-width: 600px; margin: 0 auto; width: 100%; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .service-hero-img { max-width: 540px; aspect-ratio: 4/4; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .wrap { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-stack { max-width: 480px; aspect-ratio: 4/4; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .g-1 { grid-column: span 6; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 3; grid-row: span 1; }
  .g-6 { grid-column: span 6; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .t-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .topbar-left .hide-tab { display: none; }
  .service-areas-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-table { grid-template-columns: repeat(2, 1fr); }
  .issues-grid { grid-template-columns: 1fr; gap: 40px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .topbar-inner { padding: 8px 18px; flex-direction: row-reverse; gap: 8px; }
  .topbar-left { gap: 8px; }
  .topbar-right { gap: 8px; }
  .topbar-divider { display: none; }
  .hide-mobile { display: none; }
  .nav-inner { padding: 14px 18px; gap: 12px; }
  .brand-lockup img { width: 42px; height: 42px; }
  .brand-lockup .brand-tag { display: none; }
  .nav-cta { padding: 11px 16px; font-size: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 24px 18px; }
  .trust-item .num { font-size: 32px; }
  .about-points { grid-template-columns: 1fr; gap: 20px; }
  .about-badge { width: 96px; height: 96px; top: -16px; right: -8px; }
  .about-badge .big { font-size: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .areas-table { grid-template-columns: 1fr; }
  .area-cell { padding: 18px 16px; font-size: 15px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-cell { padding: 22px 16px; font-size: 14px; }
  .issue-row { grid-template-columns: 1fr; gap: 8px; }
}
