/* ==========================================================================
   AA Builders & Interiors — HOME PAGE stylesheet
   ------------------------------------------------------------------------
   Reference layout: deep-colour header + scrolling credential ticker +
   dark hero + light stat strip. Recoloured to the brand's blue/gold,
   not the maroon of the reference.

   Navy (header/footer):  #0B2A44
   Navy deep (hover):     #071B2C
   Blue (brand):          #1596D6
   Blue deep:             #0C6FA8
   Gold (accent/CTA):     #D6A945
   Gold deep (hover):     #B9872C
   Ink (body text):       #23303B
   Slate (muted text):    #667380
   Paper line:            #E7ECF1
   Page background:       #FFFFFF

   Type: 'Playfair Display' (headings, display serif) + 'Poppins' (body/nav)
   ========================================================================== */

:root {
  --navy: #0B2A44;
  --navy-deep: #071B2C;
  --navy-soft: #123A5C;--blue: #38BDF8;
--blue-deep: #0EA5E9;
  --blue-pale: #E9F5FC;
  --gold: #D6A945;
  --gold-deep: #B9872C;
  --gold-pale: #FBF3E1;
  --ink: #23303B;
  --slate: #667380;
  --line: #E7ECF1;
  --paper: #F7F9FB;
  --white: #FFFFFF;

  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --header-h: 88px;
  --ticker-h: 42px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--slate); }
a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 0.9em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--light { color: #9FCBEA; }

.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-head p { font-size: 1.02rem; margin: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.2px;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.12s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 18px rgba(214,169,69,0.28);
}
.btn--gold:hover { background: var(--gold-deep); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--blue-deep); }

.btn--outline-blue {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.btn--outline-blue:hover { background: var(--blue-deep); color: var(--white); }

/* Header ------------------------------------------------------------------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand__mark span {
  transform: rotate(-45deg);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-head); font-size: 1.28rem; color: var(--white); font-weight: 700; }
.brand__text em { font-family: var(--font-head); font-style: italic; font-size: 0.86rem; color: var(--gold); letter-spacing: 0.2px; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #E7EEF4;
  padding: 6px 2px;
  position: relative;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.18s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions__phone {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.header-actions__phone:hover { border-color: var(--gold); background: rgba(214,169,69,0.12); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

/* Ticker ------------------------------------------------------------------- */
.ticker {
  background: var(--navy-deep);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 34s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #C9D6E1;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.ticker__track span::after { content: "\2726"; color: var(--gold); font-size: 0.7rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero ----------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,27,44,0.94) 0%, rgba(11,42,68,0.85) 38%, rgba(11,42,68,0.55) 68%, rgba(11,42,68,0.3) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 70px 28px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px; font-size: 0.82rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__lede { color: #CBD8E3; font-size: 1.08rem; max-width: 50ch; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats strip ---------------------------------------------------------------- */
.stats {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__grid div:nth-child(odd) strong { color: var(--navy); }
.stats__grid div:nth-child(even) strong { color: var(--gold-deep); }
.stats__grid strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
}
.stats__grid span {
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.4px;
  color: var(--slate);
  text-transform: uppercase;
  font-weight: 500;
}

/* About teaser ---------------------------------------------------------- */
.about { padding: 100px 0; background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: 4px; }
.about__media__badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 26px;
  border-radius: 4px;
  border-left: 4px solid var(--gold);
}
.about__media__badge strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold); }
.about__media__badge span { font-size: 0.82rem; color: #C9D6E1; }

.about__copy p { max-width: 52ch; }
.about__list { display: grid; gap: 14px; margin: 28px 0 32px; }
.about__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
}
.about__list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-deep); margin-top: 2px; }

