/*
 * farrwest.css — FarrWest XStore Child Theme
 * All design tokens, component styles, and layout rules.
 * Note: background-image URLs for mission tiles, hero slides, and the
 * newsletter section are injected dynamically by functions.php so that
 * they resolve correctly regardless of the site domain.
 */

/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
  --fw-charcoal:    #1A1A1A;
  --fw-gold:        #EFC520;
  --fw-green:       #336633;
  --fw-green-lt:    #4A8A4A;
  --fw-white:       #FFFFFF;
  --fw-red:         #AF002B;
  --fw-blue:        #003F87;

  --ink-900:        #0B0D10;
  --ink-850:        #101317;
  --ink-800:        #15171B;
  --ink-750:        #181B21;
  --ink-700:        #1F2228;
  --ink-600:        #2A2F37;
  --ink-500:        #3A4049;
  --ink-400:        #4D545E;
  --hairline:       rgba(255,255,255,0.10);
  --hairline-2:     rgba(255,255,255,0.18);
  --fg:             #FFFFFF;
  --fg-mute:        rgba(255,255,255,0.72);
  --fg-mute-2:      rgba(255,255,255,0.55);

  --font-display:   'Bebas Neue', 'Impact', 'Helvetica Neue', sans-serif;
  --font-body:      'Montserrat', Helvetica, Arial, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, Menlo, monospace;

  --accent:         var(--fw-green);
  --max:            1480px;
  --gutter:         32px;
  --pad-y:          80px;
}

body[data-accent="red"]   { --accent: var(--fw-red); }
body[data-accent="blue"]  { --accent: var(--fw-blue); }
body[data-accent="gold"]  { --accent: var(--fw-gold); }
body[data-accent="green"] { --accent: var(--fw-green); }
body[data-density="dense"] { --pad-y: 56px; --gutter: 24px; }

/* ============================================================
   BASE RESET
   ============================================================ */
.farrwest-site * { box-sizing: border-box; }
.farrwest-site img, .farrwest-site svg, .farrwest-site picture { max-width: 100%; display: block; }
.farrwest-site a { color: inherit; text-decoration: none; }
.farrwest-site button { font-family: inherit; cursor: pointer; }

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

