/* ═══════════════════════════════════════════════════════════
   ADVOCATE INDRANI DAS — Premium Design System (Outfit)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ivory:        #F8F8F8;
  --beige:        #F2F2F0;
  --card:         #FFFFFF;
  --black:        #111111;
  --gray:         #555555;
  --green:        #2F3B2F;
  --green-hover:  #3D4D3D;
  --gold:         #B89B72;
  --border:       #E4E4E0;
  --footer-bg:    #000000;
  --font:         'Outfit', system-ui, sans-serif;
  --serif:        'Outfit', system-ui, sans-serif;
  --sans:         'Outfit', system-ui, sans-serif;
  --shadow-sm:    0 2px 16px rgba(47,59,47,.07);
  --shadow-md:    0 8px 40px rgba(47,59,47,.12);
  --shadow-lg:    0 20px 64px rgba(47,59,47,.16);
  --radius-sm:    12px;
  --radius-md:    18px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--ivory);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 600; line-height: 1.15; }

/* ── Typography ────────────────────────────────────────────── */
.heading-xl  { font-size: clamp(2rem, 7vw, 5rem); font-weight: 700; letter-spacing: -.03em; }
.heading-lg  { font-size: clamp(1.6rem, 5vw, 3.2rem); font-weight: 600; letter-spacing: -.02em; }
.heading-md  { font-size: clamp(1.2rem, 3.5vw, 2.3rem); font-weight: 600; letter-spacing: -.015em; }
.heading-sm  { font-size: clamp(1rem, 2.5vw, 1.6rem); font-weight: 600; }
.label-text  { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--gold); font-family: var(--font); }
.lead-text   { font-size: clamp(.88rem, 2vw, 1.15rem); line-height: 1.85; color: var(--gray); font-weight: 300; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 64px); width: 100%; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 80px); width: 100%; }
.section { padding: clamp(48px, 8vw, 120px) 0; }
.section-sm { padding: clamp(32px, 5vw, 80px) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 100px;
  font-family: var(--font); font-size: .9rem; font-weight: 600;
  letter-spacing: .03em; transition: var(--transition);
  white-space: nowrap; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  width: auto;
}
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 24px rgba(47,59,47,.28);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--green-hover);
  box-shadow: 0 8px 36px rgba(47,59,47,.38);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #EEECEA;
  color: var(--black);
  border: 1.5px solid #E0DDD9;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E4E1DE;
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 20px rgba(184,155,114,.3);
}
.btn-gold:hover { background: #a08860; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  display: inline-flex; align-items: center;
}
.btn-outline-white:hover, .btn-outline-white:focus {
  background: rgba(255,255,255,.12); border-color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn-lg { padding: 17px 44px; font-size: 1rem; }

/* ── Section Header ────────────────────────────────────────── */
.section-header { margin-bottom: clamp(28px, 5vw, 72px); }
.section-header.center { text-align: center; }
.section-header .label-text { display: block; margin-bottom: 14px; }
.section-header .heading-lg { margin-bottom: 18px; }
.section-header .lead-text { max-width: 600px; }
.section-header.center .lead-text { margin: 0 auto; }
.divider {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.section-header.center .divider { margin: 20px auto; }

/* ── Animations ────────────────────────────────────────────── */
.fade-up   { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
.fade-in   { opacity: 0; transition: opacity .65s ease; }
.fade-left { opacity: 0; transform: translateX(-36px); transition: opacity .65s ease, transform .65s ease; }
.fade-right{ opacity: 0; transform: translateX(36px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible,.fade-in.visible,.fade-left.visible,.fade-right.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
  padding: 14px 28px;
  background: rgba(242, 246, 242, 0.76);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top: none;
  border-radius: 100px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 32px rgba(47, 59, 47, 0.14),
    0 2px 6px rgba(47, 59, 47, 0.08);
  transition: padding .3s ease, box-shadow .3s ease, background .3s ease, top .3s ease;
  max-width: 1232px;
  margin: 0 auto;
  isolation: isolate;
}
.navbar.scrolled {
  top: 10px;
  padding: 11px 28px;
  background: rgba(248, 251, 248, 0.94);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 12px 48px rgba(47, 59, 47, 0.16),
    0 3px 10px rgba(47, 59, 47, 0.09);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.nav-logo-name {
  font-family: var(--font); font-size: 1.05rem; font-weight: 700;
  color: var(--black); letter-spacing: -.02em; line-height: 1.15;
  white-space: pre-line;
}
.nav-logo-title {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: .82rem; font-weight: 500; color: var(--gray);
  letter-spacing: .02em; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta-mobile { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--black);
  transition: var(--transition); border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 88vw); background: #fff;
  z-index: 1001; padding: 72px 28px 36px;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mobile-menu.active { right: 0; }
.mobile-menu-links { display: flex; flex-direction: column; }
.mobile-menu-links a {
  font-family: var(--font); font-size: 1.15rem; font-weight: 500;
  color: var(--black); padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.mobile-menu-links a:hover { color: var(--green); padding-left: 8px; }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-cta .btn { justify-content: center; width: 100%; }
.mobile-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%;
  background: var(--beige); color: var(--black);
  font-size: 1.1rem; cursor: pointer;
  transition: var(--transition); border: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent;
}
.mobile-close:hover { background: var(--border); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: all .3s cubic-bezier(.4,0,.2,1); text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 40px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float-tooltip {
  position: absolute; right: 68px; background: #111; color: #fff;
  padding: 6px 14px; border-radius: 100px; font-size: .78rem; font-weight: 500;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s; letter-spacing: .02em;
}
.wa-float-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%); border: 6px solid transparent;
  border-left-color: #111; border-right: 0; width: 0; height: 0;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: #ffffff;
  padding-top: 88px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .15;
}
.hero-blob-1 {
  width: 600px; height: 600px; top: -100px; right: -150px;
  background: radial-gradient(circle, #e8e8e2 0%, transparent 70%);
}
.hero-blob-2 {
  width: 400px; height: 400px; bottom: -50px; left: -100px;
  background: radial-gradient(circle, #d8e0d8 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(16px, 5vw, 64px);
}
.hero-content { padding: 24px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); font-weight: 600; margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700; letter-spacing: -.04em;
  line-height: 1.05; margin-bottom: 22px;
}
.hero-title .accent { color: var(--green); font-style: italic; font-weight: 300; }
.hero-subtitle {
  font-size: clamp(.88rem, 1.5vw, 1.1rem);
  line-height: 1.9; color: var(--gray); font-weight: 300;
  max-width: 480px; margin-bottom: 40px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 44px; align-items: center;
}
.hero-actions .btn { width: auto; }
.hero-stats {
  display: flex; gap: 28px; flex-wrap: nowrap; align-items: flex-end;
}
.hero-stat { display: flex; flex-direction: column; flex-shrink: 0; }
.hero-stat-number,
.hero-stats .stat-number {
  font-family: var(--font); font-size: 1.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block;
}
.hero-stat-label {
  font-size: .68rem; color: var(--gray); letter-spacing: .08em;
  text-transform: uppercase; margin-top: 5px; font-weight: 500;
  white-space: nowrap;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image-frame {
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: none;
  background: transparent;
  width: 100%;
  position: relative;
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-xl);
}
.hero-badge {
  position: absolute; bottom: 28px; left: -20px;
  background: #fff; border-radius: var(--radius-md);
  padding: 14px 20px; border: 1px solid var(--border);
  box-shadow: none;
}
.hero-badge-text {
  font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--green);
}
.hero-badge-sub { font-size: .65rem; color: var(--gray); margin-top: 2px; letter-spacing: .06em; text-transform: uppercase; }
.hero-award {
  position: absolute; top: 36px; right: -16px;
  background: var(--green); color: #fff;
  border-radius: var(--radius-md); padding: 16px 18px;
  text-align: center; box-shadow: none;
}
.hero-award-number {
  font-family: var(--font); font-size: 1.5rem; font-weight: 700; line-height: 1;
}
.hero-award-label { font-size: .6rem; opacity: .8; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--green); padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 18px; flex-shrink: 0;
  font-family: var(--font); font-size: .95rem; color: rgba(255,255,255,.75);
  font-weight: 300; letter-spacing: .02em;
}
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-section { background: var(--ivory); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px); align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 3/4;
  background: var(--beige);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 170px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid #fff; aspect-ratio: 1;
  background: var(--beige);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-badge {
  position: absolute; top: 36px; left: -16px;
  background: var(--green); color: #fff;
  border-radius: var(--radius-lg); padding: 20px 22px;
  box-shadow: var(--shadow-md); max-width: 190px;
}
.about-quote-badge .quote-mark {
  font-family: var(--font); font-size: 2.5rem; font-weight: 200; line-height: 1;
  opacity: .4; margin-bottom: 6px;
}
.about-quote-badge .quote-text {
  font-family: var(--font); font-style: italic;
  font-size: .86rem; line-height: 1.5; font-weight: 300;
}
.about-content { padding: 20px 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.about-value-item {
  background: #fff; border-radius: var(--radius-md);
  padding: 18px; border: 1px solid var(--border);
  transition: var(--transition);
}
.about-value-item:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.about-value-icon {
  width: 34px; height: 34px; background: var(--beige);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 10px; border: 1px solid var(--border);
}
.about-value-icon svg { width: 16px; height: 16px; stroke: var(--green); }
.about-value-title {
  font-family: var(--font); font-size: .92rem; font-weight: 700; margin-bottom: 4px;
}
.about-value-text { font-size: .8rem; color: var(--gray); line-height: 1.6; }
.about-signature {
  font-family: var(--font); font-style: italic; font-size: 1.8rem; font-weight: 300;
  color: var(--green); margin-top: 28px; line-height: 1;
}
.about-signature-name {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray); margin-top: 8px; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════ */
.services-section { background: #F2F2F0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(47,59,47,.06);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-card-img {
  height: 260px; overflow: hidden; background: var(--beige);
  position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige), var(--border));
}
.service-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 44px; height: 44px; background: var(--beige);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px; border: 1px solid var(--border);
}
.service-card-icon svg { width: 20px; height: 20px; stroke: var(--green); }
.service-card-title {
  font-family: var(--font); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--black);
}
.service-card-tagline { font-size: .85rem; color: var(--gray); line-height: 1.7; flex: 1; }
.service-card-link {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: .76rem; font-weight: 700; color: var(--green);
  letter-spacing: .06em; text-transform: uppercase;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 14px; }
