/* ================================================
   DV KUNDE & ASSOCIATES  |  Premium Design System
   ================================================ */

/* ── DESIGN TOKENS ───────────────────────────────── */
:root {
  --gold:           #C97B26;
  --gold-light:     #E8A838;
  --gold-dark:      #a8631e;
  --gold-grad:      linear-gradient(135deg, #C97B26 0%, #E8A838 100%);
  --gold-glow:      0 4px 24px rgba(201,123,38,.35);

  --dark:           #0A1628;
  --dark-2:         #152035;
  --charcoal:       #1C2331;

  --cream:          #FDF8F2;
  --warm:           #F6EEE4;
  --warm-2:         #EEE3D6;

  --white:          #ffffff;
  --text-dark:      #111827;
  --text-mid:       #4B5563;
  --text-light:     #9CA3AF;
  --border:         #E8DDD2;

  --sh-sm:  0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --sh-md:  0 4px 20px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --sh-lg:  0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --sh-xl:  0 24px 72px rgba(0,0,0,.18);

  --r-sm:   6px;
  --r:      12px;
  --r-lg:   20px;
  --ease:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TOP BAR ─────────────────────────────────────── */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  transition: max-height var(--ease), opacity var(--ease), padding var(--ease);
  overflow: hidden;
}

.topbar.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  font-size: 11.5px;
  transition: color var(--ease);
}

.top-item:hover { color: var(--gold-light); }
.top-item svg { width: 12px; height: 12px; flex-shrink: 0; }

.top-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.55);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.top-social svg { width: 13px; height: 13px; }
.top-social:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201,123,38,.18);
}

/* ── NAVBAR ──────────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,221,210,.5);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow var(--ease), background var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  background: rgba(255,255,255,.99);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-svg { display: none; }

.brand-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 13px;
  letter-spacing: .3px;
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--ease);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-link.active::after { transform: scaleX(1); }

.btn-consult {
  background: var(--gold-grad);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  margin-left: 12px;
  box-shadow: var(--gold-glow);
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
  letter-spacing: .3px;
}

.btn-consult:hover {
  opacity: .88;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,123,38,.45);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=85') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,10,22,.90) 0%,
    rgba(8,18,38,.82) 55%,
    rgba(6,14,30,.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 28px;
  animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201,123,38,.15);
  border: 1px solid rgba(201,123,38,.4);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero-content h1 span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 15.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.78;
  margin-bottom: 42px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--gold-grad);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--gold-glow);
  transition: transform var(--ease), box-shadow var(--ease);
  letter-spacing: .3px;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,123,38,.5);
  color: var(--white);
}

.hero-btn-outline {
  color: var(--white);
  padding: 13px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background var(--ease), border-color var(--ease);
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── SECTION SHARED ───────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.title-bar, .title-line {
  width: 52px;
  height: 3px;
  background: var(--gold-grad);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ── FEATURES / ABOUT ───────────────────────────── */
.features {
  background: var(--cream);
  padding: 96px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.features-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 18px;
}

.features-left p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 28px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-grad);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 50px;
  box-shadow: var(--gold-glow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,123,38,.45);
  color: var(--white);
}

.features-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-bottom: 32px;
  width: 100%;
}

.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feat-icon {
  width: 68px;
  height: 68px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
  background: rgba(201,123,38,.05);
  transition: background var(--ease), transform var(--ease);
}

.feat-item:hover .feat-icon {
  background: rgba(201,123,38,.12);
  transform: scale(1.07);
}

.feat-icon svg { width: 30px; height: 30px; }

.feat-item p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.wa-section {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  color: var(--white);
}

.wa-section svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 64px 0;
  position: relative;
  overflow: visible;
}

.stats-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 8px 24px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(201,123,38,.2);
}

.stat-item:last-child::after { display: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.stat-label {
  font-size: 12px;
  letter-spacing: .8px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}

/* ── SERVICES ─────────────────────────────────────── */
.services {
  background: var(--white);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 32px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.service-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.service-item:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 74px;
  height: 74px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
  background: rgba(201,123,38,.05);
  transition: background var(--ease), transform var(--ease);
}

.service-item:hover .svc-icon {
  background: rgba(201,123,38,.1);
  transform: scale(1.1) rotate(5deg);
}

.svc-icon svg { width: 34px; height: 34px; }

.svc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--ease);
}

.service-item:hover .svc-name { color: var(--gold); }

.svc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: center;
}

