/* ============================================================
   H.S. NOORJI BUILDERS & DEVELOPERS — Full Site Stylesheet
   ----------------------------------------------------------
   Palette   : navy / premium gold / white / light grey / charcoal
               (client-specified — see brand brief)
   Type      : Playfair Display (display) + Inter (body)
               + JetBrains Mono (drafting / spec annotations — new)
   Motif     : "Blueprint to Built" — architectural drafting marks
               (dimension-line dividers, corner-bracket image frames,
               mono spec tags) carried through every page as the
               signature structural device.
   Motion    : GSAP + ScrollTrigger. Scroll position drives reveals;
               nothing hijacks native scrolling. prefers-reduced-motion
               is respected throughout.
   ============================================================ */

:root {
  /* --- brand core (client-specified hex, unchanged) --- */
  --navy: #0f2d52;
  --navy-deep: #081b33;
  --navy-mid: #17395f;
  --gold: #c7a254;
  --gold-bright: #ddbe7e;
  --gold-deep: #9c7c3d;
  --white: #ffffff;
  --grey: #f4f4f4;
  --paper: #f8f6f1;
  --charcoal: #333333;

  /* --- derived / functional --- */
  --gold-glow: rgba(199, 162, 84, 0.16);
  --gold-glow-soft: rgba(199, 162, 84, 0.09);
  --navy-glow: rgba(15, 45, 82, 0.14);
  --navy-glow-soft: rgba(15, 45, 82, 0.06);

  --border: #e4e2dc;
  --border-soft: #edebe5;
  --border-on-dark: rgba(255, 255, 255, 0.14);

  --text: var(--charcoal);
  --text-muted: #666666;
  --text-faint: #918d84;
  --text-on-dark: rgba(255, 255, 255, 0.86);
  --text-on-dark-muted: rgba(255, 255, 255, 0.62);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --header-h: 84px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 0.5em;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   TYPE SCALE
   ============================================================ */

h1,
.h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}
h2,
.h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}
h3,
.h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
}
h4,
.h4 {
  font-size: 1.1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.wrap-narrow {
  max-width: 820px;
}
.wrap-wide {
  max-width: 1360px;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section-alt {
  background: var(--paper);
}
.section-navy {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}
.section-tight {
  padding: clamp(48px, 6vw, 76px) 0;
}

.grid {
  display: grid;
  gap: 32px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 980px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }
}

.center {
  text-align: center;
}

/* Section head — eyebrow + title + optional lead, used on every page */
.section-head {
  max-width: 640px;
  margin: 0 0 52px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .lead {
  margin-top: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.section-navy .eyebrow {
  color: var(--gold-bright);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow .tag-index {
  opacity: 0.55;
}

/* ============================================================
   BLUEPRINT / DRAFTING MOTIF
   Signature structural devices carried through every page.
   ============================================================ */

/* Dimension-line divider — replaces plain hairlines where a
   section boundary is meaningful (start/end of a sequence, a
   measured transition) rather than purely decorative. */
.dim-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--border);
  margin: 0;
}
.dim-divider::before,
.dim-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}
.dim-divider .dim-tick {
  font-size: 12px;
  opacity: 0.7;
}

/* Corner-bracket frame — wraps photography like a drafting
   crop mark instead of a generic rounded card. */
.bracket-frame {
  position: relative;
}
.bracket-frame::before,
.bracket-frame::after,
.bracket-frame .bf-tl,
.bracket-frame .bf-br {
  display: none;
}
.bracket-frame .bf-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  z-index: 2;
  pointer-events: none;
}
.bracket-frame .bf-corner.tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.bracket-frame .bf-corner.tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.bracket-frame .bf-corner.bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.bracket-frame .bf-corner.br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* Spec tag — small mono chip used as an image caption / label,
   like an annotation on a drawing. */
.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 6px 12px;
  border-radius: 3px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn:hover::before {
  left: 140%;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 6px;
}
.btn-ghost:hover {
  color: var(--navy);
}

