/* ═══════════════════════════════════════════════════════════
   ENCO CONSTRUCTION INC. — style.css  v4
   Partagé par toutes les pages
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Lora:ital,wght@0,400;1,400&family=Barlow:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─── */
:root {
  --night:   #07101E;
  --navy:    #0D1C38;
  --marine:  #1A3A6E;
  --steel:   #2A5BA8;
  --steel-l: #5A9ED4;
  --gold:    #C8882A;
  --gold-l:  #E09830;
  --white:   #FFFFFF;
  --off:     #EEF1F6;
  --muted:   rgba(238,241,246,.60);
  --dim:     rgba(238,241,246,.36);
  --bord:    rgba(255,255,255,.07);
  --bord-m:  rgba(255,255,255,.14);
  --bord-g:  rgba(200,136,42,.28);
  --FD: 'Barlow Condensed', sans-serif;
  --FB: 'Barlow', sans-serif;
  --FS: 'Lora', serif;
  --radius: 6px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--FB); background: var(--night); color: var(--off); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--FB); }

/* ─── LAYOUT ─── */
.inner  { max-width: 1200px; margin: 0 auto; }
.pad    { padding: 88px 5vw; }
.pad-sm { padding: 56px 5vw; }
section { position: relative; z-index: 1; }

/* ─── BACKGROUNDS ─── */
.bg-night    { background: var(--night); }
.bg-navy     { background: var(--navy); }
.bg-fade-dn  { background: linear-gradient(180deg, var(--night) 0%, var(--navy) 100%); }
.bg-fade-up  { background: linear-gradient(180deg, var(--navy) 0%, var(--night) 100%); }
.border-t    { border-top: 1px solid var(--bord); }
.border-b    { border-bottom: 1px solid var(--bord); }
.border-y    { border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  height: 68px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,16,30,.90); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bord); transition: all .3s;
}
nav.scrolled { background: rgba(7,16,30,.99); border-bottom-color: var(--bord-g); }

.nav-left  { display: flex; align-items: center; gap: 14px; }
.nav-logo  { display: flex; align-items: center; }
.nav-logo img {
  height: 46px; width: auto;
  filter: drop-shadow(0 0 8px rgba(200,136,42,.18));
  transition: filter .3s;
}
nav.scrolled .nav-logo img { filter: drop-shadow(0 0 12px rgba(200,136,42,.3)); }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; padding: 8px 12px;
  border-radius: var(--radius); transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px;
  height: 1px; background: var(--gold);
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--muted); font-size: 13px; font-weight: 500;
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 14px; height: 14px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.nav-cta {
  background: var(--gold); color: var(--night) !important;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: var(--radius); transition: background .2s, transform .1s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--off); border-radius: 2px; transition: all .3s; }
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(7,16,30,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bord-g); padding: 16px 5vw 24px; z-index: 199;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 0; border-bottom: 1px solid var(--bord); transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }
.nav-mobile .nm-phone { color: var(--steel-l) !important; letter-spacing: 0; font-size: 16px; font-weight: 400; text-transform: none; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--night);
  font-family: var(--FB); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: none; transition: all .2s; white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,136,42,.25); }
.btn-gold svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--off); font-family: var(--FB); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid var(--bord-m); transition: all .2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }

.btn-phone {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--white); font-family: var(--FB); font-size: 14px; font-weight: 500;
  padding: 12px 20px; border-radius: var(--radius);
  border: 1px solid rgba(200,136,42,.4); transition: all .2s;
  background: rgba(200,136,42,.08);
}
.btn-phone:hover { background: rgba(200,136,42,.16); border-color: rgba(200,136,42,.7); }
.btn-phone svg { flex-shrink: 0; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── EYEBROW ─── */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

/* ─── HEADINGS ─── */
h2 {
  font-family: var(--FD); font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 700; line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white);
}
h2 em { font-family: var(--FS); font-style: italic; color: var(--gold); font-size: .85em; text-transform: none; font-weight: 400; letter-spacing: 0; }
h3 { font-family: var(--FD); font-size: 20px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: 9px; line-height: 1.2; }
.slead { font-size: clamp(14px, 1.4vw, 16px); font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 540px; margin-top: 14px; }

