/* ==========================================================================
   DURAN PMR LLC — Design system
   Concept: "Spec plate" — the visual vocabulary of an architectural title block.
   Display: Cinzel (derived from the logo's Roman inscriptional letterforms)
   Body:    Instrument Sans
   Data:    IBM Plex Mono
   ========================================================================== */

:root {
  /* palette */
  --ink:        #0B0B0C;
  --graphite:   #16171A;
  --graphite-2: #1E2024;
  --blueprint:  #16202B;
  --blueprint-2:#1B2836;
  --gold:       #C9A24B;
  --gold-lt:    #E8D18A;
  --gold-dk:    #8A6F2F;
  --bone:       #F2EDE3;
  --bone-dim:   #B8B2A6;
  --bone-faint: #7C776D;
  --line:       #2A2C31;
  --line-blue:  #26364A;

  /* type */
  --display: "Cinzel", Georgia, serif;
  --body:    "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* metrics */
  --maxw: 1280px;
  --gut: 28px;
  --r: 3px;
  --header-h: 76px;
  --shadow: 0 24px 70px rgba(0,0,0,.5);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection { background: var(--gold); color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gut); }

.band { padding: 104px 0; }
.band-tight { padding: 72px 0; }
.band-ink { background: var(--ink); }
.band-graphite { background: var(--graphite); }
.band-blue { background: var(--blueprint); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .005em;
}

/* ---------- shared type devices ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dk), transparent);
  max-width: 90px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }

.head {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 18px;
}
.head-xl { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }

.lede {
  font-size: 1.08rem;
  color: var(--bone-dim);
  max-width: 62ch;
}

.band-head { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.band-head .lede { margin: 0 auto; }

.rule-gold { width: 54px; height: 2px; background: var(--gold); margin: 22px 0; }
.rule-gold.center { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  /* <button> defaults to the UA's grey/white face — reset it for every variant */
  background: transparent;
  color: var(--bone);
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn svg { width: 15px; height: 15px; stroke-width: 2; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(242,237,227,.3); color: var(--bone); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }
.btn-block { width: 100%; }

/* ---------- spec plate (signature element) ---------- */
.plate {
  font-family: var(--mono);
  font-size: .74rem;
  line-height: 2.1;
  color: var(--bone-dim);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.plate-row { display: flex; align-items: baseline; gap: 8px; }
.plate-key {
  color: var(--bone-faint);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .66rem;
  white-space: nowrap;
}
.plate-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
  min-width: 14px;
}
.plate-val { color: var(--bone); white-space: nowrap; }
.plate-id {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 400;
  height: var(--header-h);
  background: rgba(11,11,12,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.hdr.solid { background: rgba(11,11,12,.97); }
.hdr .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-txt { font-family: var(--display); font-size: 1.02rem; letter-spacing: .07em; line-height: 1; }
.brand-sub {
  display: block;
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .84rem;
  color: var(--bone-dim);
  letter-spacing: .01em;
  transition: color .2s ease;
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--bone); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.hdr-side { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hdr-tel {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .04em;
}
.hdr-tel svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2; fill: none; }

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 40px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .08em;
}
.lang button {
  background: none; border: none; color: var(--bone-faint);
  padding: 6px 11px; transition: all .2s ease;
}
.lang button.on { background: var(--gold); color: var(--ink); }

.burger { display: none; background: none; border: none; color: var(--bone); padding: 6px; }
.burger svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.8; fill: none; }

@media (max-width: 1080px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--graphite);
    border-bottom: 1px solid var(--line);
    padding: 6px var(--gut) 18px;
    transform: translateY(-130%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { color: var(--gold); }
  .burger { display: block; }
  .hdr-tel span { display: none; }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .brand img { height: 34px; }
  .brand-txt { font-size: .95rem; }
  .hdr-side { gap: 10px; }
  .lang button { padding: 6px 9px; }
}

/* ==========================================================================
   HERO — asymmetric split, image bleeds right
   ========================================================================== */
