/* ═══════════════════════════════════════════════════════════════════════
  ORCHARD ROOFS — DESIGN SYSTEM
  Midwest Residential-Industrial · Lebanon, IN
  ─────────────────────────────────────────────────────────────────────
  Company : Orchard Roofs LLC
  Location: Lebanon, IN 46052
  Phone   : (765) 404-5422
  Email   : info@orchardroofs.com
  License : (replace with applicable license)  ·  Founded 2009  ·  Owner: Marcus Hale
  ─────────────────────────────────────────────────────────────────────
  Palette : Slate  #2C4A52 · Linen #F0EBE1 · Brass #B8963E
  Fonts   : Playfair Display (display) · DM Sans (body) · IBM Plex Mono
  Aesthetic: Clean, industrial-organic, regional material palette
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=IBM+Plex+Mono:ital,wght@0,400;0,500;1,400&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────────────── */
:root {
  /* ── Slate palette (primary) */
  --slate:      #2C4A52;
  --slate-d:    #1E3540;
  --slate-l:    #3D5F6A;
  --slate-2:    #4F7280;
  --slate-3:    #6B8E9A;
  --slate-4:    #90AAAF;
  --slate-5:    #B5C8CC;
  --slate-6:    #D4E3E6;

  /* ── Linen palette (background) */
  --linen:      #F0EBE1;
  --linen-d:    #E6E0D4;
  --linen-2:    #DDD6C8;
  --linen-3:    #D1C9B9;
  --linen-4:    #C2B9A6;
  --linen-5:    #A89E8E;

  /* ── Brass accent */
  --brass:      #B8963E;
  --brass-l:    #CEAC52;
  --brass-d:    #9A7A2E;
  --brass-dim:  rgba(184,150,62,0.12);
  --brass-mid:  rgba(184,150,62,0.25);
  --brass-rim:  rgba(184,150,62,0.45);

  /* ── Ink (near black) */
  --ink:        #1A2A30;
  --ink-2:      #243540;

  /* ── Borders */
  --b1: rgba(44,74,82,0.10);
  --b2: rgba(44,74,82,0.18);
  --b3: rgba(44,74,82,0.30);
  --bb: rgba(184,150,62,0.32);

  /* ── Typography */
  --display: 'Playfair Display', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* ── Spacing (8pt grid) */
  --s1:4px;   --s2:8px;   --s3:12px;  --s4:16px;  --s5:24px;
  --s6:32px;  --s7:48px;  --s8:64px;  --s9:80px;  --s10:96px;
  --s11:128px; --s12:160px;

  /* ── Radius — mostly square with soft rounding */
  --r0:0px; --r1:2px; --r2:4px; --r3:8px; --r4:16px; --r5:9999px;

  /* ── Shadows */
  --sh1: 0 1px 4px rgba(44,74,82,0.09), 0 1px 2px rgba(44,74,82,0.06);
  --sh2: 0 4px 18px rgba(44,74,82,0.12), 0 2px 6px rgba(44,74,82,0.08);
  --sh3: 0 12px 48px rgba(44,74,82,0.18), 0 4px 12px rgba(44,74,82,0.10);
  --sh-br: 0 6px 28px rgba(184,150,62,0.28), 0 2px 8px rgba(184,150,62,0.14);

  /* ── Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t1:0.12s; --t2:0.24s; --t3:0.40s; --t4:0.60s;
}

/* ── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  background: var(--linen);
  color: var(--slate);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul,ol  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── BLUEPRINT GRID BACKGROUND ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(44,74,82,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,74,82,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
.t-hero { font-family: var(--display); font-size: clamp(4.5rem,11vw,12rem); font-weight: 800; line-height: 0.88; letter-spacing: -0.03em; }
.t-xl   { font-family: var(--display); font-size: clamp(2rem,4vw,3.4rem);  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.t-lg   { font-family: var(--display); font-size: clamp(1.7rem,3vw,2.8rem);    font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
.t-md   { font-family: var(--display); font-size: clamp(1.3rem,2.5vw,2rem);  font-weight: 600; line-height: 1.2; }
.t-sm   { font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1.20; }
.t-xs   { font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1.30; }

.b-xl { font-size: 1.1rem;  line-height: 1.80; color: var(--slate-2); }
.b-lg { font-size: 1.0rem;  line-height: 1.75; color: var(--slate-2); }
.b-md { font-size: 0.90rem; line-height: 1.70; color: var(--slate-3); }
.b-sm { font-size: 0.82rem; line-height: 1.65; color: var(--slate-4); }

.mono   { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--linen-5); }
.label  { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-4); }
.label-br { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }
.italic { font-style: italic; }

/* ── LAYOUT ─────────────────────────────────────────────────────────── */
.wrap    { max-width: 1340px; margin: 0 auto; padding: 0 var(--s8); }
.wrap-sm { max-width: 960px;  margin: 0 auto; padding: 0 var(--s8); }
.wrap-xs { max-width: 720px;  margin: 0 auto; padding: 0 var(--s8); }
.sec    { padding: var(--s12) 0; position: relative; }
.sec-lg { padding: var(--s11) 0; position: relative; }
.sec-md { padding: var(--s9) 0;  position: relative; }
.sec-sm { padding: var(--s7) 0;  position: relative; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s5); }

