/* ===========================================================
   Afrina Beauty & Henna Center — shared stylesheet
   Henna-heritage palette: terracotta · rose-clay · olive-gold
   =========================================================== */

:root{
  --bg:        #FBF6F0;
  --bg-2:      #F4E9DF;
  --surface:   #FFFFFF;
  --text:      #3A2A24;
  --muted:     #8A766C;
  --primary:   #A85436;
  --primary-d: #8C4226;
  --secondary: #D49079;
  --accent:    #9A9356;
  --border:    #ECDFD4;
  --focus:     #A85436;
  --ink:       #2A1D18;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --r-sm: 8px;
  --r:    16px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(58,42,36,.06);
  --shadow:    0 14px 40px -18px rgba(58,42,36,.28);
  --shadow-lg: 0 40px 90px -40px rgba(58,42,36,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; scroll-padding-top:84px; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; line-height:1.05; margin:0; color:var(--ink); letter-spacing:-.01em; }
p{ margin:0; text-wrap:pretty; }

::selection{ background:var(--secondary); color:#fff; }
:focus-visible{ outline:3px solid var(--focus); outline-offset:3px; border-radius:4px; }

/* ---------- layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.section{ padding:96px 0; }
.section--tight{ padding:64px 0; }
.bg-soft{ background:var(--bg-2); }
.bg-ink{ background:var(--ink); color:#F6ECE4; }
.bg-ink h1,.bg-ink h2,.bg-ink h3{ color:#fff; }

.eyebrow{
  font-family:var(--sans);
  text-transform:uppercase;
  letter-spacing:.32em;
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  display:inline-flex; align-items:center; gap:12px;
  margin:0 0 18px;
}
.eyebrow::before{ content:""; width:26px; height:1.5px; background:var(--accent); display:inline-block; }
.eyebrow--center{ justify-content:center; }
.eyebrow--center::after{ content:""; width:26px; height:1.5px; background:var(--accent); display:inline-block; }
.bg-ink .eyebrow{ color:var(--secondary); }

.h-display{ font-size:clamp(2.6rem,6vw,4.6rem); }
.h-1{ font-size:clamp(2.1rem,4.6vw,3.4rem); }
.h-2{ font-size:clamp(1.7rem,3vw,2.4rem); }
.lead{ font-size:clamp(1.05rem,1.4vw,1.22rem); color:var(--muted); }
.section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }
.section-head .lead{ margin-top:16px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--sans); font-weight:800; font-size:.95rem; letter-spacing:.01em;
  padding:15px 28px; border-radius:999px; border:1.5px solid transparent;
  min-height:48px; transition:transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn--primary{ background:var(--primary); color:#fff; box-shadow:var(--shadow); }
.btn--primary:hover{ background:var(--primary-d); }
.btn--wa{ background:#1faf54; color:#fff; box-shadow:0 14px 30px -16px rgba(31,175,84,.8); }
.btn--wa:hover{ background:#178f44; }
.btn--ghost{ background:transparent; color:var(--text); border-color:var(--border); }
.btn--ghost:hover{ border-color:var(--primary); color:var(--primary); }
.btn--light{ background:#fff; color:var(--ink); }
.btn--outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn--outline-light:hover{ background:rgba(255,255,255,.12); border-color:#fff; }
.btn--lg{ padding:18px 34px; font-size:1rem; }
.btn--block{ width:100%; }

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(251,246,240,.82); backdrop-filter:blur(14px);
  border-bottom:1px solid transparent; transition:border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled{ border-color:var(--border); box-shadow:var(--shadow-sm); }
.nav{ display:flex; align-items:center; gap:28px; height:76px; }
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; }
.brand img{ height:50px; width:auto; }
.brand .brand-txt{ display:flex; flex-direction:column; line-height:1; }
.brand .brand-name{ font-family:var(--serif); font-weight:700; font-size:1.45rem; color:var(--primary); letter-spacing:.04em; }
.brand .brand-sub{ font-size:9.5px; letter-spacing:.34em; text-transform:uppercase; color:var(--muted); margin-top:3px; }
.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  font-weight:700; font-size:.92rem; padding:9px 14px; border-radius:999px; color:var(--text);
  transition:color .2s, background .2s;
}
.nav-links a:hover{ color:var(--primary); background:rgba(168,84,54,.07); }
.nav-links a.active{ color:var(--primary); }
.nav-cta{ display:flex; align-items:center; gap:10px; }
.hamburger{
  display:none; width:46px; height:46px; border:1px solid var(--border); border-radius:12px;
  background:var(--surface); align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.hamburger span{ width:20px; height:2px; background:var(--ink); border-radius:2px; transition:.3s; }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer{
  position:fixed; inset:0; z-index:190; background:rgba(42,29,24,.4);
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.drawer.open{ opacity:1; pointer-events:auto; }
.drawer-panel{
  position:absolute; top:0; right:0; height:100%; width:min(82vw,360px);
  background:var(--bg); padding:96px 28px 32px; transform:translateX(100%);
  transition:transform .38s var(--ease); display:flex; flex-direction:column; gap:6px;
  box-shadow:var(--shadow-lg); overflow-y:auto;
}
.drawer.open .drawer-panel{ transform:translateX(0); }
.drawer-panel a{ font-family:var(--serif); font-size:1.7rem; padding:11px 0; border-bottom:1px solid var(--border); color:var(--ink); }
.drawer-panel a:last-of-type{ border-bottom:none; }
.drawer-actions{ margin-top:auto; display:flex; flex-direction:column; gap:12px; padding-top:24px; }

/* ---------- hero ---------- */
.hero{ padding:140px 0 90px; position:relative; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
.hero h1{ margin-bottom:24px; }
.hero .lead{ max-width:30em; margin-bottom:34px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; }
.hero-media{ position:relative; }
.hero-media .frame{
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  aspect-ratio:4/5; position:relative;
}
.hero-media .frame img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; bottom:-26px; left:-26px; background:var(--surface);
  border:1px solid var(--border); border-radius:var(--r); padding:18px 22px;
  box-shadow:var(--shadow); display:flex; align-items:center; gap:14px; max-width:260px;
}
.hero-badge .num{ font-family:var(--serif); font-size:2.4rem; color:var(--primary); line-height:1; }
.hero-badge .lbl{ font-size:.82rem; color:var(--muted); line-height:1.3; }
.hero-deco{
  position:absolute; top:-30px; right:-20px; width:120px; height:120px; opacity:.5; z-index:-1;
}
.trust-strip{
  display:flex; flex-wrap:wrap; gap:14px 36px; margin-top:46px; padding-top:30px;
  border-top:1px solid var(--border);
}
.trust-strip .item{ display:flex; align-items:center; gap:11px; font-size:.92rem; font-weight:700; color:var(--text); }
.trust-strip .item svg{ width:22px; height:22px; color:var(--primary); flex:none; }

/* ---------- service grid ---------- */
.grid{ display:grid; gap:24px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

.service-card{
  position:relative; border-radius:var(--r); overflow:hidden; background:var(--ink);
  aspect-ratio:3/4; box-shadow:var(--shadow); display:block;
  isolation:isolate;
}
.service-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .8s var(--ease); z-index:-1;
}
.service-card:hover img{ transform:scale(1.07); }
.service-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(28,18,14,.92) 0%, rgba(28,18,14,.35) 45%, rgba(28,18,14,0) 75%);
}
.service-card .body{ position:absolute; left:0; right:0; bottom:0; padding:24px; z-index:2; }
.service-card h3{ color:#fff; font-size:1.55rem; margin-bottom:6px; }
.service-card p{ color:rgba(255,255,255,.82); font-size:.9rem; }
.service-card .go{
  margin-top:14px; display:inline-flex; align-items:center; gap:8px; font-weight:800;
  font-size:.82rem; text-transform:uppercase; letter-spacing:.14em; color:#fff;
  opacity:.9; transition:gap .25s, opacity .2s;
}
.service-card:hover .go{ gap:14px; opacity:1; }
.service-card .go svg{ width:15px; height:15px; }

/* ---------- feature split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.split--rev .split-media{ order:-1; }
.split-media{ position:relative; }
.split-media img{ border-radius:var(--r-lg); width:100%; box-shadow:var(--shadow-lg); object-fit:cover; }
.split-media .stack{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.split-media .stack img{ box-shadow:var(--shadow); }
.split-media .stack img:first-child{ margin-top:32px; }
.split-body h2{ margin-bottom:20px; }
.split-body .lead{ margin-bottom:24px; }

/* ---------- bundle cards ---------- */
.bundle{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:30px; box-shadow:var(--shadow-sm); transition:transform .3s var(--ease), box-shadow .3s, border-color .3s;
  display:flex; flex-direction:column; height:100%;
}
.bundle:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--secondary); }
.bundle .tag{
  align-self:flex-start; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.14em;
  color:var(--primary); background:rgba(168,84,54,.09); padding:6px 12px; border-radius:999px; margin-bottom:18px;
}
.bundle h3{ font-size:1.7rem; margin-bottom:10px; }
.bundle p{ color:var(--muted); font-size:.95rem; margin-bottom:18px; }
.bundle ul{ list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:9px; }
.bundle li{ display:flex; align-items:flex-start; gap:10px; font-size:.93rem; }
.bundle li svg{ width:18px; height:18px; color:var(--accent); flex:none; margin-top:2px; }
.bundle .price-note{ font-size:.82rem; color:var(--muted); margin-bottom:18px; font-style:italic; }
.bundle .btn{ margin-top:auto; }