.hero {
  position: relative;
  padding-top: var(--header-h);
  background: var(--ink);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100vh - var(--header-h));
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 90px;
  padding-left: max(var(--gut), calc((100vw - var(--maxw)) / 2 + var(--gut)));
  padding-right: clamp(28px, 5vw, 68px);
}
.hero-media { position: relative; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 32%);
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold-lt); display: block; }
.hero .lede { margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* trust strip under hero */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--graphite);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 13px;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 19px; height: 19px; stroke: var(--gold); stroke-width: 1.6; fill: none; flex-shrink: 0; }
.trust-item b {
  display: block;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--bone);
}
.trust-item span { font-size: .74rem; color: var(--bone-faint); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  /* Photo first on phones — otherwise the page opens on a wall of text. */
  .hero-media { order: -1; height: 52vw; min-height: 240px; max-height: 340px; }
  .hero-media::after { background: linear-gradient(180deg, var(--ink) 0%, transparent 45%, rgba(11,11,12,.75) 100%); }
  .hero-copy { padding: 30px var(--gut) 40px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero .lede { font-size: 1rem; margin-bottom: 26px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 18px 16px; gap: 10px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  /* tighter vertical rhythm so there's less scrolling between photos */
  .band { padding: 62px 0; }
  .band-tight { padding: 46px 0; }
  .band-head { margin-bottom: 36px; }
  .svc { padding: 28px 22px; }
  .svc-num { margin-bottom: 12px; }
  .svc p { margin-bottom: 16px; }
}
@media (max-width: 520px) {
  /* Keep two columns even on small phones — stacking these four short items
     added ~170px of scroll before the first photo. */
  .trust-item { padding: 14px 12px; gap: 9px; flex-direction: column; align-items: flex-start; }
  .trust-item svg { width: 17px; height: 17px; }
  .trust-item b { font-size: .72rem; }
  .trust-item span { font-size: .68rem; line-height: 1.35; }
  .hero-copy { padding-top: 24px; }
  .hero .lede { font-size: .95rem; }
  .band-head { margin-bottom: 30px; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc {
  background: var(--ink);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: background .28s ease;
  position: relative;
}
.svc:hover { background: var(--graphite-2); }
.svc-num {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  color: var(--gold-dk);
  margin-bottom: 20px;
}
.svc h3 { font-size: 1.16rem; margin-bottom: 12px; line-height: 1.25; }
.svc p { font-size: .92rem; color: var(--bone-dim); flex: 1; margin-bottom: 22px; }
.svc-link {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .22s ease;
}
.svc:hover .svc-link { gap: 14px; }
.svc-link svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; }

@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.proj-list { display: grid; gap: 1px; background: var(--line-blue); border-block: 1px solid var(--line-blue); }
.proj {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--blueprint);
  align-items: stretch;
}
.proj:nth-child(even) { grid-template-columns: 1fr 1.15fr; }
.proj:nth-child(even) .proj-media { order: 2; }
/* Cap the photo height so project rows don't turn into full-screen slabs
   on large monitors. */
.proj-media { position: relative; min-height: 320px; max-height: 460px; overflow: hidden; }
.proj-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,0,.2,1);
}
.proj:hover .proj-media img { transform: scale(1.045); }
.proj-body { padding: 44px 44px; display: flex; flex-direction: column; justify-content: center; }
.proj-body h3 { font-size: 1.5rem; margin-bottom: 14px; }
.proj-body > p { font-size: .95rem; color: var(--bone-dim); margin-bottom: 26px; }
.proj .plate { border-top-color: var(--line-blue); }
.proj .plate-dots { border-bottom-color: var(--line-blue); }

@media (max-width: 900px) {
  .proj, .proj:nth-child(even) { grid-template-columns: 1fr; }
  .proj:nth-child(even) .proj-media { order: 0; }
  .proj-media { min-height: 260px; }
  .proj-body { padding: 38px 26px; }
}

/* project gallery grid (projects page) */
.gal-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 46px; }
.gal-filter {
  background: none;
  border: 1px solid var(--line);
  color: var(--bone-dim);
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .2s ease;
}
.gal-filter:hover, .gal-filter.on { border-color: var(--gold); color: var(--gold-lt); }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 4/3;
  background: var(--graphite);
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,0,.2,1); }
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(11,11,12,.9));
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.gal-item.hide { display: none; }
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: 1fr; } }

/* lightbox */
.lbx {
  position: fixed; inset: 0;
  background: rgba(6,6,7,.96);
  display: none; align-items: center; justify-content: center;
  z-index: 900; padding: 5vw;
}
.lbx.open { display: flex; }
.lbx img { max-width: 92vw; max-height: 88vh; border-radius: var(--r); }
.lbx-x {
  position: absolute; top: 20px; right: 26px;
  background: none; border: none; color: var(--bone);
  font-size: 2.4rem; line-height: 1;
}

