/* ════════════════════════════════════════════════════════════════════
   AKASHDEEP SINGH · AD_June_2026_v2
   Editorial executive · Dark + Light theme · 2026 modern CSS
   ════════════════════════════════════════════════════════════════════ */

/* ── THEMES (light-dark() + data-theme override) ── */
:root {
  color-scheme: light dark;
  --bg:        light-dark(#FAF7F0, #0B0B0D);
  --surface:   light-dark(#F5F0E5, #131316);
  --surface-2: light-dark(#EDE7D7, #1A1A1E);
  --ink:       light-dark(#0E0E10, #F4EFE2);
  --ink-2:     light-dark(#3A3A3F, #B8B0A1);
  --muted:     light-dark(#6B6859, #8A8579);
  --line:      light-dark(rgba(14,14,16,0.10), rgba(244,239,226,0.10));
  --line-2:    light-dark(rgba(14,14,16,0.18), rgba(244,239,226,0.18));
  --gold:      light-dark(#B8954B, #D4B065);
  --gold-2:    light-dark(#D4B065, #E8C97D);
  --shadow:    light-dark(0 24px 60px -20px rgba(14,14,16,0.18), 0 24px 60px -20px rgba(0,0,0,0.6));
  --shadow-card: light-dark(0 1px 2px rgba(14,14,16,0.06), 0 1px 2px rgba(0,0,0,0.4));
  --noise: light-dark(0.02, 0.04);

  --serif:  'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:   'Geist', 'Inter', system-ui, sans-serif;
  --mono:   'Geist Mono', 'JetBrains Mono', Consolas, monospace;

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-pill: 999px;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);

  --t-fast:   0.2s;
  --t-med:    0.4s;
  --t-slow:   0.7s;
}

[data-theme="light"] {
  color-scheme: light;
}
[data-theme="dark"] {
  color-scheme: dark;
}

/* ── BASE ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--t-med), color var(--t-med);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--gold); color: var(--bg); }

/* ── NOISE LAYER (texture) ── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: var(--noise);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body > * { position: relative; z-index: 1; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.section { padding: 140px 0; }
.section-sm { padding: 80px 0; }

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: 'opsz' 96;
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.subhead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow .num { color: var(--muted); }

/* ── BUTTONS (magnetic) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: inherit;
  transform: translateY(110%);
  transition: transform var(--t-med) var(--ease-out);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.btn-arrow::after {
  content: '→';
  position: absolute;
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform var(--t-med) var(--ease-out);
}
.btn:hover .btn-arrow::after { transform: translateX(2px); }

/* ── SCROLL PROGRESS (CSS scroll-driven) ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  animation: scaleProgress linear;
  animation-timeline: scroll(root);
}
@keyframes scaleProgress { to { transform: scaleX(1); } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 48px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: padding var(--t-med) var(--ease), background var(--t-med), border-color var(--t-med);
}
.nav.scrolled {
  padding: 14px 48px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 1.1rem; letter-spacing: -0.01em;
}
.nav-logo .mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 0.95rem;
  transition: all var(--t-med) var(--ease-out);
}
.nav-logo:hover .mark { background: var(--gold); transform: rotate(-6deg); }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  justify-self: center;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px;
  backdrop-filter: blur(20px);
}
.nav-links a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  background: var(--ink);
  color: var(--bg);
}

.nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(15deg); }
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 18px; height: 18px;
  position: absolute;
  transition: all var(--t-med) var(--ease-bounce);
}
[data-theme="light"] .theme-toggle .icon-sun,
:root:not([data-theme]) .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="light"] .theme-toggle .icon-moon,
:root:not([data-theme]) .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0); }
[data-theme="dark"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0); }
  :root:not([data-theme]) .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--t-med) var(--ease-out);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: var(--t-fast); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mob-nav {
  position: fixed; top: 70px; left: 0; right: 0;
  background: color-mix(in srgb, var(--bg) 98%, transparent);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  transform: translateY(-120%); transition: 0.4s var(--ease);
  z-index: 99; border-bottom: 1px solid var(--line);
}
.mob-nav.open { transform: translateY(0); }
.mob-nav a { display: block; padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mob-nav a:last-child { border-bottom: 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 0.74rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-meta .dot {
  width: 8px; height: 8px;
  background: #22C55E; border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, #22C55E 20%, transparent);
  animation: pulse-availability 2s infinite;
}
@keyframes pulse-availability {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, #22C55E 20%, transparent); }
  50% { box-shadow: 0 0 0 10px color-mix(in srgb, #22C55E 5%, transparent); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 40px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-up 1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.3s; }
@keyframes line-up {
  to { transform: translateY(0); }
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.6s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.8s forwards;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  opacity: 0;
  animation: fade-scale 1.2s var(--ease-out) 0.4s forwards;
}
@keyframes fade-scale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.hero-portrait {
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.8s var(--ease-out);
}
.hero-portrait:hover img { transform: scale(1.04); }
.hero-portrait .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  font-family: var(--serif); font-size: 4rem; color: var(--gold);
  z-index: -1;
}

.hero-badge-card {
  position: absolute;
  bottom: 24px; left: -24px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-badge-card .num {
  font-family: var(--serif); font-size: 1.8rem;
  color: var(--gold); line-height: 1;
}
.hero-badge-card .lbl {
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MARQUEE ── */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: var(--ink);
}
.marquee-track .sep {
  color: var(--gold); font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── ABOUT PREVIEW ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-preview-text p {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-preview-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.1em 0 0;
  color: var(--gold);
  font-weight: 500;
}
.signature {
  margin-top: 32px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
}
.signature::before { content: '— '; color: var(--gold); }

.about-preview-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-preview-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-preview-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg) 40%, transparent), transparent 60%);
}
.about-preview-image .quote {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: light-dark(white, white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ── SCROLL-DRIVEN ANIMATION (modern CSS) ── */
.fade-in {
  animation: fade-up linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}

/* ── SERVICES (editorial) ── */
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.svc-card {
  position: relative;
  padding: 56px 48px;
  background: var(--bg);
  transition: background var(--t-med) var(--ease);
  cursor: pointer;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform var(--t-slow) var(--ease-out);
  z-index: 0;
}
.svc-card:hover::before { transform: translateY(0); }
.svc-card > * { position: relative; z-index: 1; transition: color var(--t-med); }
.svc-card:hover > * { color: var(--bg); }
.svc-card:hover .svc-num,
.svc-card:hover .svc-arrow { color: var(--gold); }
.svc-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.svc-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.svc-arrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.svc-arrow .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-med) var(--ease-bounce);
  font-size: 0.85rem;
}
.svc-card:hover .svc-arrow .arrow { transform: rotate(-45deg) scale(1.1); }

/* ── FEATURED ── */
.featured-row {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 80px;
  align-items: center;
}
.featured-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.featured-img:hover img { transform: scale(1.05); }
.featured-img .tag {
  position: absolute; top: 24px; left: 24px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}
.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fs-item .num {
  font-family: var(--serif); font-size: 2.4rem;
  color: var(--gold); line-height: 1;
  font-weight: 500;
}
.fs-item .lbl {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ── STATS (numeric editorial) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stats-grid .cell {
  padding: 80px 32px;
  background: var(--bg);
  text-align: center;
  transition: background var(--t-med);
}
.stats-grid .cell:hover { background: var(--surface); }
.stats-grid .num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.stats-grid .num em { color: var(--gold); font-style: normal; }
.stats-grid .lbl {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-med);
}
.timeline-item:hover { background: color-mix(in srgb, var(--surface) 50%, transparent); }
.timeline-item:hover .tl-year { color: var(--gold); }
.tl-year {
  font-family: var(--serif); font-size: 2rem;
  color: var(--ink); font-weight: 500;
  transition: color var(--t-med);
}
.tl-content h4 {
  font-family: var(--serif); font-size: 1.6rem;
  color: var(--ink); margin-bottom: 12px;
  font-weight: 500;
}
.tl-content p {
  color: var(--muted); line-height: 1.7;
}

/* ── TESTIMONIALS (carousel) ── */
.testi-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 40px 36px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: all var(--t-med) var(--ease-out);
}
.testi-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.testi-card .quote-mark {
  font-family: var(--serif); font-size: 4rem;
  color: var(--gold); line-height: 0.5;
  margin-bottom: 24px; display: block;
}
.testi-card .quote {
  font-family: var(--serif); font-size: 1.1rem;
  line-height: 1.55; color: var(--ink);
  margin-bottom: 32px;
}
.testi-card .person {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testi-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500;
}
.testi-card .name { font-family: var(--serif); font-weight: 500; color: var(--ink); }
.testi-card .role { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--muted); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 200px 0 100px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 12px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
}

/* ── DETAIL ROW (services/projects pages) ── */
.detail-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.detail-row.reverse > *:first-child { order: 2; }
.detail-row .detail-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.detail-row .detail-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.detail-row .detail-img:hover img { transform: scale(1.04); }
.detail-row h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.detail-row h2 em { font-style: italic; color: var(--gold); }
.detail-row .lead {
  color: var(--ink-2); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 32px;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 18px 0 18px 36px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2); font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: '+';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: start;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--sans); font-size: 1rem;
  transition: border-color var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.form-field select option { background: var(--bg); color: var(--ink); }

