/* ============================================================
   M Patel & Co. — Corporate Design System
   Deloitte / EY inspired — Ivory, Navy, Charcoal, Subtle Gold
   ============================================================ */

:root {
  --ivory:       #FAF9F6;
  --warm-white:  #FDFCFA;
  --light-gray:  #F0EFEC;
  --gray-mid:    #E5E4E0;
  --navy:        #1C2841;
  --navy-deep:   #141D30;
  --charcoal:    #2D3436;
  --slate:       #5C6678;
  --slate-light: #8B95A5;
  --gold:        #B8956A;
  --gold-soft:   rgba(184, 149, 106, 0.12);
  --white:       #FFFFFF;
  --text:        #1C2841;
  --text-muted:  #5C6678;
  --border:      rgba(28, 40, 65, 0.1);
  --shadow-sm:   0 1px 3px rgba(28, 40, 65, 0.06);
  --shadow-md:   0 4px 20px rgba(28, 40, 65, 0.08);
  --shadow-lg:   0 12px 40px rgba(28, 40, 65, 0.1);
  --radius:      4px;
  --radius-md:   8px;
  --font-display:'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:   'Manrope', system-ui, sans-serif;
  --font-accent: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h:    76px;
  --container:   1180px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 1rem;
  line-height: 1.75;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s;
}

.site-header.scrolled {
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(28, 40, 65, 0.12);
  box-shadow: 0 2px 16px rgba(28, 40, 65, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  flex-shrink: 0;
}

.nav-brand__logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate);
  padding: 0.5rem 1rem;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--navy); }

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link--cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.35rem;
  margin-left: 0.75rem;
  border-radius: var(--radius);
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: var(--navy-deep);
  color: var(--white) !important;
}

.nav-dropdown { position: relative; }

.nav-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown__btn i { font-size: 0.55rem; transition: transform 0.25s; }
.nav-dropdown__btn[aria-expanded="true"] i { transform: rotate(180deg); }

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.nav-dropdown__panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown__cat {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 0.75rem 0.25rem;
  margin-top: 0.25rem;
}

.nav-dropdown__cat:first-child { margin-top: 0; }

.nav-dropdown__item--cat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-dropdown__item--cat > i:first-child {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nav-dropdown__item--cat span { flex: 1; }

.nav-dropdown__arrow {
  font-size: 0.65rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
}

.nav-dropdown__item--cat:hover .nav-dropdown__arrow {
  opacity: 1;
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 29, 48, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.active { display: block; opacity: 1; }

/* ============================================================
   HERO — Corporate, balanced, no gradients
   ============================================================ */
.hero {
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 520px; padding-right: 1rem; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero__designation {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__desc strong { color: var(--navy); font-weight: 600; }

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
}

.hero__trust-item i { color: var(--gold); font-size: 0.9rem; }

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 420px;
  width: 100%;
}

.hero__illustration-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ivory);
}

.hero__illustration {
  width: 100%;
  height: auto;
  display: block;
}

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  animation: heroFloat 5s ease-in-out infinite;
  z-index: 2;
}

.hero__float-card i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero__float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.hero__float-card span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero__float-card--1 { top: 2%; right: 0; animation-delay: 0s; }
.hero__float-card--2 { top: 22%; left: -4%; animation-delay: 0.8s; }
.hero__float-card--3 { top: 48%; right: -6%; animation-delay: 1.6s; }
.hero__float-card--4 { bottom: 18%; left: 2%; animation-delay: 2.4s; }
.hero__float-card--5 { bottom: 2%; right: 8%; animation-delay: 3.2s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-strip__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}

.trust-strip__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 0.25rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--ivory);
}

.services__header {
  margin-bottom: 4rem;
  max-width: 640px;
}

/* Category cards — homepage */
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::after { transform: scaleX(1); }

.category-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.category-card:hover .category-card__icon {
  background: var(--navy);
  color: var(--gold);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.category-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.category-card__count {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.3s, color 0.3s;
}

.category-card:hover .category-card__cta { color: var(--gold); gap: 0.75rem; }

/* Span last 2 cards in 3-col grid */
.category-cards .category-card:nth-child(4) { grid-column: 1 / 2; }
.category-cards .category-card:nth-child(5) {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 2rem;
  align-items: start;
}

.category-cards .category-card:nth-child(5) .category-card__icon { grid-row: 1 / 3; }
.category-cards .category-card:nth-child(5) .category-card__title { grid-column: 2; }
.category-cards .category-card:nth-child(5) .category-card__desc { grid-column: 2; }
.category-cards .category-card:nth-child(5) .category-card__count { grid-column: 2; }
.category-cards .category-card:nth-child(5) .category-card__cta { grid-column: 2; }

.services__categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-category__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--navy);
}