/* ── RULE DIVIDERS (signature aesthetic element) ─────────────────────── */
.rule        { height: 1px; background: var(--b2); }
.rule-slate  { height: 1px; background: var(--slate); }
.rule-brass  { height: 1px; background: var(--brass); }
.rule-dbl {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--slate) 0, var(--slate) 60%, transparent 60%, transparent 100%);
  background-size: 8px 100%;
  opacity: 0.15;
}

/* ── SECTION LABEL ───────────────────────────────────────────────────── */
.sec-label {
  display: flex; align-items: center; gap: var(--s4);
  margin-bottom: var(--s7);
}
.sec-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--brass); flex-shrink: 0; }
.sec-label-txt { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); }
.sec-label::after { content: ''; display: block; flex: 1; height: 1px; background: var(--b1); }

/* ── BADGE ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 4px 12px; border-radius: var(--r1);
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--brass-dim); color: var(--brass); border: 1px solid var(--bb);
}
.badge-pulse { width: 5px; height: 5px; background: var(--brass); border-radius: 50%; animation: bpulse 2s ease infinite; }
@keyframes bpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.6)} }

.badge-slate { background: rgba(44,74,82,0.10); color: var(--slate); border-color: var(--b2); }

/* ── CARD SYSTEM ─────────────────────────────────────────────────────── */
.card {
  background: var(--linen-d); border: 1px solid var(--b1); border-radius: var(--r3);
  transition: border-color var(--t2), box-shadow var(--t2), transform var(--t3) var(--ease);
}
.card:hover { border-color: var(--b3); box-shadow: var(--sh2); transform: translateY(-2px); }

.card-white {
  background: #fff; border: 1px solid var(--b1); border-radius: var(--r3); box-shadow: var(--sh1);
  transition: border-color var(--t2), box-shadow var(--t2), transform var(--t3) var(--ease);
}
.card-white:hover { border-color: var(--bb); box-shadow: var(--sh3); transform: translateY(-3px); }

.card-slate { background: var(--slate); border: 1px solid var(--slate-l); border-radius: var(--r3); }
.card-ink   { background: var(--ink);  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r3); }
.card-brass { background: var(--brass-dim); border: 1px solid var(--bb); border-radius: var(--r3); }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-family: var(--body); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.01em; padding: 14px 28px; border-radius: var(--r2);
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--t2) var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-arr { transition: transform var(--t2) var(--ease); }
.btn:hover .btn-arr { transform: translateX(4px); }

/* Brass primary */
.btn-primary {
  background: var(--brass); color: var(--ink); border-color: var(--brass);
  box-shadow: 0 4px 20px rgba(184,150,62,0.30);
}
.btn-primary:hover { background: var(--brass-l); box-shadow: var(--sh-br); transform: translateY(-2px); }

/* Slate */
.btn-slate {
  background: var(--slate); color: var(--linen); border-color: var(--slate);
  box-shadow: 0 4px 16px rgba(44,74,82,0.25);
}
.btn-slate:hover { background: var(--slate-l); transform: translateY(-2px); }

