/* ===================================================================
   ALARVELL INTERNATIONAL — Core Stylesheet
   =================================================================== */

:root {
  --black: #0d0d0d;
  --charcoal: #17171a;
  --charcoal-2: #1f2023;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --off-white: #f5f4f1;
  --white: #ffffff;
  --grey-mid: #6b6b6f;
  --grey-line: #2a2b2e;
  --grey-line-light: #e2e0da;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --header-h: 84px;
  --container-w: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: var(--header-h); }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; padding: 0; color: inherit; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Type helpers ---------- */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
}

.section-title-dark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

.section-body {
  font-size: 17px;
  color: #3a3a3d;
  max-width: 54ch;
}

.section-body-dark {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  max-width: 54ch;
  margin-top: 12px;
}

.section-head-center {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head-center .section-body,
.section-head-center .section-body-dark {
  margin-left: auto;
  margin-right: auto;
}

.section-note-center {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: var(--grey-mid);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.solutions-industries .section-note-center { color: rgba(255,255,255,0.5); }

.section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

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

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--charcoal-2); }

.btn-small { padding: 12px 20px; font-size: 12px; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13,13,13,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 8px 16px 8px 10px;
  border-radius: 6px;
  background: var(--black);
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.logo-img {
  display: block;
  height: 56px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   MINIMAL HERO (Home / About / Solutions)
   =================================================================== */
.hero-minimal-section {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 500px at 82% 10%, rgba(201,162,39,0.14), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #131315 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 78%);
}
.hero-minimal-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero-minimal-section .hero-minimal-inner {
  padding: 140px 0 120px;
}
.hero-minimal-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-minimal-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 54ch;
  margin: 0 auto 28px;
}
.hero-minimal-microline {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-minimal-inner .btn { margin-top: 4px; }

/* ===================================================================
   PHOTO FRAMES
   =================================================================== */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: var(--off-white);
  box-shadow: 0 12px 32px rgba(13, 13, 13, 0.1);
}
.photo-frame-tall { min-height: 460px; }
.photo-frame-grid { min-height: 220px; }
.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================================================================
   FLOW TRACK — N steps, horizontal (desktop) / vertical (mobile)
   Dark-background default (used on black sections)
   =================================================================== */
.flow-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 8px auto 0;
  padding: 0 4px;
}
.flow-track-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 1px;
  background: rgba(201, 162, 39, 0.4);
  z-index: 0;
}
.flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
}
.flow-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--gold);
  background: var(--black);
}
.flow-step-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  text-align: center;
}

/* ===================================================================
   FLOW VERTICAL — always-vertical connected steps
   Light-background default (used on white/off-white sections)
   =================================================================== */
.flow-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  margin: 8px auto 0;
}
.fv-step {
  border: 1px solid var(--grey-line-light);
  background: var(--white);
  padding: 15px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: 2px;
  min-width: 220px;
  text-align: center;
}
.fv-connector {
  width: 1px;
  height: 28px;
  background: var(--gold);
  position: relative;
}
.fv-connector::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--gold);
}
.flow-vertical-small .fv-step { padding: 11px 22px; font-size: 12px; min-width: 180px; }
.flow-vertical-small .fv-connector { height: 20px; }

.flow-vertical-ongold .fv-step { background: var(--black); color: var(--white); border-color: var(--black); }
.flow-vertical-ongold .fv-connector { background: var(--black); }
.flow-vertical-ongold .fv-connector::after { border-top-color: var(--black); }
.cta-flow-btn { margin-top: 28px; }

/* ===================================================================
   BORDERED GRID — plain bordered blocks (dark-background default)
   =================================================================== */
.bordered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 8px auto 0;
}
.bordered-block {
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 36px 24px;
  text-align: center;
}
.bordered-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.bordered-block p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}
.bordered-block-plain { padding: 26px 18px; }
.bordered-block-plain h3 { margin-bottom: 0; font-size: 14px; }

/* ===================================================================
   BARE ICON GRID — icon + label pairs (light-background default)
   =================================================================== */
