/* ============================================================
   AZ Drywall Pros — design system
   Cream / Charcoal / Orange · Archivo display · Rux-inspired
   ============================================================ */

:root {
  --cream: #f4f0e9;
  --cream-2: #ece6da;
  --paper: #faf8f3;
  --charcoal: #16181c;
  --charcoal-2: #23262d;
  --slate: #353a45;
  --gray: #646b76;
  --gray-soft: #8b919b;
  --orange: #e8510a;
  --orange-soft: #ff6a2a;
  --line: rgba(22, 24, 28, 0.12);
  --line-dark: rgba(244, 240, 233, 0.14);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --pad: clamp(1.25rem, 5vw, 6.5rem);
  --maxw: 1480px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 1rem;
}

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

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

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section { padding: clamp(4.5rem, 10vw, 9rem) var(--pad); position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--gray); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  padding: 1.05rem 1.7rem;
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
  will-change: transform;
}
.btn { white-space: nowrap; }
.btn > span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap; }
.btn > span svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 1;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary::after { background: var(--charcoal); }
.btn-primary:hover { color: #fff; }
.btn-primary:hover::after { transform: translateY(0); }

.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark::after { background: var(--orange); }
.btn-dark:hover { color: #fff; }
.btn-dark:hover::after { transform: translateY(0); }

.btn-ghost { border: 1.5px solid var(--line); color: var(--charcoal); }
.btn-ghost::after { background: var(--charcoal); }
.btn-ghost:hover { color: var(--cream); border-color: var(--charcoal); }
.btn-ghost:hover::after { transform: translateY(0); }

.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translate(4px, -4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s;
}
.nav.scrolled {
  background: rgba(244, 240, 233, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; z-index: 101; }
.nav-logo img { height: 62px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav-logo img { height: 52px; }

.nav-right { display: flex; align-items: center; gap: 1.9rem; }
.nav-divider { width: 1px; height: 26px; background: var(--line); flex-shrink: 0; }
.nav.scrolled .nav-divider { background: rgba(22,24,28,0.18); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  position: relative;
  padding: 0.3rem 0;
  color: var(--charcoal);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav-phone .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(232,81,10,.5);} 50%{ box-shadow: 0 0 0 7px rgba(232,81,10,0);} }

.nav-toggle { display: none; flex-direction: column; gap: 5px; z-index: 101; width: 30px; }
.nav-toggle span { height: 2px; width: 100%; background: var(--charcoal); transition: transform .4s var(--ease), opacity .3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.6s var(--ease), visibility 0s linear 0.6s;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; pointer-events: all; transition: transform 0.6s var(--ease); }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 9vw, 3.6rem); color: var(--cream); line-height: 1.05;
  padding: 0.35rem 0; letter-spacing: -0.02em;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-foot { margin-top: 2.5rem; color: var(--gray-soft); display: flex; flex-direction: column; gap: .4rem; }
.mobile-foot a { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; text-transform: none; color: var(--orange); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(6rem, 14vh, 8rem) var(--pad) clamp(2rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .duotone img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(244,240,233,.35) 0%, rgba(244,240,233,.1) 40%, rgba(244,240,233,.95) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero h1 {
  font-size: clamp(2.4rem, 7.4vw, 6.6rem);
  text-transform: uppercase; line-height: 0.9;
  color: var(--charcoal);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; }
.hero h1 .o { color: var(--orange); }
.hero-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.4rem 2rem; margin-top: clamp(1.2rem, 2.2vh, 1.8rem); }
.hero-sub { max-width: 44ch; font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: var(--slate); }
.hero-meta { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-meta .stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,4vw,2.8rem); line-height: 1; }
.hero-meta .stat .l { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-top: 0.4rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: clamp(1.4rem, 2.6vh, 2.1rem); }

.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color: var(--gray); display:flex; flex-direction:column; align-items:center; gap:.5rem; }
.scroll-cue .bar { width: 1px; height: 38px; background: var(--gray); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--orange); animation: scrolldown 1.8s var(--ease-in-out) infinite; }
@keyframes scrolldown { 0%{transform:translateY(0)} 100%{transform:translateY(200%)} }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--charcoal); color: var(--cream);
  padding: 1.15rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.marquee-track { display: inline-flex; gap: 2.5rem; animation: marquee 28s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.1rem, 2vw, 1.7rem); letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee-track span::after { content: "✦"; color: var(--orange); font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Duotone media ---------- */
/* Container for generated brand SVGs (already on-palette) — keeps overflow + hover zoom.
   A faint tint unifies them; swap-in real photos still get a light brand wash. */
.duotone { position: relative; overflow: hidden; background: var(--charcoal); }
.duotone img { transition: transform 1.2s var(--ease); }
.duotone.photo img { filter: grayscale(1) contrast(1.1) brightness(0.96); }
.duotone.photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(232,81,10,0.6), rgba(22,24,28,0.75));
  mix-blend-mode: multiply;
}
.hoverable:hover .duotone img { transform: scale(1.06); }