/* ==========================================================================
   BEFORE / AFTER PAIRS
   Side-by-side rather than a drag slider: these photos were shot from
   different positions, and a slider only reads right when both frames line
   up. Pairs stay honest and legible with any framing.
   ========================================================================== */
.ba-pairs { display: grid; gap: 58px; }

.ba-pair header { margin-bottom: 20px; }
.ba-pair h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin-bottom: 8px; }
.ba-pair header p { color: var(--bone-dim); font-size: .94rem; max-width: 68ch; }

.ba-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ba-duo figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--graphite);
}
.ba-duo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,0,.2,1);
}
.ba-duo figure:hover img { transform: scale(1.03); }

.ba-duo figcaption {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 40px;
  background: rgba(11,11,12,.82);
  color: var(--bone);
}
.ba-duo figure.after figcaption { background: var(--gold); color: var(--ink); }

@media (max-width: 700px) {
  .ba-duo { grid-template-columns: 1fr; gap: 10px; }
  .ba-pairs { gap: 44px; }
}

/* ---- drag slider ----
   aspect-ratio is set per slider inline, matching that pair's crop. */
.ba {
  position: relative;
  /* width is required: the children are absolutely positioned, so without it
     the box has no intrinsic size and aspect-ratio collapses it to nothing. */
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-div { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-50%); pointer-events: none; }
.ba-grip {
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  pointer-events: none;
}
.ba-grip svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.ba-tag {
  position: absolute; top: 16px;
  font-family: var(--mono);
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(11,11,12,.78);
  padding: 7px 13px; border-radius: 40px;
}
.ba-tag.b { left: 16px; }
.ba-tag.a { right: 16px; color: var(--gold-lt); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* the bathroom pair is cropped 4:5, so its slider is portrait */
.ba.portrait { aspect-ratio: 4 / 5; max-width: 520px; }

/* a slider plus its own heading */
.ba-block { display: grid; gap: 58px; }
.ba-block > article { display: grid; gap: 22px; }
.ba-block h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); margin-bottom: 8px; }
.ba-block article > header { max-width: 70ch; margin: 0 auto; text-align: center; }
.ba-block article > header p { color: var(--bone-dim); font-size: .93rem; }
.ba-hint {
  text-align: center;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
@media (max-width: 700px) { .ba-block { gap: 44px; } }

/* ==========================================================================
   PROCESS — real sequence, so numbering carries meaning
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
  padding: 0 30px 0 0;
  border-top: 2px solid var(--line);
  padding-top: 26px;
  position: relative;
}
.step::before {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 34px; height: 2px;
  background: var(--gold);
}
.step-n { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; color: var(--gold); margin-bottom: 14px; }
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: .88rem; color: var(--bone-dim); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 0; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   SPLIT (about / text + image)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r); }
.split-media .frame {
  position: absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-dk);
  border-radius: var(--r);
  z-index: -1;
}
.checks { list-style: none; display: grid; gap: 14px; margin-top: 30px; }
.checks li { display: flex; gap: 13px; font-size: .95rem; }
.checks svg { width: 17px; height: 17px; stroke: var(--gold); stroke-width: 2.4; fill: none; flex-shrink: 0; margin-top: 5px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media .frame { display: none; }
}

/* ==========================================================================
   SERVICE AREA
   ========================================================================== */
.cities { display: flex; flex-wrap: wrap; gap: 9px; }
.cities span {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
  border: 1px solid var(--line-blue);
  padding: 9px 16px;
  border-radius: 40px;
  color: var(--bone-dim);
}

/* ==========================================================================
   REVIEWS (structure ready — fills when real reviews arrive)
   ========================================================================== */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
}
.rev-stars { color: var(--gold); letter-spacing: 3px; font-size: .9rem; margin-bottom: 16px; }
.rev p { font-size: .95rem; color: var(--bone-dim); margin-bottom: 20px; }
.rev-who { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-faint); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  text-align: center;
  padding: 108px 0;
  background: var(--blueprint);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/stock/cta-home-dusk.jpg") center/cover;
  opacity: .16;
}
.cta-band.cta-outdoor::before {
  background-image: url("../images/stock/outdoor-firepit.jpg");
  opacity: .22;
}
.cta-band .wrap { position: relative; }
.cta-band .head { margin-bottom: 16px; }
.cta-band .lede { margin: 0 auto 34px; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.field input, .field select, .field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 15px;
  color: var(--bone);
  font-family: var(--body);
  font-size: .95rem;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .f2 { grid-template-columns: 1fr; } }

