/* ===========================================================
   Malhotra Modifiers — Design System
   Palette: Indigo (trust/authority) + Marigold (craft/heritage) + Forest (verified/export)
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (data, specs, labels)
=========================================================== */

:root {
  --navy: #16263e;
  --navy-deep: #0e1a2c;
  --saffron: #e2872e;
  --saffron-deep: #c96f1c;
  --cream: #faf6ee;
  --cream-deep: #f2ead9;
  --forest: #2f5940;
  --forest-deep: #22432f;
  --ink: #201d18;
  --ink-soft: #55524a;
  --line: #e2d9c4;
  --gold: #b8912f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
}

.mono { font-family: 'IBM Plex Mono', monospace; }

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

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--saffron); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand-text .est {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--saffron-deep);
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--navy);
  border-color: var(--saffron);
}
.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 9px 18px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--saffron-deep); }
.header-utility {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: 24px;
  margin-right: auto;
}
@media (min-width: 681px) {
  .site-header .bar { max-width: 1320px; gap: 10px; }
  nav.main-nav { gap: 18px; flex-shrink: 0; }
  nav.main-nav a { white-space: nowrap; }
  #mm-currency-picker, #mm-language-picker { max-width: 128px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 3px solid var(--saffron);
}
.trust-strip .track {
  display: flex;
  gap: 48px;
  padding: 9px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow-x: auto;
  max-width: 1180px;
  margin: 0 auto;
}
.trust-strip .track span { opacity: 0.92; }
.trust-strip .track b { color: var(--saffron); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, background .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--saffron); color: var(--navy-deep); }
.btn-primary:hover { background: var(--saffron-deep); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-ghost-light { border-color: rgba(250,246,238,0.4); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(250,246,238,0.12); }

/* ---------- Section scaffolding ---------- */
section { padding: 76px 0; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-top: 8px; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.02rem; line-height: 1.6; }
.divider {
  border: none;
  border-top: 1px solid var(--line);
}
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h2, .bg-navy h3 { color: var(--cream); }
.bg-navy .eyebrow { color: #f0b872; }
.bg-cream-deep { background: var(--cream-deep); }
.bg-forest { background: var(--forest); color: #f2f7f2; }
.bg-forest h2, .bg-forest h3 { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 85% -10%, rgba(226,135,46,0.16), transparent 55%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-top: 14px; }
.hero .lede { font-size: 1.12rem; color: var(--ink-soft); margin: 20px 0 28px; max-width: 46ch; line-height: 1.6; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--forest); flex-shrink: 0; }

.hero-visual {
  position: relative;
}
.hero-visual .photo-main {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(22,38,62,0.35);
  border: 6px solid #fff;
  transform: rotate(1.2deg);
}
.hero-visual .photo-sub {
  position: absolute;
  width: 42%;
  bottom: -30px;
  left: -30px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(22,38,62,0.4);
  border: 6px solid #fff;
  transform: rotate(-3deg);
}
.hero-visual .pin {
  position: absolute;
  top: -18px;
  right: -14px;
  background: var(--forest);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 9px 13px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

/* ---------- Route motif (signature element) ---------- */
.route {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 46px 0 10px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.route .end {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.route .end .city { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--navy); font-size: 1rem; }
.route .end .tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.66rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.route .line {
  flex: 1;
  height: 1px;
  margin: 0 16px;
  background-image: linear-gradient(to right, var(--saffron) 55%, transparent 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  position: relative;
}
.route .line::after {
  content: "✈";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
  font-size: 0.9rem;
  color: var(--saffron-deep);
  background: #fff;
  padding: 0 6px;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 1100px) {
  .g3 { grid-template-columns: repeat(4, 1fr); }
  .g4 { grid-template-columns: repeat(5, 1fr); }
}
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: 0 18px 34px -22px rgba(22,38,62,0.35); transform: translateY(-2px); }
.card .thumb {
  aspect-ratio: 4/3;
  max-height: 190px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.card .thumb.cover img { object-fit: cover; padding: 0; }
.card .body { padding: 18px 20px 22px; }
.card .cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}
.card h3 { font-size: 1.12rem; margin-top: 6px; }
.card p.desc { color: var(--ink-soft); font-size: 0.9rem; margin: 8px 0 14px; line-height: 1.55; }
.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.card .price { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.card .buy-links { display: flex; flex-wrap: wrap; gap: 6px; }
.card .buy-links a {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--cream-deep);
  color: var(--navy);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.card .buy-links a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--navy-deep); }
.card .meta { flex-wrap: wrap; gap: 10px; }
.card .buy-links.full-width { width: 100%; justify-content: flex-start; }

/* compatibility chips */
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ---------- Cert cards ---------- */
.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.cert-card .doc {
  background: var(--cream-deep);
  padding: 22px;
  display: flex;
  justify-content: center;
  position: relative;
}
.cert-card .doc img {
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px -18px rgba(22,38,62,0.3);
  max-height: 480px;
  width: auto;
  filter: blur(5px) saturate(1.05);
  transition: filter .25s ease;
}
.cert-card .doc:hover img {
  filter: blur(2.5px) saturate(1.05);
}
.cert-card .doc .protect-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(22,38,62,0.92);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,0.4);
  pointer-events: none;
  white-space: nowrap;
}
.cert-card .info { padding: 22px 26px 28px; }
.cert-card .info .num { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; color: var(--forest); }
.cert-card .info h3 { font-size: 1.25rem; margin: 6px 0 10px; }
.cert-card .info p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }
.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Restored Tractor Cards (price on request) ---------- */
.restore-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.restore-card .restore-photo {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, var(--cream-deep), var(--cream-deep) 10px, #f7f1e2 10px, #f7f1e2 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
}
.restore-card .restore-photo img { width: 100%; height: 100%; object-fit: cover; }
.restore-card .restore-photo .cam { font-size: 1.8rem; opacity: 0.5; }
.restore-card .restore-photo .ph-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.7; }
.restore-card .body { padding: 22px 24px 26px; }
.restore-card .restored-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.restore-card h3 { font-size: 1.35rem; }
.restore-card .restore-desc { color: var(--ink-soft); font-size: 0.88rem; margin: 8px 0 16px; line-height: 1.55; }
.restore-card .price-row {
  display: block;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.restore-card .poa {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: var(--saffron-deep);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.restore-card .restore-photo.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--line);
}
.restore-card .restore-photo.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.restore-card .restore-photo.gallery .g-main { grid-row: 1 / 3; }

