/* ==========================================================================
   Ahmed Bayoush — Dark Luxury Editorial design system (static HTML/CSS build)
   Converted from the original Tailwind/React project, design preserved 1:1.
   ========================================================================== */

:root {
  --radius: 0.5rem;

  /* Brand palette */
  --bg: #05070E;
  --s1: #090D18;
  --s2: #0D1220;
  --s3: #111828;
  --gold: #C8902A;
  --gold2: #F0BE5A;
  --goldf: rgba(200, 144, 42, 0.10);
  --teal: #18C4AC;
  --tealf: rgba(24, 196, 172, 0.08);
  --warm: #ECE7DE;
  --mute: #44526A;
  --text: #7A8FA8;
  --blue: #3470E4;
  --destructive: #ef4444;

  --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Lora", ui-serif, Georgia, serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;

  --gradient-gold: linear-gradient(135deg, #C8902A 0%, #F0BE5A 100%);
  --shadow-gold: 0 20px 60px -20px rgba(200, 144, 42, 0.35);
  --shadow-elegant: 0 30px 80px -30px rgba(0, 0, 0, 0.8);

  --border: rgba(255, 255, 255, 0.08);
}

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

* { border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--warm);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--warm);
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- Helpers ---------- */
.font-display { font-family: var(--font-display); }
.font-serif { font-family: var(--font-serif); font-style: italic; }
.italic { font-style: italic; }

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { max-width: 80rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }

.section { position: relative; }
.divider-top { border-top: 1px solid rgba(255,255,255,0.05); }
.divider-y { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Background layers */
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-noise {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.bg-radial-blobs {
  background-image:
    radial-gradient(40% 30% at 15% 20%, rgba(52,112,228,0.18), transparent 70%),
    radial-gradient(35% 30% at 85% 30%, rgba(200,144,42,0.16), transparent 70%),
    radial-gradient(40% 35% at 50% 90%, rgba(24,196,172,0.10), transparent 70%);
}

.layer { position: absolute; inset: 0; z-index: -1; }
.fixed-noise { pointer-events: none; position: fixed; inset: 0; z-index: -10; opacity: 0.5; }

/* ---------- Reveal animation ---------- */
.rv { opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.rv.vs { opacity: 1; transform: none; }
.rv2 { transition-delay: 0.1s; }
.rv3 { transition-delay: 0.2s; }
.rv4 { transition-delay: 0.3s; }

@keyframes float { 0%,100% { transform: translateY(0);} 50%{ transform: translateY(-10px);} }
.anim-float { animation: float 6s ease-in-out infinite; }

@keyframes pulseDot { 0%,100%{ transform: scale(1); opacity:1;} 50%{ transform: scale(1.4); opacity:0.6;} }
.anim-pulse-dot { animation: pulseDot 1.8s ease-in-out infinite; }

@keyframes ticker { 0%{ transform: translateX(0);} 100%{ transform: translateX(-50%);} }
.anim-ticker { animation: ticker 40s linear infinite; }

@keyframes barIn { from { transform: scaleX(0);} to { transform: scaleX(var(--bar));} }
.anim-bar { transform-origin: left; animation: barIn 1.4s cubic-bezier(0.2,0.7,0.2,1) forwards; }

/* ---------- Topbar ---------- */
.topbar { display: none; border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(9,13,24,0.6); backdrop-filter: blur(4px); }
.topbar .row { display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text); padding-top: 0.5rem; padding-bottom: 0.5rem; }
.topbar .group { display: flex; align-items: center; gap: 1.25rem; }
.topbar .item { display: inline-flex; align-items: center; gap: 0.375rem; }
.topbar a.item:hover, .topbar .socials a:hover { color: var(--warm); }
.topbar .socials { display: flex; align-items: center; gap: 0.75rem; }
.topbar .socials a:hover { color: var(--gold); }
.icon-gold { color: var(--gold); }
@media (min-width: 768px) { .topbar { display: block; } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background-color .2s, border-color .2s; background: transparent; }
.nav.scrolled { background: rgba(5,7,14,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav .row { height: 68px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--font-display); font-size: 1.125rem; letter-spacing: -0.01em; font-weight: 800; }
.brand .warm { color: var(--warm); }
.brand .gold { color: var(--gold); }
.nav-links { display: none; align-items: center; gap: 2rem; font-size: 0.875rem; }
.nav-links a { color: var(--text); transition: color .2s; padding: 0.5rem 0; }
.nav-links a:hover, .nav-links a.active { color: var(--warm); }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.btn-pill { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500; transition: background-color .2s, color .2s, border-color .2s, opacity .2s; }
.btn-gold { background: var(--gold); color: var(--bg); padding: 0.625rem 1.25rem; }
.btn-gold:hover { background: var(--gold2); }
.nav .cta { display: none; }
.menu-btn { display: inline-flex; align-items: center; justify-content: center; height: 40px; width: 40px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); color: var(--warm); background: transparent; cursor: pointer; }
.mobile-menu { display: none; border-top: 1px solid rgba(255,255,255,0.05); background: var(--s1); }
.mobile-menu.open { display: block; }
.mobile-menu .inner { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a { padding: 0.5rem 0; color: var(--text); }
.mobile-menu a:hover { color: var(--warm); }
.mobile-menu .cta { margin-top: 0.75rem; justify-content: center; padding: 0.625rem 1.25rem; }
@media (min-width: 640px) { .nav .cta { display: inline-flex; } }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}

/* ---------- Buttons (shared) ---------- */
.btn-outline { border: 1px solid rgba(255,255,255,0.15); color: var(--warm); padding: 0.75rem 1.5rem; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-lg { background: var(--gold); color: var(--bg); padding: 0.75rem 1.5rem; }
.btn-gold-lg:hover { background: var(--gold2); }
.btn-teal { border: 1px solid rgba(24,196,172,0.4); background: var(--tealf); color: var(--teal); padding: 0.75rem 1.5rem; }
.btn-teal:hover { background: var(--teal); color: var(--bg); }

/* ---------- Section label ---------- */
.section-label { display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.section-label .line { height: 1px; width: 2rem; background: var(--gold); display: inline-block; }

/* ---------- Generic layout utilities ---------- */
.grid { display: grid; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.card { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2); }
.muted { color: var(--text); }
.warm90 { color: rgba(236,231,222,0.9); }
.warm80 { color: rgba(236,231,222,0.8); }
.lead { line-height: 1.65; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 3.5rem; padding-top: 3rem; padding-bottom: 6rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--teal); }
.dot { position: relative; display: inline-flex; height: 0.5rem; width: 0.5rem; }
.dot .ping { position: absolute; inset: 0; border-radius: 9999px; background: var(--teal); }
.dot .core { position: relative; border-radius: 9999px; background: var(--teal); height: 0.5rem; width: 0.5rem; }
.hero h1 { margin-top: 1.5rem; font-size: 44px; line-height: 1.02; }
.hero .tagline { margin-top: 1.25rem; font-family: var(--font-serif); font-style: italic; color: rgba(236,231,222,0.8); font-size: 1.125rem; }
.hero blockquote { margin: 1.75rem 0 0; border-left: 2px solid var(--gold); padding-left: 1.25rem; max-width: 36rem; color: rgba(236,231,222,0.9); font-size: 1.125rem; }
.hero-cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 28rem; }
.stats dt { font-family: var(--font-display); font-size: 1.875rem; }
.stats dd { margin: 0.25rem 0 0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); }
.hero-photo { position: relative; margin: 0 auto; max-width: 28rem; }
.hero-photo .glow { position: absolute; inset: -0.75rem; border-radius: 28px;
  background: linear-gradient(135deg, rgba(200,144,42,0.4), transparent, rgba(24,196,172,0.3)); filter: blur(2rem); opacity: 0.7; }
.hero-photo .frame { position: relative; border-radius: 24px; padding: 1.5px;
  background: linear-gradient(135deg, rgba(200,144,42,0.6), rgba(255,255,255,0.1), rgba(24,196,172,0.4)); }
.hero-photo .frame-inner { border-radius: 22px; overflow: hidden; background: var(--s2); }
.hero-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 20%; }
.badge-float { position: absolute; display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; border: 1px solid rgba(255,255,255,0.15); background: rgba(9,13,24,0.9);
  padding: 0.375rem 0.75rem; font-size: 0.75rem; color: var(--warm); backdrop-filter: blur(8px); }