.bare-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.bare-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.bare-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
}
.bare-icon svg { width: 100%; height: 100%; }
.bare-icon-item span:not(.bare-icon) {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
.bare-icon-grid-dark .bare-icon-item span:not(.bare-icon) { color: rgba(255,255,255,0.8); }

/* ===================================================================
   REAL PHOTO GRID (Home)
   =================================================================== */
.real-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.real-photo-caption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

/* ===================================================================
   STATEMENT SECTION — big gold typography on black
   =================================================================== */
.statement-section { background: var(--black); padding: 110px 0; }
.statement-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.statement-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 20px;
}
.statement-line {
  font-size: 15.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 30px;
}

/* ===================================================================
   HOME — SECTION BACKGROUNDS
   =================================================================== */
.home-flow { background: var(--black); }
.home-make { background: var(--black); }
.home-real { background: var(--off-white); }

/* ===================================================================
   FINAL CTA (gold)
   =================================================================== */
.final-cta {
  background: var(--gold);
  padding: 90px 0;
}
.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 16.5px;
  color: rgba(13,13,13,0.72);
  margin-bottom: 34px;
}

/* ===================================================================
   ABOUT — SECTION BACKGROUNDS
   =================================================================== */
.about-who { background: var(--white); }
.about-approach { background: var(--off-white); }
.about-vision-mission { padding: 120px 0; background: var(--white); }
.vm-columns {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vm-columns::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--grey-line-light);
}
.vm-col { text-align: center; }
.vm-col .vision-statement { margin-top: 4px; }
.vm-col .section-note-center { margin-top: 20px; }
.vision-statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--black);
}
.about-where { background: var(--white); }
.about-where .container { text-align: center; }
.about-where-line { margin: 24px auto 0; }
.about-where .btn { margin-top: 20px; }

.mb-frame { position: relative; }
.mb-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  pointer-events: none;
}
.mb-overlay-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

/* ===================================================================
   SOLUTION MAP — branching flow diagram (Solutions + OEM Development)
   =================================================================== */
.solution-map-section { background: var(--black); }
.sm-cta { margin-top: 4px; }
.solution-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.sm-node {
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: 16px 30px;
  text-align: center;
}
.sm-node-accent { border-color: var(--gold); background: rgba(201,162,39,0.06); }
.sm-node-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.sm-node-sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.sm-connector { width: 1px; height: 30px; background: var(--gold); }
.sm-fan-bar { width: 64%; max-width: 620px; height: 1px; background: var(--gold); }
.sm-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 900px;
}
.sm-branches-5 { grid-template-columns: repeat(5, 1fr); }
.sm-branch { position: relative; padding-top: 30px; padding-bottom: 30px; }
.sm-branch::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 30px;
  background: var(--gold);
}
.sm-branch::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 1px; height: 30px;
  background: var(--gold);
}
.sm-branches-5 .sm-branch { padding-bottom: 0; }
.sm-branches-5 .sm-branch::after { content: none; }
.sm-branch-box {
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 22px 18px;
  text-align: center;
}
.sm-branch-icon { display: inline-flex; width: 34px; height: 34px; color: var(--gold); margin-bottom: 14px; }
.sm-branch-icon svg { width: 100%; height: 100%; }
.sm-branch-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.sm-branch-box p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.sm-branch-box-plain { padding: 18px 14px; }
.sm-branch-box-plain h3 { margin-bottom: 0; font-size: 13px; }
.solution-map-compact .sm-node { margin-bottom: 20px; }

/* ===================================================================
   BLUEPRINT — technical drawing (Solutions)
   =================================================================== */
.blueprint-section { background: var(--charcoal); }
.blueprint-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 8px auto 0;
}
.bp-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  fill: rgba(255,255,255,0.75);
}
.bp-center-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  fill: var(--gold);
}

.solutions-industries { background: var(--black); }

/* ===================================================================
   OEM DEVELOPMENT
   =================================================================== */