/* Services ---------------------------------------------------------------- */
.services { padding: 100px 0; background: var(--paper); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 16px 34px rgba(11,42,68,0.10); transform: translateY(-3px); }
.service-card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__num {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  display: flex; align-items: center; justify-content: center;
}
.service-card__body { padding: 24px 24px 28px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service-card p { font-size: 0.94rem; margin: 0; }

/* Why choose us -------------------------------------------------------------- */
.why { padding: 100px 0; background: var(--navy); }
.why .section-head h2 { color: var(--white); }
.why .section-head p { color: #C9D6E1; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  padding: 30px 26px;
  background: var(--navy-soft);
  border-radius: 6px;
  border-top: 3px solid var(--gold);
}
.why-card:nth-child(2) { border-top-color: var(--blue); }
.why-card:nth-child(4) { border-top-color: var(--blue); }
.why-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { color: #B9C9D6; font-size: 0.92rem; margin: 0; }

/* Process ------------------------------------------------------------------ */
.process { padding: 100px 0; background: var(--white); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process__steps::before {
  content: ""; position: absolute; top: 26px; left: 0; right: 0; height: 1px; background: var(--line);
}
.process__step { position: relative; padding-top: 66px; }
.process__step__num {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.process__step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.process__step p { font-size: 0.9rem; margin: 0; }

/* Packages ------------------------------------------------------------------ */
.packages { padding: 100px 0; background: var(--paper); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.package-card {
  background: var(--white);
  padding: 38px 32px;
  border-radius: 6px;
  border: 1px solid var(--line);
  position: relative;
}
.package-card--featured { border-color: var(--navy); box-shadow: 0 20px 44px rgba(11,42,68,0.14); transform: translateY(-10px); }
.package-card__flag {
  position: absolute; top: -13px; left: 32px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.4px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px;
}
.package-card h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 12px; }
.package-card__price { font-family: var(--font-head); font-size: 2.3rem; color: var(--navy); margin-bottom: 14px; font-weight: 700; }
.package-card__price span { font-size: 0.95rem; color: var(--slate); font-family: var(--font-body); font-weight: 400; }
.package-card__desc { font-size: 0.94rem; margin-bottom: 22px; min-height: 64px; }
.package-card__features { display: grid; gap: 10px; margin-bottom: 28px; }
.package-card__features li { font-size: 0.9rem; color: var(--ink); padding-left: 22px; position: relative; }
.package-card__features li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.package-card .btn { width: 100%; text-align: center; }

/* Projects ---------------------------------------------------------------- */
.projects { padding: 100px 0; background: var(--white); }
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover img { transform: scale(1.07); }
.project-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: var(--gold); color: var(--navy-deep);
}
.project-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px;
  background: linear-gradient(0deg, rgba(7,27,44,0.92) 0%, rgba(7,27,44,0) 100%);
}
.project-card figcaption strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1.02rem; }
.project-card figcaption span { color: #C9D6E1; font-size: 0.82rem; }
.projects__cta { margin-top: 40px; text-align: center; }

/* Testimonials ------------------------------------------------------------ */
.testimonials { padding: 100px 0; background: var(--blue-pale); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 30px 28px;
  border-top: 3px solid var(--blue);
}
.testimonial-card:nth-child(2) { border-top-color: var(--gold); }
.testimonial-card:nth-child(3) { border-top-color: var(--navy); }
.testimonial-card p { font-size: 0.98rem; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial-card strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--navy); }
.testimonial-card span { font-size: 0.82rem; color: var(--slate); }

/* FAQ ------------------------------------------------------------------------ */
.faq { padding: 100px 0; background: var(--white); }
.faq__wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.faq__list { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.faq-item { background: var(--white); }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; color: var(--navy);
}
.faq-item__q .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item__q .faq-icon::before,
.faq-item__q .faq-icon::after { content: ""; position: absolute; background: var(--gold-deep); top: 50%; left: 50%; }
.faq-item__q .faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__q .faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.15s ease; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.2s ease; }
.faq-item.is-open .faq-item__a { max-height: 220px; }
.faq-item__a p { padding: 0 22px 20px; margin: 0; font-size: 0.94rem; }

/* CTA banner ----------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: var(--navy);
  padding: 84px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(214,169,69,0.14), transparent 55%);
}
.cta-banner__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 20ch; margin: 0; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer -------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); padding-top: 68px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand__text strong { color: var(--white); }
.footer-brand p { color: #B9C9D6; font-size: 0.92rem; margin: 18px 0 22px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  color: #C9D6E1;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(214,169,69,0.08); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h3 {
  font-family: var(--font-head); color: var(--white); font-size: 1.02rem;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #B9C9D6; font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-news p { color: #B9C9D6; font-size: 0.9rem; margin-bottom: 14px; }
.footer-news form { display: flex; gap: 8px; }
.footer-news input {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.16); background: var(--navy-soft); color: var(--white); font-size: 0.9rem;
  font-family: var(--font-body);
}
.footer-news input::placeholder { color: #8CA0B0; }
.footer-news button {
  font-family: var(--font-body); font-weight: 600;
  background: var(--gold); color: var(--navy-deep);
  border: none; padding: 0 18px; border-radius: 4px; cursor: pointer; white-space: nowrap;
}
.footer-news button:hover { background: var(--gold-deep); }
.footer-news__note { font-size: 0.82rem; color: var(--gold); margin-top: 10px; min-height: 1.1em; }

.site-footer__bottom {
  max-width: var(--container); margin: 0 auto; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.site-footer__copy { color: #7E93A3; font-size: 0.82rem; margin: 0; }
.site-footer__legal a { color: #7E93A3; font-size: 0.82rem; }
.site-footer__legal a:hover { color: #C9D6E1; }

/* Enquiry modal --------------------------------------------------------------- */
.enquiry-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.enquiry-modal.is-open { display: flex; }
.enquiry-modal__backdrop { position: absolute; inset: 0; background: rgba(7,27,44,0.66); }
.enquiry-modal__panel {
  position: relative; background: var(--white); max-width: 430px; width: 100%;
  padding: 34px; border-radius: 6px; z-index: 1; border-top: 4px solid var(--gold);
}
.enquiry-modal__panel h3 { font-size: 1.35rem; margin-bottom: 6px; }
.enquiry-modal__panel > p { font-size: 0.94rem; margin-bottom: 22px; }
.enquiry-modal__panel label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 16px; color: var(--navy); }
.enquiry-modal__panel input {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem;
}
.enquiry-modal__panel input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.enquiry-modal__panel .btn { width: 100%; margin-top: 4px; }
.enquiry-modal__close {
  position: absolute; top: 12px; right: 14px; background: none; border: none;
  font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--slate);
}
.enquiry-modal__note { margin-top: 12px; font-size: 0.88rem; color: var(--blue-deep); min-height: 1.2em; }