/* ============================================================
   TYPE UTILS
   ============================================================ */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.005em; line-height: 0.95; }
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  font-weight: 700; text-transform: uppercase;
  color: var(--accent);
}
.label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; font-weight: 700; text-transform: uppercase; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  height: clamp(580px, 72vh, 760px);
}
.hero .slides { position: absolute; inset: 0; }
.hero .slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 700ms ease-out, visibility 0s linear 700ms;
  color: white;
}
.hero .slide.is-active {
  opacity: 1; visibility: visible;
  transition: opacity 700ms ease-out, visibility 0s linear 0s;
}
.hero .slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero .slide.is-active .slide-bg { transform: scale(1.0); }
.hero .slide-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11,13,16,0.92) 0%, rgba(11,13,16,0.7) 36%, rgba(11,13,16,0.25) 70%, rgba(11,13,16,0.65) 100%),
    linear-gradient(180deg, rgba(11,13,16,0.5) 0%, transparent 22%, transparent 70%, rgba(11,13,16,0.85) 100%);
}
.hero .slide-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero .copy { max-width: 760px; padding: 40px 0; }
.hero .tag {
  display: inline-block;
  background: var(--accent); color: var(--fw-charcoal);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; font-weight: 700;
  padding: 8px 14px; text-transform: uppercase; margin-bottom: 26px;
}
body[data-accent="red"]   .hero .tag,
body[data-accent="blue"]  .hero .tag,
body[data-accent="green"] .hero .tag { color: white; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.88; font-weight: 400; letter-spacing: 0.005em;
}
.hero h1 .stroke { display: block; color: transparent; -webkit-text-stroke: 2px var(--accent); }
.hero p.lede { margin-top: 26px; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 54ch; }
.hero .actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 56px; height: 56px;
  background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.22);
  color: white; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: all 160ms;
}
.slider-arrow:hover { background: var(--accent); color: var(--fw-charcoal); border-color: var(--accent); }
body[data-accent="red"]   .slider-arrow:hover,
body[data-accent="blue"]  .slider-arrow:hover,
body[data-accent="green"] .slider-arrow:hover { color: white; }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 10px; align-items: center;
}
.slider-dots .dot {
  width: 36px; height: 3px; background: rgba(255,255,255,0.28);
  border: 0; padding: 0; cursor: pointer; transition: background 200ms, width 280ms;
}
.slider-dots .dot:hover { background: rgba(255,255,255,0.55); }
.slider-dots .dot.is-active { background: var(--accent); width: 64px; }
.slider-counter {
  position: absolute; bottom: 32px; right: 32px; z-index: 5;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; font-weight: 700;
  color: rgba(255,255,255,0.78);
}
.slider-counter .cur { color: var(--accent); font-size: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; font-weight: 700;
  text-transform: uppercase; padding: 14px 22px;
  display: inline-flex; align-items: center; gap: 12px;
  border: 1.5px solid transparent; transition: all 140ms;
}
.btn-primary { background: var(--accent); color: var(--fw-charcoal); }
body[data-accent="red"]   .btn-primary,
body[data-accent="blue"]  .btn-primary,
body[data-accent="green"] .btn-primary { color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 0 -2px rgba(0,0,0,0.4); }
.btn-ghost { color: white; border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arr { width: 14px; height: 1.5px; background: currentColor; position: relative; }
.btn .arr::after {
  content: ""; position: absolute; right: -1px; top: -4px;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   SECTION HEADER ROW
   ============================================================ */
section.bay { padding: var(--pad-y) 0; }
.sec-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 36px; flex-wrap: wrap;
}
.sec-row .h h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95; font-weight: 400; letter-spacing: 0.005em; margin-top: 14px;
}
.sec-row .h h2 .accent { color: var(--accent); }
.sec-row .right-actions { display: flex; gap: 14px; }
.sec-row .right-link {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.sec-row .right-link::after { content: "→"; }

/* ============================================================
   SHOP BY PROFESSION / MISSION TILES
   ============================================================ */
.mission-tiles {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px; min-height: 600px;
}
.mt {
  position: relative; overflow: hidden;
  background-color: var(--ink-700);
  background-size: cover; background-position: center;
  color: white; cursor: pointer; transition: transform 240ms; min-height: 280px;
}
.mt:hover { transform: translateY(-3px); }
.mt::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0.15) 0%, rgba(11,13,16,0.45) 50%, rgba(11,13,16,0.92) 100%);
  transition: background 240ms;
}
.mt:hover::before {
  background: linear-gradient(180deg, rgba(11,13,16,0.05) 0%, rgba(11,13,16,0.35) 50%, rgba(11,13,16,0.92) 100%);
}
.mt .meta {
  position: absolute; inset: 0; z-index: 2; padding: 28px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mt .top-row { display: flex; justify-content: space-between; align-items: flex-start; }
.mt .tag {
  background: rgba(0,0,0,0.65); color: white;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; font-weight: 700;
  padding: 5px 10px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2);
}
.mt.haz .tag, .mt.fire .tag { background: var(--fw-red); border-color: transparent; }
.mt.pol .tag, .mt.ems .tag  { background: var(--fw-blue); border-color: transparent; }
.mt.og .tag                  { background: var(--accent); color: var(--fw-charcoal); border-color: transparent; }
body[data-accent="red"]   .mt.og .tag,
body[data-accent="blue"]  .mt.og .tag,
body[data-accent="green"] .mt.og .tag { color: white; }
.mt .bottom { display: flex; flex-direction: column; gap: 6px; }
.mt h3 { font-family: var(--font-display); font-size: 38px; line-height: 0.95; font-weight: 400; letter-spacing: 0.01em; }
.mt.big h3 { font-size: 64px; }
.mt p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.78); max-width: 38ch; }
.mt .shop {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
}
.mt .shop::after { content: "→"; transition: transform 200ms; }
.mt:hover .shop::after { transform: translateX(4px); }
.mt.big { grid-row: 1 / 3; }
/* Background images are injected via functions.php */

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: #000; padding: 32px 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.trust .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.trust .t { display: flex; align-items: center; gap: 14px; padding: 0 24px; border-left: 1px solid var(--hairline); }
.trust .t:first-child { border-left: 0; padding-left: 0; }
.trust .t .ico {
  width: 40px; height: 40px; background: var(--ink-800); border: 1px solid var(--hairline-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust .t .ico svg { width: 20px; height: 20px; stroke: var(--accent); }
.trust .t .ttl { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.02em; color: white; line-height: 1.1; }
.trust .t .sub { margin-top: 2px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; font-weight: 600; color: var(--fg-mute-2); text-transform: uppercase; }

/* ============================================================
   SERVICES SLIDER
   ============================================================ */
.services {
  background: var(--ink-850);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: var(--pad-y) 0;
}
.services .sec-row { margin-bottom: 40px; }
.services .services-counter { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.22em; font-weight: 700; color: var(--fg-mute); }
.services .services-counter .cur { color: var(--accent); font-size: 20px; }
.svc-stage {
  position: relative; background: var(--ink-800); border: 1px solid var(--hairline);
  overflow: hidden; height: 540px;
}
.svc-slides { position: absolute; inset: 0; }
.svc-slide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 500ms ease-out, visibility 0s linear 500ms;
}
.svc-slide.is-active { opacity: 1; visibility: visible; transition: opacity 500ms ease-out, visibility 0s linear 0s; }
.svc-photo {
  position: relative; background-size: cover; background-position: center; min-height: 100%;
}
.svc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(11,13,16,0.45));
}
.svc-copy {
  padding: 48px 56px 64px; display: flex; flex-direction: column;
  align-self: center; max-width: 620px;
}
.svc-copy .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.svc-copy h3 { font-family: var(--font-display); font-size: clamp(34px, 3.8vw, 52px); line-height: 0.98; font-weight: 400; letter-spacing: 0.005em; }
.svc-copy p.lede { margin-top: 18px; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 52ch; }
.svc-copy ul { margin-top: 18px; list-style: none; display: grid; gap: 8px; }
.svc-copy ul li { padding-left: 22px; position: relative; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.82); }
.svc-copy ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 1.5px; background: var(--accent); }
.svc-copy .actions { margin-top: 24px; }
.svc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.22);
  color: white; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: all 160ms; cursor: pointer;
}
.svc-arrow:hover { background: var(--accent); color: var(--fw-charcoal); border-color: var(--accent); }
body[data-accent="red"]   .svc-arrow:hover,
body[data-accent="blue"]  .svc-arrow:hover,
body[data-accent="green"] .svc-arrow:hover { color: white; }
.svc-arrow svg { width: 20px; height: 20px; }
.svc-arrow.prev { left: 20px; }
.svc-arrow.next { right: 20px; }
.svc-dots { position: absolute; bottom: 24px; right: 24px; z-index: 5; display: flex; gap: 8px; }
.svc-dots .svc-dot {
  width: 28px; height: 3px; background: rgba(255,255,255,0.28);
  border: 0; padding: 0; cursor: pointer; transition: background 200ms, width 280ms;
}
.svc-dots .svc-dot:hover { background: rgba(255,255,255,0.55); }
.svc-dots .svc-dot.is-active { background: var(--accent); width: 48px; }

