/* ============================================================
   ABDUL WAHEED CONSTRUCTION CO. — shared stylesheet
   Construction brand built on the Mano system's Archivo type.
   Palette: warm concrete, charcoal steel, safety amber.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family:"Archivo"; src:url("fonts/Archivo-Regular.ttf") format("truetype"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Archivo"; src:url("fonts/Archivo-Medium.ttf") format("truetype"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Archivo"; src:url("fonts/Archivo-SemiBold.ttf") format("truetype"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Archivo"; src:url("fonts/Archivo-Bold.ttf") format("truetype"); font-weight:700; font-style:normal; font-display:swap; }

:root{
  /* Brand */
  --ink:        #17150F;   /* warm near-black */
  --ink-2:      #24211A;   /* raised dark surface */
  --steel:      #2C2A24;   /* dark section bg */
  --amber:      #E08A1E;   /* safety amber — primary accent */
  --amber-deep: #B86A12;   /* hover/press */
  --amber-soft: #F7E6C8;   /* tints */

  --concrete:   #F3EFE8;   /* page bg */
  --concrete-2: #E9E2D5;   /* alt surface */
  --paper:      #FBFAF6;   /* card surface */
  --white:      #FFFFFF;

  --fg-1:       #1B1812;
  --fg-2:       #5C564A;
  --fg-3:       #8C8474;
  --fg-on-dark: #F3EFE8;
  --fg-on-dark-2:#B7B0A1;
  --line:       #DCD4C4;
  --line-dark:  rgba(243,239,232,.14);

  --ok:         #2E7D52;

  --font:       "Archivo","Helvetica Neue",Arial,sans-serif;
  --urdu:       "Noto Nastaliq Urdu","Archivo",serif;

  --maxw: 1200px;
  --r-s: 4px;  --r-m: 8px;  --r-l: 14px;

  --sh-1: 0 1px 2px rgba(23,21,15,.06), 0 1px 1px rgba(23,21,15,.04);
  --sh-2: 0 6px 18px rgba(23,21,15,.08), 0 2px 6px rgba(23,21,15,.05);
  --sh-3: 0 20px 50px rgba(23,21,15,.16), 0 6px 14px rgba(23,21,15,.08);

  --ease: cubic-bezier(.2,.8,.2,1);
  --t: 180ms var(--ease);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--fg-1);
  background:var(--concrete);
  font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* ---------- Type ---------- */
h1,h2,h3,h4{ margin:0; font-weight:700; letter-spacing:-.02em; line-height:1.04; }
.display{ font-size:clamp(40px,6.4vw,82px); font-weight:700; letter-spacing:-.03em; line-height:.98; }
h1{ font-size:clamp(34px,4.6vw,54px); }
h2{ font-size:clamp(28px,3.4vw,42px); }
h3{ font-size:22px; letter-spacing:-.01em; }
h4{ font-size:18px; }
p{ margin:0 0 1em; }
.lead{ font-size:clamp(18px,1.4vw,21px); color:var(--fg-2); line-height:1.55; }
.small{ font-size:14px; }

.ur{ font-family:var(--urdu); direction:rtl; line-height:2.1; font-weight:400; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--amber-deep);
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--amber); display:inline-block; }
.eyebrow.on-dark{ color:var(--amber); }
.tnum{ font-variant-numeric:tabular-nums; }

