/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --navy:       #0b1f45;
  --navy2:      #163268;
  --navy-lt:    #1e4a96;
  --emerald:    #00a651;
  --emerald-dk: #007a3d;
  --gold:       #b8860c;
  --gold-warm:  #d4a017;
  --gold-lt:    #e8b820;
  --pearl:      #eef2fb;
  --pearl-dk:   #e2e8f8;
  --white:      #ffffff;
  --off-white:  #f8faff;
  --text-dark:  #0b1f45;
  --text-body:  #2a3a5c;
  --text-dim:   #6a7898;
  --c1-bg:      #edf2fb;
  --c1-hdr:     #163268;
  --c2-bg:      #e6f7ee;
  --c2-hdr:     #007a3d;
  --c3-bg:      #fdf6dc;
  --c3-hdr:     #8a6010;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(11,31,69,0.10);
  --shadow-lg:  0 8px 40px rgba(11,31,69,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--pearl);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
}

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

/* ── Dot-grid texture overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, #c8d4ee 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  box-shadow: var(--shadow-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  height: 44px;
  width: auto;
}

.nav-name {
  display: flex;
  flex-direction: column;
}

.nav-name span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-name span:last-child {
  font-size: 0.68rem;
  color: var(--gold-warm);
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.nav-links a.active {
  border-bottom: 2px solid var(--gold-warm);
  border-radius: 4px 4px 0 0;
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0f2d5e 60%, #163268 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,166,81,0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold-warm), var(--emerald));
}

.hero-inner { position: relative; z-index: 1; max-width: 820px; }

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 32px rgba(0,166,81,0.25));
  animation: floatUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  animation: floatUp 0.9s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--gold-warm);
  margin: 12px 0 32px;
  animation: floatUp 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  animation: floatUp 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-dims {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: floatUp 0.9s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.dim-pill {
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-top: 2px solid var(--gold-warm);
}

.dim-pill.d1 { background: var(--c1-hdr); }
.dim-pill.d2 { background: var(--c2-hdr); }
.dim-pill.d3 { background: var(--c3-hdr); }

.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,0.40);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s 1.5s infinite;
}

.hero-scroll::before {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
}

/* ── SECTION WRAPPER ──────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 96px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  position: relative;
  z-index: 1;
  padding: 96px 40px;
}

.section-full .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SECTION HEADING ──────────────────────────────────────────── */
.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sec-label::before, .sec-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm));
}

.sec-label::after {
  background: linear-gradient(90deg, var(--gold-warm), transparent);
}

.sec-label span {
  width: 8px; height: 8px;
  background: var(--gold-warm);
  transform: rotate(45deg);
  display: block;
}

.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
}

.sec-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 56px;
  font-style: italic;
}

/* ── DARK SECTION ─────────────────────────────────────────────── */
.bg-navy {
  background: var(--navy);
}

.bg-navy .sec-title,
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .sec-subtitle { color: rgba(255,255,255,0.55); }
.bg-navy p { color: rgba(255,255,255,0.80); }

/* ── THREE DIMENSIONS CARDS ───────────────────────────────────── */
.dims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dim-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dim-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dim-card-hdr {
  padding: 28px 28px 20px;
  position: relative;
}

.dim-card-hdr::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: var(--gold-warm);
  opacity: 0.4;
}

.dim-card.d1 .dim-card-hdr { background: var(--c1-hdr); }
.dim-card.d2 .dim-card-hdr { background: var(--c2-hdr); }
.dim-card.d3 .dim-card-hdr { background: var(--c3-hdr); }

.dim-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 4px;
}

.dim-card-hdr h3 {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

.dim-card-hdr .dim-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  font-weight: 500;
  color: var(--gold-warm);
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.dim-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dim-card-body p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}

.dim-card-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--pearl-dk);
}

.dim-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.dim-card.d1 .dim-link { color: var(--c1-hdr); }
.dim-card.d2 .dim-link { color: var(--c2-hdr); }
.dim-card.d3 .dim-link { color: var(--c3-hdr); }
.dim-link:hover { gap: 14px; }