.oem-intro { background: var(--black); }
.oem-steps { background: var(--charcoal); }
.oem-built-around { background: var(--black); }

.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 8px auto 0;
}
.ps-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.ps-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--gold);
  background: var(--charcoal);
}
.ps-content { min-width: 0; }
.ps-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.ps-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.ps-connector {
  width: 1px;
  height: 24px;
  background: var(--gold);
  margin-left: 17px;
}

/* ===================================================================
   MANUFACTURING
   =================================================================== */
.manufacturing-intro { background: var(--black); }
.manufacturing-capabilities { background: var(--black); }
.manufacturing-photos { background: var(--off-white); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===================================================================
   CONTACT + REQUIREMENT FORM
   =================================================================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.contact-info-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 4px;
}
.contact-info-country {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-info-cols {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-line-light);
}
.contact-info-microline {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.contact-info-block { margin-bottom: 22px; }
.contact-info-block h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info-block p {
  font-size: 15px;
  color: #3a3a3d;
  line-height: 1.7;
}
.contact-info-block a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--grey-line-light);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.contact-info-block a:hover { color: var(--gold); text-decoration-color: var(--gold); }

.requirement-form {
  background: var(--off-white);
  border: 1px solid var(--grey-line-light);
  padding: 40px;
  border-radius: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3a3a3d;
}

.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--grey-line-light);
  border-radius: 2px;
  padding: 13px 16px;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] { padding: 10px 14px; font-size: 13.5px; }
.form-group input[type="date"] { color: var(--black); }

.form-submit { margin-top: 4px; }
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-mid);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 80px 0 56px;
}

.footer-brand .logo-text { margin-bottom: 18px; display: flex; }
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-contact a {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer-contact a:hover { color: var(--gold); text-decoration-color: var(--gold); }

.footer-col .btn { margin-top: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(255,255,255,0.25); }

/* ===================================================================
   LEGAL PAGES (Privacy / Terms)
   =================================================================== */
.legal-page { background: var(--white); }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 13px;
  font-style: italic;
  color: var(--grey-mid);
  margin-bottom: 44px;
}

.legal-note {
  background: var(--off-white);
  border: 1px solid var(--grey-line-light);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  font-size: 14px;
  color: #3a3a3d;
  line-height: 1.65;
  margin-bottom: 48px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--black);
  margin: 44px 0 14px;
}
.legal-body h2:first-of-type { margin-top: 0; }

.legal-body p {
  font-size: 15.5px;
  color: #3a3a3d;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 16px;
}
.legal-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  color: #3a3a3d;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 1px;
}

.legal-body strong { color: var(--black); font-weight: 700; }

.legal-body a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--grey-line-light);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.legal-body a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
  .bordered-grid { grid-template-columns: repeat(2, 1fr); }
  .bare-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .real-photo-grid { gap: 16px; }
}

@media (max-width: 880px) {
  .about-where .btn { width: auto; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }

  .logo { padding: 6px 12px 6px 8px; }
  .logo-img { height: 42px; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    padding: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-cta.header-cta { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 68px 0; }
  .container { padding: 0 22px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 40px; }
  .footer-bottom-inner { flex-direction: column; }

  .photo-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .requirement-form { padding: 28px 22px; }

  .bordered-grid { grid-template-columns: 1fr; }
  .bare-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .real-photo-grid { grid-template-columns: 1fr; max-width: 380px; }

  .flow-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
  }
  .flow-track-line { display: none; }
  .flow-step { flex-direction: row; }

  /* Solution map: branching visual simplifies to a stacked list on mobile */
  .sm-branches, .sm-branches-5 { grid-template-columns: 1fr; gap: 20px; }
  .sm-fan-bar { display: none; }
  .sm-branch { padding: 0; }
  .sm-branch::before, .sm-branch::after { display: none; }

  .vm-columns { grid-template-columns: 1fr; gap: 48px; }
  .vm-columns::before { display: none; }
}

@media (max-width: 480px) {
  .btn { width: 100%; }
  .hero-minimal-inner .btn { width: auto; }
  .bare-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