/* ---------- Statement Hero (Tesla-style) ---------- */
.statement-hero {
  background: linear-gradient(160deg, rgba(11,26,46,0.88) 0%, rgba(15,32,53,0.82) 55%, rgba(20,40,64,0.90) 100%), url('restore-imt533.jpg');
  background-size: cover;
  background-position: center 35%;
  color: #fff;
  padding: 96px 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.statement-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(226,135,46,0.18), transparent 60%);
  pointer-events: none;
}
.statement-hero .eyebrow { color: #f0b872; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.statement-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 14px auto 0;
  max-width: 16ch;
  text-shadow: 0 3px 14px rgba(0,0,0,0.45);
}
.statement-hero .lede {
  color: #e4e9ee;
  max-width: 52ch;
  margin: 22px auto 34px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.pill-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s, opacity .15s;
}
.pill:hover { transform: translateY(-1px); }
.pill-solid { background: var(--saffron); color: var(--navy-deep); }
.pill-solid:hover { background: #fff; }
.pill-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.pill-ghost:hover { background: rgba(255,255,255,0.16); }

/* ---------- Offer Carousel (Ford-style) ---------- */
.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--saffron) var(--cream-deep);
}
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-track { background: var(--cream-deep); border-radius: 8px; }
.carousel::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 8px; }
.carousel { align-items: flex-start; }
.offer-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(400px, 84vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-card .offer-photo {
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.offer-card .offer-photo img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.offer-card .offer-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.offer-card .offer-tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.offer-card h3 { font-size: 1.5rem; margin-top: 6px; }
.offer-card .offer-stack { margin: 16px 0 20px; }
.offer-card .offer-stack .row { font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.5; }
.offer-card .offer-stack .row small { font-weight: 500; color: var(--ink-soft); font-size: 0.82rem; }
.offer-card .offer-plus { color: var(--saffron-deep); font-weight: 700; margin: 2px 0; }
.offer-card .pill { margin-top: auto; align-self: flex-start; padding: 13px 26px; font-size: 0.9rem; }

/* ---------- Timeline / Milestones ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tl-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.tl-item .tl-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}
.tl-item .tl-photo img { width: 100%; height: 100%; object-fit: cover; }
.tl-item .tl-body { padding: 16px 18px 20px; }
.tl-item .tl-year {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--saffron-deep);
}
.tl-item h4 { font-size: 1rem; margin: 6px 0 6px; }
.tl-item p { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.5; margin: 0; }

.tl-item .tl-icon {
  aspect-ratio: 4/3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  font-size: 2.4rem;
  color: var(--saffron);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.step { padding: 26px 22px; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step .num { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; color: var(--saffron-deep); font-weight: 600; }
.step h4 { font-size: 1rem; margin: 10px 0 6px; }
.step p { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.55; margin: 0; }

/* ---------- Marketplace tiles ---------- */
.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.market-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.market-tile:hover { border-color: var(--saffron); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(11,26,46,0.10); }
.market-tile .tile-icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; line-height: 1; }
.market-tile .tile-icon svg { width: 28px; height: 28px; display: block; }
.market-tile .sub { display: block; font-family: 'IBM Plex Mono', monospace; font-weight: 400; font-size: 0.66rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Brand icons (Follow & Connect, footer) ---------- */
.icon-wrap { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; }
.icon-wrap svg { width: 30px; height: 30px; display: block; }
footer .icon-wrap { width: 22px; height: 22px; margin-right: 8px; }
footer .icon-wrap svg { width: 18px; height: 18px; }
footer a.social-link { display: flex; align-items: center; }
.wa-float svg { width: 28px; height: 28px; display: block; }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 4px;
  padding: 11px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--saffron); outline-offset: 1px; border-color: var(--saffron); }