/* ---------- Intro / about strip ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.big-statement { font-size: clamp(1.7rem, 3.6vw, 3.2rem); line-height: 1.04; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
.big-statement em { color: var(--orange); font-style: normal; }

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-item {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 2rem; align-items: center;
  padding: clamp(1.6rem, 3vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative; transition: padding 0.5s var(--ease);
}
.svc-item::before { content:""; position:absolute; inset:0; background: var(--charcoal); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index:0; }
.svc-item > * { position: relative; z-index: 2; transition: color .4s var(--ease); }
.svc-item:hover::before { transform: scaleY(1); }
.svc-item:hover { padding-left: 1.5rem; padding-right: 1.5rem; }
.svc-item:hover .svc-num, .svc-item:hover .svc-name, .svc-item:hover .svc-desc { color: var(--cream); }
.svc-item:hover .svc-go { background: var(--orange); color: #fff; border-color: var(--orange); }
.svc-num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--gray-soft); }
.svc-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.5rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; }
.svc-name small { display:block; font-size: .9rem; font-weight: 600; letter-spacing: .12em; color: var(--orange); margin-bottom:.4rem; }
.svc-desc { color: var(--gray); max-width: 40ch; font-size: 0.95rem; }
.svc-go { width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: all .4s var(--ease); flex-shrink: 0; }
.svc-go svg { width: 20px; height: 20px; }
@media (max-width: 860px){
  .svc-item { grid-template-columns: 1fr auto; gap: 1rem; }
  .svc-num { display: none; }
  .svc-desc { display: none; }
}

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 2.2rem; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color .5s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -28px rgba(22,24,28,.4); border-color: transparent; }
.card .num { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--orange); }
.card h3 { font-size: 1.4rem; text-transform: uppercase; margin: 1.2rem 0 0.7rem; }
.card p { color: var(--gray); font-size: 0.95rem; }
.card .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--cream-2); display: grid; place-items: center; margin-bottom: 1.3rem; transition: background .4s; }
.card:hover .ic { background: var(--orange); }
.card:hover .ic svg { stroke: #fff; }
.card .ic svg { width: 26px; height: 26px; stroke: var(--charcoal); transition: stroke .4s; }

/* ---------- Stats band ---------- */
.band { background: var(--charcoal); color: var(--cream); }
.band .eyebrow { color: var(--orange-soft); }
.band .lead { color: var(--gray-soft); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.stat-cell { background: var(--charcoal); padding: 2.4rem 1.8rem; }
.stat-cell .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; color: var(--cream); }
.stat-cell .n em { color: var(--orange); font-style: normal; }
.stat-cell .l { margin-top: 0.7rem; color: var(--gray-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Process ---------- */
.steps { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.step { background: var(--cream); display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding: clamp(1.8rem,3vw,2.8rem) 0; align-items: baseline; transition: background .4s; }
.step:hover { background: var(--paper); }
.step .sn { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,5vw,3.4rem); color: var(--orange); line-height: 1; }
.step h3 { font-size: clamp(1.3rem,2.4vw,1.9rem); text-transform: uppercase; margin-bottom: 0.6rem; }
.step p { color: var(--gray); max-width: 60ch; }
@media (max-width: 700px){ .step { grid-template-columns: 1fr; gap: .6rem; } }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1.3rem; height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -30px rgba(22,24,28,.35); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 1rem; }
.review-card p { font-size: 1.05rem; line-height: 1.55; color: var(--charcoal); }
.review-who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.review-who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); color: var(--cream); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.review-who .nm { font-family: var(--font-display); font-weight: 700; }
.review-who .src { font-size: 0.78rem; color: var(--gray); }