.badge-loc { top: -0.75rem; right: 1rem; }
.badge-avail { bottom: -1.25rem; left: -0.5rem; max-width: 260px; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(9,13,24,0.9); padding: 0.75rem 1rem;
  display: block; box-shadow: var(--shadow-elegant); }
.badge-avail .lbl { display: flex; align-items: center; gap: 0.5rem; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.25em; color: var(--teal); }
.badge-avail p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--warm); line-height: 1.3; }
.diag { pointer-events: none; position: absolute; top: 0; bottom: 0; left: 50%; z-index: -1; display: none; }
.diag span { display: block; height: 100%; width: 1px; transform: rotate(12deg);
  background: linear-gradient(to bottom, transparent, rgba(200,144,42,0.3), transparent); }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12,1fr); align-items: center; padding-top: 5rem; padding-bottom: 8rem; }
  .hero-left { grid-column: span 7; }
  .hero-right { grid-column: span 5; }
  .hero h1 { font-size: 4.5rem; }
  .diag { display: block; }
}
@media (min-width: 640px) {
  .hero h1 { font-size: 3.75rem; }
  .badge-avail { left: -1.5rem; }
}

/* ---------- Ticker ---------- */
.ticker { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
  background: var(--s1); overflow: hidden; }
.ticker .track { display: flex; white-space: nowrap; padding: 1.25rem 0; }
.ticker .chunk { display: inline-flex; align-items: center; font-size: 0.875rem; color: var(--text); }
.ticker .chunk .t { padding: 0 1.5rem; font-family: var(--font-serif); font-style: italic; }
.ticker .chunk .star { color: var(--gold); }
@media (min-width: 768px) { .ticker .chunk { font-size: 1rem; } }

/* ---------- Generic section spacing ---------- */
.pad { padding-top: 6rem; padding-bottom: 6rem; }
.pad-lg { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width:1024px){ .pad-lg { padding-top: 7rem; padding-bottom: 7rem; } }

.two-col { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2,1fr); } }

/* About teaser stat cards */
.h2-xl { margin-top: 1.25rem; font-family: var(--font-display); font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px){ .h2-xl { font-size: 3rem; } }
.link-gold { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gold); transition: color .2s; }
.link-gold:hover { color: var(--gold2); }
.stat-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.stat-cards .card { padding: 1.5rem; }
.stat-cards .k { font-family: var(--font-display); font-size: 1.875rem; }
.stat-cards .v { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text); }

/* Services teaser / grid */
.s1-bg { background: rgba(9,13,24,0.3); }
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.svc-grid { margin-top: 3rem; display: grid; gap: 1.25rem; }
@media (min-width: 768px){ .svc-grid { grid-template-columns: repeat(2,1fr);} }
@media (min-width: 1024px){ .svc-grid { grid-template-columns: repeat(3,1fr);} }
.svc-card { display: block; height: 100%; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08);
  background: var(--s2); padding: 1.75rem; transition: border-color .25s, background-color .25s; }
.svc-card:hover { border-color: var(--gold); background: var(--s3); }
.svc-card .top { display: flex; align-items: flex-start; justify-content: space-between; }
.svc-card .num { font-family: var(--font-display); font-size: 0.875rem; color: rgba(200,144,42,0.8); }
.svc-card .arrow { color: var(--text); transition: transform .3s, color .3s; }
.svc-card:hover .arrow { transform: rotate(45deg); color: var(--gold); }
.svc-card .ic { margin-top: 1.5rem; display: inline-flex; height: 2.75rem; width: 2.75rem;
  align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--goldf); color: var(--gold); }
