/* ============================================
   Three R.C. Financial & Management Consultancy
   style.css — Main Stylesheet
   ============================================ */

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

:root {
  --navy:       #0B1F3A;
  --navy-mid:   #132848;
  --gold:       #C9A84C;
  --gold-light: #E8C878;
  --cream:      #F7F4EE;
  --cream-dark: #EDE9E0;
  --text:       #1A1A2E;
  --muted:      #5A6478;
  --white:      #FFFFFF;
  --border:     rgba(201, 168, 76, 0.25);
  --radius:     4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.top-contacts { display: flex; gap: 28px; }
.top-social { display: flex; gap: 14px; }
.top-social a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold-light);
  text-decoration: none; transition: background 0.2s;
}
.top-social a:hover { background: var(--gold); color: var(--navy); }

/* ── NAV ── */
nav {
  background: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 20px rgba(11,31,58,0.08);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(11,31,58,0.12); }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px; background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.logo-icon::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
}
.logo-icon span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -1px;
}
.logo-text strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--navy); font-weight: 600; line-height: 1.1;
}
.logo-text small {
  font-size: 10.5px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 8px 14px; border-radius: var(--radius);
  transition: all 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(201,168,76,0.07); }
.nav-links a.active { font-weight: 600; }

.dropdown { position: relative; }
.dropdown > a::after { content: ' \25BE'; font-size: 10px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: 8px;
  box-shadow: 0 16px 48px rgba(11,31,58,0.15);
  min-width: 260px; padding: 8px 0;
  border-top: 3px solid var(--gold); z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13px;
  color: var(--text); font-weight: 400; transition: all 0.2s;
  border-radius: 0; background: none;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); padding-left: 26px; }

.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: var(--radius) !important; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 80px 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.page-hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 600;
  color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 560px;
}

/* ── GENERAL SECTION ── */
section { padding: 96px 80px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 600;
  color: var(--navy); line-height: 1.15; margin-bottom: 18px;
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 28px); font-weight: 600;
  color: var(--navy); line-height: 1.2; margin-bottom: 12px;
}
.lead { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 600px; }
p { line-height: 1.7; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600;
  font-size: 14px; text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent; color: var(--navy);
  padding: 14px 32px; border-radius: var(--radius);
  border: 1.5px solid var(--navy); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.3); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 16px 36px; border-radius: var(--radius); font-weight: 600;
  font-size: 14px; text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.btn-dark:hover { background: #0d2648; transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gold); padding: 18px 48px;
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--navy); }
.trust-item span { font-size: 18px; }