.featured-quote { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem,4vw,3rem); line-height: 1.05; letter-spacing: -0.02em; }
.featured-quote span { color: var(--orange); }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-chip {
  border: 1px solid var(--line); border-radius: 100px; padding: 0.65rem 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em;
  transition: all .35s var(--ease);
}
.area-chip:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: 1.2rem; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 1.2rem; border-radius: 14px; overflow: hidden; }
.gallery-grid .g-item .duotone { border-radius: 14px; }
.gallery-grid .g-item img { width: 100%; }
@media (max-width: 900px){ .gallery-grid { columns: 2; } }
@media (max-width: 560px){ .gallery-grid { columns: 1; } }

/* ---------- CTA ---------- */
.cta-block { background: var(--orange); color: #fff; border-radius: 26px; padding: clamp(2.5rem,6vw,5.5rem); position: relative; overflow: hidden; }
.cta-block h2 { font-size: clamp(2.2rem, 7vw, 6rem); text-transform: uppercase; line-height: 0.9; }
.cta-block .lead { color: rgba(255,255,255,.9); }
.cta-block .btn-dark::after { background: #fff; }
.cta-block .btn-dark:hover { color: var(--charcoal); }
.cta-watermark { position: absolute; right: -2%; bottom: -28%; font-family: var(--font-display); font-weight: 800; font-size: 30vw; color: rgba(255,255,255,0.08); line-height: 1; pointer-events: none; user-select: none; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: var(--cream); padding: clamp(3.5rem,7vw,6rem) var(--pad) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand img { height: 54px; margin-bottom: 1.3rem; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--gray-soft); max-width: 34ch; }
.footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange-soft); margin-bottom: 1.3rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a { color: var(--gray-soft); font-size: 0.95rem; transition: color .3s, padding-left .3s; }
.footer ul a:hover { color: var(--cream); padding-left: 6px; }
.footer-call { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--cream); }
.footer-call:hover { color: var(--orange-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; color: var(--gray-soft); font-size: 0.82rem; }
.footer-bottom a { color: var(--gray-soft); }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top { grid-template-columns: 1fr; } }

/* ---------- Page header ---------- */
.page-head { padding: clamp(9rem,16vw,13rem) var(--pad) clamp(3rem,6vw,5rem); position: relative; overflow: hidden; }
.page-head .crumbs { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 1.4rem; }
.page-head .crumbs a:hover { color: var(--orange); }
.page-head h1 { font-size: clamp(2.6rem, 9vw, 8rem); text-transform: uppercase; line-height: 0.88; }
.page-head h1 .o { color: var(--orange); }
.page-head .lead { margin-top: 1.6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.1em; margin-bottom: 0.6rem; color: var(--slate); }
.field input, .field textarea, .field select {
  width: 100%; padding: 1rem 1.1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--paper); font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,81,10,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-aside { background: var(--charcoal); color: var(--cream); border-radius: 20px; padding: clamp(2rem,4vw,3rem); }
.contact-aside h3 { text-transform: uppercase; font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-line { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line-dark); }
.contact-line:last-child { border-bottom: none; }
.contact-line .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.contact-line .ic svg { width: 22px; height: 22px; stroke: #fff; }
.contact-line .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-soft); }
.contact-line .v { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.contact-line .v a:hover { color: var(--orange-soft); }
.form-note { font-size: 0.85rem; color: var(--gray); margin-top: 1rem; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Service detail ---------- */
.svc-hero-img { border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem,5vw,4rem); align-items: start; }
.svc-body h2 { font-size: clamp(1.6rem,3vw,2.4rem); text-transform: uppercase; margin: 2.5rem 0 1rem; }
.svc-body h2:first-child { margin-top: 0; }
.svc-body p { color: var(--slate); margin-bottom: 1.1rem; font-size: 1.05rem; line-height: 1.65; }
.checklist { list-style: none; display: grid; gap: 0.9rem; margin: 1rem 0; }
.checklist li { display: flex; gap: 0.9rem; align-items: flex-start; }
.checklist li::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 2px; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat var(--orange); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat; }
.svc-aside { position: sticky; top: 100px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 2rem; }
.svc-aside h4 { text-transform: uppercase; font-size: 1.1rem; margin-bottom: 1.2rem; }
.svc-aside ul { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1.5rem; }
.svc-aside ul a { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; transition: padding .3s, color .3s; }
.svc-aside ul a:hover { color: var(--orange); padding-left: 6px; }
.svc-aside ul a.cur { color: var(--orange); }
@media (max-width: 860px){ .svc-detail-grid { grid-template-columns: 1fr; } .svc-aside { position: static; } }

