/* ═══════════════════════════════════════════════════════════
   Goto Communications v5
   DM Serif Display + Plus Jakarta Sans
   Accent: #B8842A  |  Theme: clean white + near-black
   Dynamic, editorial, South African communications firm
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --gold:     #B8842A;
  --gold-dk:  #8C6118;
  --gold-lt:  #DEB96A;
  --gold-bg:  #FBF6EE;
  --gold-bd:  #E8CEA0;
  --ink:      #0E0D0B;
  --ink-soft: #1C1A16;
  --body:     #3A3730;
  --muted:    #7A7668;
  --faint:    #ADA9A0;
  --rule:     #E6E2DA;
  --surface:  #F6F3EE;
  --white:    #FFFFFF;
  --nh:       68px;
  --r:        6px;
  --rl:       14px;
  --rxl:      24px;
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:        0.22s;
  --fd:       'DM Serif Display', Georgia, serif;
  --fb:       'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

/* ── Skip link ────────────────────────────────────────────── */
.skip { position: absolute; top: -44px; left: 1rem; z-index: 9999; background: var(--gold); color: #fff; padding: .5rem 1rem; border-radius: var(--r); font-size: .8rem; transition: top .2s; }
.skip:focus { top: .5rem; }

/* ── Type helpers ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fd); line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.7rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--body); line-height: 1.8; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--fb); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); }

.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.85; max-width: 580px; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.2rem 0 1.8rem; }

/* ── Layout ───────────────────────────────────────────────── */
.wrap    { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 2rem; }
.section-sm { padding: 4.5rem 2rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--fb); font-size: .76rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 3px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-dark  { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-inv { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-inv:hover { background: #fff; color: var(--ink); }
.btn-sm { padding: .6rem 1.25rem; font-size: .72rem; }
.btn svg { width: 14px; height: 14px; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

/* ── Reveal ───────────────────────────────────────────────── */
[data-r] { opacity: 0; transform: translateY(30px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-r=left]  { transform: translateX(-30px); }
[data-r=right] { transform: translateX(30px); }
[data-r=up]    { transform: translateY(30px); }
[data-r=scale] { transform: scale(.94); }
[data-r].on    { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: .1s; }
[data-d="2"] { transition-delay: .2s; }
[data-d="3"] { transition-delay: .3s; }
[data-d="4"] { transition-delay: .4s; }
[data-d="5"] { transition-delay: .5s; }
[data-d="6"] { transition-delay: .6s; }
[data-d="7"] { transition-delay: .7s; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nh);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
#nav.stuck { border-bottom-color: var(--rule); box-shadow: 0 2px 16px rgba(0,0,0,.05); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo-img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; display: block; }
.logo-wordmark { font-family: var(--fd); font-size: 1.1rem; color: var(--ink); }
.logo-inv .logo-wordmark { color: #fff; }
.nav-links { display: flex; gap: .1rem; }
.nav-link {
  font-size: .8rem; font-weight: 500; color: var(--muted);
  padding: .5rem .9rem; border-radius: 4px;
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--ink); background: var(--surface); }
.nav-link.active { color: var(--gold); }
.nav-end { display: flex; align-items: center; gap: .75rem; }
.menu-btn {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 5px;
}
.menu-lines span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.menu-lines span:nth-child(1) { width: 22px; }
.menu-lines span:nth-child(2) { width: 16px; }
.menu-lines span:nth-child(3) { width: 22px; }
.menu-btn.open .menu-lines span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); width: 22px; }
.menu-btn.open .menu-lines span:nth-child(2) { opacity: 0; }
.menu-btn.open .menu-lines span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); width: 22px; }

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 850;
  width: min(360px, 92vw); background: var(--white);
  box-shadow: -8px 0 48px rgba(0,0,0,.12);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s var(--ease);
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--rule); }
.drawer-x { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); padding: .2rem .4rem; line-height: 1; transition: color var(--t); }
.drawer-x:hover { color: var(--gold); }
.drawer-links { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; gap: .25rem; overflow-y: auto; }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--fd); font-size: 1.65rem;
  color: var(--muted); padding: .6rem 0; border-bottom: 1px solid var(--rule);
  transition: color var(--t);
}
.drawer-link:hover, .drawer-link.active { color: var(--gold); }
.drawer-link svg { opacity: 0; transform: translateX(-6px); transition: opacity var(--t), transform var(--t); }
.drawer-link:hover svg, .drawer-link.active svg { opacity: 1; transform: none; }
.drawer-foot { padding: 1.5rem; border-top: 1px solid var(--rule); display: flex; flex-direction: column; gap: .4rem; }
.drawer-foot a { font-size: .82rem; color: var(--muted); transition: color var(--t); }
.drawer-foot a:hover { color: var(--gold); }
.overlay { position: fixed; inset: 0; z-index: 849; background: rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.show { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════════════════ */
.banner {
  background: var(--ink-soft);
  padding: calc(var(--nh) + 5rem) 2rem 5rem;
  position: relative; overflow: hidden;
}
.banner::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 15% 110%, rgba(184,132,42,.13) 0%, transparent 65%);
}
.banner-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.banner h1 { color: #fff; margin-bottom: .85rem; }
.banner h1 em { color: var(--gold-lt); }
.banner .lead { color: rgba(255,255,255,.5); }
.breadcrumb {
  display: flex; gap: .5rem; font-size: .74rem; color: rgba(255,255,255,.32); margin-top: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.32); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.18); }