textarea { resize: vertical; min-height: 110px; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #b9c2ce;
  padding: 56px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr 1.1fr; gap: 32px; }
footer h4 { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; margin-bottom: 16px; }
footer a { color: #b9c2ce; display: block; font-size: 0.88rem; margin-bottom: 10px; }
footer a:hover { color: var(--saffron); }
footer .legal { font-size: 0.78rem; color: #7c8797; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #7c8797;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,0.4);
  z-index: 60;
  font-size: 1.5rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 54px 0 46px;
  border-bottom: 3px solid var(--saffron);
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin-top: 10px; font-weight: 700; }
.page-hero p { color: #c3ccd6; max-width: 60ch; margin-top: 14px; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .g3 { grid-template-columns: repeat(2,1fr); }
  .market-grid { grid-template-columns: repeat(3,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 680px) {
  html, body { overflow-x: hidden; }
  .site-header { overflow-x: hidden; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .bar { flex-wrap: wrap; row-gap: 12px; padding: 14px 18px 0; }
  .brand { flex: 1 1 auto; }
  .header-utility { margin-left: 0; margin-right: 0; order: 2; width: 100%; justify-content: flex-start; gap: 8px; }
  #mm-currency-wrap, #mm-language-wrap { margin-left: 0; flex: 1 1 0; min-width: 0; }
  #mm-currency-wrap span, #mm-language-wrap span { flex: 0 0 auto; }
  #mm-currency-picker, #mm-language-picker { flex: 1 1 auto; min-width: 0; max-width: none; }
  nav.main-nav {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding: 2px 0 12px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
    scrollbar-width: none;
  }
  nav.main-nav::-webkit-scrollbar { display: none; }
  nav.main-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--line);
  }
  nav.main-nav a:hover, nav.main-nav a.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  nav.main-nav a.nav-cta { background: var(--saffron-deep); color: #fff !important; border-color: var(--saffron-deep); }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero-visual .photo-sub { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Story + vertical timeline ---------- */
.story-lede {
  max-width: 66ch;
  margin: 0 auto 34px;
}
.story-lede p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
.story-cta { text-align: center; margin-top: 34px; }

/* credentials + connect blocks inside the story section */
.story-credentials, .story-connect {
  max-width: 860px;
  margin: 40px auto 0;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.sc-title {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 16px;
}
.sc-sub {
  max-width: 52ch;
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}
.sc-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.sc-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  transition: box-shadow .15s, transform .15s;
}
.sc-badge:hover { box-shadow: 0 6px 18px rgba(11,26,46,0.12); transform: translateY(-2px); }
.sc-badge svg { width: 30px; height: 30px; flex: 0 0 auto; }
.sc-badge span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.35; }
.sc-badge strong { display: block; color: var(--navy); font-size: 0.86rem; margin-bottom: 2px; }

.btn-yt { background: #FF0000; color: #fff; display: inline-flex; align-items: center; gap: 9px; }
.btn-yt:hover { background: #d90000; }

.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 18px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, box-shadow .15s;
}
.social-row a:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(11,26,46,0.16); }
.social-row svg { width: 24px; height: 24px; }

.rate-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 3px;
}
.rate-inline:hover { color: var(--saffron-deep); }

.g-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.g-review-link:hover { color: var(--navy); }
.g-product-note { text-align: center; padding: 4px 0 0; }
.g-product-note .g-review-link { margin-top: 0; font-size: 0.86rem; }

@media (max-width: 680px) {
  .sc-badges { grid-template-columns: 1fr; }
  .social-row { gap: 10px; }
  .social-row a { width: 38px; height: 38px; }
  .social-row svg { width: 21px; height: 21px; }
}
.vt-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 8px 12px 8px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 380px;
  transition: box-shadow .15s, transform .15s;
}
.vt-doc:hover { box-shadow: 0 6px 18px rgba(11,26,46,0.12); transform: translateY(-2px); }
.vt-doc img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 5px;
  flex: 0 0 auto;
  background: var(--cream-deep);
}
.vt-doc span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.story-prose {
  max-width: 68ch;
  margin: 0 auto;
}
.story-prose p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 16px;
}
.story-prose p:first-child {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}
.story-prose strong { color: var(--navy); }

