/* =========================================================
   FRP King — frpking.ca
   Original design system
   Palette: ink base, warm paper, brass accent
   Type: Fraunces (display serif) + Manrope (sans)
   ========================================================= */

:root {
  /* Color — matched to the FRP King chrome + royal-blue crest */
  --ink: #0f1622;
  --ink-2: #16202e;
  --ink-3: #28344a;
  --paper: #f2f4f8;
  --paper-2: #fafbfd;
  --line: #e1e5ec;
  --line-dark: rgba(255, 255, 255, 0.09);

  /* accent variables keep the --brass name for compatibility but now carry brand blue */
  --brass: #2a5ea8;
  --brass-2: #4a82cf;
  --brass-soft: rgba(42, 94, 168, 0.12);
  --silver: #c5cbd3;
  --silver-2: #e6e9ee;

  --text: #18202b;
  --text-muted: #5a6573;
  --text-invert: #e7ecf3;
  --text-invert-muted: #97a1b2;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale */
  --gap: clamp(1rem, 2.4vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;
  --shadow-soft: 0 24px 60px -28px rgba(17, 20, 26, 0.45);
  --shadow-card: 0 18px 40px -24px rgba(17, 20, 26, 0.3);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------- Reset ----------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.015em;
  color: var(--ink);
}

::selection { background: var(--brass); color: #fff; }

/* ----------------------- Layout ----------------------- */
.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}
.container--wide { --container: 1320px; }

.section { padding-block: var(--section-y); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 {
  font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
  margin-top: 0.9rem;
}
.section-head p {
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 52ch;
}

.lead { font-size: 1.18rem; color: var(--text-muted); }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--text-invert);
  box-shadow: 0 14px 30px -14px rgba(17, 20, 26, 0.6);
}
.btn--primary:hover { background: #000; box-shadow: 0 18px 36px -14px rgba(17, 20, 26, 0.7); }

.btn--brass {
  background: linear-gradient(135deg, var(--brass-2), var(--brass));
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(42, 94, 168, 0.85);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(17,20,26,0.03); }

.btn--ghost-invert {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text-invert);
}
.btn--ghost-invert:hover { border-color: var(--brass); color: var(--brass-2); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}
.link-arrow svg { width: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow:hover { color: var(--brass); }

/* ----------------------- Header ----------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246, 243, 236, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .crown { width: 34px; height: 34px; flex: none; }
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 1px;
}
.brand .brand-text { line-height: 1; }
.brand-logo { height: 50px; width: auto; }
.footer-logo { height: 78px; width: auto; }
@media (max-width: 760px) { .brand-logo { height: 44px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  position: relative;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 0.85rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
}
.nav-phone svg { width: 17px; color: var(--brass); }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 14vh, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(42,94,168,0.16), transparent 55%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  overflow: hidden;
}
.hero::before {
  /* fine panel ridge texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(17,20,26,0.028) 0,
    rgba(17,20,26,0.028) 1px,
    transparent 1px,
    transparent 64px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-card);
}
.hero-tag b { color: var(--ink); font-weight: 700; }
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #46a05a; box-shadow: 0 0 0 4px rgba(70,160,90,0.18); }

.hero h1 {
  font-size: clamp(2.6rem, 1.4rem + 5.2vw, 5.1rem);
  margin: 1.4rem 0 1.3rem;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}
.hero p.lead { max-width: 46ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-meta {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta .stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
}
.hero-meta .stat .num span { color: var(--brass); }
.hero-meta .stat .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
  font-weight: 600;
}

/* Hero panel visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero-visual .ridges {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    100deg,
    rgba(255,255,255,0.05) 0 1px,
    transparent 1px 22px
  );
}
.hero-visual .glow {
  position: absolute;
  width: 360px; height: 360px;
  right: -120px; top: -90px;
  background: radial-gradient(circle, rgba(74,130,207,0.55), transparent 65%);
  filter: blur(6px);
}
.hero-visual .crown-xl {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64%;
  height: auto;
  opacity: 0.97;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}
.hero-visual .vcard {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--text-invert);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero-visual .vcard .t { font-family: var(--font-display); font-size: 1.15rem; }
.hero-visual .vcard .s { font-size: 0.8rem; color: var(--text-invert-muted); }
.hero-visual .vcard .price { font-family: var(--font-display); font-size: 1.6rem; color: var(--brass-2); }
.hero-visual .vcard .price small { font-size: 0.75rem; color: var(--text-invert-muted); display:block; font-family: var(--font-sans);}

/* ----------------------- Marquee / industries ----------------------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
  padding-block: 1.4rem;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-track span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ----------------------- Feature / about split ----------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 5 / 4.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #2a3140, var(--ink));
  box-shadow: var(--shadow-soft);
}
.split-media .grid-tex {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px);
}
.split-media .badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--brass);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
}
.split-media .floatcard {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(246,243,236,0.95);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  display: grid;
  gap: 0.5rem;
}
.split-media .floatcard .row { display: flex; align-items: center; gap: 0.7rem; font-size: 0.92rem; font-weight: 600; }
.split-media .floatcard .row svg { width: 18px; color: var(--brass); flex:none; }

.checklist { display: grid; gap: 1rem; margin-top: 1.8rem; }
.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.checklist li .ic {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--brass-soft);
  color: var(--brass);
  display: grid;
  place-items: center;
}
.checklist li .ic svg { width: 15px; }
.checklist li b { color: var(--ink); }
.checklist li span { color: var(--text-muted); }

/* ----------------------- Cards / products ----------------------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--brass); }

.card-swatch {
  height: 188px;
  position: relative;
  overflow: hidden;
}
.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-img { transform: scale(1.05); }
.card-swatch .tag { z-index: 2; }
/* photo fill for decorative media panels */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,34,0.15), rgba(15,22,34,0.5)); }
.card-swatch.smooth { background: linear-gradient(135deg, #ffffff, #ece9e2); }
.card-swatch.pebbled {
  background:
    radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1.4px) 0 0 / 7px 7px,
    linear-gradient(135deg, #fbfaf7, #e6e2d9);
}
.card-swatch.embossed,
.card-swatch.textured {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 6px),
    linear-gradient(135deg, #f1efe9, #ddd8cd);
}
.card-swatch.dark {
  background:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px) 0 0 / 7px 7px,
    linear-gradient(135deg, #3a4150, #20242e);
}
.card-swatch.marble {
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(120,134,158,0.18), transparent 50%),
    radial-gradient(90% 70% at 85% 90%, rgba(150,160,140,0.16), transparent 55%),
    linear-gradient(135deg, #fbfaf7, #eceae4);
  position: relative;
}
.card-swatch.marble::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(58deg, transparent 47%, rgba(90,100,120,0.22) 48%, transparent 49.4%),
    linear-gradient(58deg, transparent 62%, rgba(90,100,120,0.14) 63%, transparent 64.2%),
    linear-gradient(72deg, transparent 30%, rgba(110,120,100,0.12) 31%, transparent 32%);
}
.card-swatch.tile {
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.07) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.07) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, #f3f1ea, #e2ddd2);
}
.card-swatch.metal {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 3px),
    linear-gradient(120deg, #c7ccd2, #8d949d 40%, #b8bdc4 60%, #767c85);
}
.card-swatch.panel {
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 46px),
    linear-gradient(135deg, #f6f4ee, #e6e1d6);
}