/* ---------- branch cards ---------- */
.branch-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .3s var(--ease), box-shadow .3s; display:flex; flex-direction:column;
}
.branch-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.branch-card.lead-branch{ border-color:var(--primary); box-shadow:var(--shadow); }
.branch-card .pic{ aspect-ratio:16/10; position:relative; overflow:hidden; background:var(--bg-2); }
.branch-card .pic img{ width:100%; height:100%; object-fit:cover; }
.branch-card .flag{
  position:absolute; top:14px; left:14px; background:var(--primary); color:#fff;
  font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.12em; padding:6px 12px; border-radius:999px;
}
.branch-card .body{ padding:24px; display:flex; flex-direction:column; gap:8px; flex:1; }
.branch-card h3{ font-size:1.45rem; }
.branch-card .city{ font-size:.74rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--secondary); }
.branch-card .addr{ font-size:.92rem; color:var(--muted); display:flex; gap:9px; align-items:flex-start; }
.branch-card .addr svg{ width:17px; height:17px; flex:none; margin-top:3px; color:var(--accent); }
.branch-card .hours{ font-size:.86rem; color:var(--muted); display:flex; gap:9px; align-items:center; }
.branch-card .hours svg{ width:16px; height:16px; color:var(--accent); flex:none; }
.branch-card .actions{ display:flex; gap:10px; margin-top:14px; }
.branch-card .actions .btn{ flex:1; padding:12px 14px; font-size:.86rem; min-height:44px; }