/* ---------- Reveal animations ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(1){ transition-delay: .05s; }
[data-reveal-stagger].in > *:nth-child(2){ transition-delay: .13s; }
[data-reveal-stagger].in > *:nth-child(3){ transition-delay: .21s; }
[data-reveal-stagger].in > *:nth-child(4){ transition-delay: .29s; }
[data-reveal-stagger].in > *:nth-child(5){ transition-delay: .37s; }
[data-reveal-stagger].in > *:nth-child(6){ transition-delay: .45s; }

.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; }
.js .reveal-line > span { transform: translateY(110%); transition: transform 1s var(--ease); }
.js .in .reveal-line > span, .js .reveal-line.in > span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::after, *::before { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-stagger] > *, .reveal-line > span { opacity: 1 !important; transform: none !important; }
}

/* ---------- Blog ---------- */
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img .duotone, .featured-post-img .duotone { position: absolute; inset: 0; }
.blog-card-img .duotone img, .featured-post-img .duotone img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 0.7rem; letter-spacing: 0.08em; padding: 0.4rem 0.85rem; border-radius: 100px;
}
.blog-tag.static { position: static; display: inline-block; }
.blog-card-body { padding: 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-meta { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.blog-card-body h3 { font-size: 1.22rem; text-transform: uppercase; margin: 0; line-height: 1.12; }
.blog-card-body p { color: var(--gray); font-size: 0.94rem; }
.blog-readmore { margin-top: auto; padding-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.78rem; color: var(--orange); }

.featured-post {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.featured-post:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -32px rgba(22,24,28,0.4); }
.featured-post-img { position: relative; min-height: 400px; overflow: hidden; }
.featured-post-body { padding: clamp(2rem, 4vw, 3.6rem); display: flex; flex-direction: column; justify-content: center; }
.featured-post-body h2 { font-size: clamp(1.6rem, 3vw, 2.7rem); text-transform: uppercase; line-height: 1.02; margin: 1rem 0; }
.featured-post-body .blog-meta { margin-top: 0.4rem; }
@media (max-width: 860px){ .featured-post { grid-template-columns: 1fr; } .featured-post-img { min-height: 240px; } }

.blog-post-meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.article p { font-size: 1.08rem; line-height: 1.7; }
.article-cta { margin-top: 2.8rem; padding: 1.8rem; background: var(--cream-2); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.article-cta-k { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 0.2rem; }
.article-cta p { color: var(--gray); margin: 0; font-size: 0.98rem; }
.related-posts { display: flex; flex-direction: column; margin-bottom: 0.5rem; }
.related-posts a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); transition: padding 0.3s var(--ease); }
.related-posts a:last-child { border-bottom: none; }
.related-posts a:hover { padding-left: 6px; }
.rp-cat { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.3rem; }
.rp-title { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; line-height: 1.2; }
.related-posts a:hover .rp-title { color: var(--orange); }

/* ---------- CTA button variants ---------- */
.nc-short { display: none; }
/* Ghost on the orange CTA block */
.cta-block .cta-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-block .cta-ghost::after { background: #fff; }
.cta-block .cta-ghost:hover { color: var(--orange); border-color: #fff; }
/* Ghost inside dark sidebar boxes */
.ghost-on-dark { border-color: rgba(244,240,233,0.4); color: var(--cream); }
.ghost-on-dark::after { background: var(--cream); }
.ghost-on-dark:hover { color: var(--charcoal); border-color: var(--cream); }

/* ---------- Responsive nav ---------- */
@media (max-width: 1280px){
  .nav-quote, .nav-divider { display: none; }
}
@media (max-width: 1080px){
  .nav-links, .nav-quote, .nav-divider { display: none; }
  .nav-right { gap: 0.8rem; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .nav.menu-open .nav-toggle span { background: var(--cream); }
}
@media (max-width: 760px){
  .grid-3, .grid-2, .stat-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .nc-num { display: none; }
  .nc-short { display: inline; }
  .nav-call { padding: 0.85rem 1.2rem; }
}
@media (max-width: 520px){
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