/* Focus visibility ------------------------------------------------------------- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* Contact form (footer CTA section) ------------------------------------------- */
.contact-cta { padding: 100px 0; background: var(--paper); }
.contact-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-cta__info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.contact-cta__people { display: flex; gap: 40px; margin: 26px 0; flex-wrap: wrap; }
.contact-cta__people h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; margin-bottom: 4px; color: var(--navy); }
.contact-cta__people a { color: var(--blue-deep); font-weight: 600; }
.contact-cta__address p { font-size: 0.95rem; margin-bottom: 6px; }

.contact-cta__form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 6px;
  border-top: 4px solid var(--blue);
}
.contact-cta__form h3 { font-size: 1.2rem; margin-bottom: 20px; }
.contact-cta__form label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.contact-cta__form input,
.contact-cta__form select,
.contact-cta__form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--font-body); font-size: 0.95rem; background: var(--white); color: var(--ink);
}
.contact-cta__form input:focus,
.contact-cta__form select:focus,
.contact-cta__form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.contact-cta__form .btn { width: 100%; margin-top: 6px; }
.contact-cta__form-note { margin-top: 12px; font-size: 0.88rem; color: var(--blue-deep); min-height: 1.2em; }

/* Responsive ------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process__steps::before { display: none; }
  .faq__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .about__grid, .contact-cta__grid { grid-template-columns: 1fr; }
  .services__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .package-card--featured { transform: none; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .about__media__badge { position: static; margin-top: -40px; margin-left: 20px; display: inline-block; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + var(--ticker-h));
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 28px 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: flex; }
  .header-actions .btn--gold { display: none; }

  .hero { min-height: 540px; }
  .services__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ================== LOGO IMAGE OVERRIDE ================== */
.brand__mark {
  width: auto;
  height: 52px;
  border: none;
  transform: none;
  display: flex;
  align-items: center;
}
.site-footer .brand__mark { height: 46px; }

/* ================== FOUNDERS SECTION ================== */
.founders { padding: 100px 0; background: var(--paper); }
.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 0 0 28px;
  text-align: center;
}
.founder-card__media {
  width: 100%;
  aspect-ratio: 4/5;
  margin: 0 0 24px;
  overflow: hidden;
}
.founder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-card__name,
.founder-card__role,
.founder-card__bio,
.founder-card__contact {
  padding-left: 28px;
  padding-right: 28px;
}

/* ================== MAP SECTION ================== */
.map-section { padding: 100px 0; background: var(--white); }
.map-section__frame {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* ================== RESPONSIVE ADDITIONS ================== */
@media (max-width: 760px) {
  .founders__grid { grid-template-columns: 1fr; }
  .map-section__frame { aspect-ratio: 4/5; }
}

/* ================== FIND US (COMPACT MAP) ================== */
.find-us { padding: 100px 0; background: var(--paper); }
.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.find-us__info p { max-width: 46ch; }
.find-us__meta { display: grid; gap: 14px; margin: 24px 0 30px; }
.find-us__meta li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
}
.find-us__meta svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--blue-deep); margin-top: 2px; }

.find-us__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(11,42,68,0.10);
}
.find-us__map-link {
  position: absolute;
  top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  color: var(--blue-deep);
  font-family: var(--font-body); font-weight: 600; font-size: 0.84rem;
  padding: 8px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(11,42,68,0.14);
}
.find-us__map-link svg { width: 14px; height: 14px; }

@media (max-width: 760px) {
  .find-us__grid { grid-template-columns: 1fr; gap: 32px; }
  .find-us__map { aspect-ratio: 4/3; }
}