/* ---------- founder ---------- */
.founder{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center; }
.founder-pic{ position:relative; }
.founder-pic img{ border-radius:var(--r-lg); width:100%; box-shadow:var(--shadow-lg); }
.founder blockquote{
  font-family:var(--serif); font-size:clamp(1.5rem,2.6vw,2.1rem); line-height:1.3; color:var(--ink);
  margin:0 0 22px; font-style:italic; font-weight:500;
}
.founder .sig{ font-weight:800; }
.founder .sig span{ display:block; font-weight:600; color:var(--muted); font-size:.9rem; margin-top:3px; }

/* ---------- gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery .tile{ border-radius:var(--r); overflow:hidden; aspect-ratio:1; box-shadow:var(--shadow-sm); }
.gallery .tile img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.gallery .tile:hover img{ transform:scale(1.08); }
.placeholder{
  border:1.5px dashed var(--secondary); border-radius:var(--r);
  background:repeating-linear-gradient(45deg, var(--bg-2), var(--bg-2) 14px, #efe2d6 14px, #efe2d6 28px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  text-align:center; padding:24px; color:var(--muted); aspect-ratio:1;
}
.placeholder .pm{ font-family:"SFMono-Regular",ui-monospace,Menlo,monospace; font-size:.74rem; letter-spacing:.04em; }
.placeholder svg{ width:30px; height:30px; color:var(--secondary); opacity:.7; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; overflow:hidden; border-radius:var(--r-lg); padding:72px 56px; text-align:center; }
.cta-band.dark{ background:linear-gradient(135deg,#3a2018,#5c2e1c 55%,#7a3a24); color:#fff; }
.cta-band h2{ color:#fff; margin-bottom:18px; }
.cta-band p{ color:rgba(255,255,255,.85); max-width:42em; margin:0 auto 32px; }
.cta-band .cta-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-band .mehndi{ position:absolute; opacity:.12; width:280px; pointer-events:none; }
.cta-band .mehndi.tl{ top:-90px; left:-60px; }
.cta-band .mehndi.br{ bottom:-110px; right:-70px; }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:#D9C7BB; padding:72px 0 32px; }
.site-footer h4{ color:#fff; font-family:var(--sans); font-size:.8rem; text-transform:uppercase; letter-spacing:.18em; margin-bottom:18px; font-weight:800; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
.footer-brand img{ height:54px; margin-bottom:18px; filter:brightness(0) invert(1); opacity:.92; }
.footer-brand p{ font-size:.92rem; color:#B7A296; max-width:30em; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ color:#C9B6AA; font-size:.93rem; transition:color .2s; }
.footer-col a:hover{ color:#fff; }
.footer-contact .line{ display:flex; gap:10px; font-size:.92rem; margin-bottom:12px; color:#C9B6AA; align-items:flex-start; }
.footer-contact .line svg{ width:17px; height:17px; flex:none; margin-top:3px; color:var(--secondary); }
.socials{ display:flex; gap:10px; margin-top:18px; }
.socials a{ width:40px; height:40px; border:1px solid rgba(255,255,255,.16); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background .2s,border-color .2s; }
.socials a:hover{ background:var(--primary); border-color:var(--primary); }
.socials svg{ width:18px; height:18px; color:#fff; }
.footer-base{ border-top:1px solid rgba(255,255,255,.12); margin-top:48px; padding-top:24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.82rem; color:#9C887C; }

/* ---------- floating WA + mobile action bar ---------- */
.fab-wa{
  position:fixed; right:22px; bottom:26px; z-index:150; width:60px; height:60px; border-radius:50%;
  background:#1faf54; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 34px -10px rgba(31,175,84,.7); transition:transform .25s var(--ease);
}
.fab-wa:hover{ transform:scale(1.08); }
.fab-wa svg{ width:30px; height:30px; }
.fab-wa::after{
  content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #1faf54;
  animation:pulse 2.4s var(--ease) infinite;
}
@keyframes pulse{ 0%{ transform:scale(1); opacity:.7; } 70%{ transform:scale(1.5); opacity:0; } 100%{ opacity:0; } }