.svc-card h3 { margin-top: 1.25rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--warm); }
.svc-card .blurb { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text); line-height: 1.6; }
.tags { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.375rem; list-style: none; padding: 0; }
.tags li { font-size: 11px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.1); padding: 0.25rem 0.625rem; color: var(--text); }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.cta-banner .eyebrow2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--teal); }
.cta-banner h2 { margin-top: 1.25rem; font-size: 2.25rem; line-height: 1.05; }
@media (min-width:768px){ .cta-banner h2 { font-size: 3.75rem; } }
.cta-banner .sub { margin: 1.5rem auto 0; max-width: 42rem; color: var(--text); }
.cta-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }

/* Page hero heading */
.page-h1 { margin-top: 1.25rem; font-family: var(--font-display); font-size: 2.25rem; line-height: 1.05; max-width: 48rem; }
@media (min-width:768px){ .page-h1 { font-size: 3.75rem; } }
.page-intro { margin-top: 1.5rem; max-width: 36rem; color: var(--text); line-height: 1.6; }

/* About */
.about-grid { margin-top: 4rem; display: grid; gap: 3rem; align-items: flex-start; }
@media (min-width:1024px){ .about-grid { grid-template-columns: repeat(12,1fr);} .about-left{ grid-column: span 5;} .about-right{ grid-column: span 7;} }
.photo-card { position: relative; }
.photo-card .glow { position: absolute; inset: -0.75rem; border-radius: 28px;
  background: linear-gradient(135deg, rgba(200,144,42,0.3), transparent, rgba(24,196,172,0.25)); filter: blur(2rem); opacity: 0.7; }
.photo-card .inner { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: var(--s2); }
.photo-card .caption { position: absolute; bottom: -1rem; left: 1rem; right: 1rem; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(9,13,24,0.9); backdrop-filter: blur(8px);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-elegant); }
.photo-card .caption .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.photo-card .caption p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--warm); line-height: 1.6; }
.mv-card { border-radius: 1rem; padding: 1.5rem; }
.mv-teal { border-left: 2px solid var(--teal); background: var(--tealf); }
.mv-gold { border-left: 2px solid var(--gold); background: var(--goldf); }
.mv-card .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; }
.mv-teal .lbl { color: var(--teal); }
.mv-gold .lbl { color: var(--gold); }
.mv-card p { margin-top: 0.75rem; color: rgba(236,231,222,0.9); line-height: 1.6; }
.stack { display: flex; flex-direction: column; gap: 1.25rem; }
.trait-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.trait { border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2);
  padding: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.trait .ic { height: 2.25rem; width: 2.25rem; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0.5rem; background: var(--goldf); color: var(--gold); }
.trait span.t { font-size: 0.875rem; color: var(--warm); }
.passions { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.5rem; }
.passions span { font-size: 0.75rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.1);
  background: var(--s2); padding: 0.375rem 0.75rem; color: var(--text); }
.core-grid { display: grid; gap: 3rem; align-items: flex-start; }
@media (min-width:1024px){ .core-grid { grid-template-columns: repeat(12,1fr);} .core-left{grid-column: span 7;} .core-right{grid-column: span 5;} }
.value-row { display: flex; align-items: flex-start; gap: 1rem; border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08); background: var(--s2); padding: 1.25rem; }
.value-row .ic { height: 2.5rem; width: 2.5rem; flex-shrink: 0; display: inline-flex; align-items: center;
  justify-content: center; border-radius: 0.5rem; background: var(--goldf); color: var(--gold); }
.value-row .t { font-family: var(--font-display); color: var(--warm); }
.value-row .b { margin-top: 0.25rem; font-size: 0.875rem; color: var(--text); line-height: 1.6; }
.core-img { border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: var(--s2); box-shadow: var(--shadow-elegant); }
.core-cap { margin-top: 1rem; font-size: 0.75rem; color: var(--text); text-align: center; font-family: var(--font-serif); font-style: italic; }