/* ── SUB-SERVICES ─────────────────────────────────── */
.sub-services {
  background: var(--warm);
  padding: 80px 0;
}

.sub-services-alt {
  background: var(--white);
  padding: 80px 0;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.sub-svc-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), color var(--ease);
}

.sub-svc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: -1;
}

.sub-svc-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--gold);
  color: var(--white);
}

.sub-svc-item:hover::before { opacity: 1; }

.sub-services-alt .sub-svc-item {
  background: var(--warm);
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  background: var(--dark);
  padding: 96px 0;
}

.testimonials .section-title h2 { color: var(--white); }
.testimonials .section-title .eyebrow { color: var(--gold-light); }
.testimonials .title-bar { background: var(--gold-grad); }

.testi-wrapper {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(0.4,0,0.2,1);
}

.testi-card {
  min-width: calc(50% - 12px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 36px 32px;
  flex-shrink: 0;
  position: relative;
  backdrop-filter: blur(8px);
  transition: border-color var(--ease), background var(--ease);
}

.testi-card:hover {
  border-color: rgba(201,123,38,.4);
  background: rgba(255,255,255,.07);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 84px;
  color: rgba(201,123,38,.15);
  line-height: 1;
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.12);
}

.testi-avatar.amber  { background: linear-gradient(135deg, #C97B26, #E8A838); }
.testi-avatar.green  { background: linear-gradient(135deg, #2e7d32, #43A047); }
.testi-avatar.teal   { background: linear-gradient(135deg, #00838F, #26C6Da); }
.testi-avatar.orange { background: linear-gradient(135deg, #d84315, #FF7043); }
.testi-avatar.blue   { background: linear-gradient(135deg, #1565C0, #42A5F5); }

.testi-meta strong { font-size: 15px; font-weight: 700; color: var(--white); display: block; }
.testi-meta span   { font-size: 12px; color: rgba(255,255,255,.4); }
.testi-stars { color: #FBBF24; font-size: 14px; margin-top: 3px; letter-spacing: 1px; }

.testi-card > p {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  font-style: italic;
}

.testi-btn {
  display: block;
  margin: 32px auto 0;
  background: var(--gold-grad);
  color: var(--white);
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--gold-glow);
  transition: transform var(--ease), opacity var(--ease);
}

.testi-btn:hover { transform: translateY(-2px); opacity: .88; }

.google-score {
  margin-top: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.google-score strong { color: rgba(255,255,255,.8); }

/* ── ABOUT FIRM & KEY PERSONS ─────────────────────── */
.about-firm {
  background: var(--cream);
  padding: 96px 0;
}

.about-firm-text {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.92;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.key-persons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.key-person-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 0 0 34px;
  box-shadow: var(--sh-md);
  border-top: 4px solid var(--gold);
  transition: transform var(--ease), box-shadow var(--ease);
  overflow: hidden;
}

.key-person-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.key-person-photo {
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 24px;
}

.key-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .55s ease;
  display: block;
}

.key-person-card:hover .key-person-photo img { transform: scale(1.04); }

.key-person-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding: 0 28px;
}

.key-person-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  background: rgba(201,123,38,.1);
  border-radius: 50px;
  padding: 4px 14px;
  margin: 0 28px 18px;
  text-transform: uppercase;
  letter-spacing: .6px;
  border: 1px solid rgba(201,123,38,.2);
}

.key-person-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.88;
  padding: 0 28px;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  transition: background var(--ease), color var(--ease);
}

.google-review-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── FOOTER LOGO IMAGE ───────────── */
.footer-logo-img img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  padding: 4px;
}

/* ── GALLERY ─────────────────────── */
.gallery-section {
  background: var(--dark-2);
  padding: 96px 0;
}

.gallery-section .section-title h2 { color: var(--white); }
.gallery-section .section-title .eyebrow { color: var(--gold-light); }
.gallery-section .title-bar { background: var(--gold-grad); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--r-sm);
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover img { transform: scale(1.09); }

/* ── ADVICE CTA ───────────────────────────────────── */
.advice-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #162d50 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.advice-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C97B26' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.advice-inner { position: relative; }

.advice-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.advice-inner p {
  color: rgba(255,255,255,.5);
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-grad);
  color: var(--white);
  padding: 15px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--gold-glow);
  transition: transform var(--ease), box-shadow var(--ease);
  letter-spacing: .3px;
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(201,123,38,.5);
  color: var(--white);
}

/* ── CONTACT ──────────────────────────────────────── */
.contact {
  background: var(--white);
  padding: 96px 0 60px;
}

.contact-map-wrap {
  margin-top: 48px;
  height: 400px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}

.contact .section-title .eyebrow { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-info-box > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(201,123,38,.1), rgba(232,168,56,.06));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,123,38,.18);
}

.ci-icon svg { width: 19px; height: 19px; color: var(--gold); }

.contact-info-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  transition: color var(--ease);
}

.contact-info-item a:hover { color: var(--gold); }

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
  transition: gap var(--ease), opacity var(--ease);
}