/* ----------------------- Deal / offer banner ----------------------- */
.deal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 3.5vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--ink-2), var(--ink));
  color: var(--text-invert);
  overflow: hidden;
  border: 1px solid rgba(194,154,74,0.35);
  box-shadow: var(--shadow-soft);
}
.deal::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(var(--brass-2), var(--brass));
}
.deal::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(194,154,74,0.07) 0 1px, transparent 1px 48px);
  pointer-events: none;
}
.deal-copy { position: relative; max-width: 60ch; }
.deal-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #16202e;
  background: linear-gradient(135deg, var(--silver-2), var(--silver));
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.deal-copy h3 { color: #fff; font-size: clamp(1.4rem, 1rem + 1.8vw, 2.1rem); }
.deal-copy p { color: var(--text-invert-muted); margin-top: 0.5rem; }
.deal .btn { position: relative; flex: none; }

.price-rate {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
}
.price-rate .amt { font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); color: var(--brass-2); line-height: 1; }
.price-rate .unit { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; color: var(--text-invert-muted); }
.card-swatch .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(17,20,26,0.85);
  color: var(--text-invert);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card-body h3 { font-size: 1.3rem; }
.card-body p { color: var(--text-muted); font-size: 0.96rem; }
.card-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.3rem; }
.card-specs li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}
.card-foot {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.card-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.card-price small { display: block; font-family: var(--font-sans); font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.card-price s { color: var(--text-muted); font-size: 1rem; font-family: var(--font-sans); margin-left: 0.4rem; }

/* ----------------------- Stats band (dark) ----------------------- */
.band-dark {
  background: linear-gradient(150deg, var(--ink-2), var(--ink));
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 70px);
}
.band-dark .container { position: relative; }
.band-dark h2 { color: #fff; }
.band-dark .section-head p { color: var(--text-invert-muted); }
.band-dark .eyebrow { color: var(--brass-2); }

/* ----------------------- Process steps ----------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover { background: rgba(255,255,255,0.06); border-color: rgba(194,154,74,0.5); }
.step .n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brass-2);
  line-height: 1;
}
.step h3 { color: #fff; font-size: 1.22rem; margin: 0.9rem 0 0.5rem; }
.step p { color: var(--text-invert-muted); font-size: 0.94rem; }

/* ----------------------- Benefits grid ----------------------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.benefit {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.benefit .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--brass-2);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.benefit .ic svg { width: 22px; }
.benefit h3 { font-size: 1.16rem; margin-bottom: 0.4rem; }
.benefit p { color: var(--text-muted); font-size: 0.94rem; }

/* ----------------------- Service area ----------------------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.area-list li {
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

/* ----------------------- CTA band ----------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--brass-2), var(--brass) 58%, #1b3f73);
  color: #eaf1fb;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 46px);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3rem); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 0.7rem; font-weight: 500; max-width: 42ch; }
.cta-band .btn--primary { background: var(--ink); color: #fff; }
.cta-band .btn--primary:hover { background: #000; }

/* ----------------------- Forms / contact ----------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.4rem; }
.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.info-item .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brass-soft);
  color: var(--brass);
  display: grid; place-items: center;
}
.info-item .ic svg { width: 22px; }
.info-item .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.info-item a, .info-item p { font-size: 1.12rem; font-weight: 600; color: var(--ink); margin-top: 0.2rem; }
.info-item .sub { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.field label span { color: var(--brass); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brass-soft);
}
.form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.84rem; color: var(--text-muted); text-align: center; margin-top: 0.9rem; }
.form-success {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(70,160,90,0.12);
  border: 1px solid rgba(70,160,90,0.35);
  color: #2c6b3d;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.form-success.show { display: block; }
.form-success.error {
  background: rgba(170,55,45,0.1);
  border-color: rgba(170,55,45,0.3);
  color: #8b2f28;
}
.botcheck { display: none; }

/* ----------------------- FAQ ----------------------- */
.faq { display: grid; gap: 0.9rem; max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.16rem;
  color: var(--ink);
}
.faq-q .pm { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--brass);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform 0.3s var(--ease); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--text-muted); }