.mobile-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:160; display:none;
  background:rgba(251,246,240,.96); backdrop-filter:blur(12px); border-top:1px solid var(--border);
  padding:9px 12px calc(9px + env(safe-area-inset-bottom)); gap:9px;
}
.mobile-bar a{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; padding:7px 4px;
  border-radius:12px; font-size:.7rem; font-weight:800; color:var(--text); min-height:48px; justify-content:center;
}
.mobile-bar a svg{ width:21px; height:21px; }
.mobile-bar a.wa{ background:#1faf54; color:#fff; }
.mobile-bar a.call{ background:var(--primary); color:#fff; }
.mobile-bar a.book{ background:var(--ink); color:#fff; }

/* ---------- modal ---------- */
.modal{
  position:fixed; inset:0; z-index:300; display:flex; align-items:center; justify-content:center;
  padding:20px; background:rgba(42,29,24,.55); backdrop-filter:blur(6px);
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.modal.open{ opacity:1; pointer-events:auto; }
.modal-card{
  background:var(--surface); border-radius:var(--r-lg); width:min(560px,100%); max-height:92vh; overflow-y:auto;
  box-shadow:var(--shadow-lg); transform:translateY(20px) scale(.98); transition:transform .35s var(--ease);
  position:relative;
}
.modal.open .modal-card{ transform:none; }
.modal-head{ padding:32px 32px 0; }
.modal-head .eyebrow{ margin-bottom:10px; }
.modal-head h3{ font-size:1.9rem; }
.modal-head p{ color:var(--muted); margin-top:8px; font-size:.95rem; }
.modal-close{
  position:absolute; top:18px; right:18px; width:40px; height:40px; border-radius:50%;
  border:1px solid var(--border); background:var(--bg); display:flex; align-items:center; justify-content:center;
}
.modal-close svg{ width:18px; height:18px; }
form.enquiry{ padding:24px 32px 32px; display:flex; flex-direction:column; gap:16px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field label{ font-size:.82rem; font-weight:800; letter-spacing:.04em; color:var(--text); }
.field input,.field select,.field textarea{
  font-family:inherit; font-size:1rem; padding:13px 15px; border:1.5px solid var(--border); border-radius:12px;
  background:var(--bg); color:var(--text); transition:border-color .2s, box-shadow .2s; width:100%;
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(168,84,54,.13); }
.field textarea{ resize:vertical; min-height:88px; }
.field.row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-note{ font-size:.8rem; color:var(--muted); display:flex; gap:8px; align-items:flex-start; }
.form-note svg{ width:15px; height:15px; flex:none; margin-top:2px; color:var(--accent); }
.form-success{ padding:40px 32px; text-align:center; display:none; }
.form-success.show{ display:block; }
.form-success .ok{ width:64px; height:64px; border-radius:50%; background:rgba(31,175,84,.12); color:#1faf54; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.form-success .ok svg{ width:32px; height:32px; }

/* ---------- page hero (interior pages) ---------- */
.page-hero{ padding:148px 0 64px; text-align:center; }
.page-hero .lead{ max-width:40em; margin:18px auto 0; }
.breadcrumb{ font-size:.82rem; color:var(--muted); margin-bottom:18px; letter-spacing:.04em; }
.breadcrumb a:hover{ color:var(--primary); }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .fab-wa::after{ animation:none; }
}

/* ---------- map ---------- */
.map-frame{ border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid var(--border); }
.map-frame iframe{ display:block; width:100%; height:100%; border:0; min-height:340px; }
.map-placeholder{
  min-height:340px; border-radius:var(--r); border:1.5px dashed var(--secondary);
  background:repeating-linear-gradient(45deg,var(--bg-2),var(--bg-2) 14px,#efe2d6 14px,#efe2d6 28px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:var(--muted); text-align:center; padding:24px;
}
.map-placeholder .pm{ font-family:ui-monospace,Menlo,monospace; font-size:.78rem; }

/* ---------- misc info rows ---------- */
.info-list{ display:flex; flex-direction:column; gap:18px; }
.info-row{ display:flex; gap:16px; align-items:flex-start; }
.info-row .ic{ width:46px; height:46px; border-radius:14px; background:rgba(168,84,54,.08); color:var(--primary); display:flex; align-items:center; justify-content:center; flex:none; }
.info-row .ic svg{ width:22px; height:22px; }
.info-row .k{ font-size:.78rem; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); font-weight:800; margin-bottom:3px; }
.info-row .v{ font-weight:700; color:var(--ink); }
.info-row .v a:hover{ color:var(--primary); }

/* service detail rows on services page */
.svc-row{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.svc-row:nth-child(even) .svc-pic{ order:-1; }
.svc-pic{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); aspect-ratio:4/3; }
.svc-pic img{ width:100%; height:100%; object-fit:cover; }
.svc-body h3{ font-size:2rem; margin-bottom:14px; }
.svc-body .lead{ margin-bottom:18px; }
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.chip{ font-size:.82rem; font-weight:700; color:var(--text); background:var(--surface); border:1px solid var(--border); padding:7px 14px; border-radius:999px; }

/* ---------- responsive ---------- */
@media (max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .hero-grid{ gap:44px; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:860px){
  .nav-links, .nav-cta .btn{ display:none; }
  .hamburger{ display:flex; }
  .nav{ height:66px; }
  .hero-grid, .split, .founder, .svc-row, .grid-2{ grid-template-columns:1fr; }
  .split--rev .split-media, .founder-pic{ order:-1; }
  .svc-row:nth-child(even) .svc-pic{ order:-1; }
  .hero{ padding:118px 0 70px; }
  .section{ padding:68px 0; }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .gallery{ grid-template-columns:repeat(2,1fr); }
  .mobile-bar{ display:flex; }
  .fab-wa{ display:none; }
  body{ padding-bottom:72px; }
  .cta-band{ padding:54px 28px; }
}
@media (max-width:560px){
  .wrap{ padding:0 18px; }
  .grid-3, .grid-4{ grid-template-columns:1fr; }
  .hero-cta .btn{ flex:1; }
  .hero-badge{ left:50%; transform:translateX(-50%); bottom:-30px; }
  .branch-card .actions{ flex-direction:column; }
  .field.row{ grid-template-columns:1fr; }
  .section{ padding:56px 0; }
  .footer-grid{ grid-template-columns:1fr; }
  .hero-media .frame{ aspect-ratio:1/1; }
}
@media (min-width:561px) and (max-width:860px){
  .service-card{ aspect-ratio:1/1; }
}