/* ---------- Layout ---------- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.section{ padding:clamp(64px,9vw,120px) 0; }
.section.tight{ padding:clamp(48px,6vw,80px) 0; }
.section-dark{ background:var(--steel); color:var(--fg-on-dark); }
.section-dark h1,.section-dark h2,.section-dark h3{ color:var(--white); }
.section-ink{ background:var(--ink); color:var(--fg-on-dark); }
.section-alt{ background:var(--concrete-2); }
.center{ text-align:center; }
.grid{ display:grid; gap:24px; }

.sec-head{ max-width:720px; margin-bottom:48px; }
.sec-head.center{ margin-inline:auto; }
.sec-head p{ margin-top:16px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:600; font-size:15.5px; letter-spacing:.01em;
  padding:15px 26px; border:0; border-radius:var(--r-m); cursor:pointer;
  transition:transform var(--t), background var(--t), box-shadow var(--t), color var(--t);
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--amber); color:var(--ink); box-shadow:var(--sh-1); }
.btn-primary:hover{ background:var(--amber-deep); color:var(--white); transform:translateY(-2px); box-shadow:var(--sh-2); }
.btn-dark{ background:var(--ink); color:var(--fg-on-dark); }
.btn-dark:hover{ background:var(--ink-2); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--fg-1); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.btn-ghost.on-dark{ color:var(--white); border-color:var(--line-dark); }
.btn-ghost.on-dark:hover{ border-color:var(--white); background:rgba(255,255,255,.06); }
.btn-lg{ padding:18px 32px; font-size:16.5px; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(243,239,232,.86); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; gap:28px; height:74px; }
.brand{ display:flex; align-items:center; gap:13px; margin-right:auto; }
.badge{
  width:46px; height:46px; flex:none; background:var(--ink); color:var(--white);
  display:grid; place-items:center; font-weight:700; font-size:18px; letter-spacing:.02em;
  position:relative; border-radius:3px;
}
.badge::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:5px; background:var(--amber); }
.brand-name{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name b{ font-size:16.5px; font-weight:700; letter-spacing:.02em; }
.brand-name span{ font-size:10.5px; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--fg-3); }
.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-links a{
  padding:9px 13px; font-size:15px; font-weight:500; color:var(--fg-2);
  border-radius:var(--r-m); transition:color var(--t), background var(--t);
}
.nav-links a:hover{ color:var(--ink); background:rgba(23,21,15,.05); }
.nav-links a.active{ color:var(--ink); font-weight:600; }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:8px; color:var(--ink); }
.nav-toggle svg{ width:26px; height:26px; }

@media(max-width:1080px){
  .nav-links{
    position:fixed; inset:74px 0 auto 0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--concrete); border-bottom:1px solid var(--line); padding:10px 20px 22px;
    transform:translateY(-130%); transition:transform .28s var(--ease); box-shadow:var(--sh-2);
  }
  .site-header.open .nav-links{ transform:translateY(0); }
  .nav-links a{ padding:14px 8px; font-size:17px; border-bottom:1px solid var(--line); border-radius:0; }
  .nav-toggle{ display:block; }
  .nav-cta .btn{ display:none; }
}

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:var(--fg-on-dark-2); padding:72px 0 32px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
.site-footer h4{ color:var(--white); font-size:13px; letter-spacing:.16em; text-transform:uppercase; margin-bottom:18px; }
.site-footer a{ color:var(--fg-on-dark-2); display:block; padding:5px 0; transition:color var(--t); }
.site-footer a:hover{ color:var(--amber); }
.foot-brand .brand-name b{ color:var(--white); }
.foot-brand p{ margin-top:18px; max-width:30ch; color:var(--fg-on-dark-2); font-size:15px; }
.foot-bottom{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  margin-top:56px; padding-top:24px; border-top:1px solid var(--line-dark); font-size:13.5px; color:var(--fg-3); }
@media(max-width:820px){ .foot-grid{ grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }

/* ---------- Cards / pieces ---------- */
.card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--r-l); padding:30px; transition:transform var(--t), box-shadow var(--t), border-color var(--t); }
.card.hover:hover{ transform:translateY(-4px); box-shadow:var(--sh-2); border-color:var(--concrete-2); }

.icon-chip{ width:52px; height:52px; border-radius:var(--r-m); display:grid; place-items:center;
  background:var(--amber-soft); color:var(--amber-deep); margin-bottom:20px; }
.icon-chip svg{ width:26px; height:26px; }

.stat{ }
.stat b{ display:block; font-size:clamp(44px,5vw,64px); font-weight:700; letter-spacing:-.03em; line-height:1; color:var(--amber); }
.stat span{ display:block; margin-top:10px; font-size:14.5px; color:var(--fg-on-dark-2); max-width:20ch; }

/* blueprint corner ticks */
.tick{ position:relative; }
.tick::before,.tick::after{ content:""; position:absolute; width:14px; height:14px; border:2px solid var(--amber); }
.tick::before{ top:-1px; left:-1px; border-right:0; border-bottom:0; }
.tick::after{ bottom:-1px; right:-1px; border-left:0; border-top:0; }

/* image slot defaults */
image-slot{
  --is-bg:var(--concrete-2);
  background:var(--concrete-2);
  border:1px dashed var(--line);
  border-radius:var(--r-l);
  color:var(--fg-3);
  font-family:var(--font); font-size:13px; font-weight:600; letter-spacing:.04em;
}

