/* ==========================================================================
   NAEEM ASSOCIATES — Shared Stylesheet
   ========================================================================== */

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ============ DESIGN TOKENS ============ */
:root {
  --navy-950: #071527;
  --navy-900: #0B2647;
  --navy-800: #123863;
  --navy-700: #1B4A7D;
  --gold-600: #A87A2C;
  --gold-500: #C6963C;
  --gold-300: #E3BE72;
  --gold-100: #F4E4C1;
  --paper: #F7F8F6;
  --white: #FFFFFF;
  --ink: #16212C;
  --ink-soft: #4B5A66;
  --line: #E1E6E3;
  --line-dark: rgba(255,255,255,0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 86px;
  --shadow-soft: 0 1px 3px rgba(11,38,71,0.06), 0 8px 24px rgba(11,38,71,0.06);
  --shadow-lift: 0 10px 30px rgba(11,38,71,0.14);
}

html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
p {
  color: var(--ink-soft);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  line-height: 1.7;
  text-wrap: pretty;
}
h1, h2, h3, h4 { text-wrap: balance; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold-500); display: inline-block; }
.on-dark .eyebrow { color: var(--gold-300); }
.on-dark .eyebrow::before { background: var(--gold-300); }

.section-head { max-width: 640px; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-top: 0.6rem; }
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem) !important; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; min-height: 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--gold { background: var(--gold-500); color: var(--navy-950); }
.btn--gold:hover { background: var(--gold-300); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--outline-dark { border-color: var(--line-dark); color: var(--white); }
.btn--outline-dark:hover { border-color: var(--gold-300); color: var(--gold-300); transform: translateY(-2px); }
.btn--outline-light { border-color: var(--navy-900); color: var(--navy-900); }
.btn--outline-light:hover { background: var(--navy-900); color: var(--white); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; min-height: 40px; }
.btn--block { width: 100%; }

/* ============ FOCUS / ACCESSIBILITY ============ */
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold-500); color: var(--navy-950);
  padding: 0.8rem 1.2rem; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: opacity .3s ease; transform: none; }
  .route-plane, .pulse-ring, .hero__scroll-cue svg { animation: none !important; }
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,21,39,0.0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 1.1rem;
}
.nav.is-scrolled, .nav.is-solid {
  background: rgba(7,21,39,0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding-block: 0.7rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(155deg, var(--gold-500), var(--gold-600));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; color: var(--navy-950); }
.nav__word { line-height: 1.1; }
.nav__word .name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--white); letter-spacing: 0; }
.nav__word .sub { display: block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.13em; color: var(--gold-300); margin-top: 0.15rem; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.82); position: relative; padding-block: 0.3rem; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold-500); transition: right .25s ease; }
.nav__links a:hover, .nav__links a.is-active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }

.nav__cta { display: flex; align-items: center; gap: 1.2rem; }
.nav__phone { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.nav__phone svg { width: 15px; height: 15px; }
.nav__phone:hover { color: var(--gold-300); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { max-height: 0; overflow: hidden; background: var(--navy-950); transition: max-height .35s ease; }
.mobile-menu.is-open { max-height: 480px; }
.mobile-menu__inner { padding: 0.5rem clamp(1.25rem,4vw,2.5rem) 1.75rem; display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu a { padding: 0.85rem 0; font-size: 1rem; color: rgba(255,255,255,0.88); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a.is-active { color: var(--gold-300); }
.mobile-menu .btn { margin-top: 1rem; }

@media (max-width: 940px) {
  .nav__links, .nav__cta .nav__phone { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 380px) {
  .nav__word .sub { display: none; }
  .nav__word .name { font-size: 1rem; }
  .logo-mark { width: 34px; height: 34px; }
  .logo-mark svg { width: 19px; height: 19px; }
}

/* ============ HERO (rotating photo slideshow, home page) ============ */
.hero {
  position: relative;
  background-color: var(--navy-950);
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(6.5rem, 11vw, 9rem);
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero__slideshow { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 20% 25%, black, transparent);
          mask-image: radial-gradient(ellipse 65% 55% at 20% 25%, black, transparent);
  pointer-events: none;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(165deg, rgba(7,21,39,0.90) 15%, rgba(11,38,71,0.72) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; padding-top: var(--nav-h); width: 100%; }
.hero__content { max-width: 620px; }
.hero__trust-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem 0.5rem 0.7rem; border-radius: 999px;
  font-size: 0.82rem; color: rgba(255,255,255,0.92);
  margin-bottom: 1.6rem; backdrop-filter: blur(6px);
}
.hero__trust-chip svg { width: 15px; height: 15px; color: var(--gold-300); flex-shrink: 0; }
.hero__content .eyebrow { margin-bottom: 1.1rem; }
.hero h1 { color: var(--white); font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 600; text-wrap: balance; text-align: left; }
.hero h1 em { color: var(--gold-300); font-style: italic; font-weight: 500; }
.hero__lead { color: rgba(255,255,255,0.76); font-size: clamp(1.02rem, 1.4vw, 1.15rem); max-width: 48ch; margin-top: 1.4rem; text-align: left; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero__scroll-cue {
  position: absolute; bottom: 26px; left: clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 8px; z-index: 3;
  color: rgba(255,255,255,0.6); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__scroll-cue svg { width: 14px; height: 14px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(5px);} }

.hero__dots { position: absolute; bottom: 26px; right: clamp(1.25rem, 4vw, 2.5rem); z-index: 3; display: flex; gap: 8px; }
.hero__dot { width: 8px; height: 8px; padding: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); background-clip: content-box; border: none; cursor: pointer; transition: background .3s ease, transform .3s ease; }
.hero__dot.is-active { background: var(--gold-300); transform: scale(1.25); }

@media (max-width: 900px) {
  .hero { min-height: 560px; }
}
@media (max-width: 640px) {
  .hero { min-height: 520px; padding-bottom: 5.5rem; }
  .hero__scroll-cue { display: none; }
  .hero__dots { bottom: 20px; right: clamp(1.25rem, 4vw, 2.5rem); }
}
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 0; padding-top: 5.5rem; padding-bottom: 2.5rem; }
  .hero__scroll-cue { display: none; }
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  position: relative;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-950) 100%);
  margin-top: calc(-1 * var(--nav-h));
  padding-top: calc(var(--nav-h) + clamp(2.25rem, 5vw, 3.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 85% 20%, black, transparent);
          mask-image: radial-gradient(ellipse 60% 80% at 85% 20%, black, transparent);
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; max-width: 700px; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 3.6vw, 2.75rem); margin-top: 0.6rem; }
.page-header p { color: rgba(255,255,255,0.72); margin-top: 1rem; font-size: 1.05rem; max-width: 58ch; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1.4rem; }
.breadcrumb a { color: rgba(255,255,255,0.82); }
.breadcrumb a:hover { color: var(--gold-300); }

/* ============ ROUTE MAP (svg graphic, used in hero + about page) ============ */
.route-map { width: 100%; height: auto; overflow: visible; }
.route-path { fill: none; stroke: rgba(255,255,255,0.22); stroke-width: 1.6; stroke-dasharray: 1 7; stroke-linecap: round; }
.route-path--primary { stroke: rgba(227,190,114,0.55); stroke-width: 2; }
.route-node circle { fill: var(--navy-800); stroke: rgba(255,255,255,0.5); stroke-width: 1.4; }
.route-node.origin circle { fill: var(--gold-500); stroke: var(--gold-100); }
.route-node text { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; fill: rgba(255,255,255,0.68); }
.route-node.origin text { fill: var(--gold-300); font-weight: 600; }
.pulse-ring { fill: none; stroke: var(--gold-300); stroke-width: 1.4; opacity: 0; transform-origin: center; animation: pulse 3s ease-out infinite; }
@keyframes pulse { 0% { opacity: .55; transform: scale(0.4);} 100% { opacity: 0; transform: scale(2.2);} }
.route-plane { offset-path: path('M325,345 Q460,290 560,300'); offset-rotate: auto; animation: fly 7s linear infinite; }
.route-plane__glyph { fill: var(--gold-300); }
@keyframes fly { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.reach-card { background: var(--navy-950); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); }

/* ============ STATS (TICKET STRIP) ============ */
.stats { padding-block: 0; position: relative; z-index: 2; }
.stats__strip {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  margin-top: -58px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative;
}
.stat { padding: 1.9rem 1.5rem; text-align: center; border-left: 1px dashed var(--line); position: relative; }
.stat:first-child { border-left: none; }
.stat .num { display: block; font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.35rem, 2.4vw, 1.9rem); color: var(--navy-900); letter-spacing: -0.01em; }
.stat .num .suffix { color: var(--gold-600); }
.stat .label { display: block; margin-top: 0.4rem; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 640px) {
  .stats__strip { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .stat:nth-child(odd) { border-left: none; }
  .stat { border-top: 1px dashed var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 420px) {
  .stats__strip { grid-template-columns: 1fr; margin-top: -32px; }
  .stat { border-left: none !important; border-top: 1px dashed var(--line); }
  .stat:first-child { border-top: none; }
}

/* ============ ABOUT ============ */
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.about__text p { margin-top: 1.1rem; font-size: 1.03rem; max-width: 60ch; }
.about__vision { margin-top: 1.8rem; padding: 1.5rem 1.7rem; border-left: 3px solid var(--gold-500); background: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.about__vision p { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--navy-800); margin: 0; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.3rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold-300); }
.why-card .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold-600); letter-spacing: 0.05em; }
.why-card h4 { font-size: 1.02rem; margin-top: 0.5rem; }
.why-card p { font-size: 0.9rem; margin-top: 0.45rem; }