.btn-whatsapp {
  background: #25d366;
  color: #06371f;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}
.btn-lg {
  padding: 17px 34px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    height 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.site-header.is-solid {
  background: rgba(15, 45, 82, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(8, 27, 51, 0.18);
  height: 72px;
}
/* interior pages start solid since hero isn't full navy-video */
.site-header.is-static {
  background: var(--navy);
  height: 72px;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 40px;
  width: auto;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.15;
}
.brand-word small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-on-dark);
  padding: 6px 0;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-bright);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-actions .btn {
  padding: 11px 20px;
  font-size: 13.5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  z-index: 210;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.is-open {
  transform: translateY(0);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
}
.mobile-nav a:hover {
  color: var(--gold-bright);
}
.mobile-nav .header-actions {
  margin-top: 12px;
  flex-direction: column;
}

@media (max-width: 900px) {
  .main-nav,
  .header-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark-muted);
  padding: 76px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 38px;
}
.footer-brand span {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 17px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-size: 14.5px;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--gold-bright);
}
.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
}
.footer-col li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-bright);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-on-dark);
  border-radius: 50%;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold-bright);
  background: rgba(199, 162, 84, 0.12);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 13px;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom a:hover {
  color: var(--gold-bright);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}
.float-whatsapp svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.float-whatsapp:hover {
  transform: scale(1.08);
}
.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulseRing 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-whatsapp::before {
    animation: none;
  }
}
@media (max-width: 560px) {
  .float-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .float-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}

/* ============================================================
   SCROLL-REVEAL UTILITY (progressive enhancement)
   Base CSS hides + offsets; main.js (GSAP) animates to visible.
   If JS fails to load, a no-js fallback class reveals everything.
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}
.reveal-fade {
  opacity: 0;
  will-change: opacity;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  will-change: transform, opacity;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
}

html.no-js .reveal,
html.no-js .reveal-fade,
html.no-js .reveal-scale,
html.no-js .reveal-left,
html.no-js .reveal-right {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-fade,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   TRUST MARQUEE STRIP
   ============================================================ */

.trust-strip {
  background: var(--navy);
  color: var(--gold-bright);
  overflow: hidden;
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 26px;
  white-space: nowrap;
  color: var(--text-on-dark);
}
.marquee-track span::before {
  content: "◆";
  color: var(--gold);
  font-size: 8px;
}