/* tags / chips */
.chip{ display:inline-flex; align-items:center; gap:7px; padding:7px 13px; border-radius:999px;
  background:var(--concrete-2); color:var(--fg-2); font-size:13.5px; font-weight:600; }
.chip.amber{ background:var(--amber-soft); color:var(--amber-deep); }

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Forms ---------- */
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13.5px; font-weight:600; color:var(--fg-2); margin-bottom:7px; letter-spacing:.01em; }
.field input,.field select,.field textarea{
  width:100%; padding:14px 15px; font-family:inherit; font-size:15.5px; color:var(--fg-1);
  background:var(--white); border:1.5px solid var(--line); border-radius:var(--r-m); transition:border var(--t), box-shadow var(--t);
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0; border-color:var(--amber); box-shadow:0 0 0 4px var(--amber-soft);
}
.field textarea{ resize:vertical; min-height:120px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:560px){ .field-row{ grid-template-columns:1fr; } }

/* ============================================================
   PAGE SECTIONS
   ============================================================ */

/* Hero */
.hero{ padding:clamp(48px,7vw,92px) 0 clamp(56px,8vw,104px); background:
  radial-gradient(1200px 480px at 88% -8%, var(--amber-soft), transparent 60%), var(--concrete); }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(36px,5vw,72px); align-items:center; }
.hero-ur{ font-size:clamp(22px,2.6vw,30px); color:var(--amber-deep); margin:-2px 0 18px; }
.hero-copy .lead{ max-width:48ch; margin-bottom:28px; }
.hero-trust{ display:flex; align-items:center; gap:22px; margin-top:40px; flex-wrap:wrap; }
.hero-trust b{ font-size:34px; font-weight:700; letter-spacing:-.03em; color:var(--ink); line-height:1; }
.hero-trust span{ display:block; font-size:13px; color:var(--fg-2); margin-top:4px; max-width:14ch; }
.hero-trust-div{ width:1px; height:42px; background:var(--line); }
.hero-media{ position:relative; }
.hero-tag{ position:absolute; left:-14px; bottom:24px; background:var(--white); box-shadow:var(--sh-3);
  border-radius:var(--r-m); padding:14px 18px; display:flex; align-items:center; gap:12px; max-width:300px; }
.hero-tag i{ color:var(--amber-deep); width:24px; height:24px; flex:none; }
.hero-tag b{ display:block; font-size:14.5px; }
.hero-tag span{ display:block; font-size:12.5px; color:var(--fg-2); }
@media(max-width:880px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-media{ max-width:440px; }
  .hero-tag{ left:auto; right:16px; }
}

/* Trust strip */
.trust-strip{ background:var(--ink); color:var(--fg-on-dark-2); }
.trust-row{ display:flex; flex-wrap:wrap; gap:14px 36px; padding:20px 28px; justify-content:space-between; }
.trust-item{ display:flex; align-items:center; gap:10px; font-size:14.5px; font-weight:500; }
.trust-item i{ width:19px; height:19px; color:var(--amber); }

/* Phases */
.phase-grid{ display:grid; grid-template-columns:1fr auto 1fr; gap:22px; align-items:stretch; }
.phase{ position:relative; padding-top:34px; }
.phase-no{ position:absolute; top:18px; right:24px; font-size:46px; font-weight:700; color:var(--concrete-2); letter-spacing:-.04em; line-height:1; }
.phase-ur{ color:var(--amber-deep); font-size:20px; margin:-6px 0 14px; }
.phase-arrow{ display:grid; place-items:center; color:var(--amber); }
.phase-arrow i{ width:34px; height:34px; }
.ticklist{ list-style:none; padding:0; margin:18px 0 0; display:grid; gap:10px; }
.ticklist li{ position:relative; padding-left:26px; font-size:15px; color:var(--fg-2); }
.ticklist li::before{ content:""; position:absolute; left:0; top:7px; width:14px; height:8px; border-left:2.5px solid var(--amber); border-bottom:2.5px solid var(--amber); transform:rotate(-45deg); }
@media(max-width:780px){ .phase-grid{ grid-template-columns:1fr; } .phase-arrow{ transform:rotate(90deg); } }

/* Services grid */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.svc{ display:block; }
.svc h4{ margin-bottom:2px; }
.svc-ur{ font-size:17px; color:var(--amber-deep); margin:0; }
@media(max-width:820px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .svc-grid{ grid-template-columns:1fr; } }