/* Ghost */
.btn-ghost {
  background: transparent; color: var(--slate); border-color: var(--b2);
}
.btn-ghost:hover { border-color: var(--b3); background: var(--linen-d); transform: translateY(-1px); }

/* Outline brass */
.btn-outline {
  background: transparent; color: var(--brass); border-color: var(--bb);
}
.btn-outline:hover { background: var(--brass-dim); border-color: var(--brass); transform: translateY(-1px); }

/* White */
.btn-white {
  background: var(--linen); color: var(--ink); border-color: var(--linen);
  box-shadow: var(--sh2);
}
.btn-white:hover { background: #fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.78rem; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 900;
  padding: var(--s4) 0;
  transition: all var(--t2);
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: background var(--t2), border-color var(--t2), backdrop-filter var(--t2);
}
.nav.scrolled::before {
  background: rgba(240,235,225,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--b1);
}
.nav-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 var(--s8);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s5); position: relative; z-index: 1;
}
.nav-logo {
  display: flex; align-items: center; gap: var(--s3);
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--slate); border-radius: var(--r1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: background var(--t2);
}
.nav-logo:hover .nav-logo-mark { background: var(--brass); }
.nav-links { display: flex; align-items: center; gap: var(--s7); flex-wrap: wrap; }
.nav-links a {
  font-family: var(--body); font-size: 0.80rem; font-weight: 500;
  color: var(--slate-2); position: relative; padding: var(--s2) 0;
  transition: color var(--t1);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: var(--s5); }
.nav-phone { font-family: var(--mono); font-size: 0.70rem; color: var(--linen-5); transition: color var(--t1); }
.nav-phone:hover { color: var(--brass); }
.nav-ham { display: none; flex-direction: column; gap: 5px; padding: var(--s2); }
.nav-ham span { display: block; width: 22px; height: 1.5px; background: var(--slate-2); border-radius: 99px; transition: all var(--t2); }

/* ── INNER PAGE HERO ──────────────────────────────────────────────────── */
.inner-hero {
  padding: 148px 0 var(--s9); position: relative;
  background: var(--linen-d);
  border-bottom: 1px solid var(--b2);
  overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--slate), var(--brass), var(--slate-l));
}

/* ── STATS ───────────────────────────────────────────────────────────── */
.stats-band { background: var(--slate); }
.stats-row  { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-col {
  padding: var(--s7) var(--s6); border-right: 1px solid rgba(255,255,255,0.09);
  transition: background var(--t2);
}
.stat-col:last-child { border-right: none; }
.stat-col:hover { background: var(--slate-l); }
.stat-num {
  font-family: var(--display); font-size: clamp(2.8rem,5vw,5rem);
  font-weight: 700; line-height: 1; color: var(--linen);
  letter-spacing: -0.03em;
}
.stat-num .sup { color: var(--brass-l); font-weight: 400; font-size: 0.55em; vertical-align: top; margin-top: 8px; display: inline-block; }
.stat-rule { height: 1px; background: rgba(255,255,255,0.12); margin: var(--s3) 0; }
.stat-lbl  { font-family: var(--mono); font-size: 0.60rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-4); }

/* ── SVC CARD ─────────────────────────────────────────────────────────── */
.svc-icon { font-size: 2rem; margin-bottom: var(--s4); }
.svc-num  { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--linen-5); margin-bottom: var(--s3); }
.svc-h    { font-family: var(--display); font-weight: 600; font-size: 1.25rem; color: var(--ink); margin-bottom: var(--s3); }

/* ── CHECKLIST ───────────────────────────────────────────────────────── */
.ck { display: flex; gap: var(--s4); padding: var(--s4) 0; border-bottom: 1px solid var(--b1); }
.ck:last-child { border-bottom: none; }
.ck:first-child { padding-top: 0; }
.ck-dot { width: 18px; height: 18px; border: 1px solid var(--bb); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ck-dot::after { content: ''; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; }
.ck-h { font-weight: 600; font-size: 0.90rem; color: var(--ink); margin-bottom: 2px; }
.ck-p { font-size: 0.80rem; color: var(--slate-2); line-height: 1.60; }

/* ── PROCESS STEP ────────────────────────────────────────────────────── */
.step-box { position: relative; padding-left: var(--s8); }
.step-box::before { content: ''; position: absolute; left: 20px; top: 44px; bottom: -20px; width: 1px; background: linear-gradient(to bottom, var(--bb), transparent); }
.step-box:last-child::before { display: none; }
.step-num { width: 40px; height: 40px; background: var(--brass-dim); border: 1px solid var(--bb); border-radius: var(--r2); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.68rem; color: var(--brass); margin-bottom: var(--s5); position: absolute; left: 0; top: 0; }
.step-h { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--ink); margin-bottom: var(--s3); }
.step-p { font-size: 0.88rem; color: var(--slate-2); line-height: 1.70; }