/* ── TAGLINE BAND ─────────────────────────────────────────────── */
.tagline-band {
  background: var(--navy);
  padding: 32px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--gold-warm);
  border-bottom: 2px solid var(--gold-warm);
}

.tagline-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--gold-warm);
  letter-spacing: 0.02em;
}

/* ── WHY CARDS ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--gold-warm);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: background var(--transition);
}

.why-card:hover { background: rgba(255,255,255,0.10); }

.why-card h3 {
  font-size: 1.15rem;
  color: var(--gold-lt);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ── SERVICE DETAIL PAGE ──────────────────────────────────────── */
.service-hero {
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
}

.service-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

.services-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.svc-panel-hdr {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.svc-panel-hdr:hover { background: var(--pearl); }

.svc-panel-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  min-width: 40px;
}

.svc-panel.d1 .svc-panel-num { color: var(--c1-hdr); }
.svc-panel.d2 .svc-panel-num { color: var(--c2-hdr); }
.svc-panel.d3 .svc-panel-num { color: var(--c3-hdr); }

.svc-panel-hdr h3 {
  font-size: 1.2rem;
  flex: 1;
}

.svc-chevron {
  width: 20px; height: 20px;
  transition: transform var(--transition);
  color: var(--text-dim);
}

.svc-panel.open .svc-chevron { transform: rotate(180deg); }

.svc-panel-body {
  display: none;
  padding: 0 32px 32px 92px;
}

.svc-panel.open .svc-panel-body { display: block; }

.svc-dim-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.svc-panel.d1 .svc-dim-tag { background: var(--c1-hdr); }
.svc-panel.d2 .svc-dim-tag { background: var(--c2-hdr); }
.svc-panel.d3 .svc-dim-tag { background: var(--c3-hdr); }

.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.svc-bullets li::before {
  content: '◆';
  font-size: 0.6rem;
  color: var(--gold-warm);
  margin-top: 6px;
  flex-shrink: 0;
}

.svc-outcome {
  background: var(--navy);
  border-radius: 6px;
  padding: 16px 20px;
}

.svc-outcome .out-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 600;
  margin-bottom: 6px;
}

.svc-outcome p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
}

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 100px;
  text-align: center;
}

.about-logo {
  width: 140px;
  margin: 0 auto 24px;
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.cred-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold-warm);
}

.cred-box .cred-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.cred-box .cred-lbl {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.3;
}

.pedigree {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.8;
}

.about-right h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}

.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pearl-dk);
}

.about-block {
  margin-bottom: 36px;
}

.about-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--emerald-dk);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-family: 'Jost', sans-serif;
}

.about-block p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.contact-info .sub {
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--pearl-dk);
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text .value {
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-map-placeholder {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 4px solid var(--gold-warm);
}

.contact-map-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #163268 100%);
  padding: 48px 40px;
  text-align: center;
}

.contact-map-inner h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-map-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-dims {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.contact-dim-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid;
  text-align: left;
}

.contact-dim-row.d1 { border-color: var(--c1-hdr); }
.contact-dim-row.d2 { border-color: var(--c2-hdr); }
.contact-dim-row.d3 { border-color: var(--c3-hdr); }

.contact-dim-row span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
}

/* ── PAGE HERO (inner pages) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #163268 100%);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold-warm), var(--emerald));
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}

.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-warm);
  margin-top: 12px;
}

.breadcrumb {
  position: absolute;
  top: 90px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  white-space: nowrap;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--gold-warm);
  padding: 48px 40px 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand img { height: 56px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-warm);
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-family: 'Jost', sans-serif;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col .contact-line {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── BTN ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold-warm);
  color: var(--navy);
}

.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dims-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 4px;
    border-bottom: 2px solid var(--gold-warm);
  }
  .section, .section-full { padding: 64px 24px; }
  .hero { padding: 100px 24px 60px; }
  .page-hero { padding: 110px 24px 60px; }
  .nav { padding: 0 24px; }
}