/* Stats */
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
@media(max-width:820px){ .stat-grid{ grid-template-columns:repeat(2,1fr); gap:36px; } }
@media(max-width:440px){ .stat-grid{ grid-template-columns:1fr; } }

/* Process split */
.process-split{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(36px,5vw,72px); align-items:center; }
.steps{ list-style:none; padding:0; margin:0; display:grid; gap:4px; counter-reset:s; }
.steps li{ display:flex; gap:20px; padding:22px 0; border-bottom:1px solid var(--line); }
.steps li:last-child{ border-bottom:0; }
.step-no{ width:46px; height:46px; flex:none; border-radius:50%; background:var(--ink); color:var(--amber);
  display:grid; place-items:center; font-weight:700; font-size:19px; }
.steps b{ font-size:18px; }
@media(max-width:780px){ .process-split{ grid-template-columns:1fr; } }

/* Work grid */
.work-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.work figcaption{ margin-top:14px; }
.work figcaption b{ display:block; font-size:17px; }
@media(max-width:820px){ .work-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .work-grid{ grid-template-columns:1fr; } }

/* Quote band */
.quote-band{ text-align:center; max-width:820px; margin-inline:auto; }
.quote-mark{ width:48px; height:48px; color:var(--amber); margin:0 auto 20px; }
.quote-band blockquote{ margin:0; font-size:clamp(22px,2.8vw,32px); font-weight:700; letter-spacing:-.02em; line-height:1.32; }
.quote-by{ margin:24px 0 18px; }
.quote-by b{ font-size:17px; }
.quote-by span{ display:block; font-size:14px; }

/* CTA band */
.cta-band{ background:var(--amber); }
.cta-band .lead{ color:rgba(23,21,15,.72) !important; }
.cta-inner{ display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:center; padding:clamp(48px,6vw,80px) 28px; }
.cta-band h2{ color:var(--ink); }
.cta-ur{ font-size:24px; color:var(--ink-2); margin:6px 0 14px; }
.cta-actions{ display:flex; flex-direction:column; gap:14px; align-items:flex-start; }
.cta-band .btn-ghost.on-dark{ color:var(--ink); border-color:rgba(23,21,15,.28); }
.cta-band .btn-ghost.on-dark:hover{ border-color:var(--ink); background:rgba(23,21,15,.06); }
@media(max-width:760px){ .cta-inner{ grid-template-columns:1fr; gap:28px; } .cta-actions{ width:100%; } .cta-actions .btn{ width:100%; } }

.ic-sm{ width:15px; height:15px; display:inline-block; vertical-align:-2px; margin-right:6px; }

/* ---------- Inner page header ---------- */
.page-head{ padding:clamp(54px,7vw,92px) 0 clamp(36px,5vw,56px);
  background:radial-gradient(900px 340px at 90% -25%, var(--amber-soft), transparent 60%), var(--concrete);
  border-bottom:1px solid var(--line); }
.page-head .lead{ max-width:62ch; margin-top:16px; }
.page-head .ur{ font-size:clamp(20px,2.4vw,26px); color:var(--amber-deep); margin-top:8px; }
.crumb{ font-size:13px; color:var(--fg-3); margin-bottom:18px; display:flex; gap:8px; align-items:center; }
.crumb a:hover{ color:var(--ink); }
.crumb i{ width:14px; height:14px; }

/* ---------- Feature row (image + text) ---------- */
.feature{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px); align-items:center; }
.feature + .feature{ margin-top:clamp(48px,6vw,80px); }
.feature-media{ position:relative; }
.feature.rev .feature-media{ order:-1; }
.feature h3{ font-size:clamp(24px,2.6vw,32px); }
.feature .ur{ font-size:22px; color:var(--amber-deep); margin:-2px 0 14px; }
@media(max-width:820px){ .feature{ grid-template-columns:1fr; } .feature.rev .feature-media{ order:0; } }

/* ---------- Trade grid ---------- */
.trade-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.trade .ur{ font-size:18px; color:var(--amber-deep); margin:0 0 12px; }
.trade .ticklist{ margin-top:14px; }
@media(max-width:720px){ .trade-grid{ grid-template-columns:1fr; } }