.service-card-link svg { width: 14px; height: 14px; stroke: var(--green); }

/* ══════════════════════════════════════════════════════════
   PHILOSOPHY SECTION
══════════════════════════════════════════════════════════ */
.philosophy-section { background: var(--ivory); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.philosophy-items { display: flex; flex-direction: column; gap: 28px; }
.philosophy-item { display: flex; gap: 20px; align-items: flex-start; }
.philosophy-number {
  font-family: var(--font); font-size: 2.5rem; font-weight: 200;
  color: var(--border); line-height: 1; flex-shrink: 0; width: 44px;
}
.philosophy-item-title { font-family: var(--font); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.philosophy-item-text { font-size: .86rem; color: var(--gray); line-height: 1.8; }
.philosophy-quote {
  background: var(--green); color: #fff;
  border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 44px);
  position: relative; overflow: hidden;
}
.philosophy-quote::before {
  content: '"'; font-family: var(--font); font-size: 14rem; font-weight: 200;
  position: absolute; top: -60px; left: -10px; opacity: .05;
  line-height: 1; pointer-events: none;
}
.philosophy-quote-text {
  font-family: var(--font); font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-style: italic; font-weight: 300; line-height: 1.7; margin-bottom: 28px; position: relative;
}
.philosophy-quote-author { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .6; font-weight: 500; }
.philosophy-quote-gold { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════════════ */
.stats-section { background: var(--black); padding: clamp(40px, 7vw, 96px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 500;
}
.stat-divider {
  width: 28px; height: 1px; background: var(--gold);
  margin: 10px auto; opacity: .35;
}

/* ══════════════════════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════════════════════ */
.timeline-section { background: #F2F2F0; }
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.timeline-line {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 2px; top: 0; bottom: 0; background: var(--border);
}
.timeline-line-fill { width: 100%; background: var(--green); height: 0; transition: height .05s linear; }
.timeline-step {
  display: flex; align-items: flex-start; gap: 36px;
  margin-bottom: 52px; position: relative;
}
.timeline-step:nth-child(even) { flex-direction: row-reverse; }
.timeline-step-content {
  flex: 1; background: #fff; border-radius: var(--radius-xl);
  padding: 22px 26px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.timeline-step-content:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.timeline-step-number { font-size: .68rem; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.timeline-step-title { font-family: var(--font); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.timeline-step-text { font-size: .85rem; color: var(--gray); line-height: 1.75; }
.timeline-node {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: var(--transition); position: relative;
}
.timeline-node svg { width: 18px; height: 18px; stroke: var(--border); transition: var(--transition); }
.timeline-node.active { border-color: var(--green); background: var(--green); }
.timeline-node.active svg { stroke: #fff; }
.timeline-step:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--ivory); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 clamp(0px, 3vw, 60px); }
.testimonial-card {
  background: #fff; border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 56px); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); max-width: 860px; margin: 0 auto;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font); font-size: 4rem; font-weight: 200; color: var(--border);
  line-height: 1; margin-bottom: 10px; display: block;
}
.testimonial-text {
  font-family: var(--font); font-size: clamp(.95rem, 2vw, 1.3rem);
  font-style: italic; font-weight: 300; line-height: 1.85; color: var(--black);
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--beige); overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--border); display: flex; align-items: center;
  justify-content: center;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar-initials {
  font-family: var(--font); font-size: 1.05rem; font-weight: 700; color: var(--green);
}
.testimonial-name { font-family: var(--font); font-size: .95rem; font-weight: 700; }
.testimonial-role { font-size: .74rem; color: var(--gray); margin-top: 2px; letter-spacing: .04em; }
.testimonial-stars { display: flex; gap: 3px; margin-top: 5px; }
.testimonial-star { color: var(--gold); font-size: .86rem; }
.testimonial-rating-badge {
  position: absolute; top: 24px; right: 28px;
  background: var(--beige); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  display: flex; align-items: center; gap: 5px;
  font-size: .74rem; font-weight: 600; color: var(--gray);
}
.testimonial-rating-badge .star { color: var(--gold); }
.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.testimonial-prev, .testimonial-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; background: #fff;
  -webkit-tap-highlight-color: transparent;
}
.testimonial-prev:hover, .testimonial-next:hover {
  border-color: var(--green); background: var(--green);
}
.testimonial-prev:hover svg, .testimonial-next:hover svg { stroke: #fff; }
.testimonial-prev svg, .testimonial-next svg { width: 18px; height: 18px; stroke: var(--gray); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: var(--border); cursor: pointer; transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.testimonial-dot.active { background: var(--green); width: 24px; }

/* ══════════════════════════════════════════════════════════
   ARTICLES / HOME SECTION CARDS
══════════════════════════════════════════════════════════ */
.articles-section { background: var(--beige); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.article-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(47,59,47,.06);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green); }
.article-card-img {
  height: 240px; overflow: hidden; background: var(--beige); position: relative;
  display: block;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--beige), var(--border));
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff;
  border-radius: 100px; padding: 4px 12px;
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card-date { font-size: .7rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.article-card-title {
  font-family: var(--font); font-size: 1.05rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 10px; flex: 1; transition: color .2s;
}
.article-card:hover .article-card-title { color: var(--green); }
.article-card-excerpt { font-size: .83rem; color: var(--gray); line-height: 1.7; }
.article-card-link {
  display: flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: .74rem; font-weight: 700; color: var(--green);
  letter-spacing: .06em; text-transform: uppercase; transition: gap .2s;
}
.article-card:hover .article-card-link { gap: 12px; }
.article-card-link svg { width: 13px; height: 13px; stroke: var(--green); }

/* ══════════════════════════════════════════════════════════
   INSIGHTS PAGE — FEATURED ARTICLE CARD
   Fully responsive: side-by-side on desktop, stacked on mobile
══════════════════════════════════════════════════════════ */
.insights-section { background: var(--beige); }

.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
  min-height: 420px;
}

.featured-article-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8dfd0, #d4c9b5);
  min-height: 360px;
}

.featured-article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.featured-article:hover .featured-article-img-wrap img {
  transform: scale(1.04);
}

.featured-article-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}

.featured-article-category {
  position: absolute; top: 18px; left: 18px;
  background: var(--green); color: #fff;
  border-radius: 100px; padding: 5px 14px;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; z-index: 1;
}

.featured-article-body {
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article-meta {
  font-size: .75rem; color: var(--gold); letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
}

.featured-article-title {
  font-family: var(--font); font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700; line-height: 1.25; margin-bottom: 16px; color: var(--black);
}

.featured-article-excerpt {
  color: var(--gray); font-size: clamp(.84rem, 1.4vw, .94rem);
  line-height: 1.8; font-weight: 300; margin-bottom: 28px; flex: 1;
}

/* ── Insights grid (non-featured cards) ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Empty state */
.insights-empty {
  text-align: center; padding: 80px 0; color: var(--gray);
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--green); padding: clamp(48px, 8vw, 120px) 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 450px; height: 450px;
  border-radius: 50%; background: rgba(255,255,255,.04);
}
.cta-section::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px; width: 380px; height: 380px;
  border-radius: 50%; background: rgba(184,155,114,.08);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; padding: 0 16px; }
.cta-label { color: rgba(255,255,255,.55); letter-spacing: .17em; font-size: .7rem; text-transform: uppercase; margin-bottom: 18px; display: block; font-weight: 600; }
.cta-title { font-family: var(--font); font-size: clamp(1.5rem, 5vw, 3.2rem); font-weight: 300; color: #fff; margin-bottom: 16px; font-style: italic; }
.cta-subtitle { color: rgba(255,255,255,.65); font-size: clamp(.86rem, 1.6vw, 1rem); margin-bottom: 36px; line-height: 1.85; font-weight: 300; }
.cta-actions {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 12px; align-items: center;
}
.cta-actions .btn { width: auto; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq-section { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left; gap: 14px;
  font-family: var(--font); font-size: .98rem; font-weight: 600; color: var(--black);
  cursor: pointer; transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--gray); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: .88rem; color: var(--gray); line-height: 1.85; font-weight: 300; }
.faq-aside {
  background: var(--green); border-radius: var(--radius-xl);
  padding: 40px 32px; color: #fff; position: sticky; top: 100px;
}
.faq-aside-title { font-family: var(--font); font-size: 1.6rem; font-weight: 600; margin-bottom: 12px; }
.faq-aside-text { font-size: .86rem; opacity: .75; line-height: 1.85; margin-bottom: 24px; font-weight: 300; }
.faq-aside-info { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.faq-aside-info-item { display: flex; align-items: flex-start; gap: 12px; }
.faq-aside-info-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.faq-aside-info-label { font-size: .66rem; opacity: .55; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.faq-aside-info-value { font-size: .88rem; opacity: .9; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-section { background: var(--beige); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title { font-family: var(--font); font-size: 1.7rem; font-weight: 600; margin-bottom: 8px; }
.contact-info-text { font-size: .88rem; color: var(--gray); line-height: 1.85; font-weight: 300; }
.contact-info-items { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.contact-info-label { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; font-weight: 600; }
.contact-info-value { font-size: .9rem; color: var(--black); font-weight: 600; }
.contact-form-wrap {
  background: #fff; border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-title { font-family: var(--font); font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.contact-form-subtitle { font-size: .84rem; color: var(--gray); margin-bottom: 24px; font-weight: 300; }

/* Floating Inputs */
.floating-input { position: relative; margin-bottom: 16px; }
.floating-input label {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: .86rem; color: var(--gray); pointer-events: none;
  transition: var(--transition); background: transparent; font-weight: 400;
}
.floating-input textarea ~ label { top: 20px; transform: none; }
.floating-input.focused label, .floating-input.filled label {
  top: -9px; left: 14px; font-size: .64rem; color: var(--green);
  background: #fff; padding: 0 6px; transform: none;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}
.floating-input input, .floating-input textarea, .floating-input select {
  width: 100%; padding: 16px 18px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: #fff;
  font-size: .9rem; color: var(--black); outline: none;
  transition: border-color .2s; font-weight: 400;
  -webkit-appearance: none;
}
.floating-input input:focus, .floating-input textarea:focus, .floating-input select:focus {
  border-color: var(--green);
}
.floating-input textarea { min-height: 130px; resize: vertical; padding-top: 20px; }
.floating-input select { appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-message { padding: 13px 18px; border-radius: var(--radius-md); font-size: .85rem; margin-bottom: 14px; font-weight: 500; }
.form-success { background: #edf7ed; border: 1px solid #b8dbb8; color: #1e4d1e; }
.form-error   { background: #fdf0ee; border: 1px solid #e8c4bc; color: #7a2218; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--green); padding: clamp(96px, 12vw, 160px) 0 clamp(48px, 7vw, 100px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: rgba(255,255,255,.45); margin-bottom: 16px;
  font-weight: 500; letter-spacing: .04em; flex-wrap: wrap;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb .sep { opacity: .35; }
.page-hero-breadcrumb .current { color: rgba(255,255,255,.75); }
.page-hero-title {
  font-family: var(--font); font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.page-hero-title em { font-style: italic; font-weight: 300; }
.page-hero-subtitle {
  font-size: clamp(.86rem, 1.5vw, 1.05rem); color: rgba(255,255,255,.65);
  max-width: 600px; line-height: 1.85; font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   CLIENT EXPERIENCE SECTION
══════════════════════════════════════════════════════════ */
.experience-section { background: #ffffff; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.experience-card {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  border: 1px solid var(--green);
  transition: var(--transition); text-align: center;
  box-shadow: 0 4px 20px rgba(47,59,47,.18);
}
.experience-card:hover {
  background: var(--green-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.experience-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
  border: 1px solid rgba(255,255,255,.2);
}
.experience-icon svg { width: 24px; height: 24px; stroke: #fff; }
.experience-title {
  font-family: var(--font); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; color: #fff;
}
.experience-text {
  font-size: .84rem; color: rgba(255,255,255,.75);
  line-height: 1.8; font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   PROSE (article pages)
══════════════════════════════════════════════════════════ */
.prose h2 { font-family: var(--font); font-size: 1.55rem; font-weight: 700; margin: 32px 0 12px; }
.prose h3 { font-family: var(--font); font-size: 1.18rem; font-weight: 700; margin: 22px 0 9px; }
.prose p { color: var(--gray); line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { color: var(--gray); line-height: 1.85; margin-bottom: 7px; font-weight: 300; }
.prose a { color: var(--green); border-bottom: 1px solid var(--border); transition: border-color .2s; }
.prose a:hover { border-color: var(--green); }
.prose blockquote {
  border-left: 3px solid var(--gold); padding-left: 20px;
  margin: 24px 0; font-style: italic; font-weight: 300;
  font-size: 1.08rem; color: var(--black); opacity: .85;
}

/* Tag pills */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: .66rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
}
.tag-green { background: rgba(47,59,47,.08); color: var(--green); }
.tag-gold  { background: rgba(184,155,114,.12); color: #9a7e50; }
.tag-beige { background: var(--beige); color: var(--gray); border: 1px solid var(--border); }

/* ── Confidentiality / Promise ── */
.promise-section { background: var(--beige); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.promise-item {
  text-align: center; padding: 26px 18px;
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  background: #fff; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(47,59,47,.05);
}
.promise-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--beige); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px; border: 1px solid var(--border);
}
.promise-icon svg { width: 22px; height: 22px; stroke: var(--green); }
.promise-title { font-family: var(--font); font-size: .98rem; font-weight: 700; margin-bottom: 8px; }
.promise-text { font-size: .8rem; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ══════════════════════════════════════════════════════════
   PRACTICE AREAS — DETAIL PAGE
══════════════════════════════════════════════════════════ */
.practice-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}
.practice-detail-sidebar {
  position: sticky;
  top: 100px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: #000000;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-logo-name {
  font-family: var(--font); font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.footer-logo-title {
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.footer-brand-text {
  font-size: .82rem; line-height: 1.85; margin: 18px 0; opacity: .75; max-width: 280px; font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); display: flex;
  align-items: center; justify-content: center; transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.footer-social-link:hover { border-color: var(--gold); background: rgba(184,155,114,.12); }
.footer-social-link svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.65); transition: stroke .2s; }
.footer-social-link:hover svg { stroke: var(--gold); }
.footer-col-title {
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  color: #fff; margin-bottom: 16px; letter-spacing: .02em;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .8rem; color: rgba(255,255,255,.6);
  transition: color .2s; font-weight: 400;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: .78rem; line-height: 1.6; font-weight: 300; color: rgba(255,255,255,.7); }
.footer-contact-text a { transition: color .2s; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-text { font-size: .72rem; opacity: .45; font-weight: 400; color: #fff; }
.footer-bottom-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .72rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-credit { font-size: .7rem; color: rgba(255,255,255,.35); text-align: center; padding: 10px 0 18px; font-weight: 400; }
.footer-credit a { color: var(--gold); text-decoration: none; transition: opacity .2s; font-weight: 500; }
.footer-credit a:hover { opacity: .85; }

/* ══════════════════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════════════════ */
.admin-body {
  background: #f2f2f2; min-height: 100vh;
  font-family: var(--font); color: var(--black);
}
.admin-sidebar {
  position: fixed; left: 0; top: 0; bottom: 0; width: 248px;
  background: var(--green); color: #fff; padding: 0; overflow-y: auto; z-index: 100;
}
.admin-logo {
  padding: 22px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-logo-name { font-family: var(--font); font-size: .98rem; font-weight: 700; }
.admin-logo-sub { font-size: .6rem; opacity: .45; letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; font-weight: 500; }
.admin-nav { padding: 10px 0; }
.admin-nav-section { padding: 12px 20px 4px; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .35; font-weight: 600; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: .82rem; color: rgba(255,255,255,.65);
  transition: all .2s; border-left: 2.5px solid transparent; font-weight: 400;
}
.admin-nav a:hover, .admin-nav a.active {
  color: #fff; background: rgba(255,255,255,.08); border-left-color: var(--gold);
}
.admin-nav a svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }
.admin-main { margin-left: 248px; padding: 24px; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: var(--radius-md); padding: 13px 20px;
  box-shadow: var(--shadow-sm); margin-bottom: 22px; border: 1px solid #e8e8e8;
}
.admin-page-title { font-family: var(--font); font-size: 1.25rem; font-weight: 700; }
.admin-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
  border: 1px solid #e8e8e8; margin-bottom: 18px;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; padding: 10px 13px; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid #eeeeee; font-weight: 600;
}
.admin-table td { padding: 12px 13px; font-size: .84rem; border-bottom: 1px solid #f2f2f2; }
.admin-table tr:hover td { background: #f9f9f9; }
.admin-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: .66rem; font-weight: 600; letter-spacing: .06em;
}
.admin-badge-green { background: #e6f4e6; color: #1a521a; }
.admin-badge-red   { background: #fde8e8; color: #8b2020; }
.admin-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px; font-size: .8rem;
  font-weight: 600; transition: var(--transition); cursor: pointer;
  letter-spacing: .02em; -webkit-tap-highlight-color: transparent;
}
.admin-btn-primary   { background: var(--green); color: #fff; }
.admin-btn-primary:hover { background: var(--green-hover); }
.admin-btn-danger    { background: #dc2626; color: #fff; }
.admin-btn-danger:hover  { background: #b91c1c; }
.admin-btn-secondary { background: #f0f0f0; color: var(--black); border: 1px solid #e0e0e0; }
.admin-btn-secondary:hover { background: #e5e5e5; }
.admin-form-group { margin-bottom: 16px; }
.admin-label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: 5px; color: var(--gray); }
.admin-input, .admin-select, .admin-textarea {
  width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
  border: 1.5px solid #e0e0e0; font-size: .86rem; color: var(--black); outline: none;
  transition: border-color .2s; font-family: var(--font); background: #fff;
  -webkit-appearance: none;
}
.admin-input:focus, .admin-select:focus, .admin-textarea:focus { border-color: var(--green); }
.admin-textarea { min-height: 110px; resize: vertical; }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.admin-stat-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid #e8e8e8;
}
.admin-stat-card-value { font-family: var(--font); font-size: 1.9rem; font-weight: 700; color: var(--green); }
.admin-stat-card-label { font-size: .7rem; color: var(--gray); margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .articles-grid, .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 36px; }
  .admin-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 36px; }
  .nav-links { gap: 16px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-detail-grid { grid-template-columns: 1fr; }
  .practice-detail-sidebar { position: static; }
  .featured-article { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body, html { overflow-x: hidden; max-width: 100vw; }

  /* ── Navbar ── */
  .navbar {
    top: 12px; left: 12px; right: 12px;
    padding: 16px 20px; border-radius: 100px;
  }
  .navbar.scrolled { top: 8px; padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-cta-mobile {
    display: flex; align-items: center;
  }
  .nav-cta-mobile .btn {
    font-size: .78rem; padding: 10px 18px;
    letter-spacing: .02em; white-space: nowrap; font-weight: 600;
  }

  /* ── Hero ── */
  .hero { padding-top: 80px; min-height: auto; background: #ffffff; }
  .hero-inner {
    grid-template-columns: 1fr; gap: 24px;
    padding: 28px 16px 48px;
  }
  .hero-visual {
    order: -1; width: 100%;
    max-width: 300px; margin: 0 auto;
  }
  .hero-image-frame {
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
  }
  .hero-image-frame img {
    width: 100%; height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
  }
  .hero-badge, .hero-award { display: none; }
  .hero-content { padding: 0; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-subtitle { max-width: 100%; font-size: .9rem; margin-bottom: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat-number,
  .hero-stats .stat-number { font-size: 1.45rem !important; }
  .hero-actions {
    flex-direction: row; flex-wrap: wrap;
    gap: 10px; margin-bottom: 32px; justify-content: flex-start;
  }
  .hero-actions .btn { width: auto; }
  .hero-actions .btn-lg { padding: 13px 26px; font-size: .88rem; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-image-stack { overflow: hidden; }
  .about-img-accent { display: none; }
  .about-quote-badge { display: none; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-value-item { padding: 14px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 220px; }

  /* ── Featured Article (Insights page) — STACK vertically ── */
  .featured-article {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 32px;
  }
  .featured-article-img-wrap {
    min-height: 240px;
    height: 240px;
  }
  .featured-article-body {
    padding: 24px 20px;
  }
  .featured-article-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  /* ── Insights grid ── */
  .insights-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── Articles grid ── */
  .articles-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .article-card-img { height: 180px; }

  /* ── Experience ── */
  .experience-grid { grid-template-columns: 1fr 1fr; }

  /* ── Promise ── */
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ── Philosophy ── */
  .philosophy-grid { grid-template-columns: 1fr; gap: 28px; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* ── FAQ ── */
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-aside { position: static; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px 16px; }

  /* ── Practice detail ── */
  .practice-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .practice-detail-sidebar { position: static; top: auto; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; }
  .footer-credit { text-align: center; }

  /* ── Admin ── */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 14px; }
  .admin-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-grid-2 { grid-template-columns: 1fr; }
  .admin-topbar { padding: 12px 16px; }
  .admin-card { padding: 16px; }

  /* ── Timeline ── */
  .timeline-container { padding: 10px 0 10px 52px; overflow: visible; }
  .timeline-line { left: 18px; transform: none; }
  .timeline-step,
  .timeline-step:nth-child(even) {
    flex-direction: column; align-items: flex-start; gap: 12px;
  }
  .timeline-node {
    position: absolute; left: -52px; top: 0;
    width: 36px; height: 36px;
  }
  .timeline-node svg { width: 14px; height: 14px; }
  .timeline-step { position: relative; margin-bottom: 32px; }
  .timeline-step-content { width: 100%; }

  /* ── Page hero ── */
  .page-hero { padding: 90px 0 40px; }
  .page-hero-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  /* ── WhatsApp ── */
  .wa-float { bottom: 16px; right: 14px; width: 52px; height: 52px; }
  .wa-float svg { width: 25px; height: 25px; }
  .wa-float-tooltip { display: none; }

  /* ── Grids ── */
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ── CTA ── */
  .cta-actions {
    flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 10px;
  }
  .cta-actions .btn { width: auto; }
  .cta-actions .btn-lg { padding: 13px 24px; font-size: .88rem; }

  .section-header { margin-bottom: clamp(20px, 4vw, 40px); }
  .article-card-body { padding: 16px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 14px; width: 100%; }
  .section { padding: 40px 0; }
  .section-sm { padding: 28px 0; }

  .navbar { top: 10px; left: 10px; right: 10px; padding: 12px 14px; }
  .nav-logo-name { font-size: .9rem; }
  .nav-logo-title { font-size: .52rem; }
  .nav-cta-mobile .btn { font-size: .68rem; padding: 7px 13px; }

  /* Hero */
  .hero-inner { padding: 24px 14px 40px; }
  .hero-eyebrow { font-size: .62rem; padding: 6px 12px; }
  .hero-stats { gap: 12px; flex-wrap: wrap; }
  .hero-stat-number,
  .hero-stats .stat-number { font-size: 1.3rem !important; }
  .hero-visual { max-width: 260px; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero-actions .btn { width: auto; }
  .hero-actions .btn-lg { padding: 12px 22px; font-size: .84rem; }

  /* About values single column */
  .about-values { grid-template-columns: 1fr; }

  /* Services */
  .service-card-body { padding: 16px; }
  .service-card-img { height: 190px; }

  /* Featured article — full stack single col on small mobile */
  .featured-article {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }
  .featured-article-img-wrap {
    min-height: 200px;
    height: 200px;
  }
  .featured-article-body {
    padding: 20px 16px;
  }
  .featured-article-title { font-size: 1.15rem; }
  .featured-article-excerpt { font-size: .82rem; margin-bottom: 20px; }

  /* Insights and articles grid — single col on small mobile */
  .insights-grid { grid-template-columns: 1fr; gap: 16px; }
  .articles-grid { grid-template-columns: 1fr; gap: 14px; }
  .article-card-img { height: 200px; }
  .article-card-body { padding: 14px; }
  .article-card-title { font-size: .96rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Testimonials */
  .testimonial-card { padding: 18px 14px; }
  .testimonial-text { font-size: .9rem; }
  .testimonial-controls { gap: 8px; }
  .testimonial-rating-badge { display: none; }
  .testimonial-slide { padding: 0; }

  /* Experience */
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { padding: 20px 14px; }

  /* Promise */
  .promise-item { padding: 18px 12px; }
  .promise-grid { grid-template-columns: 1fr; }

  /* Philosophy */
  .philosophy-quote { padding: 24px 18px; }
  .philosophy-quote-text { font-size: .96rem; }
  .philosophy-number { font-size: 2rem; width: 36px; }
  .philosophy-item { gap: 14px; }

  /* FAQ */
  .faq-aside { padding: 24px 18px; }
  .faq-aside-title { font-size: 1.3rem; }
  .faq-question { font-size: .9rem; padding: 16px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom-links { gap: 12px; }
  footer { padding: 44px 0 0; }

  /* Admin */
  .admin-stat-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-table { font-size: .78rem; }
  .admin-table th, .admin-table td { padding: 9px 10px; }
  .admin-page-title { font-size: 1.1rem; }

  /* CTA */
  .cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .cta-actions .btn { width: auto; }
  .cta-actions .btn-lg { padding: 12px 22px; font-size: .86rem; }

  .btn-lg { padding: 14px 28px; font-size: .88rem; }
  .btn { padding: 13px 26px; }
  .contact-info-title { font-size: 1.4rem; }
}
/* ============================================================
   NAV LOGO — Stacked two-line layout
   Add these rules to your style.css (or a partial like _navbar.css)
   ============================================================ */

/* Logo anchor — flex column, tightly stacked */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

/* "Advocate" — small label above the name */
.nav-logo-advocate {
  display: block;
  font-family: var(--sans);           /* your site's sans-serif */
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);                 /* gold accent tone */
  margin-bottom: 2px;
}

/* "Indrani Das" — large serif name */
.nav-logo-name {
  display: block;
  font-family: var(--serif);          /* your site's serif */
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);                 /* primary text colour */
  line-height: 1.1;
}

/* "LLB — Criminal & Corporate Lawyer" — tiny sub-line */
.nav-logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-top: 4px;
  white-space: nowrap;
}

/* Hide the sub-line on small screens to save space */
@media (max-width: 860px) {
  .nav-logo-sub {
    display: none;
  }
}

/* Shrink name slightly on very small screens */
@media (max-width: 400px) {
  .nav-logo-name {
    font-size: 1.05rem;
  }
  .nav-logo-advocate {
    font-size: 0.55rem;
  }
}

/* ============================================================
   ENQUIRE NOW button (inherits .btn .btn-primary from your theme)
   No extra CSS needed — the button label change in PHP is enough.
   If you want a custom accent override uncomment below:
   ============================================================ */

/*
.btn-enquire {
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-enquire:hover {
  background: var(--green-dark, #1a5c3a);
  transform: translateY(-1px);
}
*/
@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-cta-mobile .btn {
    font-size: .72rem;
    padding: 8px 14px;
    white-space: nowrap;
    font-weight: 600;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .nav-cta-mobile .btn {
    font-size: .65rem;
    padding: 7px 11px;
  }
}
@media (max-width: 768px) {
  .nav-cta-mobile .btn {
    font-size: .82rem;
    padding: 10px 18px;
    white-space: nowrap;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .nav-cta-mobile .btn {
    font-size: .76rem;
    padding: 9px 15px;
  }
}
@media (max-width: 768px) {
  /* Stack hero vertically, image on top */
  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 20px 16px 48px;
    gap: 0;
  }

  /* Pull image to the very top */
  .hero-visual {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* Make image bigger and fully visible — no crop */
  .hero-image-frame {
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
    width: 100%;
  }

  .hero-image-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: var(--radius-lg);
    display: block;
  }

  /* Content comes below image */
  .hero-content {
    order: 2;
    padding: 24px 0 0;
  }

  /* Hide floating badges on mobile */
  .hero-badge,
  .hero-award {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 16px 14px 40px;
  }

  /* Let image take more width on small screens */
  .hero-visual {
    max-width: 100%;
  }

  .hero-image-frame img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    gap: 0;
    position: relative;
  }

  .hero-visual {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .hero-image-frame img {
    margin-bottom: 0;
    object-fit: contain;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    margin-top: -32px; /* pulls content UP so badge overlaps image bottom */
    padding-top: 0;
    background: #fff; /* prevents text showing through image */
    border-radius: 12px 12px 0 0;
  }

  .hero-eyebrow {
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 480px) {
  .hero-content {
    margin-top: -32px;
  }
}
.experience-card {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  border: 1px solid var(--green);
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 20px rgba(47,59,47,.18);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  transform: translateZ(0); /* forces GPU layer, fixes corner bleed */
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 3/4;
  background: var(--beige);
  pointer-events: none;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.about-image-stack {
  position: relative;
  pointer-events: none;
}