/* Expertise */
.exp-grid { margin-top: 4rem; display: grid; gap: 3rem; }
@media (min-width:1024px){ .exp-grid { grid-template-columns: repeat(2,1fr);} }
.skills { margin-top: 1.5rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.skill .meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; }
.skill .meta .lbl { color: rgba(236,231,222,0.9); }
.skill .meta .val { color: var(--text); }
.skill .bar { margin-top: 0.5rem; height: 0.375rem; width: 100%; border-radius: 9999px; background: rgba(255,255,255,0.05); overflow: hidden; }
.skill .fill { height: 100%; border-radius: 9999px; background: linear-gradient(to right, var(--gold), var(--gold2)); }
.subhead { margin-top: 2.5rem; font-family: var(--font-display); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--warm); }
.certs { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; }
.certs li { font-size: 0.75rem; border-radius: 9999px; border: 1px solid rgba(52,112,228,0.3);
  background: rgba(52,112,228,0.1); padding: 0.375rem 0.75rem; color: rgba(52,112,228,0.9); }
.strength-grid { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.strength { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2); padding: 1.25rem; }
.strength .ic { display: inline-flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center;
  border-radius: 0.5rem; background: var(--goldf); color: var(--gold); }
.strength p { margin-top: 1rem; font-family: var(--font-display); color: var(--warm); }
.h2-sm { font-family: var(--font-display); font-size: 1.25rem; color: var(--warm); }

/* Process */
.proc-wrap { position: relative; margin-top: 4rem; }
.proc-line { display: none; position: absolute; top: 3rem; left: 3rem; right: 3rem; height: 1px;
  background: linear-gradient(to right, rgba(200,144,42,0), rgba(200,144,42,0.4), rgba(200,144,42,0)); }
.proc-grid { display: grid; gap: 2rem; }
@media (min-width:1024px){ .proc-grid { grid-template-columns: repeat(4,1fr);} .proc-line{ display:block; } }
.proc-card { position: relative; height: 100%; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2); padding: 1.5rem; }
.proc-num { position: relative; z-index: 10; height: 4rem; width: 4rem; border-radius: 9999px; background: var(--s1);
  border: 1px solid rgba(200,144,42,0.4); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.25rem; }
.proc-card h3 { margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--warm); }
.proc-card ul { margin-top: 1rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--text); }
.proc-card li { display: flex; gap: 0.5rem; }
.proc-card li .b { color: var(--gold); }

/* Values */
.val-grid { margin-top: 4rem; display: grid; gap: 3rem; }
@media (min-width:1024px){ .val-grid { grid-template-columns: repeat(2,1fr);} }
.drives-card { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2); padding: 1.75rem; }
.drives-card .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; }
.drives-card .lbl.teal { color: var(--teal); }
.drives-card .lbl.gold { color: var(--gold); }
.drives-list { margin-top: 1.25rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.drives-list li { display: flex; align-items: center; gap: 0.75rem; color: rgba(236,231,222,0.9); }
.drives-list .d { height: 0.375rem; width: 0.375rem; border-radius: 9999px; background: var(--gold); }
.proud-grid { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.proud { border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s1); padding: 1rem; }
.proud .ic { color: var(--gold); }
.proud p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(236,231,222,0.9); line-height: 1.3; }