/* ═══════════════════════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--ink-soft);
  padding: calc(var(--nh) + 6.5rem) 2rem 5rem;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg-glow {
  position: absolute; top: -10%; right: -5%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,132,42,.08) 0%, transparent 65%);
}
.hero-bg-lines {
  position: absolute; inset: 0; opacity: .025;
  background-image: linear-gradient(rgba(184,132,42,.6) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(184,132,42,.6) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-bg-circle {
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(184,132,42,.06);
}
.hero-inner { max-width: 1160px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-label {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
}
.hero-label::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.hero-h1 { color: #fff; max-width: 850px; margin-bottom: 1.5rem; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.06; }
.hero-h1 em { color: var(--gold-lt); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,.45); font-size: 1.06rem;
  max-width: 520px; line-height: 1.85; font-weight: 300; margin-bottom: 2.75rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5.5rem; }
.hero-line { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 4.5rem; flex-wrap: wrap; }
.stat { }
.stat-n {
  font-family: var(--fd); font-size: 3rem; line-height: 1; color: var(--gold);
  font-style: italic;
}
.stat-l { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: .3rem; font-weight: 400; letter-spacing: .04em; }
.hero-credentials {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .55rem;
}
.hcred {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: .6rem 1rem;
  font-size: .69rem; color: rgba(255,255,255,.38);
  display: flex; align-items: center; gap: .5rem;
}
.hcred strong { color: var(--gold-lt); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   HOME — INTRO BAND
═══════════════════════════════════════════════════════════ */
.intro-band { background: var(--gold); }
.intro-band-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ib-item {
  padding: 1.85rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.22); cursor: default;
  transition: background var(--t);
}
.ib-item:last-child { border-right: none; }
.ib-item:hover { background: rgba(0,0,0,.06); }
.ib-item strong { display: block; font-family: var(--fd); font-size: 1.45rem; color: #fff; }
.ib-item span { font-size: .71rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .1em; }

/* ═══════════════════════════════════════════════════════════
   HOME — SERVICE OVERVIEW
═══════════════════════════════════════════════════════════ */
.svc-overview { background: var(--white); }
.svc-overview .wrap { max-width: 1160px; margin: 0 auto; }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3.5rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--rl); padding: 2.5rem 2.25rem;
  position: relative; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.svc-card:hover { border-color: transparent; box-shadow: 0 8px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.featured { background: var(--ink-soft); border-color: transparent; color: #fff; }
.svc-card.featured::before { background: var(--gold); }
.svc-card.featured .svc-tag { color: var(--gold-lt); }
.svc-card.featured h3 { color: #fff; }
.svc-card.featured p { color: rgba(255,255,255,.55); }
.svc-card.featured .svc-items li { color: rgba(255,255,255,.6); }
.svc-card.featured .svc-items li::before { background: var(--gold); }
.svc-card.featured .svc-arrow { color: var(--gold-lt); }
.svc-tag {
  font-size: .65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold); margin-bottom: 1rem; display: block;
}
.svc-num {
  font-family: var(--fd); font-size: 3.2rem; color: var(--rule);
  line-height: 1; margin-bottom: 1.25rem; font-style: italic;
  transition: color var(--t);
}
.svc-card:hover .svc-num, .svc-card.featured .svc-num { color: rgba(184,132,42,.35); }
.svc-card h3 { margin-bottom: .75rem; }
.svc-card > p { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.75; }
.svc-items { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 2rem; }
.svc-items li {
  font-size: .82rem; color: var(--muted);
  display: flex; align-items: center; gap: .65rem;
}
.svc-items li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.svc-arrow {
  font-size: .74rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap var(--t);
}
.svc-arrow:hover { gap: .7rem; }
.svc-arrow::after { content: '→'; }

/* ═══════════════════════════════════════════════════════════
   HOME — ABOUT STRIP
═══════════════════════════════════════════════════════════ */
.about-strip { background: var(--surface); }
.as-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1160px; margin: 0 auto;
}
.as-copy { }
.as-copy p { color: var(--muted); font-size: .95rem; line-height: 1.85; margin-bottom: 1rem; }
.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: 1.75rem; }
.cred-pill { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: .9rem 1rem; }
.cred-pill dt { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.cred-pill dd { font-size: .85rem; font-weight: 600; color: var(--ink); margin-top: .2rem; }
.as-visual { position: relative; }
.as-img-wrap {
  border-radius: var(--rl); overflow: hidden;
  aspect-ratio: 3/4; background: var(--white);
}
.as-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #f0ebe0, #dbc585 60%, #c9973a 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 8rem; color: rgba(255,255,255,.4); font-style: italic;
}
.as-badge {
  position: absolute; bottom: -1.75rem; left: -1.75rem;
  background: var(--gold); color: #fff;
  border-radius: var(--rl); padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 40px rgba(184,132,42,.35); text-align: center;
}
.as-badge strong { display: block; font-family: var(--fd); font-size: 2.6rem; font-style: italic; line-height: 1; }
.as-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