/* ── HERO (homepage) ── */
.hero {
  background: var(--navy); min-height: 88vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-text {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: clamp(140px, 18vw, 280px);
  font-weight: 700; color: rgba(255,255,255,0.03); pointer-events: none; user-select: none; line-height: 1;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { padding: 80px 48px 80px 80px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  font-size: 12px; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 62px); font-weight: 600;
  color: var(--white); line-height: 1.1; margin-bottom: 22px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7;
  max-width: 480px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-visual {
  position: relative; z-index: 2;
  padding: 60px 80px 60px 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 24px 28px; backdrop-filter: blur(10px);
  transition: all 0.3s; flex: 1;
}
.hero-card:hover { background: rgba(255,255,255,0.08); border-color: var(--border); transform: translateX(4px); }
.card-icon { font-size: 28px; margin-bottom: 10px; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.card-desc { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── ABOUT SECTION ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; padding-bottom: 40px; }
.about-image-placeholder {
  width: 100%; aspect-ratio: 5/4; border-radius: 4px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.about-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-placeholder-text {
  font-family: 'Cormorant Garamond', serif; font-size: 80px;
  font-weight: 700; color: rgba(255,255,255,0.08); position: relative; z-index: 1;
}
.about-badge-float {
  position: absolute; bottom: 0; right: -24px;
  background: var(--gold); padding: 24px; border-radius: 8px;
  text-align: center; box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}
.about-badge-float strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 42px; color: var(--navy); font-weight: 700; line-height: 1;
}
.about-badge-float span { font-size: 12px; color: var(--navy); font-weight: 600; letter-spacing: 0.05em; }
.about-checks { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-dot {
  width: 20px; height: 20px; background: rgba(201,168,76,0.15); border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-dot::after { content: '\2713'; font-size: 10px; color: var(--gold); font-weight: 700; }
.check-item p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.check-item strong { color: var(--text); }

/* ── SERVICE CARDS ── */
.services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .lead { margin: 0 auto; }
.services-header .section-label { justify-content: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 8px; padding: 36px 32px;
  border: 1px solid var(--cream-dark); transition: all 0.3s;
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none; display: block; color: inherit;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(11,31,58,0.1); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 52px; height: 52px; background: var(--cream); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: rgba(201,168,76,0.12); }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── PROCESS ── */
.process { background: var(--navy); }
.process h2 { color: var(--white); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.process .lead { color: rgba(255,255,255,0.55); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-step {
  background: rgba(255,255,255,0.04); padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.07); transition: all 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.07); border-color: var(--border); }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 700;
  color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 16px; transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(201,168,76,0.25); }
.process-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── INDUSTRIES ── */
.industries { background: var(--cream-dark); }
.industries-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-pill {
  background: var(--white); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px;
  padding: 22px 20px; display: flex; align-items: center; gap: 14px;
  transition: all 0.25s; cursor: pointer; text-decoration: none;
}
.industry-pill:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.industry-pill:hover .ind-name { color: var(--white); }
.industry-pill:hover .ind-icon { background: rgba(201,168,76,0.15); }
.ind-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ind-name { font-size: 13.5px; font-weight: 500; color: var(--text); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold); padding: 72px 80px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: 10px; }
.cta-band p { font-size: 15px; color: rgba(11,31,58,0.65); max-width: 520px; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--cream-dark); transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,31,58,0.1); }
.team-photo {
  width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.team-photo-placeholder {
  font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700;
  color: rgba(255,255,255,0.15);
}
.team-info { padding: 20px 22px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  padding: 36px 32px; border-radius: 8px; background: var(--white);
  border: 1px solid var(--cream-dark); transition: all 0.3s;
}
.value-card:hover { border-color: var(--border); box-shadow: 0 12px 32px rgba(11,31,58,0.08); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIAL ── */
.testimonials { background: var(--navy); }
.testimonials h2 { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 32px 28px; transition: all 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: var(--border); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--navy);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-company { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; background: var(--cream); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--text); font-weight: 500; line-height: 1.5; text-decoration: none; }
.contact-item a:hover { color: var(--gold); }
.contact-form { background: var(--cream); padding: 48px; border-radius: 12px; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); font-weight: 600; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--cream-dark); background: var(--white);
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text);
  transition: border-color 0.2s; outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-submit {
  width: 100%; padding: 14px; background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }

/* ── MAP EMBED ── */
.map-section { background: var(--cream-dark); padding: 0; }
.map-section iframe { width: 100%; height: 420px; display: block; border: none; filter: grayscale(20%); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 8px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer;
  font-family: 'DM Sans', sans-serif; text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--navy); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--cream-dark); padding-top: 16px; }
.faq-answer.open { display: block; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 72px 80px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; text-decoration: none; }
.footer-logo-wrap span { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 13.5px; line-height: 1.75; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 13px; transition: all 0.2s; text-decoration: none;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .topbar { display: none; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .page-hero { padding: 60px 24px 52px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 24px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .about-grid,
  .contact-grid,
  .process-header,
  .industries-header,
  .section-intro,
  .cta-band { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { position: relative; bottom: auto; right: auto; margin-top: 24px; display: inline-block; }
  .services-grid,
  .values-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .industries-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .cta-band { padding: 48px 24px; }
  .trust-bar { gap: 20px; padding: 16px 24px; }
}