/* ── FORM ────────────────────────────────────────────────────────────── */
.fg { display: flex; flex-direction: column; gap: var(--s2); }
.flb { font-family: var(--mono); font-size: 0.60rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-3); }
.fi {
  background: var(--linen); border: 1px solid var(--b2); border-radius: var(--r2);
  padding: 13px 15px; font-size: 0.90rem; color: var(--ink); outline: none; width: 100%;
  transition: border-color var(--t1), box-shadow var(--t1);
}
.fi::placeholder { color: var(--linen-5); }
.fi:focus { border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-dim); }
textarea.fi { min-height: 110px; resize: vertical; }
select.fi {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B8E9A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.fcheck { display: flex; align-items: flex-start; gap: var(--s3); }
.fcheck input { width: 14px; height: 14px; accent-color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.fcheck label { font-size: 0.80rem; color: var(--slate-2); line-height: 1.5; }
.fcheck a { color: var(--brass); }

/* ── MODAL ───────────────────────────────────────────────────────────── */
.modal-ov {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(26,42,48,0.65);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: var(--s6);
  opacity: 0; pointer-events: none; transition: opacity var(--t2);
}
.modal-ov.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--linen); border: 1px solid var(--b2); border-radius: var(--r4);
  padding: var(--s8); width: 100%; max-width: 560px; max-height: 92vh;
  overflow-y: auto; position: relative;
  transform: translateY(22px) scale(0.97);
  transition: transform var(--t3) var(--ease);
  box-shadow: var(--sh3);
}
.modal-ov.open .modal-box { transform: none; }
.modal-box::before { content: ''; position: absolute; top: 0; left: var(--s8); right: var(--s8); height: 2px; background: linear-gradient(90deg, var(--slate), var(--brass)); border-radius: 0 0 var(--r1) var(--r1); }
.modal-x {
  position: absolute; top: var(--s5); right: var(--s5);
  width: 30px; height: 30px; border-radius: 50%; background: var(--linen-d);
  border: 1px solid var(--b2); color: var(--slate-3); display: flex; align-items: center;
  justify-content: center; font-size: 0.88rem; cursor: pointer; transition: all var(--t1);
}
.modal-x:hover { background: var(--brass-dim); border-color: var(--bb); color: var(--brass); }

/* ── COOKIE ──────────────────────────────────────────────────────────── */
.cookie {
  position: fixed; bottom: var(--s6); left: 50%; transform: translateX(-50%) translateY(0);
  width: min(580px, calc(100% - 3rem));
  background: var(--ink); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r3); padding: var(--s5) var(--s6);
  display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap;
  z-index: 8000; box-shadow: var(--sh3);
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.cookie.gone { transform: translateX(-50%) translateY(240%); opacity: 0; pointer-events: none; }
.cookie p { font-size: 0.82rem; color: var(--linen-d); flex: 1; line-height: 1.5; }
.cookie a { color: var(--brass-l); }
.cookie-btns { display: flex; gap: var(--s3); flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer { background: var(--ink); color: var(--linen-3); padding: var(--s11) 0 var(--s7); }
.foot-top-rule { height: 1px; background: linear-gradient(90deg, var(--slate), var(--brass-d), var(--slate)); margin-bottom: var(--s10); }
.foot-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: var(--s10); margin-bottom: var(--s10); }
.foot-desc { font-size: 0.86rem; color: var(--slate-4); line-height: 1.75; margin: var(--s5) 0 var(--s6); max-width: 280px; }
.foot-soc-row { display: flex; gap: var(--s3); }
.foot-soc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r2); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.60rem; color: var(--slate-4);
  transition: all var(--t2);
}
.foot-soc:hover { background: var(--brass-dim); border-color: var(--bb); color: var(--brass-l); }
.foot-ch { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.20em; text-transform: uppercase; color: var(--slate-4); margin-bottom: var(--s4); display: flex; align-items: center; gap: var(--s3); }
.foot-ch::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.foot-ul li { margin-bottom: var(--s3); }
.foot-ul a { font-size: 0.86rem; color: var(--slate-5); transition: color var(--t1); }
.foot-ul a:hover { color: var(--brass-l); }
.foot-bot { border-top: 1px solid rgba(255,255,255,0.06); padding-top: var(--s5); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s4); }
.foot-copy { font-family: var(--mono); font-size: 0.61rem; color: var(--slate-4); }
.foot-leg { display: flex; gap: var(--s5); }
.foot-leg a { font-family: var(--mono); font-size: 0.61rem; color: var(--slate-4); transition: color var(--t1); }
.foot-leg a:hover { color: var(--brass-l); }