/* ============================================================
   HERO (home) & PAGE-HERO (interior pages)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0.72) 0%,
    rgba(8, 27, 51, 0.5) 45%,
    rgba(8, 27, 51, 0.78) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blueprint svg {
  width: 100%;
  height: 100%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0.75) 0%,
    rgba(8, 27, 51, 0.55) 40%,
    rgba(8, 27, 51, 0.92) 100%
  );
}
.hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  width: 100%;
}
.hero-copy {
  max-width: 660px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 0.4em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-on-dark-muted);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-on-dark);
  padding: 8px 14px;
  border-radius: 3px;
  color: var(--text-on-dark-muted);
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-bright), transparent);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue .line {
    animation: none;
  }
}

/* interior page hero — shorter, shared background photo, per-page title */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: var(--header-h);
}
.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.page-hero .hero-scrim {
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0.55) 0%,
    rgba(8, 27, 51, 0.88) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
  width: 100%;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 14px;
}
.breadcrumb a:hover {
  color: var(--gold-bright);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--text-on-dark-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ============================================================
   MEDIA FRAMES (photography wrapped in the bracket-frame motif)
   ============================================================ */

.media-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.media-frame:hover img {
  transform: scale(1.06);
}
.media-frame .spec-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

/* ============================================================
   CARDS
   ============================================================ */

.value-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 45, 82, 0.1);
  border-color: var(--gold-glow);
}
.value-card .icon-badge {
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 14.5px;
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 10px;
  position: relative;
}
.icon-badge svg {
  width: 26px;
  height: 26px;
  color: var(--gold-bright);
}
.icon-badge::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-glow);
  border-radius: 11px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0.15) 0%,
    rgba(8, 27, 51, 0.92) 100%
  );
  transition: background 0.4s var(--ease);
}
.service-card:hover img {
  transform: scale(1.08);
}
.service-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--white);
}
.service-card .mono {
  font-size: 11px;
  color: var(--gold-bright);
  margin-bottom: 8px;
  display: block;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-bright);
}
.service-card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}
.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 700;
}
.faq-q .q-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-deep);
  margin-right: 14px;
  font-weight: 500;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.35s var(--ease);
}
.faq-q .plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}
.faq-q .plus::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  margin-left: -1px;
}
.faq-item.is-open .faq-q .plus::after {
  transform: rotate(90deg) scale(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a-inner {
  padding: 0 4px 28px 60px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 640px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-band .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}
.cta-band .blob-1 {
  width: 420px;
  height: 420px;
  background: var(--gold-glow);
  top: -160px;
  right: -100px;
}
.cta-band .blob-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  bottom: -160px;
  left: 8%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 68px 0;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 10px;
  max-width: 480px;
}
.cta-inner p {
  color: var(--text-on-dark-muted);
  max-width: 460px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS
   ============================================================ */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
}
.section-navy .stat-item .stat-label {
  color: var(--text-on-dark-muted);
}
@media (max-width: 700px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
}

/* ============================================================
   PROCESS STEPS (About — Construction Approach: a real sequence,
   so numbering is meaningful here, unlike decorative badges)
   ============================================================ */

.process-list {
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.process-step:last-child {
  border-bottom: 1px solid var(--border);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold-deep);
  padding-top: 4px;
}
.process-num .of {
  color: var(--text-faint);
}
.process-body h3 {
  margin-bottom: 8px;
}
.process-body p {
  color: var(--text-muted);
  max-width: 620px;
}

/* ============================================================
   VALUES GRID (About)
   ============================================================ */

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.42;
  color: var(--navy);
  font-weight: 600;
  position: relative;
  padding-left: 44px;
}
.philosophy-quote::before {
  content: "\201C";
  position: absolute;
  left: -6px;
  top: -22px;
  font-size: 5rem;
  color: var(--gold-glow);
  font-family: var(--font-display);
  z-index: 0;
}
.philosophy-quote span {
  position: relative;
  z-index: 1;
}
.philosophy-attr {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-left: 44px;
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-before {
  z-index: 1;
}
.ba-slider .ba-after-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 50%;
  overflow: hidden;
}
.ba-slider .ba-after-wrap img {
  width: var(--ba-img-w, 100vw);
  max-width: none;
  height: 100%;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.ba-handle .ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 6px 20px rgba(8, 27, 51, 0.3);
}
.ba-handle .ba-grip svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}
.ba-label {
  position: absolute;
  top: 16px;
  z-index: 4;
}
.ba-label.before {
  left: 16px;
}
.ba-label.after {
  right: 16px;
}

/* ============================================================
   PROJECT FILTER BAR + GALLERY GRID + LIGHTBOX
   ============================================================ */

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0) 40%,
    rgba(8, 27, 51, 0.86) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay .mono {
  font-size: 10.5px;
  color: var(--gold-bright);
  margin-bottom: 4px;
  display: block;
}
.gallery-overlay strong {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
}
.gallery-item .zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .zoom-icon {
  opacity: 1;
}
.gallery-item .zoom-icon svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 11, 15, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.lightbox img {
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 4px;
  width: auto;
}
.lightbox-caption {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin-top: 18px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close svg,
.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox {
    padding: 16px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   HORIZONTAL PROJECT CAROUSEL (Home — Featured Projects)
   ============================================================ */

.hscroll-wrap {
  position: relative;
}
.hscroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.hscroll-track::-webkit-scrollbar {
  display: none;
}
.hscroll-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(78vw, 380px);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
}
.hscroll-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hscroll-card:hover img {
  transform: scale(1.07);
}
.hscroll-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0.05) 45%,
    rgba(8, 27, 51, 0.92) 100%
  );
}
.hscroll-body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: var(--white);
}
.hscroll-body .mono {
  font-size: 10.5px;
  color: var(--gold-bright);
  margin-bottom: 6px;
  display: block;
}
.hscroll-body h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0;
}
.hscroll-nav {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  justify-content: flex-end;
}
.hscroll-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.hscroll-nav button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.hscroll-nav button:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.hscroll-nav svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   CONTACT: FORM, INFO CARDS, MAP, OFFICE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 9px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow-soft);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 4px;
}
.form-status {
  font-size: 14px;
  margin-top: 14px;
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status.ok {
  color: #1c7a4d;
}
.form-status.err {
  color: #b3352b;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.contact-card:hover {
  border-color: var(--gold-glow);
  transform: translateX(4px);
}
.contact-card .icon-badge {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.contact-card .icon-badge svg {
  width: 21px;
  height: 21px;
}
.contact-card .ct-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
  display: block;
}
.contact-card strong {
  font-size: 15.5px;
  color: var(--navy);
  font-weight: 600;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  filter: grayscale(0.15) contrast(1.02);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.office-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.office-hours .oh-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.office-hours .oh-row span:first-child {
  color: var(--text-muted);
}
.office-hours .oh-row span:last-child {
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NOTICE / EXPANSION BOX (Projects — future portfolio)
   ============================================================ */

.notice-box {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--paper);
}
.notice-box p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0;
}
.notice-box h3 {
  margin-bottom: 8px;
}

/* ============================================================
   SPACING / TEXT UTILITIES
   ============================================================ */

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-sm {
  margin-top: 16px;
}
.mt-md {
  margin-top: 32px;
}
.mt-lg {
  margin-top: 56px;
}
.text-gold {
  color: var(--gold-deep);
}
.text-muted {
  color: var(--text-muted);
}
.text-white {
  color: var(--white) !important;
}
.fw-500 {
  font-weight: 500;
}
.hide-mobile {
}
.show-mobile {
  display: none;
}
@media (max-width: 700px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block;
  }
}