.contact-card {
  padding: 48px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.contact-card h3 {
  font-family: var(--serif); font-size: 1.6rem;
  margin-bottom: 8px; font-weight: 500;
}
.contact-card .role {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 16px; align-items: center;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-list .meta { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-list .val { color: var(--ink); font-size: 0.98rem; }

/* FAQ */
details.faq {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
details.faq summary {
  cursor: pointer;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-family: var(--mono); font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--t-med) var(--ease-bounce);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p {
  margin-top: 16px; color: var(--muted);
  line-height: 1.7; max-width: 760px;
}

/* ── CTA ── */
.cta-band {
  padding: 160px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400; line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 580px; margin: 0 auto 48px; line-height: 1.65;
}
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex; flex-direction: column;
}
.footer-brand .name {
  font-family: var(--serif); font-size: 1.6rem;
  margin-bottom: 16px; font-weight: 500;
}
.footer-brand p { color: var(--muted); line-height: 1.65; max-width: 360px; margin-bottom: 32px; }
.footer-social {
  display: flex; gap: 8px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all var(--t-med) var(--ease-out);
}
.footer-social a:hover {
  background: var(--ink); border-color: var(--ink); color: var(--bg);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { color: var(--ink); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; color: var(--muted);
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 95;
  display: flex; align-items: center;
  text-decoration: none;
}
.whatsapp-fab .label {
  background: var(--ink); color: var(--bg);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 500;
  margin-right: -16px;
  padding-right: 32px;
  opacity: 0;
  transform: translateX(20px) scale(0.95);
  transition: all var(--t-med) var(--ease-out);
  white-space: nowrap;
  box-shadow: var(--shadow);
  pointer-events: none;
}
.whatsapp-fab:hover .label,
.whatsapp-fab.expanded .label {
  opacity: 1; transform: translateX(0) scale(1);
}
.whatsapp-fab .btn-circle {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--t-med) var(--ease-out);
}
.whatsapp-fab:hover .btn-circle { transform: scale(1.08) rotate(-5deg); }
.whatsapp-fab .btn-circle svg { width: 28px; height: 28px; fill: white; }
.whatsapp-fab .btn-circle::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  opacity: 0.4;
  animation: ripple 2.2s infinite var(--ease-out);
  z-index: -1;
}
.whatsapp-fab .btn-circle::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  opacity: 0.4;
  animation: ripple 2.2s infinite var(--ease-out);
  animation-delay: 1.1s;
  z-index: -1;
}
@keyframes ripple {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0;   }
}
.whatsapp-fab .badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: #FF3B30; color: white;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  font-family: var(--sans);
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  z-index: 94;
  opacity: 0; pointer-events: none;
  transition: all var(--t-med) var(--ease-out);
  box-shadow: var(--shadow);
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold); transform: translateY(-4px); }

/* ── REVEAL (JS-driven backup for older browsers) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── VIEW TRANSITION (theme swap) ── */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.5s;
  animation-timing-function: var(--ease-out);
}
::view-transition-old(root) { animation-name: theme-out; }
::view-transition-new(root) { animation-name: theme-in; }
@keyframes theme-out { to { opacity: 0; } }
@keyframes theme-in  { from { opacity: 0; } }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner, .about-preview, .featured-row, .detail-row, .contact-grid, .services-header { grid-template-columns: 1fr; gap: 56px; }
  .detail-row.reverse > *:first-child { order: 1; }
  .svc-grid, .stats-grid, .testi-rail { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 80px 0; }
  .cta-band { padding: 100px 0; }
  .nav { padding: 16px 20px; grid-template-columns: 1fr auto; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .svc-card { padding: 40px 28px; }
  .svc-grid, .stats-grid, .testi-rail, .form-row { grid-template-columns: 1fr; }
  .stats-grid .cell { padding: 56px 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-fab .label { display: none; }
  .whatsapp-fab { bottom: 20px; right: 20px; }
  .back-top { bottom: 20px; left: 20px; width: 42px; height: 42px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