/* ============================================================
   BRAND MARQUEE STRIP
   ============================================================ */
.brand-strip {
  background: var(--ink-800);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 84px 0 32px;
}
.brand-marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  background: var(--ink-850); padding: 18px 0; margin-top: 16px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-marquee .brand-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee-scroll 60s linear infinite; will-change: transform;
}
.brand-marquee.reverse .brand-track { animation-direction: reverse; animation-duration: 75s; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-mc {
  flex-shrink: 0; font-family: var(--font-display); font-size: 32px; line-height: 1;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.78); padding: 8px 4px;
  transition: color 200ms; text-align: center;
}
.brand-mc.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.22em; font-weight: 700; padding: 14px 4px; }
.brand-mc:hover { color: var(--accent); }

/* ============================================================
   SHOP BY CATEGORY CARDS
   ============================================================ */
.shop-cats-band { background: var(--ink-850); }
.shop-cats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
}
.cat-card {
  background: var(--ink-800); padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 12px; min-height: 220px;
  color: white; transition: background 200ms, transform 200ms;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 64px; height: 3px; background: var(--accent);
  transition: width 280ms ease-out;
}
.cat-card:hover { background: var(--ink-700); }
.cat-card:hover::before { width: 100%; }
.cat-card .cat-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; font-weight: 700; color: var(--accent); }
.cat-card h3 { font-family: var(--font-display); font-size: 34px; line-height: 1; font-weight: 400; letter-spacing: 0.005em; margin-top: 4px; }
.cat-card p { font-size: 13.5px; line-height: 1.55; color: var(--fg-mute); margin-top: 4px; flex: 1; }
.cat-card .cat-shop {
  margin-top: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  font-weight: 700; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.cat-card .cat-shop::after { content: "→"; transition: transform 200ms; }
.cat-card:hover .cat-shop::after { transform: translateX(6px); }

/* ============================================================
   NEWSLETTER / QUOTE CTA
   ============================================================ */
.newsletter {
  /* background-image is injected by functions.php */
  background-color: var(--ink-850);
  background-size: cover; background-position: center;
  padding: 100px 0; text-align: center;
  border-top: 1px solid var(--hairline); border-bottom: 4px solid var(--accent);
}
.newsletter h2 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); line-height: 0.95; font-weight: 400; margin-top: 16px; }
.newsletter h2 .accent { color: var(--accent); }
.newsletter p.lede { margin: 22px auto 0; max-width: 60ch; color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.6; }
.newsletter form {
  margin: 36px auto 0; display: flex; max-width: 560px;
  border: 1.5px solid var(--ink-500); background: rgba(0,0,0,0.5); transition: border-color 140ms;
}
.newsletter form:focus-within { border-color: var(--accent); }
.newsletter form input { flex: 1; background: transparent; border: 0; color: white; padding: 16px 20px; font-size: 14px; outline: none; }
.newsletter form input::placeholder { color: var(--fg-mute-2); }
.newsletter form button {
  background: var(--accent); color: var(--fw-charcoal); border: 0; padding: 0 28px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; font-weight: 700; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
body[data-accent="red"]   .newsletter form button,
body[data-accent="blue"]  .newsletter form button,
body[data-accent="green"] .newsletter form button { color: white; }
.newsletter .meta { margin-top: 28px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; font-weight: 600; color: var(--fg-mute-2); text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.ftr { background: #000; color: var(--fg-mute); padding: 80px 0 0; border-top: 1px solid var(--hairline); }
footer.ftr .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; }
footer.ftr .brand-line { display: flex; align-items: center; gap: 14px; }
footer.ftr .brand-line img { width: 36px; height: 42px; object-fit: contain; }
footer.ftr .wm { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.06em; color: white; }
footer.ftr .tag { margin-top: 22px; font-family: var(--font-display); font-size: 32px; line-height: 0.95; color: white; letter-spacing: 0.01em; }
footer.ftr .tag .div { color: var(--accent); display: block; }
footer.ftr p.about { margin-top: 20px; font-size: 12.5px; line-height: 1.65; max-width: 340px; color: var(--fg-mute); }
footer.ftr .contact-row { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; font-weight: 600; }
footer.ftr .contact-row a { color: white; display: inline-flex; align-items: center; gap: 10px; }
footer.ftr .contact-row a:hover { color: var(--accent); }
footer.ftr h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
footer.ftr a.fl { display: block; padding: 7px 0; font-size: 13px; color: rgba(255,255,255,0.78); transition: color 120ms; }
footer.ftr a.fl:hover { color: var(--accent); }
footer.ftr .legal {
  border-top: 1px solid var(--hairline); padding: 22px 0;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase; color: var(--fg-mute-2);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
footer.ftr .pay { display: flex; gap: 8px; align-items: center; }
footer.ftr .pay .chip { padding: 4px 8px; border: 1px solid var(--hairline-2); font-size: 9px; letter-spacing: 0.18em; font-weight: 700; color: var(--fg-mute); }

/* ============================================================
   PAGE-LEVEL OVERRIDES (dark page background)
   ============================================================ */
body.farrwest-site,
.elementor-page .elementor,
.elementor-page .elementor-inner {
  background-color: var(--ink-900);
}
/* Ensure Elementor sections stretch full width */
.elementor-section.elementor-section-full_width > .elementor-container { max-width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .mission-tiles { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mt.big { grid-row: auto; }
  .svc-slide { grid-template-columns: 1fr; }
  .svc-photo { min-height: 220px; }
  .svc-copy { padding: 36px 28px; }
  .svc-stage { height: auto; }
  .shop-cats { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust .t:nth-child(3) { border-left: 0; padding-left: 0; }
  footer.ftr .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero { height: clamp(520px, 90vh, 720px); }
  .hero h1 { font-size: clamp(44px, 11vw, 72px); }
  .slider-arrow { width: 44px; height: 44px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slider-counter { display: none; }
  .mission-tiles { grid-template-columns: 1fr; }
  .shop-cats { grid-template-columns: 1fr; }
  .sec-row .right-actions { width: 100%; }
}
