/* ============================================================
   SIEGE ONE — Main Stylesheet
   Brand: Navy #0b1a26 | Gold #b08a54 | Font: Montserrat + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy:       #0b1a26;
  --navy-mid:   #152535;
  --navy-light: #1e3a50;
  --gold:       #b08a54;
  --gold-light: #c9a876;
  --gold-dark:  #8f6d3d;
  --white:      #ffffff;
  --light:      #f5f6f8;
  --light-2:    #eaecf0;
  --text:       #0b1a26;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e2e8f0;

  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Inter', sans-serif;

  --shadow:    0 4px 20px rgba(11, 26, 38, 0.08);
  --shadow-lg: 0 12px 48px rgba(11, 26, 38, 0.14);
  --radius:    8px;
  --radius-lg: 16px;
  --ease:      all 0.3s ease;

  --mw: 1180px;
  --sp: 100px 0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; }

.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography helpers ── */
.label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--navy);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176, 138, 84, 0.38);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.85);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11, 26, 38, 0.35);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 22px 0;
  transition: var(--ease);
}

.navbar.scrolled {
  background: var(--white);
  padding: 13px 0;
  box-shadow: 0 2px 24px rgba(11, 26, 38, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1); /* white on dark hero */
  transition: var(--ease);
}
.navbar.scrolled .nav-logo img {
  filter: none; /* original colours on white bg */
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.navbar.scrolled .nav-link { color: var(--navy); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }

.nav-link.cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
}
.nav-link.cta::after { display: none; }
.nav-link.cta:hover { background: var(--gold-dark); }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 75% 40%, rgba(176,138,84,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(30,58,80,0.6) 0%, transparent 50%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* decorative circle */
.hero::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(176,138,84,0.12);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,138,84,0.12);
  border: 1px solid rgba(176,138,84,0.28);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  color: var(--white);
  max-width: 750px;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-h);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  animation: heroScroll 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes heroScroll {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  padding: var(--sp);
  background: var(--light);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(176,138,84,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.72;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(176,138,84,0.15);
}
.about-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(176,138,84,0.1);
}

.about-logo-mark {
  position: absolute;
  top: 36px;
  right: 36px;
  height: 52px;
  width: auto;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}

.about-card-quote {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.about-card-quote span { color: var(--gold); }

.about-card-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}
.about-card-name strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.about-card-est {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.about-badge-float {
  display: none;
}
.about-badge-float .num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
}

.about-content .section-sub { margin-bottom: 28px; }

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.about-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background-color: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

/* ================================================================
   APPROACH
   ================================================================ */
.approach {
  padding: var(--sp);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,84,0.07) 0%, transparent 70%);
}

.approach-header {
  text-align: center;
  margin-bottom: 64px;
}
.approach-header .section-title { color: var(--white); }
.approach-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.approach-step {
  background: rgba(255,255,255,0.03);
  padding: 44px 36px;
  transition: var(--ease);
  position: relative;
}
.approach-step:hover { background: rgba(255,255,255,0.07); }

.step-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(176,138,84,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.approach-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.approach-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.step-bar {
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.approach-step:hover .step-bar { transform: scaleX(1); }

/* ================================================================
   WHY US
   ================================================================ */
.why {
  padding: var(--sp);
  background: var(--white);
}

.why-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-sub { margin-bottom: 36px; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--ease);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(176,138,84,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.why-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.68;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: var(--sp);
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--text-mid);
  margin-bottom: 44px;
  line-height: 1.75;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.ci-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.ci-text a, .ci-text span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.ci-text a:hover { color: var(--gold); }

/* Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.full { grid-column: 1 / -1; }

.fg label {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.fg input,
.fg select,
.fg textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,138,84,0.12);
}
.fg textarea { resize: vertical; min-height: 120px; }

.honeypot { display: none !important; }

.alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.95rem;
  padding: 15px;
}
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #06111a;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--ease);
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.6);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.footer-social a:hover svg { stroke: var(--white); }

.footer-col h5 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid-wrap,
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --sp: 72px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 28px 24px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .navbar.scrolled .nav-links { background: var(--white); border-top-color: var(--border); }
  .nav-link { padding: 12px 0; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar.scrolled .nav-link { color: var(--navy); border-bottom-color: var(--border); }
  .nav-link.cta { margin-top: 8px; background: none !important; color: var(--gold) !important; padding: 12px 0 !important; border: none; border-bottom: none !important; }
  .nav-toggle { display: flex; }

  .approach-grid { grid-template-columns: 1fr; gap: 2px; }
  .why-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 32px 24px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
