/* ── MEHTA DESAI & ASSOCIATES ── Global Stylesheet ── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Nunito+Sans:wght@300;400;600&display=swap');

:root {
  --navy:       #1a2d5a;
  --navy-dark:  #111e3d;
  --navy-light: #243872;
  --gold:       #b8960c;
  --gold-light: #d4ae28;
  --gold-pale:  #f5edd5;
  --cream:      #f9f7f3;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-light: #5a5a5a;
  --border:     #ddd6c5;
  --serif:      'Playfair Display', Georgia, serif;
  --body:       'Source Serif 4', Georgia, serif;
  --sans:       'Nunito Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

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

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  font-family: var(--sans);
  font-size: 12.5px;
  padding: 7px 0;
  letter-spacing: 0.3px;
}
.topbar .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .sep { margin: 0 10px; opacity: 0.35; }

/* ── HEADER / NAV ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,45,90,0.07);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--gold-light); }
.logo-text {}
.logo-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.18s;
  letter-spacing: 0.2px;
}
nav a:hover { color: var(--navy); background: var(--cream); }
nav a.active { color: var(--navy); border-bottom: 2px solid var(--gold); border-radius: 0; }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 3px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--navy-light) !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 79px,
      rgba(255,255,255,0.025) 79px,
      rgba(255,255,255,0.025) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 79px,
      rgba(255,255,255,0.025) 79px,
      rgba(255,255,255,0.025) 80px
    );
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(184,150,12,0.12);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  border: 1px solid rgba(184,150,12,0.4);
  padding: 6px 14px;
  border-radius: 2px;
}
.hero-badge::before { content: '✦'; font-size: 8px; }
.hero h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 32px 28px;
}
.hero-card-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  min-width: 80px;
}
.hero-stat-label {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  padding-top: 4px;
}

/* ── SECTION COMMON ── */
.section { padding: 80px 32px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-navy .section-label { color: var(--gold-light); }
.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-navy .section-title { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-navy .section-sub { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 30px;
  transition: box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.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 { box-shadow: 0 6px 28px rgba(26,45,90,0.1); border-color: #c8c0ae; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
}
.why-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 26px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role { font-family: var(--sans); font-size: 12px; color: var(--text-light); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 64px 32px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 28px; }

/* ── SERVICES PAGE ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-detail p { font-size: 15px; color: var(--text-light); margin-bottom: 16px; line-height: 1.75; }
.service-detail ul {
  list-style: none;
  margin-bottom: 20px;
}
.service-detail ul li {
  font-size: 14.5px;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-detail ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.service-fee-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  position: sticky;
  top: 96px;
}
.service-fee-box h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.fee-item {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.fee-item:last-child { border-bottom: none; }
.fee-item strong { color: var(--navy); font-weight: 600; }
.fee-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.partner-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.partner-photo {
  height: 120px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-light);
}
.partner-info { padding: 22px 20px; }
.partner-info h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.partner-info .role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.partner-info p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }
.qualifications {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.qual-tag {
  font-family: var(--sans);
  font-size: 10px;
  padding: 2px 8px;
  background: var(--gold-pale);
  color: #7a5f00;
  border-radius: 2px;
  font-weight: 600;
}

/* ── INFO BOXES ── */
.info-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 32px 28px;
}
.info-box h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 14px;
}
.info-icon { flex-shrink: 0; font-size: 15px; margin-top: 2px; opacity: 0.7; }
.info-row p { color: rgba(255,255,255,0.7); line-height: 1.55; }
.info-row strong { color: var(--white); display: block; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}
.contact-form-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 36px;
}
.contact-form-block h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-block p {
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}
.form-submit:hover { background: var(--navy-light); }
.form-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}
.contact-sidebar {}
.contact-detail-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.contact-detail-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}
.cd-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.cd-item strong { display: block; color: var(--text); font-weight: 600; }
.map-placeholder {
  background: var(--navy);
  border-radius: 4px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  margin-top: 20px;
  flex-direction: column;
  gap: 8px;
}
.map-placeholder span { font-size: 32px; opacity: 0.4; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 56px 32px;
}
.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.65;
}

/* ── DIVIDER ── */
.gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 0;
  border-radius: 2px;
}
.centered .gold-divider { margin: 16px auto 0; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
}
.footer-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 32px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}
.footer-icai {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 9px;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partner-profile { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-fee-box { position: static; }
}
@media (max-width: 680px) {
  .hero h1 { font-size: 34px; }
  .hero { padding: 64px 20px; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 40px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .partner-profile { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 20px 28px; }
  nav a:not(.nav-cta):not(.active) { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .left { display: none; }
  .contact-form-block { padding: 28px 20px; }
}

/* ── PAGE LOAD FADE ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.55s ease both; }
.fade-in-2 { animation: fadeUp 0.55s 0.1s ease both; }
.fade-in-3 { animation: fadeUp 0.55s 0.2s ease both; }
.fade-in-4 { animation: fadeUp 0.55s 0.3s ease both; }