.service-category__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.service-category__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.service-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.service-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.service-item__name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.service-item__arrow {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.service-item:hover .service-item__arrow { opacity: 1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about__intro {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about__photo-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about__photo { width: 100%; height: 100%; object-fit: cover; }

.about__profile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.25rem;
  text-align: center;
}

.about__profile .qual {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0.25rem 0;
}

.about__profile a {
  display: block;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.value-card i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-block {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.mv-block--mission { background: var(--white); }
.mv-block--vision { background: var(--navy); color: var(--white); }

.mv-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.mv-block--mission h3 { color: var(--navy); }
.mv-block--vision h3 { color: var(--gold); border-color: rgba(184, 149, 106, 0.4); }

.mv-block li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

.mv-block--mission li { color: var(--text-muted); }
.mv-block--vision li { color: rgba(255, 255, 255, 0.85); }

.mv-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}

.timeline__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.timeline__item {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.timeline__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 6rem 0;
  background: var(--warm-white);
}

.team__header { text-align: center; margin-bottom: 2.5rem; }

.team-swiper { max-width: 400px; margin: 0 auto; padding-bottom: 2.5rem !important; }

.team-card { text-align: center; padding: 1.5rem; }

.team-card__ring {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.team-card__photo { width: 100%; height: 100%; object-fit: cover; }

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.team-card__qual {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0.3rem 0;
}

.team-card__role { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.team-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
}

.team-card__phone:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.team-swiper .swiper-button-prev,
.team-swiper .swiper-button-next { color: var(--navy); }
.team-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.contact__header { margin-bottom: 3rem; max-width: 560px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
}

.form-row { margin-bottom: 1.15rem; }

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-row input.error,
.form-row select.error,
.form-row textarea.error { border-color: #c0392b; }

.form-row input[readonly] {
  background: var(--ivory);
  color: var(--navy);
  font-weight: 600;
  cursor: default;
}

.form-error {
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.25rem;
  min-height: 1rem;
  display: block;
}

.form-success {
  padding: 1.15rem 1.25rem;
  background: var(--gold-soft);
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 500;
  margin-top: 1rem;
  text-align: left;
  line-height: 1.6;
}

.form-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

.form-fail {
  padding: 1.15rem 1.25rem;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.28);
  border-radius: var(--radius);
  color: #7a1f16;
  margin-top: 1rem;
  text-align: left;
  line-height: 1.6;
}

.form-fail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.form-fail p {
  font-size: 0.88rem;
  margin: 0;
}

.form-fail a {
  color: var(--navy);
  text-decoration: underline;
}

.form-submit-btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.form-submit-btn__loading i {
  margin-right: 0.4rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-card i { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; }

.contact-card h4 {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-card a:hover { color: var(--gold); }

.map-frame iframe,
.map-frame__embed {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.map-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.map-tab {
  flex: 1;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
}

.map-tab:hover { color: var(--navy); border-color: var(--gold); }

.map-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.map-frame__wrap { position: relative; }

.map-frame__embed {
  display: none;
  width: 100%;
  height: 280px;
}

.map-frame__embed.active { display: block; }

.contact-card--office { border-left: 3px solid var(--gold); }

.footer-office {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-office strong {
  display: block;
  color: #1F2937;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.footer-office span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #4B5563;
}

.footer-office a {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #374151;
  transition: color 0.25s;
}

.footer-office a:hover {
  color: #C8A96A;
}

/* ============================================================
   GRAMP
   ============================================================ */
.gramp {
  padding: 4rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.gramp__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.25em;
}

.gramp__sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0.5rem 0 2rem;
}

.gramp__card {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.gramp__card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.gramp__card p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER — Premium light CA theme
   ============================================================ */
.site-footer {
  background: #FAFAF8;
  color: #4B5563;
  padding-top: 4rem;
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -4px 24px rgba(17, 24, 39, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.footer-brand__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8A96A;
  margin: 0.2rem 0 0.75rem;
}

.footer-brand__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #4B5563;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1F2937;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col a {
  font-size: 0.85rem;
  color: #374151;
  transition: color 0.25s;
}

.footer-col a:hover { color: #C8A96A; }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #4B5563;
}

.footer-contact i { color: #C8A96A; margin-top: 0.15rem; flex-shrink: 0; }

.footer-pdfs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-pdfs a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #374151;
}

.footer-pdfs a:hover { color: #C8A96A; }

.footer-pdfs i { color: #C8A96A; }

.footer-bottom {
  border-top: 1px solid #E5E7EB;
  padding: 1.25rem;
  text-align: center;
  background: #FFFFFF;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #4B5563;
}

/* ============================================================
   SCROLL TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(16px) rotate(-12deg);
  transition: all 0.4s var(--ease);
  z-index: 998;
  cursor: pointer;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

#scrollTop:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-4px) rotate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: var(--warm-white);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-menu.open { transform: translateX(0); }
  .nav-link { padding: 0.85rem 0; font-size: 1rem; }
  .nav-link--cta { margin: 0.5rem 0 0; text-align: center; }

  .nav-dropdown__panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    display: none;
    max-height: none;
    pointer-events: auto;
  }

  .nav-dropdown__panel.open { display: block; }
  .nav-toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__content { max-width: none; padding-right: 0; }
  .hero__visual { min-height: 360px; }
  .hero__float-card { padding: 0.6rem 0.75rem; }
  .hero__float-card--1 { top: 0; right: 0; }
  .hero__float-card--2 { top: 18%; left: 0; }
  .hero__float-card--3 { top: 42%; right: 0; }
  .hero__float-card--4 { bottom: 22%; left: 0; }
  .hero__float-card--5 { bottom: 0; right: 5%; }
  .category-cards { grid-template-columns: 1fr 1fr; }
  .category-cards .category-card:nth-child(5) {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
  }

  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .about__intro { grid-template-columns: 1fr; }
  .about__photo-frame { margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; }
  .mv-row { grid-template-columns: 1fr; }
  .timeline__track { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .form-row--half { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .category-cards { grid-template-columns: 1fr; }
  .category-cards .category-card:nth-child(4),
  .category-cards .category-card:nth-child(5) { grid-column: auto; }
  .timeline__track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__float-card span { white-space: normal; font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