/* ═══════════════════════════════════════════════════════════
   HOME — WHY SECTION
═══════════════════════════════════════════════════════════ */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--rl); overflow: hidden;
  margin-top: 3.5rem;
}
.why-cell {
  background: var(--white); padding: 2.25rem 1.75rem;
  transition: background var(--t);
}
.why-cell:hover { background: var(--gold-bg); }
.why-n {
  font-family: var(--fd); font-size: 2rem; font-style: italic;
  color: var(--rule); margin-bottom: .85rem; line-height: 1;
  transition: color var(--t);
}
.why-cell:hover .why-n { color: var(--gold); }
.why-cell h4 { font-family: var(--fb); font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.why-cell p { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   HOME — CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--ink); padding: 7rem 2rem;
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,132,42,.1) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.5); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.story-section { background: var(--white); }
.story-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1160px; margin: 0 auto;
}
.story-copy p { color: var(--muted); font-size: .95rem; line-height: 1.85; margin-bottom: 1rem; }
.vals-section { background: var(--surface); }
.vals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 1160px; margin: 3.5rem auto 0; }
.val-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--rl); padding: 2rem;
  display: flex; gap: 1.35rem; align-items: flex-start;
  transition: box-shadow var(--t), transform var(--t);
}
.val-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.val-n { font-family: var(--fd); font-size: 2rem; font-style: italic; color: var(--rule); min-width: 2.5rem; line-height: 1; transition: color var(--t); }
.val-card:hover .val-n { color: var(--gold); }
.val-card h4 { font-family: var(--fb); font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.val-card p { font-size: .83rem; color: var(--muted); line-height: 1.7; }
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1160px; margin: 3.5rem auto 0; }
.team-card { text-align: center; transition: transform var(--t); }
.team-card:hover { transform: translateY(-5px); }
.team-av { width: 100%; aspect-ratio: 1; border-radius: var(--rl); overflow: hidden; background: var(--surface); margin-bottom: 1.35rem; }
.team-av-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--surface), var(--gold-bd));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 2.5rem; font-style: italic; color: var(--gold);
}
.team-av img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--fd); font-size: 1.1rem; color: var(--ink); margin-bottom: .2rem; }
.team-role { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.team-bio { font-size: .8rem; color: var(--muted); margin-top: .5rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════════ */
.svc-detail-alt { background: var(--white); }
.svc-detail-alt:nth-child(even) { background: var(--surface); }
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem;
  align-items: center; max-width: 1160px; margin: 0 auto;
}
.svc-row.flip { direction: rtl; }
.svc-row.flip > * { direction: ltr; }
.svc-copy p { color: var(--muted); font-size: .93rem; line-height: 1.85; margin-bottom: 1rem; }
.svc-feature-list { display: flex; flex-direction: column; gap: .65rem; margin: 1.5rem 0 2.25rem; }
.svc-feature-list li {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .87rem; color: var(--muted); line-height: 1.55;
}
.svc-feature-list li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%;
  background: var(--gold-bg); border: 1.5px solid var(--gold); margin-top: 1px; flex-shrink: 0;
}
.svc-visual-box {
  border-radius: var(--rl); aspect-ratio: 4/3; overflow: hidden;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 5rem; font-style: italic; color: var(--gold);
  position: relative;
}
/* Special featured treatment for Web Design service */
.svc-visual-box.featured-viz {
  background: var(--ink-soft); color: var(--gold-lt);
  overflow: hidden;
}
.svc-visual-box.featured-viz::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184,132,42,.12) 0%, transparent 70%);
}
.viz-browser {
  width: 80%; max-width: 320px; position: relative; z-index: 1;
}
.viz-browser-bar {
  background: rgba(255,255,255,.08); border-radius: 8px 8px 0 0;
  padding: .6rem .85rem; display: flex; align-items: center; gap: .5rem;
}
.viz-dot { width: 8px; height: 8px; border-radius: 50%; }
.viz-dot:nth-child(1) { background: #ff5f57; }
.viz-dot:nth-child(2) { background: #febc2e; }
.viz-dot:nth-child(3) { background: #28c840; }
.viz-url { flex: 1; background: rgba(255,255,255,.06); border-radius: 3px; height: 16px; margin-left: .35rem; }
.viz-browser-body { background: rgba(255,255,255,.04); border-radius: 0 0 8px 8px; padding: .85rem; }
.viz-hero-block { background: rgba(184,132,42,.25); border-radius: 5px; height: 52px; margin-bottom: .65rem; }
.viz-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .4rem; margin-bottom: .65rem; }
.viz-card { background: rgba(255,255,255,.06); border-radius: 4px; height: 34px; }
.viz-bar { background: rgba(184,132,42,.18); border-radius: 3px; height: 8px; margin-bottom: .4rem; }
.viz-bar.short { width: 60%; }

.svc-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.svc-mini {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 1.25rem;
  transition: border-color var(--t), transform var(--t);
}
.svc-mini:hover { border-color: var(--gold); transform: translateY(-2px); }
.svc-mini h5 { font-family: var(--fb); font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.svc-mini p { font-size: .77rem; color: var(--muted); line-height: 1.55; }

/* Process steps for web design */
.process-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0; }
.pstep {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; background: var(--gold-bg); border-radius: var(--r); border-left: 3px solid var(--gold);
}
.pstep-n { font-family: var(--fd); font-size: 1.3rem; font-style: italic; color: var(--gold); min-width: 1.75rem; line-height: 1; }
.pstep h5 { font-family: var(--fb); font-size: .83rem; font-weight: 600; color: var(--ink); margin-bottom: .25rem; }
.pstep p { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* Sectors */
.sectors-section { background: var(--ink-soft); padding: 3rem 2rem; text-align: center; }
.sectors-lbl { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.3); margin-bottom: 1.1rem; }
.sector-pills { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-top: .85rem; }
.sector-pill {
  padding: .4rem 1.1rem; border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; font-size: .76rem; color: rgba(255,255,255,.45);
  transition: border-color var(--t), color var(--t); cursor: default;
}
.sector-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.65fr; gap: 5.5rem;
  max-width: 1160px; margin: 0 auto; align-items: start;
}
.contact-left h3 { margin-bottom: .75rem; }
.c-lead { font-size: .93rem; color: var(--muted); line-height: 1.85; margin: .85rem 0 2.5rem; max-width: 100%; }
.c-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.c-ico {
  width: 42px; height: 42px; min-width: 42px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center;
}
.c-ico svg { width: 16px; height: 16px; stroke: var(--gold); }
.c-lbl { font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.c-val { font-size: .9rem; color: var(--ink); margin-top: .15rem; }
.c-val a { color: var(--ink); transition: color var(--t); }
.c-val a:hover { color: var(--gold); }
.proc-box {
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  border-radius: var(--r); padding: 1.35rem; margin-top: 2rem;
}
.proc-box h5 { font-family: var(--fb); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dk); margin-bottom: .5rem; }
.proc-box p { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.c-wa-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff; font-size: .76rem; font-weight: 600;
  padding: .65rem 1.25rem; border-radius: 4px; margin-top: 1.5rem;
  transition: background var(--t);
}
.c-wa-btn:hover { background: #1da850; }

/* Form */
.form-wrap {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--rl); padding: 2.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.25rem; }
.fg label {
  display: block; font-size: .67rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: .5rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--r);
  color: var(--ink); font-family: var(--fb); font-size: .9rem;
  padding: .8rem 1rem; outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  background: var(--white); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,132,42,.1);
}
.fg input.err, .fg select.err, .fg textarea.err { border-color: #dc2626; }
.ferr { font-size: .7rem; color: #dc2626; margin-top: .3rem; display: none; }
.fg select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7668' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.fg textarea { resize: vertical; min-height: 120px; }
.char-n { font-size: .67rem; color: var(--muted); text-align: right; margin-top: .3rem; }
.char-n.warn { color: var(--gold); }
.eq-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.eq-btn {
  padding: .42rem .95rem; border-radius: 20px;
  border: 1px solid var(--rule); background: var(--white);
  font-family: var(--fb); font-size: .75rem; color: var(--muted);
  cursor: pointer; transition: all var(--t);
}
.eq-btn:hover { border-color: var(--gold); color: var(--gold); }
.eq-btn.on { background: var(--gold); border-color: var(--gold); color: #fff; }
.hp { position: absolute; left: -9999px; visibility: hidden; }
.form-foot { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: .85rem; }
.form-note { font-size: .72rem; color: var(--muted); max-width: 260px; line-height: 1.5; }
.btn-send {
  background: var(--gold); color: #fff; border: none;
  font-family: var(--fb); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .9rem 2rem; border-radius: 3px; cursor: pointer;
  display: flex; align-items: center; gap: .65rem; flex-shrink: 0;
  transition: background var(--t), transform var(--t);
}
.btn-send:hover:not(:disabled) { background: var(--gold-dk); transform: translateY(-2px); }
.btn-send:disabled { background: var(--rule); color: var(--muted); cursor: not-allowed; transform: none; }
.spin {
  width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .65s linear infinite; display: none;
}
.btn-send.loading .spin { display: block; }
.btn-send.loading .slbl { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.map-ph {
  max-width: 1160px; margin: 0 auto; height: 360px;
  border-radius: var(--rl); border: 1px solid var(--rule);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .85rem;
  color: var(--muted); background: var(--surface);
}
.map-ph svg { stroke: var(--gold); }
.map-ph p { font-size: .85rem; text-align: center; line-height: 1.7; }
.map-ph a { color: var(--gold); font-size: .78rem; margin-top: .35rem; display: inline-block; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer { background: var(--ink); padding: 5.5rem 2rem 0; }
.footer-top {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.f-tagline { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: .5rem; font-style: italic; }
.f-reg { font-size: .65rem; color: rgba(255,255,255,.2); margin-top: .75rem; line-height: 1.65; }
.f-heading { font-family: var(--fb); font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.28); margin-bottom: 1.25rem; }
.f-col ul { display: flex; flex-direction: column; gap: .6rem; }
.f-col a { font-size: .83rem; color: rgba(255,255,255,.42); transition: color var(--t); }
.f-col a:hover { color: var(--gold); }
.f-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.f-contact-list li { display: flex; align-items: center; gap: .65rem; font-size: .82rem; color: rgba(255,255,255,.42); }
.f-contact-list svg { stroke: var(--gold); flex-shrink: 0; }
.f-wa {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #25D366; color: #fff; font-size: .74rem; font-weight: 600;
  padding: .6rem 1.1rem; border-radius: 4px; margin-top: 1.25rem;
  transition: background var(--t);
}
.f-wa:hover { background: #1da850; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding: 1.75rem 0;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.f-compliance { font-size: .68rem; }

/* ═══════════════════════════════════════════════════════════
   GLOBALS
═══════════════════════════════════════════════════════════ */
#toast {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
  padding: 1rem 1.5rem; border-radius: var(--r); max-width: 380px;
  font-size: .85rem; line-height: 1.55; pointer-events: none;
  transform: translateY(120%) scale(.95); opacity: 0;
  transition: all .35s var(--spring);
}
#toast.show { transform: none; opacity: 1; }
#toast.ok  { background: #14532d; color: #bbf7d0; border-left: 3px solid #4ade80; }
#toast.err { background: #7f1d1d; color: #fecaca; border-left: 3px solid #f87171; }
.wa-float {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform var(--t), box-shadow var(--t);
  animation: wapop .5s var(--spring) 1.5s both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
@keyframes wapop { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: none; } }
#toTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--rule);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: 0 2px 10px rgba(0,0,0,.07);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity var(--t), transform var(--t), background var(--t);
}
#toTop.show { opacity: 1; transform: none; pointer-events: auto; }
#toTop:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .story-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .as-grid     { grid-template-columns: 1fr; gap: 3.5rem; }
  .svc-row     { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-row.flip { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .hero-credentials { display: none; }
  .as-badge { left: -1rem; bottom: -1rem; }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .intro-band-inner { grid-template-columns: repeat(2, 1fr); }
  .ib-item:nth-child(2) { border-right: none; }
  .vals-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .svc-mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-end .btn-gold:not(.btn-sm) { display: none; }
  .menu-btn { display: flex; }
  .hero-stats { gap: 2.5rem; }
  .form-2col  { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .section { padding: 4.5rem 1.25rem; }
  .hero    { padding: calc(var(--nh) + 3.5rem) 1.25rem 3.5rem; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .intro-band-inner { grid-template-columns: 1fr; }
  .ib-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  #toast { left: 1.25rem; right: 1.25rem; max-width: none; }
}