.vtimeline {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 0 8px;
  position: relative;
}
.vtimeline::before {
  content: "";
  position: absolute;
  left: 62px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron), rgba(212,148,58,0.25));
}
.vtimeline li {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 0 0 26px 0;
}
.vtimeline li:last-child { padding-bottom: 0; }
.vtimeline .vt-year {
  flex: 0 0 auto;
  width: 108px;
  text-align: right;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--saffron-deep);
  padding-top: 3px;
  position: relative;
}
.vtimeline .vt-year::after {
  content: "";
  position: absolute;
  right: -47px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--saffron);
  border: 2px solid var(--cream-deep);
}
.vtimeline .vt-body { padding-left: 22px; }
.vtimeline h4 { font-size: 1.04rem; margin: 0 0 5px; color: var(--navy); }
.vtimeline p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; margin: 0; }

@media (max-width: 680px) {
  .vtimeline { padding-left: 0; }
  .vtimeline::before { left: 5px; }
  .vtimeline li { flex-direction: column; gap: 4px; padding-left: 26px; }
  .vtimeline .vt-year { width: auto; text-align: left; }
  .vtimeline .vt-year::after { right: auto; left: -26px; top: 5px; }
  .vtimeline .vt-body { padding-left: 0; }
  .story-prose p { font-size: 0.97rem; }
  .story-prose p:first-child { font-size: 1.08rem; }
}

/* ---------- Restoration steps ---------- */
.resto-steps {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 14px;
}
.resto-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--saffron);
  border-radius: 8px;
  padding: 18px 20px;
}
.resto-steps .rs-num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.resto-steps h4 { font-size: 1.02rem; margin: 4px 0 4px; }
.resto-steps p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.resto-steps .rs-watch {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 2px;
}
.resto-steps .rs-watch:hover { color: var(--saffron-deep); }

/* ---------- Restoration Photo Slider ---------- */
.photo-slider {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  max-height: 460px;
  overflow: hidden;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(11,26,46,0.16);
}
.photo-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.photo-slider .slide.active { opacity: 1; }
.photo-slider .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-slider .slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 28px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
  color: #fff;
}
.photo-slider .slide-caption h3 { font-size: 1.1rem; margin: 0 0 4px; color: #fff; }
.photo-slider .slide-caption p { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.85); }
/* thumbnail strip under the slider */
.slider-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 14px auto 0;
  padding: 0 12px;
}
.slider-thumbs .slider-thumb {
  border: 2px solid transparent;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 118px;
  box-shadow: 0 2px 8px rgba(11,26,46,0.10);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.slider-thumbs .slider-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}
.slider-thumbs .slider-thumb span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 5px 6px 6px;
  line-height: 1.25;
  text-align: center;
}
.slider-thumbs .slider-thumb:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(11,26,46,0.16); }
.slider-thumbs .slider-thumb.active { border-color: var(--saffron); }
.slider-thumbs .slider-thumb.active span { color: var(--navy); }
@media (max-width: 680px) {
  .slider-thumbs { gap: 8px; }
  .slider-thumbs .slider-thumb { width: calc(33.333% - 6px); }
  .slider-thumbs .slider-thumb img { height: 54px; }
  .slider-thumbs .slider-thumb span { font-size: 0.6rem; }
}

