/* =========================================
   SMART DESIGN STUDIO — Global Styles
   Aesthetic: Luxury Editorial · Gold & Charcoal
   ========================================= */

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #F0D080;
  --gold-bright: #C9A227;
  --ink: #1A1710;
  --ink-soft: #2E2A20;
  --cream: #F8F4EC;
  --cream-dark: #EDE6D6;
  --white: #FDFCF8;
  --muted: #8A8070;
  --border: rgba(184,134,11,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
em { font-style: italic; color: var(--gold-bright); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 1rem 2.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(26, 23, 16, 0.97);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.8rem 3rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-word {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.35em;
  color: var(--gold-bright);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--cream-dark);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2.8rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-pale); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-bright);
  transition: var(--transition);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition), transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(240,208,128,0.4);
  transition: border-color var(--transition), color var(--transition), transform 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--gold-pale);
  color: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-large { padding: 1.1rem 3rem; font-size: 0.78rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #2E2510 0%, #1A1710 60%, #0E0D09 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
/* decorative circles */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.12);
  pointer-events: none;
}
.hero::before { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero::after  { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title em { font-weight: 600; }
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s 1s ease both;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 1.5rem;
  font-weight: 500;
}
.marquee-track .dot {
  color: var(--ink-soft);
  font-size: 0.5rem;
  padding: 0;
  opacity: 0.6;
  display: flex;
  align-items: center;
}

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 3rem;
}

/* ── PILLARS ── */
.what-we-do { background: var(--white); }
.what-we-do .section-title { text-align: center; }
.what-we-do .section-label { text-align: center; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
}
.pillar-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background var(--transition), transform var(--transition);
  border-bottom: 3px solid transparent;
  overflow: hidden;
}
.pillar-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(184,134,11,0.07);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.pillar-card:hover {
  background: var(--ink);
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
}
.pillar-card:hover h3,
.pillar-card:hover p,
.pillar-card:hover .pillar-link { color: var(--cream); }
.pillar-card:hover .pillar-icon svg { color: var(--gold); }
.pillar-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  transition: color var(--transition);
}
.pillar-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition), letter-spacing var(--transition);
}
.pillar-link:hover { letter-spacing: 0.22em; }

/* ── WHY US ── */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-body {
  font-size: 1rem;
  line-height: 2;
  color: var(--muted);
  max-width: 420px;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}
.stat-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.stat-card:hover { background: var(--ink); border-color: var(--gold); }
.stat-card:hover .stat-num, .stat-card:hover .stat-label { color: var(--cream); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  transition: color var(--transition);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color var(--transition);
}

/* ── TRUST ── */
.trust-section { background: var(--ink); }
.trust-inner { text-align: center; }
.trust-inner .section-label { color: var(--gold); }
.trust-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.trust-attr {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  background: var(--cream);
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-word { color: var(--gold-bright); }
.footer-brand .logo-sub { color: var(--cream-dark); margin-bottom: 1rem; display: block; margin-top: 2px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.9; max-width: 260px; margin-top: 1rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-pale); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--gold); margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.15;
}
.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 580px;
  margin: 1.5rem auto 0;
}

/* ── SERVICE CARDS ── */
.services-section { background: var(--white); }
.service-block {
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(184,134,11,0.15);
  font-weight: 700;
  line-height: 1;
}
.service-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  margin-top: -0.5rem;
  display: block;
}
.service-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.service-block p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.25em;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 0;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.about-values {
  background: var(--cream);
  padding: 5rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--gold); }
.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
}
.value-icon { font-size: 1.8rem; margin-bottom: 1rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 6rem 0;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 2rem;
}
.contact-detail {
  margin-bottom: 2rem;
}
.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: rgba(184,134,11,0.1);
  border: 1px solid var(--gold);
  padding: 1.5rem;
  text-align: center;
  color: var(--gold-bright);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── POLICY PAGE ── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.policy-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--ink);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.policy-content h2:first-child { border-top: none; padding-top: 0; }
.policy-content p, .policy-content li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1rem;
}
.policy-content ul { padding-left: 1.5rem; }
.policy-content ul li { list-style: disc; }
.policy-content a { color: var(--gold); }
.policy-toc {
  background: var(--cream);
  padding: 2rem;
  margin-bottom: 3rem;
}
.policy-toc h3 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.policy-toc ul { display: flex; flex-direction: column; gap: 0.5rem; }
.policy-toc ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.policy-toc ul li a:hover { color: var(--gold); }
.policy-date {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 888;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.3); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.6); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 0.9rem 1.5rem; }
  .nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-wordmark { display: none; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75%; background: var(--ink); padding: 6rem 2.5rem 2rem; gap: 2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 1rem; }
  .service-num { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-right { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .section { padding: 4rem 0; }
  .why-right { grid-template-columns: 1fr 1fr; gap: 1px; }
}

/* ══════════════════════════════════════════
   LOGO STYLES (added for logo integration)
══════════════════════════════════════════ */
/* Nav logo image (left side) */
.nav-logo-img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-logo-img:hover { transform: scale(1.05); opacity: 0.85; }

/* Wordmark — absolutely centred in the nav bar */
.nav-wordmark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  pointer-events: none;
}
.nav-wordmark .logo-word {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.38em;
  color: var(--gold-bright);
}
.nav-wordmark .logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--cream-dark);
  margin-top: 3px;
  text-transform: uppercase;
}

/* Hero decorative SVG */
.hero-deco-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

/* Footer logo — transparent background, sits cleanly on dark footer */
.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  display: block;
}

/* Trust quote mark */
.trust-quote-mark {
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 0.6;
  color: rgba(184,134,11,0.12);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   PILLAR GRAPHIC (replaces icon)
══════════════════════════════════════════ */
.pillar-graphic {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
}
.pillar-card:hover .pillar-graphic { transform: scale(1.05); }
.pillar-graphic svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════
   VISUAL STATS ROW
══════════════════════════════════════════ */
.services-visual-strip { background: var(--cream); padding: 5rem 0; }
.visual-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.vstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 3rem;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.vstat svg { width: 60px; height: 60px; margin-bottom: 0.5rem; }
.vstat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.vstat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 150px;
  line-height: 1.5;
}
.vstat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process-section { background: var(--cream); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  flex: 1;
  min-width: 180px;
}
.process-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .process-icon {
  background: var(--ink);
  border-color: var(--gold);
}
.process-icon svg { width: 40px; height: 40px; }
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,134,11,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 160px;
}
.process-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  padding-top: 1.8rem;
  flex-shrink: 0;
}



@media(max-width:900px){
  .process-arrow { display: none; }
  .process-steps { gap: 2rem; }
  .vstat-divider { display: none; }
  .visual-stats-row { gap: 1rem; }
}
@media(max-width:600px){
  .hero-logo-img { width: 120px; height: 120px; }
  .vstat { min-width: 140px; padding: 1rem 1.5rem; }
}

/* Service illustration */
.service-illustration {
  margin-top: 2rem;
  width: 200px;
  height: 200px;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.service-illustration svg { width: 100%; height: 100%; }
.service-block:hover .service-illustration { opacity: 1; }
@media(max-width:900px){ .service-illustration { display: none; } }