/* multi-step quote */
.q-shell {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 42px;
}
.q-prog { display: flex; gap: 6px; margin-bottom: 10px; }
.q-prog i { flex: 1; height: 3px; background: var(--line); border-radius: 2px; transition: background .3s ease; }
.q-prog i.on { background: var(--gold); }
.q-count { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; color: var(--bone-faint); margin-bottom: 30px; }
.q-step { display: none; }
.q-step.on { display: block; animation: qin .35s ease; }
@keyframes qin { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.q-step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.q-step > p { color: var(--bone-dim); font-size: .93rem; margin-bottom: 26px; }

.pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 8px; }
.pick label {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex; align-items: center; gap: 13px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-size: .92rem;
}
.pick label:hover { border-color: var(--gold-dk); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick input:checked + label,
.pick label:has(input:checked) { border-color: var(--gold); background: rgba(201,162,75,.08); }
.pick svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.6; fill: none; flex-shrink: 0; }
@media (max-width: 560px) { .pick { grid-template-columns: 1fr; } }

.q-nav { display: flex; gap: 12px; margin-top: 28px; }
.q-nav .btn { flex: 1; }
.q-msg { margin-top: 16px; font-size: .9rem; text-align: center; }
.q-msg.ok { color: #8FD19E; }
.q-msg.err { color: #E08787; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.ct-row { display: flex; gap: 15px; margin-bottom: 26px; align-items: flex-start; }
.ct-ic {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.ct-ic svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.7; fill: none; }
.ct-row b { display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-faint); margin-bottom: 3px; }
.ct-row a, .ct-row span { font-size: .98rem; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.socials a:hover { border-color: var(--gold); }
.socials svg { width: 17px; height: 17px; stroke: var(--bone-dim); stroke-width: 1.7; fill: none; }
.socials a:hover svg { stroke: var(--gold-lt); }

/* ==========================================================================
   PAGE HEAD (interior pages)
   ========================================================================== */
.phead {
  padding: calc(var(--header-h) + 82px) 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--graphite);
  overflow: hidden;
}
.phead::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .3;
  mask-image: linear-gradient(180deg, transparent, #000);
}
.phead .wrap { position: relative; z-index: 1; }
.phead h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.crumb { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-faint); margin-bottom: 18px; }
.crumb a:hover { color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr { background: var(--graphite); border-top: 1px solid var(--line); padding: 66px 0 26px; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.ftr-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.ftr-brand img { height: 38px; }
.ftr-brand span { font-family: var(--display); font-size: 1.05rem; letter-spacing: .06em; }
.ftr p { font-size: .88rem; color: var(--bone-faint); max-width: 32ch; }
.ftr h4 { font-family: var(--mono); font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ftr ul { list-style: none; display: grid; gap: 11px; }
.ftr li, .ftr li a { font-size: .88rem; color: var(--bone-faint); }
.ftr li a:hover { color: var(--gold-lt); }
.ftr-btm {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .68rem; letter-spacing: .06em; color: var(--bone-faint);
}
@media (max-width: 900px) { .ftr-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .ftr-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MOBILE ACTION BAR
   ========================================================================== */
.mbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 500;
  display: none;
  background: rgba(11,11,12,.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mbar a {
  flex: 1;
  padding: 13px 6px calc(13px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-family: var(--mono);
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone-dim);
  border-right: 1px solid var(--line);
}
.mbar a:last-child { border-right: none; }
.mbar a.hot { background: var(--gold); color: var(--ink); }
.mbar svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; fill: none; }
@media (max-width: 780px) {
  .mbar { display: flex; }
  body { padding-bottom: 66px; }
}

/* ==========================================================================
   REVEAL
   ========================================================================== */
/* Only hide when JS is running — otherwise content must stay visible. */
html.js .rv { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
html.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1; transform: none; }
}

/* ==========================================================================
   LANGUAGE
   ========================================================================== */
/* <option> carries data-en/data-es as attributes and swaps its own text via JS,
   so it must never be hidden by these rules. */
[data-lang="es"] [data-en]:not(option) { display: none; }
[data-lang="en"] [data-es]:not(option) { display: none; }