/* ─── PAGE HERO (pages intérieures) ─── */
.page-hero { padding: 148px 5vw 72px; background: linear-gradient(135deg, var(--night) 0%, var(--navy) 100%); position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(42,91,168,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(42,91,168,.035) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero-mono {
  position: absolute; right: 4vw; top: 50%; transform: translateY(-50%);
  font-family: var(--FD); font-size: clamp(140px, 18vw, 280px);
  font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(42,91,168,.07);
  pointer-events: none; user-select: none; line-height: 1; letter-spacing: -.04em;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--FD); font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800; line-height: .92; letter-spacing: -.02em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.page-hero h1 em { color: transparent; -webkit-text-stroke: 2px var(--gold); font-style: normal; }
.page-hero-desc { font-size: clamp(14px, 1.5vw, 17px); font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 600px; }

/* ─── SERVICE CARDS ─── */
.sc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--bord); border: 1px solid var(--bord); border-radius: 8px; overflow: hidden; }
.sc { background: var(--navy); padding: 36px 28px; position: relative; transition: background .3s; }
.sc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.sc:hover { background: rgba(26,58,110,.45); }
.sc:hover::before { transform: scaleX(1); }
.sc-num { font-family: var(--FD); font-size: 38px; font-weight: 800; color: rgba(42,91,168,.16); line-height: 1; margin-bottom: 14px; letter-spacing: -.03em; transition: color .3s; }
.sc:hover .sc-num { color: rgba(200,136,42,.18); }
.sc-ico { width: 40px; height: 40px; background: rgba(200,136,42,.09); border: 1px solid rgba(200,136,42,.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sc-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sc-desc { font-size: 13px; font-weight: 300; color: var(--dim); line-height: 1.75; }

/* ─── PROJECT CARDS ─── */
.pc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pc { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--bord); aspect-ratio: 4/3; transition: transform .3s, border-color .3s; cursor: pointer; background: var(--navy); }
.pc:hover { transform: translateY(-4px); border-color: var(--bord-g); }
.pc img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .3s, transform .4s; }
.pc:hover img { opacity: .88; transform: scale(1.05); }
.pc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,30,.94) 0%, rgba(7,16,30,.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.pc-tag { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.pc-title { font-family: var(--FD); font-size: 17px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1.2; }
.pc-loc { font-size: 11px; color: var(--dim); margin-top: 4px; }
.pc-note { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 300; color: var(--dim); margin-top: 20px; }
.pc-note svg { flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.tc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tc { background: rgba(13,28,56,.5); border: 1px solid var(--bord); border-radius: 8px; padding: 28px; position: relative; transition: border-color .3s; }
.tc:hover { border-color: var(--bord-g); }
.tc::before { content: '"'; font-family: var(--FS); font-size: 60px; color: var(--gold); opacity: .14; position: absolute; top: 10px; left: 20px; line-height: 1; }
.tstars { display: flex; gap: 3px; margin-bottom: 10px; }
.tstars span { color: var(--gold); font-size: 13px; }
.ttext { font-family: var(--FS); font-style: italic; font-size: 14px; color: var(--off); line-height: 1.75; margin-bottom: 18px; }
.tauthor { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--bord); padding-top: 15px; }
.tav { width: 36px; height: 36px; border-radius: 50%; background: rgba(42,91,168,.26); border: 1px solid rgba(42,91,168,.4); display: flex; align-items: center; justify-content: center; font-family: var(--FD); font-size: 13px; font-weight: 700; color: var(--steel-l); flex-shrink: 0; }
.tname { font-size: 13px; font-weight: 600; color: var(--white); }
.trole { font-size: 12px; color: var(--dim); margin-top: 2px; }

/* ─── PROCESS STEPS ─── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--bord); border-radius: 8px; overflow: hidden; }
.pstep { background: var(--navy); padding: 32px 24px; border-right: 1px solid var(--bord); position: relative; transition: background .3s; }
.pstep:last-child { border-right: none; }
.pstep:hover { background: rgba(26,58,110,.4); }
.pstep::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.pstep:hover::before { transform: scaleX(1); }
.pnum { font-family: var(--FD); font-size: 44px; font-weight: 800; color: rgba(42,91,168,.15); line-height: 1; margin-bottom: 14px; letter-spacing: -.03em; }
.pstep-title { font-family: var(--FD); font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.pstep-desc { font-size: 13px; font-weight: 300; color: var(--dim); line-height: 1.7; }

/* ─── CONTACT CARDS ─── */
.cc { background: rgba(13,28,56,.5); border: 1px solid var(--bord); border-radius: 8px; padding: 22px 24px; transition: border-color .2s; }
.cc:hover { border-color: var(--bord-g); }
.cc-name { font-family: var(--FD); font-size: 18px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1; }
.cc-role { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; margin-bottom: 13px; }
.cc-rows { display: flex; flex-direction: column; gap: 8px; }
.cc-row { display: flex; align-items: center; gap: 11px; }
.cc-lbl { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); min-width: 68px; }
.cc-val { font-size: 13px; color: var(--off); font-weight: 300; }
.cc-val a { color: var(--steel-l); transition: color .2s; }
.cc-val a:hover { color: var(--gold); }
.cc-foot { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--bord); font-size: 12px; color: var(--dim); font-weight: 300; }