.photo-slider .slider-dots {
  position: absolute;
  right: 22px; bottom: 22px;
  display: flex; gap: 8px;
  z-index: 2;
}
.photo-slider .slider-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s ease;
}
.photo-slider .slider-dots button.active { background: #fff; }

/* ---------- Embedded YouTube Video ---------- */
.video-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 24px auto 0;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed-wrap { background: #0b1a2e; cursor: pointer; }
.video-embed-wrap .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-embed-wrap .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-embed-wrap .video-play::after {
  content: "";
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,0,0,0.92) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 7.5l9 4.5-9 4.5z'/></svg>") center/40px 40px no-repeat;
  box-shadow: 0 6px 22px rgba(0,0,0,0.45);
  transition: transform .15s;
}
.video-embed-wrap:hover .video-play::after { transform: scale(1.08); }
.video-embed-wrap .video-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(11,26,46,0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 4px;
}
.video-embed-wrap.playing .video-poster,
.video-embed-wrap.playing .video-play,
.video-embed-wrap.playing .video-badge { display: none; }

/* ---------- Shorts Grid ---------- */
.shorts-row {
  display: flex;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 24px 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.shorts-row > * { flex: 0 0 172px; scroll-snap-align: start; }
.shorts-row::-webkit-scrollbar { height: 8px; }
.shorts-row::-webkit-scrollbar-track { background: var(--cream-deep); border-radius: 8px; }
.shorts-row::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 8px; }

/* swipe hint under sliding rows */
.swipe-hint {
  max-width: 1180px;
  margin: 0 auto 4px;
  padding: 0 24px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
}
.short-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(11,26,46,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.short-embed-wrap:hover { box-shadow: 0 8px 20px rgba(11,26,46,0.14); transform: translateY(-3px); }
.short-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Shorts click-to-play thumbnails ---------- */
.short-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #0b1a2e;
}
.short-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.short-embed-wrap:hover .short-thumb img { transform: scale(1.05); }
.short-thumb .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.short-thumb .play-btn::after {
  content: "▶";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.short-thumb .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 10px 10px;
  background: linear-gradient(to top, rgba(11,26,46,0.9) 0%, rgba(11,26,46,0) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  pointer-events: none;
}

/* ---------- Lightbox ---------- */
.mm-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,14,26,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.mm-lightbox.open { display: flex; flex-direction: column; }
.mm-lb-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px 10px;
  min-height: 0;
}
.mm-lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.mm-lb-caption {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 20px;
}
.mm-lb-counter {
  color: #9fb0c2;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  padding: 6px 0 18px;
}
.mm-lb-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.mm-lb-prev, .mm-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.mm-lb-prev { left: 10px; }
.mm-lb-next { right: 10px; }
@media (max-width: 560px) {
  .mm-lb-prev, .mm-lb-next { width: 38px; height: 38px; font-size: 1.4rem; }
}

.mm-enquire {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
  font-weight: 600;
}
/* restoration enquiry buttons */
.restore-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.restore-actions a {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
  transition: transform .12s, box-shadow .12s;
}
.restore-actions a:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(11,26,46,0.14); }
.restore-actions .ra-wa { background: #25D366; border-color: #25D366; color: #fff; }
.restore-actions .ra-yt { background: #FF0000; border-color: #FF0000; color: #fff; }
@media (max-width: 680px) {
  .restore-actions a { flex: 1 1 100%; text-align: center; }
}

.price-quote {
  font-size: 0.86rem !important;
  font-weight: 600;
  color: var(--ink-soft) !important;
  display: block;
  margin-bottom: 6px;
}
.price-note-bar {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 16px;
  margin: 0 auto 22px;
  max-width: 900px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Currency picker ---------- */
#mm-currency-wrap { display: inline-flex; align-items: center; margin-left: 12px; }
#mm-language-wrap { display: inline-flex; align-items: center; margin-left: 12px; }
#mm-currency-picker, #mm-language-picker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  max-width: 150px;
}

/* ---------- Google Translate widget ---------- */
#google_translate_element { display: inline-block; margin-left: 10px; }
.goog-te-gadget { font-family: 'Inter', sans-serif !important; font-size: 0 !important; }
.goog-te-gadget .goog-te-combo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}
body > .skiptranslate { display: none !important; }
body { top: 0 !important; }

/* ---------- Featured Restorations Table ---------- */
.featured-restorations {
  background: var(--cream);
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--line);
}
.featured-restorations .frs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 0 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.featured-restorations .frs-head .frs-title-block .eyebrow { display: block; margin-bottom: 8px; }
.featured-restorations .frs-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--navy);
  margin: 0;
}
.featured-restorations .frs-head a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.featured-restorations .frs-head a:hover { opacity: 0.65; }
.frs-row {
  display: flex;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 24px 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.frs-row > * { flex: 0 0 160px; scroll-snap-align: start; }
.frs-row::-webkit-scrollbar { height: 8px; }
.frs-row::-webkit-scrollbar-track { background: var(--cream-deep); border-radius: 8px; }
.frs-row::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 8px; }
.frs-item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(11,26,46,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.frs-item:hover { box-shadow: 0 8px 20px rgba(11,26,46,0.14); transform: translateY(-3px); }
.frs-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.frs-item:hover img { transform: scale(1.07); }
.frs-item .frs-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 9px 9px;
  background: linear-gradient(to top, rgba(11,26,46,0.82), rgba(11,26,46,0));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