/* ============================================================
   SPLIT LAYOUT (image + copy), used across Home intro, About
   overview, and Services detail rows
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split.reverse .split-copy {
  order: 1;
}
.split-media {
  position: relative;
}
.split-media .media-frame {
  aspect-ratio: 4/5;
}
.split-copy .eyebrow {
  margin-bottom: 14px;
}
.split-copy p {
  color: var(--text-muted);
}
.split-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.split-list svg {
  width: 19px;
  height: 19px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

/* floating accent card overlapping a split image, e.g. a stat chip */
.float-chip {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: 0 20px 50px rgba(15, 45, 82, 0.16);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}
.float-chip .stat-num {
  font-size: 1.9rem;
}
.float-chip .stat-label {
  margin-top: 2px;
  font-size: 10px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.reverse .split-media {
    order: 1;
  }
  .split.reverse .split-copy {
    order: 2;
  }
  .float-chip {
    left: 16px;
    bottom: -20px;
    padding: 14px 18px;
  }
}

/* ============================================================
   WHY CHOOSE US — checklist row style
   ============================================================ */

.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 8px;
}
.reason-item {
  display: flex;
  gap: 18px;
}
.reason-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-bright);
  padding-top: 3px;
  flex-shrink: 0;
  width: 34px;
}
.section:not(.section-navy) .reason-num {
  color: var(--gold-deep);
}
.reason-item h4 {
  margin-bottom: 6px;
}
.reason-item p {
  color: var(--text-on-dark-muted);
  font-size: 14px;
}
.section:not(.section-navy) .reason-item p {
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MISSION / VISION CARDS (About)
   ============================================================ */

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  padding: 40px 34px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.mv-card.navy {
  background: var(--navy);
  color: var(--white);
}
.mv-card.gold-line {
  background: var(--white);
  border: 1px solid var(--border);
}
.mv-card .icon-badge {
  margin-bottom: 22px;
}
.mv-card h3 {
  font-size: 1.35rem;
}
.mv-card.navy h3 {
  color: var(--white);
}
.mv-card p {
  font-size: 15px;
}
.mv-card.navy p {
  color: var(--text-on-dark-muted);
}
.mv-card.gold-line p {
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICE DETAIL ROWS (Services page — 6 alternating rows)
   ============================================================ */

.service-row {
  padding: clamp(56px, 7vw, 90px) 0;
  border-top: 1px solid var(--border);
}
.service-row:first-of-type {
  border-top: none;
}
.service-row .split {
  gap: 72px;
}
.service-detail-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.service-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-muted);
}
.service-detail-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  margin-top: 3px;
  flex-shrink: 0;
}
.service-row .service-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-deep);
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 620px) {
  .service-detail-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GLOBAL RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 900px) {
  .brand-word {
    font-size: 15px;
  }
  .hero-cta .btn {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 56px 0;
  }
  .cta-inner {
    padding: 52px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }
}