/* ─── INFO BOXES ─── */
.ibox { background: rgba(26,58,110,.16); border: 1px solid rgba(42,91,168,.18); border-radius: var(--radius); padding: 18px 22px; }
.ibox-lbl { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: 7px; }
.ibox-val { font-size: 14px; color: var(--off); font-weight: 300; line-height: 1.75; }
.rbq-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 10px rgba(200,136,42,.5); display: inline-block; }

/* ─── FORM ─── */
.form-wrap { background: rgba(13,28,56,.4); border: 1px solid var(--bord); border-radius: 10px; padding: 36px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fg label { font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--dim); }
.fg .req { color: var(--gold); margin-left: 2px; }
.fg input, .fg select, .fg textarea {
  background: rgba(26,58,110,.16); border: 1px solid rgba(42,91,168,.2);
  border-radius: var(--radius); color: var(--white); font-family: var(--FB);
  font-size: 14px; font-weight: 300; padding: 11px 14px; outline: none;
  transition: border-color .2s, background .2s; width: 100%; -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(238,241,246,.18); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(200,136,42,.45); background: rgba(26,58,110,.28); }
.fg select option { background: #0D1C38; color: #fff; }
.fg textarea { resize: vertical; min-height: 108px; }
.fg .ferr { display: none; font-size: 11px; color: #E24B4A; margin-top: 2px; }
.fg.has-err input, .fg.has-err select, .fg.has-err textarea { border-color: rgba(226,75,74,.5); }
.fg.has-err .ferr { display: block; }
.uarea { border: 2px dashed rgba(42,91,168,.26); border-radius: var(--radius); padding: 22px 18px; text-align: center; cursor: pointer; transition: all .2s; position: relative; background: rgba(26,58,110,.08); }
.uarea:hover, .uarea.over { border-color: rgba(200,136,42,.45); background: rgba(200,136,42,.05); }
.uarea input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.uico { width: 36px; height: 36px; margin: 0 auto 8px; background: rgba(42,91,168,.16); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.uico svg { width: 16px; height: 16px; fill: none; stroke: var(--steel-l); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.utitle { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.usub { font-size: 11px; color: var(--dim); }
.usub span { color: var(--steel-l); }
.flist { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 7px; }
.fchip { display: inline-flex; align-items: center; gap: 6px; background: rgba(42,91,168,.18); border: 1px solid rgba(42,91,168,.28); border-radius: 3px; padding: 4px 9px; font-size: 11px; color: var(--steel-l); }
.fchip-rm { cursor: pointer; color: var(--dim); font-size: 12px; transition: color .2s; }
.fchip-rm:hover { color: #E24B4A; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 15px 0 18px; padding: 14px; background: rgba(26,58,110,.12); border: 1px solid var(--bord); border-radius: var(--radius); }
.consent input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.consent-txt { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.consent-txt strong { color: var(--off); font-weight: 500; }
.btn-submit { background: var(--gold); color: var(--night); border: none; font-family: var(--FB); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 15px 28px; border-radius: var(--radius); width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; transition: all .2s; cursor: pointer; }
.btn-submit:hover:not(:disabled) { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,136,42,.2); }
.btn-submit:disabled { opacity: .4; cursor: not-allowed; }
.form-err { display: none; background: rgba(226,75,74,.1); border: 1px solid rgba(226,75,74,.28); border-radius: var(--radius); padding: 11px 15px; font-size: 13px; color: #E24B4A; margin-top: 10px; }
.form-ok { display: none; text-align: center; padding: 40px 20px; }
.form-ok-ico { width: 52px; height: 52px; margin: 0 auto 14px; background: rgba(200,136,42,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-ok-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-ok h4 { font-family: var(--FD); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.form-ok p { font-size: 14px; color: var(--muted); font-weight: 300; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--bord); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; }
.faq-qt { font-family: var(--FD); font-size: 16px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--white); line-height: 1.3; transition: color .2s; }
.faq-q:hover .faq-qt { color: var(--gold); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(42,91,168,.16); border: 1px solid rgba(42,91,168,.26); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; }
.faq-icon svg { width: 10px; height: 10px; fill: none; stroke: var(--steel-l); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.faq-item.open .faq-icon { background: rgba(200,136,42,.12); border-color: rgba(200,136,42,.28); }
.faq-item.open .faq-icon svg { stroke: var(--gold); transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-ans { max-height: 220px; }
.faq-ans p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; padding-bottom: 18px; }

/* ─── ZONES ─── */
.ztags { display: flex; flex-wrap: wrap; gap: 8px; }
.ztag { padding: 8px 15px; background: rgba(26,58,110,.24); border: 1px solid rgba(42,91,168,.2); border-radius: 3px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--off); transition: all .2s; cursor: default; }
.ztag:hover { background: rgba(42,91,168,.3); border-color: rgba(42,91,168,.5); }

/* ─── FOOTER ─── */
footer { background: var(--night); border-top: 1px solid var(--bord); padding: 52px 5vw 28px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; padding-bottom: 38px; border-bottom: 1px solid var(--bord); }
.ft-brand img {
  height: 52px; width: auto; margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(200,136,42,.15));
}
.ft-tag { font-family: var(--FD); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ft-desc { font-size: 13px; font-weight: 300; color: var(--dim); line-height: 1.7; max-width: 300px; }
.ft-ctitle { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 13px; color: var(--muted); transition: color .2s; font-weight: 300; }
.ft-links a:hover { color: var(--gold); }
.ft-bot { padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ft-copy { font-size: 12px; color: var(--dim); font-weight: 300; }
.ft-rbq { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); font-weight: 500; display: flex; align-items: center; gap: 7px; }
.ft-rbq::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; } .rd4 { transition-delay: .4s; }

/* ─── UTILS ─── */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-12 { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.body-p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.82; border-left: 2px solid var(--bord-g); padding-left: 18px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .sc-grid { grid-template-columns: repeat(2,1fr); }
  .pc-grid { grid-template-columns: repeat(2,1fr); }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .proc-grid .pstep:nth-child(2) { border-right: none; }
  .proc-grid .pstep:nth-child(3) { border-top: 1px solid var(--bord); }
  .proc-grid .pstep:nth-child(4) { border-right: none; border-top: 1px solid var(--bord); }
  .tc-grid { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1/-1; }
  .grid-2 { gap: 40px; }
  .grid-12 { gap: 48px; }
}

@media (max-width: 768px) {
  .pad { padding: 64px 4vw; }
  .pad-sm { padding: 44px 4vw; }
  nav { padding: 0 4vw; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 38px; }
  .page-hero { padding: 120px 4vw 56px; }
  .page-hero-mono { display: none; }
  .sc-grid { grid-template-columns: 1fr; }
  .pc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .tc-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-12 { grid-template-columns: 1fr; gap: 32px; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; align-items: flex-start; }
  .frow { grid-template-columns: 1fr; }
  .form-wrap { padding: 22px 16px; }
  h2 { font-size: clamp(28px, 7vw, 44px); }
}

@media (max-width: 480px) {
  .pc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-grid .pstep { border-right: none; border-top: 1px solid var(--bord); }
  .proc-grid .pstep:first-child { border-top: none; }
}