/* Contact */
.contact-grid { margin-top: 4rem; display: grid; gap: 2.5rem; }
@media (min-width:1024px){ .contact-grid { grid-template-columns: repeat(12,1fr);} .contact-form-col{ grid-column: span 7;} .contact-info-col{ grid-column: span 5;} }
.form-card { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2); padding: 1.5rem; }
@media (min-width:768px){ .form-card { padding: 2rem; } }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width:640px){ .form-row.two { grid-template-columns: repeat(2,1fr);} }
.field { display: block; margin-bottom: 1.25rem; }
.field > span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text); }
.field .control { margin-top: 0.5rem; }
.input { width: 100%; border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.1); background: var(--s1);
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--warm); font-family: var(--font-body); transition: border-color .2s; }
.input::placeholder { color: rgba(122,143,168,0.6); }
.input:focus { outline: none; border-color: var(--gold); }
textarea.input { resize: vertical; }
.field-err { margin-top: 0.375rem; font-size: 0.75rem; color: var(--destructive); }
.success { display: flex; align-items: flex-start; gap: 0.75rem; border-radius: 0.75rem;
  border: 1px solid rgba(24,196,172,0.3); background: var(--tealf); padding: 1rem; font-size: 0.875rem; color: var(--warm); margin-bottom: 1.25rem; }
.success .ic { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.info-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: var(--s2); padding: 1.5rem; }
.info-row { display: flex; align-items: center; gap: 0.75rem; transition: opacity .2s; }
.info-row:hover { opacity: 0.8; }
.info-row + .info-row { margin-top: 1rem; }
.info-row .ic { height: 2.5rem; width: 2.5rem; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0.5rem; background: var(--goldf); color: var(--gold); flex-shrink: 0; }
.info-row .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--text); }
.info-row .val { font-size: 0.875rem; color: var(--warm); }
.hours-lbl { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.hours-list { margin-top: 1rem; list-style: none; padding: 0; font-size: 0.875rem; color: rgba(236,231,222,0.9); display: flex; flex-direction: column; gap: 0.5rem; }
.hours-list li { display: flex; justify-content: space-between; }
.hours-list .muted { color: var(--text); }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 1rem;
  background: #25D366; padding: 1rem 1.5rem; font-weight: 500; color: #05140A; transition: opacity .2s; }
.wa-btn:hover { opacity: 0.9; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); background: rgba(9,13,24,0.6); }
.footer .cols { display: grid; gap: 2.5rem; padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width:768px){ .footer .cols { grid-template-columns: repeat(2,1fr);} }
@media (min-width:1024px){ .footer .cols { grid-template-columns: repeat(4,1fr);} }
.footer .brand { font-size: 1.25rem; }
.footer .desc { margin-top: 1rem; font-size: 0.875rem; color: var(--text); max-width: 20rem; }
.footer .socials { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer .socials a { height: 2.25rem; width: 2.25rem; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; border: 1px solid rgba(255,255,255,0.1); color: var(--text); transition: color .2s, border-color .2s; }
.footer .socials a:hover { color: var(--gold); border-color: var(--gold); }
.footer h4 { font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.1em; color: var(--warm); text-transform: uppercase; }
.footer ul { margin-top: 1rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer ul a { color: var(--text); transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer .contact-list { color: var(--text); }
.footer .contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer .contact-list li + li { margin-top: 0.625rem; }
.footer .contact-list a:hover { color: var(--warm); }
.footer .bar { border-top: 1px solid rgba(255,255,255,0.05); }
.footer .bar .row { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.5rem; padding-bottom: 1.5rem; font-size: 0.75rem; color: var(--text); }
.footer .bar .tag { font-family: var(--font-serif); font-style: italic; color: rgba(236,231,222,0.8); letter-spacing: 0.02em; }
@media (min-width:768px){ .footer .bar .row { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Scroll to top */
.to-top { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; height: 2.75rem; width: 2.75rem;
  border-radius: 9999px; background: var(--gold); color: var(--bg); display: none; align-items: center; justify-content: center;
  cursor: pointer; border: none; box-shadow: var(--shadow-gold); transition: background-color .2s, opacity .2s; }
.to-top:hover { background: var(--gold2); }
.to-top.show { display: inline-flex; }

/* 404 */
.notfound { display: flex; min-height: 100vh; align-items: center; justify-content: center; padding: 1rem; text-align: center; }
.notfound .code { font-family: var(--font-display); font-size: 4.5rem; }
.notfound h1 { margin-top: 1rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--warm); }
.notfound p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text); }

.icon { display: inline-block; vertical-align: middle; }