/* ---------- Process timeline ---------- */
.timeline{ position:relative; max-width:840px; margin:0 auto; padding-left:8px; }
.timeline::before{ content:""; position:absolute; left:31px; top:14px; bottom:14px; width:2px; background:var(--line); }
.tl-step{ position:relative; display:grid; grid-template-columns:64px 1fr; gap:24px; padding:18px 0; }
.tl-dot{ width:64px; height:64px; border-radius:50%; background:var(--ink); color:var(--amber);
  display:grid; place-items:center; font-weight:700; font-size:24px; z-index:1; box-shadow:0 0 0 8px var(--concrete); }
.section-alt .tl-dot{ box-shadow:0 0 0 8px var(--concrete-2); }
.tl-body h3{ margin-bottom:4px; }
.tl-body .ur{ color:var(--amber-deep); font-size:18px; margin:0 0 8px; }
.tl-dur{ display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; color:var(--fg-3); margin-top:10px; }
.tl-dur i{ width:15px; height:15px; }
@media(max-width:520px){ .tl-step{ grid-template-columns:48px 1fr; gap:16px; } .timeline::before{ left:23px; } .tl-dot{ width:48px; height:48px; font-size:19px; } }

/* ---------- Portfolio gallery ---------- */
.filter-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.gallery figcaption{ margin-top:12px; }
.gallery figcaption b{ display:block; font-size:16.5px; }
.gallery .chip{ margin-top:8px; }
@media(max-width:820px){ .gallery{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .gallery{ grid-template-columns:1fr; } }

/* ---------- Team ---------- */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.team-card{ text-align:center; }
.team-card image-slot{ width:100%; aspect-ratio:1/1; margin-bottom:14px; }
.team-card b{ display:block; font-size:16px; }
.team-card span{ font-size:13.5px; color:var(--fg-2); }
@media(max-width:820px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:420px){ .team-grid{ grid-template-columns:1fr; } }

.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:780px){ .value-grid{ grid-template-columns:1fr; } }

/* ---------- Testimonials ---------- */
.review-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.review .stars{ display:flex; gap:3px; color:var(--amber); margin-bottom:14px; }
.review .stars i{ width:18px; height:18px; fill:var(--amber); }
.review p{ font-size:17px; line-height:1.5; }
.review .by{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.review .av{ width:44px; height:44px; border-radius:50%; background:var(--ink); color:var(--amber);
  display:grid; place-items:center; font-weight:700; flex:none; }
.review .by b{ display:block; font-size:15px; }
.review .by span{ font-size:13px; color:var(--fg-2); }
@media(max-width:720px){ .review-grid{ grid-template-columns:1fr; } }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(36px,5vw,64px); align-items:start; }
.contact-card{ display:flex; gap:16px; padding:22px 0; border-bottom:1px solid var(--line); }
.contact-card:last-child{ border-bottom:0; }
.contact-card .ci{ width:48px; height:48px; flex:none; border-radius:var(--r-m); background:var(--amber-soft);
  color:var(--amber-deep); display:grid; place-items:center; }
.contact-card .ci i{ width:23px; height:23px; }
.contact-card b{ display:block; font-size:16px; margin-bottom:3px; }
.contact-card a{ color:var(--fg-2); }
.contact-card a:hover{ color:var(--amber-deep); }
.form-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--r-l); padding:clamp(24px,3vw,38px); box-shadow:var(--sh-1); }
.form-note{ display:flex; gap:10px; align-items:flex-start; font-size:13px; color:var(--fg-3); margin-top:14px; }
.form-note i{ width:16px; height:16px; flex:none; margin-top:1px; }
.form-success{ display:none; text-align:center; padding:28px 12px; }
.form-success.show{ display:block; }
.form-success .ok-ic{ width:64px; height:64px; border-radius:50%; background:var(--amber-soft); color:var(--amber-deep); display:grid; place-items:center; margin:0 auto 18px; }
.form-success .ok-ic i{ width:32px; height:32px; }
@media(max-width:820px){ .contact-grid{ grid-template-columns:1fr; } }

/* utilities */
.muted{ color:var(--fg-2); }
.amber-text{ color:var(--amber-deep); }
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.rule{ height:1px; background:var(--line); border:0; margin:0; }
.flex{ display:flex; } .center-y{ align-items:center; } .gap-12{ gap:12px; } .gap-16{ gap:16px; }
.wrap-btns{ display:flex; flex-wrap:wrap; gap:14px; }