.maps-link:hover { gap: 8px; opacity: .8; }

.contact-form-wrap {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--sh-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,123,38,.1);
}

.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn-submit {
  background: var(--gold-grad);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: var(--gold-glow);
  transition: transform var(--ease), opacity var(--ease);
  letter-spacing: .3px;
}

.btn-submit:hover { transform: translateY(-2px); opacity: .88; }

.form-msg { font-size: 12px; min-height: 18px; display: block; }
.form-msg.success { color: #2e7d32; }
.form-msg.error   { color: #c62828; }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--dark); }

.footer-body { padding: 76px 0 52px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.5fr;
  gap: 52px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-svg svg { width: 44px; height: 44px; }

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}

.footer-brand-text span {
  font-size: 11px;
  color: var(--gold-light);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-socials svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  letter-spacing: .4px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease), gap var(--ease);
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.footer-col ul li a:hover { color: var(--white); gap: 10px; }

.footer-addr {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.addr-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.addr-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}

.addr-item a { color: rgba(255,255,255,.5); transition: color var(--ease); }
.addr-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.footer-bottom strong { color: rgba(255,255,255,.55); font-weight: 600; }

/* ── WHATSAPP FLOAT ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 76px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  font-size: 12.5px;
  font-weight: 600;
  z-index: 900;
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,.55);
}

.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ── SCROLL TOP ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--gold-grad);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  z-index: 900;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 17px; height: 17px; }

/* ── REVEAL ANIMATION ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────── */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
}

/* ── Small Tablet ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sub-services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 280px; margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .stats-grid { gap: 20px; }
  .hero-content h1 { font-size: clamp(28px, 5vw, 48px); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Container tighter */
  .container { padding: 0 18px; }

  /* Sections */
  .features, .services, .sub-services, .sub-services-alt,
  .about-firm, .advice-cta, .contact, .gallery-section { padding: 64px 0; }
  .stats-bar { padding: 48px 0; }

  /* Hero */
  .hero { min-height: 100svh; background-attachment: scroll; }
  .hero-content { padding: 0 20px; }
  .hero-content h1 { font-size: clamp(26px, 7.5vw, 42px); line-height: 1.22; }
  .hero-content p { font-size: 14px; margin-bottom: 32px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btn-primary, .hero-btn-outline { text-align: center; padding: 14px 20px; }

  /* Topbar */
  .topbar-left { gap: 12px; }
  .top-item { font-size: 11px; }

  /* Navbar */
  .navbar { position: sticky; }
  .nav-inner { height: 62px; }
  .brand-name { font-size: 12px; }
  .brand-tagline { font-size: 10px; }
  .brand-logo-img { width: 46px; height: 46px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 16px 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
    z-index: 998;
    gap: 2px;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 11px 14px; width: 100%; border-radius: var(--r-sm); font-size: 13px; }
  .nav-link::after { display: none; }
  .nav-link.active { background: rgba(201,123,38,.08); }
  .btn-consult { margin-left: 0; text-align: center; border-radius: 8px; padding: 11px; width: 100%; }
  .nav-toggle { display: flex; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid { grid-template-columns: 1fr 1fr; max-width: 400px; margin: 0 auto 24px; gap: 24px 32px; }
  .features-left p { font-size: 13.5px; }

  /* Stats */
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 28px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .stat-item::after { display: none; }
  .stat-num { font-size: 42px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-item { padding: 28px 16px 24px; }
  .svc-icon { width: 60px; height: 60px; margin-bottom: 14px; }
  .svc-icon svg { width: 28px; height: 28px; }
  .svc-name { font-size: 13.5px; }
  .svc-desc { font-size: 12.5px; }

  /* Sub-services */
  .sub-services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sub-svc-item { font-size: 12px; padding: 13px 10px; }

  /* Testimonials */
  .testi-card { min-width: 100%; padding: 28px 20px; }
  .testi-card::before { font-size: 64px; top: 12px; right: 18px; }

  /* Key persons */
  .key-persons-grid { grid-template-columns: 1fr; }
  .key-person-card { padding: 0 0 24px; }
  .key-person-photo { height: 300px; }
  .key-person-card h3 { padding: 0 20px; }
  .key-person-role { margin: 0 20px 14px; }
  .key-person-card p { padding: 0 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Advice CTA */
  .advice-inner h2 { font-size: clamp(22px, 5vw, 34px); }
  .btn-call { padding: 13px 28px; font-size: 14px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col { grid-column: auto; }
  .footer-body { padding: 56px 0 40px; }

  /* WhatsApp float — move to bottom-LEFT on mobile, icon only */
  .whatsapp-float {
    left: 16px;
    right: auto;
    bottom: 16px;
    padding: 13px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  /* Scroll-top stays bottom-RIGHT, same level */
  .scroll-top { bottom: 16px; right: 16px; }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .features, .services, .sub-services, .sub-services-alt,
  .about-firm, .advice-cta, .contact, .gallery-section { padding: 52px 0; }
  .stats-bar { padding: 36px 0; }

  /* Topbar - hide left side */
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }

  /* Hero */
  .hero-content h1 { font-size: clamp(22px, 8vw, 34px); }
  .hero-eyebrow { font-size: 10px; padding: 5px 16px; margin-bottom: 16px; }

  /* Services: single column on very small */
  .services-grid { grid-template-columns: 1fr; }
  .service-item { flex-direction: row; text-align: left; gap: 16px; padding: 20px 18px; align-items: flex-start; }
  .svc-icon { flex-shrink: 0; margin-bottom: 0; }
  .svc-desc { text-align: left; }

  /* Sub-services: 2 col */
  .sub-services-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Stats: keep 2x2 */
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 10.5px; }

  /* Section titles */
  .section-title { margin-bottom: 36px; }
  .section-title h2 { font-size: clamp(20px, 6vw, 28px); }

  /* Gallery: 1 col on very small */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Key person text */
  .key-person-card h3 { font-size: 18px; }
  .key-person-card p { font-size: 13px; }

  /* Footer */
  .footer-brand-text strong { font-size: 13px; }
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM UPGRADE — Preloader · Progress · Grain · Process · Tilt
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO DARK FALLBACK (slow network) ──────────── */
.hero { background-color: var(--dark); }

/* ── PRELOADER ───────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  animation: plFadeUp 0.55s ease both;
}
@keyframes plFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.preloader-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 14px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 32px rgba(201,123,38,.6));
}
.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 12.5px;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0.85;
}
.preloader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-grad);
  border-radius: 2px;
  animation: plFill 1.5s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes plFill {
  0%   { width: 0%; }
  65%  { width: 85%; }
  100% { width: 100%; }
}

/* ── SCROLL PROGRESS BAR ─────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-grad);
  z-index: 99998;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(201,123,38,.55);
}

/* ── HERO GRAIN OVERLAY ──────────────────────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* ── HOW WE WORK — PROCESS SECTION ──────────────── */
.process {
  background: var(--dark);
  padding: 88px 0;
}
.process .section-title h2 {
  color: var(--white);
}
.process .title-bar {
  background: var(--gold-grad);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 56px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,123,38,.45) 25%, rgba(232,168,56,.45) 75%, transparent);
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}
.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,123,38,.32);
  background: rgba(201,123,38,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s ease;
}
.step-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-step:hover .step-icon-wrap {
  border-color: var(--gold-light);
  background: rgba(201,123,38,.15);
  transform: translateY(-6px);
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
}

/* ── KEY PERSON CARD TILT ────────────────────────── */
.key-person-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── SECTION TITLE SHIMMER ───────────────────────── */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.section-title.shimmer-active h2 {
  background: linear-gradient(
    90deg,
    #a8631e 0%,
    var(--gold-light) 35%,
    #ffd080 50%,
    var(--gold-light) 65%,
    #a8631e 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 2s linear 1;
}

/* ── PROCESS RESPONSIVE ──────────────────────────── */
@media (max-width: 860px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process { padding: 64px 0; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--cream);
  padding: 80px 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.faq-item.open {
  box-shadow: var(--sh-md);
  border-color: rgba(201,123,38,.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--ease);
  line-height: 1.5;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--gold);
  stroke: var(--gold);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 4px 24px 22px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

.faq-answer a { color: var(--gold); font-weight: 500; }
.faq-answer a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .faq-question { font-size: 13.5px; padding: 16px 18px; }
  .faq-answer p { padding: 4px 18px 18px; }
}