@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ HOME: LICENSE BAND ============ */
.license-band {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius); color: var(--white);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.license-band__text h3 { color: var(--white); font-size: 1.3rem; }
.license-band__text p { color: rgba(255,255,255,0.7); margin-top: 0.4rem; font-family: var(--font-mono); font-size: 0.88rem; }

/* ============ HOME: CEO QUOTE TEASER ============ */
.ceo-teaser { display: flex; gap: 1.5rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.ceo-teaser blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--navy-800); }
.ceo-teaser cite { display: block; margin-top: 0.6rem; font-style: normal; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 560px) { .ceo-teaser { flex-direction: column; text-align: center; } }

/* ============ LICENSE CERTIFICATE (full document display) ============ */
.license__cert-frame { max-width: 880px; margin-inline: auto; }
.license__cert-frame .photo-frame { padding: 12px; }
.license__cert-frame img { width: 100%; height: auto; border-radius: calc(var(--radius) - 6px); }
.license__cert-frame .photo-frame.is-empty { aspect-ratio: 1600 / 1162; min-height: 0; }
.teaser-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.92rem; color: var(--navy-900); margin-top: 1.1rem; }
.teaser-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.teaser-link:hover { color: var(--gold-600); }
.teaser-link:hover svg { transform: translateX(3px); }
.on-dark .teaser-link, .on-dark .teaser-link:hover { color: var(--gold-300); }

/* ============ HOME: ABOUT TEASER ============ */
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .about-teaser__grid { grid-template-columns: 1fr; } }

/* ============ HOME: SERVICES MINI GRID ============ */
.services-mini { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.services-mini__item { text-align: center; padding: 1.5rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.services-mini__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold-300); }
.services-mini__item .icon-wrap { width: 46px; height: 46px; border-radius: 10px; background: var(--navy-900); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 0.9rem; }
.services-mini__item .icon-wrap svg { width: 24px; height: 24px; color: var(--gold-300); }
.services-mini__item h4 { font-size: 0.86rem; font-weight: 600; color: var(--navy-900); line-height: 1.3; }
@media (max-width: 780px) { .services-mini { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .services-mini { grid-template-columns: repeat(2, 1fr); } }

/* ============ SERVICES (full grid, services page) ============ */
.services { background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.service-card { padding: 2rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.service-card .icon-wrap { width: 54px; height: 54px; border-radius: 12px; background: var(--navy-900); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.service-card .icon-wrap svg { width: 28px; height: 28px; color: var(--gold-300); }
.service-card h3 { font-size: 1.12rem; font-weight: 600; }
.service-card p { margin-top: 0.6rem; font-size: 0.93rem; }

/* ============ PROCESS TIMELINE ============ */
.process__timeline { max-width: 760px; }
.process-step { display: grid; grid-template-columns: 52px 1fr; gap: 1.4rem; position: relative; padding-bottom: 2.6rem; }
.process-step:last-child { padding-bottom: 0; }
.process-step__rail { position: relative; display: flex; justify-content: center; }
.process-step__num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy-900); color: var(--gold-300); font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; flex-shrink: 0; border: 1px solid var(--navy-700); }
.process-step__line { position: absolute; top: 52px; bottom: -2.6rem; left: 50%; width: 1px; background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 12px); transform: translateX(-50%); }
.process-step:last-child .process-step__line { display: none; }
.process-step__body { padding-top: 0.5rem; }
.process-step__body h4 { font-size: 1.12rem; }
.process-step__body p { margin-top: 0.4rem; font-size: 0.95rem; max-width: 54ch; }

/* ============ PHOTO FRAME (CEO photo, license certificate) ============ */
.photo-frame { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow-soft); }
.photo-frame img { width: 100%; height: auto; border-radius: calc(var(--radius) - 6px); display: block; background: var(--paper); }
.photo-frame--circle { border-radius: 50%; padding: 6px; }
.photo-frame--circle img { border-radius: 50%; aspect-ratio: 1 / 1; object-fit: cover; }
.photo-frame--on-dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.photo-frame.is-empty { min-height: 200px; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--paper); }
.photo-frame.is-empty::after { content: attr(data-empty-label); font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.6; color: var(--ink-soft); padding: 1.5rem; }
.photo-frame--on-dark.is-empty { background: rgba(255,255,255,0.06); }
.photo-frame--on-dark.is-empty::after { color: rgba(255,255,255,0.55); }
.photo-frame--circle.is-empty { border-radius: 50%; }