/* ----------------------- Page hero (subpages) ----------------------- */
.page-hero {
  padding-top: clamp(8.5rem, 14vh, 11rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(110% 130% at 90% -20%, rgba(42,94,168,0.14), transparent 55%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4rem); margin: 0.8rem 0 1rem; }
.page-hero p { color: var(--text-muted); max-width: 56ch; font-size: 1.1rem; }
.crumbs { font-size: 0.86rem; color: var(--text-muted); font-weight: 600; }
.crumbs a:hover { color: var(--brass); }

/* ----------------------- Pricing table ----------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
  background: var(--ink);
  color: var(--text-invert);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--paper-2); }
.price-table td.price { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.price-table .muted { color: var(--text-muted); font-size: 0.9rem; }

/* ----------------------- Footer ----------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-invert-muted);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--brass-2); }
.footer-contact a { display: flex; gap: 0.6rem; align-items: center; color: #fff; font-weight: 600; }
.footer-contact a svg { width: 16px; color: var(--brass-2); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.8rem;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--brass-2); }

/* ----------------------- Reveal animation ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------- Responsive ----------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; order: -1; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }

  .site-nav-mobile {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
    padding: 1.2rem 0 1.8rem;
  }
  body.nav-open .site-nav-mobile { transform: translateY(0); }
  .site-nav-mobile ul { display: grid; gap: 0.3rem; }
  .site-nav-mobile a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .site-nav-mobile .mobile-cta { margin-top: 1.2rem; display: grid; gap: 0.7rem; }
  .site-nav-mobile .btn { justify-content: center; }
}
@media (min-width: 761px) { .site-nav-mobile { display: none; } }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-meta { flex-wrap: wrap; gap: 1.4rem 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Added sections — gallery, comparison, testimonials, stats
   ========================================================= */

/* ----------------------- Gallery ----------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 195px;
  gap: 1rem;
}
.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.2rem 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  background: linear-gradient(transparent, rgba(15,22,34,0.82));
}
.gallery figcaption span { display: block; font-size: 0.76rem; font-weight: 600; color: var(--brass-2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 1; }
}

/* ----------------------- Comparison table ----------------------- */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 640px;
}
.compare th, .compare td { padding: 1.05rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--ink); color: var(--text-invert); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.compare thead th.hl { background: linear-gradient(135deg, var(--brass-2), var(--brass)); color: #fff; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child { font-weight: 600; color: var(--ink); }
.compare .col-hl { background: var(--brass-soft); font-weight: 600; color: var(--ink); }
.compare .yes { color: #2c8a4a; font-weight: 700; }
.compare .no { color: #b23b3b; font-weight: 700; }
.compare .mid { color: var(--text-muted); }

/* ----------------------- Testimonials ----------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.tcard .stars { color: var(--brass-2); letter-spacing: 3px; font-size: 0.95rem; }
.tcard blockquote { margin: 0; font-family: var(--font-display); font-size: 1.16rem; line-height: 1.45; color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.tcard .av {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass-2), var(--brass));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600;
}
.tcard .who b { display: block; color: var(--ink); font-size: 0.96rem; }
.tcard .who span { font-size: 0.84rem; color: var(--text-muted); }

/* ----------------------- Assurance / stats band ----------------------- */
.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.assurance .item { display: flex; gap: 0.9rem; align-items: flex-start; }
.assurance .item svg { width: 26px; height: 26px; flex: none; color: var(--brass-2); margin-top: 2px; }
.assurance .item b { display: block; color: #fff; font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 0.2rem; }
.assurance .item span { color: var(--text-invert-muted); font-size: 0.92rem; }
@media (max-width: 860px) { .assurance { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .assurance { grid-template-columns: 1fr; } }