/* ── READ BAR ────────────────────────────────────────────────────────── */
.read-bar-wrap { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1001; }
.read-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--slate), var(--brass)); transition: width 0.1s linear; }

/* ── REVEAL ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.60s var(--ease), transform 0.60s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.40s}

/* ── IMAGE FRAME ─────────────────────────────────────────────────────── */
.img-frame { border-radius: var(--r3); overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t4) var(--ease), filter var(--t3); }
.img-frame:hover img { transform: scale(1.05); }

/* ── REVIEW CARD ─────────────────────────────────────────────────────── */
.stars { display: flex; gap: 2px; margin-bottom: var(--s4); }
.stars span { color: var(--brass); font-size: 0.80rem; }
.review-q { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--slate-d); line-height: 1.65; margin-bottom: var(--s5); }
.review-by { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.review-loc { font-family: var(--mono); font-size: 0.59rem; color: var(--linen-5); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--b1); }
.faq-item:first-child { border-top: 1px solid var(--b1); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--s4); padding: var(--s5) 0; font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink); text-align: left; cursor: pointer; transition: color var(--t1); }
.faq-q:hover { color: var(--brass); }
.faq-ico { width: 26px; height: 26px; border: 1px solid var(--b2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--slate-3); flex-shrink: 0; transition: all var(--t2) var(--ease); }
.faq-item.open .faq-ico { background: var(--brass-dim); border-color: var(--bb); color: var(--brass); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease), padding 0.28s; }
.faq-body.open { max-height: 320px; padding-bottom: var(--s5); }
.faq-body p { font-size: 0.90rem; color: var(--slate-2); line-height: 1.80; }

/* ── BLOG IMG ────────────────────────────────────────────────────────── */
.blog-img { overflow: hidden; border-radius: var(--r2) var(--r2) 0 0; aspect-ratio: 16/9; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.80); transition: transform var(--t4) var(--ease), filter var(--t3); }
.card-white:hover .blog-img img { transform: scale(1.06); filter: saturate(1); }
.blog-cat  { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: var(--s3); }
.blog-meta { font-family: var(--mono); font-size: 0.59rem; color: var(--linen-5); }
.blog-more { font-family: var(--body); font-size: 0.80rem; font-weight: 600; color: var(--brass); display: inline-flex; align-items: center; gap: var(--s2); transition: gap var(--t2); }
.card-white:hover .blog-more { gap: var(--s3); }

/* ── CTA BOX ─────────────────────────────────────────────────────────── */
.cta-box {
  background: var(--slate); border-radius: var(--r3); padding: var(--s9);
  position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brass), var(--brass-l), var(--brass)); }
.cta-box::after  { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(240,235,225,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(240,235,225,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }

/* ── LEGAL ───────────────────────────────────────────────────────────── */
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--ink); margin: var(--s9) 0 var(--s4); border-bottom: 1px solid var(--b1); padding-bottom: var(--s3); }
.legal h2:first-child { margin-top: 0; }
.legal p  { font-size: 0.88rem; color: var(--slate-2); line-height: 1.85; margin-bottom: var(--s4); }
.legal ul { margin: 0 0 var(--s4) var(--s5); }
.legal li { font-size: 0.88rem; color: var(--slate-2); margin-bottom: var(--s2); list-style: disc; line-height: 1.75; }
.legal a  { color: var(--brass); }
.legal-meta { font-family: var(--mono); font-size: 0.64rem; color: var(--linen-5); margin-bottom: var(--s7); padding-bottom: var(--s6); border-bottom: 1px solid var(--b1); line-height: 1.8; }