/* ============ LICENSE (license.html) ============ */
.license { background: linear-gradient(165deg, var(--navy-900), var(--navy-950)); color: var(--white); }
.license__badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.license__badge { display: flex; align-items: center; gap: 0.5rem; border: 1px solid var(--line-dark); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.license__badge svg { width: 15px; height: 15px; color: var(--gold-300); flex-shrink: 0; }

/* ============ LEADERSHIP / CEO MESSAGE (about.html) ============ */
.leadership { background: var(--white); }
.leadership__grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.leadership__photo { width: 100%; }
.avatar-caption { text-align: center; margin-top: 0.9rem; font-size: 0.8rem; color: var(--ink-soft); }
.avatar-caption strong { display: block; color: var(--navy-900); font-size: 0.95rem; margin-bottom: 0.15rem; }

blockquote.ceo-message { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.1rem, 1.9vw, 1.32rem); line-height: 1.6; color: var(--navy-900); position: relative; padding-left: 1.6rem; border-left: 3px solid var(--gold-500); }
.ceo-message p + p { margin-top: 1rem; }
.ceo-sign { margin-top: 1.3rem; padding-left: 1.6rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); }

@media (max-width: 700px) { .leadership__grid { grid-template-columns: 1fr; } .leadership__photo { max-width: 220px; margin-inline: auto; } }

/* ============ CTA BANNER ============ */
.cta-banner { background: var(--gold-500); }
.cta-banner__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-banner h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); max-width: 28ch; }
.cta-banner .btn--outline-light { border-color: var(--navy-950); }

/* ============ CONTACT ============ */
.contact__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 5vw, 4rem); }
.contact-item { display: flex; gap: 0.9rem; margin-top: 1.4rem; }
.contact-item:first-of-type { margin-top: 0; }
.contact-item .ic { width: 38px; height: 38px; border-radius: 9px; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ic svg { width: 18px; height: 18px; color: var(--gold-600); }
.contact-item .txt h4 { font-size: 0.95rem; color: var(--navy-900); font-weight: 600; }
.contact-item .txt p, .contact-item .txt a { font-size: 0.93rem; color: var(--ink-soft); margin-top: 0.15rem; display: block; }
.contact-item .txt a:hover { color: var(--gold-600); }

.map-frame { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-top: 1.1rem; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy-900); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); font-size: 16px; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(198,150,60,0.15); }
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 1.4rem; }
.form-note { margin-top: 1rem; font-size: 0.88rem; color: var(--navy-800); font-weight: 600; opacity: 0; transition: opacity .3s ease; }
.form-note.is-visible { opacity: 1; }

@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.68); }
.footer__top { padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__brand .name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.footer p.tagline { font-size: 0.92rem; max-width: 32ch; }
.footer h5 { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 1rem; }
.footer__links a { display: block; font-size: 0.92rem; padding-block: 0.4rem; }
.footer__links a:hover { color: var(--gold-300); }
.footer address { font-style: normal; font-size: 0.92rem; line-height: 1.8; }
.footer address a { display: block; }
.footer address a:hover { color: var(--gold-300); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; font-size: 0.82rem; }
.footer__bottom .lic { font-family: var(--font-mono); color: rgba(255,255,255,0.5); }

@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ SMALL-SCREEN GLOBAL REFINEMENTS ============ */
@media (max-width: 420px) {
  .hero__actions, .cta-banner__inner { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .cta-banner__inner .btn { width: 100%; }
  .btn { padding: 0.85rem 1.3rem; }
  section { padding-block: clamp(2.75rem, 9vw, 4rem); }
}