/* ── ARTICLE ─────────────────────────────────────────────────────────── */
.art h2 { font-family: var(--display); font-weight: 600; font-size: 1.8rem; color: var(--ink); margin: var(--s9) 0 var(--s4); border-bottom: 1px solid var(--b1); padding-bottom: var(--s3); }
.art h2:first-child { margin-top: 0; }
.art p  { font-size: 0.95rem; color: var(--slate-2); line-height: 1.85; margin-bottom: var(--s5); }
.art ul { margin: 0 0 var(--s5) var(--s5); }
.art li { font-size: 0.95rem; color: var(--slate-2); margin-bottom: var(--s2); list-style: disc; line-height: 1.75; }
.art strong { color: var(--ink); }
.back { display: inline-flex; align-items: center; gap: var(--s3); font-weight: 600; font-size: 0.82rem; color: var(--linen-5); margin-bottom: var(--s7); transition: color var(--t1); }
.back:hover { color: var(--brass); }

/* ── AREA CHIP ───────────────────────────────────────────────────────── */
.area-chip { display: flex; align-items: center; gap: var(--s2); padding: 8px 16px; background: var(--linen-d); border: 1px solid var(--b1); border-radius: var(--r2); font-size: 0.84rem; color: var(--slate-2); transition: all var(--t2); }
.area-chip:hover { border-color: var(--bb); color: var(--brass); background: var(--brass-dim); }
.area-dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; opacity: 0.6; flex-shrink: 0; }

/* ── CI CONTACT ITEM ─────────────────────────────────────────────────── */
.ci { display: flex; align-items: flex-start; gap: var(--s4); padding: var(--s4) 0; border-bottom: 1px solid var(--b1); }
.ci:first-child { padding-top: 0; } .ci:last-child { border-bottom: none; }
.ci-icon { width: 40px; height: 40px; background: var(--brass-dim); border: 1px solid var(--bb); border-radius: var(--r2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-lbl { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--linen-5); margin-bottom: 3px; }
.ci-val { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.ci-sub { font-family: var(--mono); font-size: 0.61rem; color: var(--linen-5); margin-top: 2px; }

/* ── UTILITY ─────────────────────────────────────────────────────────── */
.tc { text-align: center; }
.mt5{margin-top:var(--s5)} .mt6{margin-top:var(--s6)} .mt7{margin-top:var(--s7)}
.mt8{margin-top:var(--s8)} .mt9{margin-top:var(--s9)}
.mb5{margin-bottom:var(--s5)} .mb6{margin-bottom:var(--s6)} .mb7{margin-bottom:var(--s7)}
.mb8{margin-bottom:var(--s8)} .mb9{margin-bottom:var(--s9)}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width:1100px) {
  .g4 { grid-template-columns: repeat(2,1fr); }
  .foot-g { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-col:nth-child(2) { border-right: none; }
  .stat-col { border-bottom: 1px solid rgba(255,255,255,0.09); }
  .stat-col:nth-child(3), .stat-col:nth-child(4) { border-bottom: none; }
}
@media (max-width:900px) { .g3 { grid-template-columns: 1fr 1fr; } }
@media (max-width:768px) {
  .wrap, .wrap-sm { padding: 0 var(--s5); }
  .nav-links, .nav-phone { display: none; }
  .nav-ham { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: var(--s3);
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(240,235,225,0.98); backdrop-filter: blur(20px);
    padding: var(--s7) var(--s5); align-items: flex-start;
    border-top: 1px solid var(--b1);
  }
  .em-strip + .nav .nav-links.open {
    top: 104px;
  }
  .nav-links.open a { font-size: 1.3rem; padding: var(--s4) 0; color: var(--ink); }
  .g2, .g3 { grid-template-columns: 1fr; }
  .foot-g { grid-template-columns: 1fr; }
  .sec { padding: var(--s9) 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width:480px) { .wrap { padding: 0 var(--s4); } }
