/* =========================================================
   Crosslane Trading LLC — stylesheet
   Palette: navy #0E2A47, gold #C9A961, off-white #FAFAF8
   ========================================================= */

:root {
  --navy: #0E2A47;
  --navy-deep: #081B2E;
  --navy-soft: #1B3A5C;
  --gold: #C9A961;
  --gold-deep: #A88A45;
  --ivory: #FAFAF8;
  --paper: #FFFFFF;
  --ink: #14202E;
  --muted: #6B7280;
  --line: #E5E7EB;
  --line-soft: #F1F2F4;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 42, 71, 0.08);

  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.25rem, 4.4vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; color: #2A3849; }

.lead { font-size: 1.15rem; color: #3A4A5E; max-width: 720px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

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

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: .02em;
}

.nav-links a.active,
.nav-links a:hover { color: var(--gold-deep); }

.nav-cta {
  background: var(--navy);
  color: var(--paper) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: .88rem;
  letter-spacing: .03em;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--navy-deep); color: var(--paper) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--navy);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--paper);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--paper);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.10), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: 120px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(201,169,97,0.06) 49.5%, rgba(201,169,97,0.06) 50.5%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(201,169,97,0.06) 49.5%, rgba(201,169,97,0.06) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero h1 { color: var(--paper); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: rgba(255, 255, 255, 0.82); margin-top: .6em; }
.hero .eyebrow { color: var(--gold); }
.hero-actions { margin-top: 2rem; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 3.2rem;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
}
.hero-meta div { color: rgba(255,255,255,0.7); font-size: .85rem; letter-spacing: .04em; }
.hero-meta strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 1.6rem; font-weight: 600; letter-spacing: 0; margin-bottom: 2px; }

/* Page hero (shorter, for inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 320px; height: 320px;
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 50%;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,169,97,0.15);
  border-radius: 50%;
}
.page-hero h1 { color: var(--paper); margin-bottom: .4em; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .lead { color: rgba(255,255,255,0.82); }

/* ---------- Sections ---------- */
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Service grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,0.5);
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: #4A5868; font-size: .95rem; margin: 0; }

/* ---------- Bg shades ---------- */
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); color: var(--paper); }
.bg-navy h2, .bg-navy h3 { color: var(--paper); }
.bg-navy p { color: rgba(255,255,255,0.78); }
.bg-navy .eyebrow { color: var(--gold); }

/* ---------- Process / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.step {
  padding: 32px 24px;
  background: var(--paper);
  border-top: 2px solid var(--gold);
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: .9rem; color: #4A5868; margin: 0; }

/* ---------- Service detail blocks ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-block:last-child { border-bottom: 0; }
.service-block .label {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  opacity: 0.4;
}
.service-block h2 { margin-top: 16px; font-size: 2rem; }
.service-block ul {
  padding-left: 0;
  list-style: none;
  margin: 1.2rem 0 0;
}
.service-block ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: #2A3849;
}
.service-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

/* ---------- Stats / value props ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.value .v-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.10) 0%, transparent 70%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.form {
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}

.form-note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 14px;
}

.contact-info {
  padding: 8px 0;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-info p { color: #2A3849; }
.info-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: 0; }
.info-item .label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.info-item .value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}

.discovery-note {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.discovery-note h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.discovery-note p { margin: 0; font-size: .95rem; color: #3A4A5E; }

.toast {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: #EAF6EE;
  border: 1px solid #B7E0C2;
  border-radius: var(--radius);
  color: #1F6A39;
  font-size: .92rem;
}
.toast.show { display: block; }

/* ---------- Markets list ---------- */
.markets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.market-chip {
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
  transition: all .2s ease;
}
.market-chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.market-chip .flag {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.1em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 56px; opacity: .98; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,0.62); margin-top: 16px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: .92rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ---------- Hero single column (no visual) ---------- */
.hero-single {
  max-width: 820px;
}

/* ---------- Hero grid (two-column with visual) ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(201,169,97,0.35);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,42,71,0.35) 0%, rgba(14,42,71,0.05) 50%, rgba(168,138,69,0.20) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.hero-visual .corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  z-index: 3;
  pointer-events: none;
}
.hero-visual .corner.tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.hero-visual .corner.tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.hero-visual .corner.bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.hero-visual .corner.br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }

/* ---------- Image card (service card with photo header) ---------- */
.card-image {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.card-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,0.5);
}
.card-image .img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}
.card-image .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.card-image:hover .img img { transform: scale(1.04); }
.card-image .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,71,0) 50%, rgba(14,42,71,0.45) 100%);
}
.card-image .img .num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  z-index: 2;
}
.card-image .body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-image h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--navy);
}
.card-image p {
  color: #4A5868;
  font-size: .94rem;
  margin: 0;
  flex: 1;
}
.card-image .more {
  margin-top: 18px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.card-image .more::after {
  content: " →";
  transition: transform .2s ease;
  display: inline-block;
}
.card-image:hover .more::after { transform: translateX(4px); }

/* ---------- Service row (alternating image + text) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row.reverse .service-row-visual { order: 2; }
.service-row.reverse .service-row-text { order: 1; }

.service-row-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(14,42,71,0.12);
}
.service-row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.service-row:hover .service-row-visual img { transform: scale(1.03); }
.service-row-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,42,71,0.15) 0%, rgba(14,42,71,0) 50%);
  z-index: 1;
}
.service-row-visual .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(14,42,71,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  z-index: 2;
  border: 1px solid rgba(201,169,97,0.4);
}

.service-row-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.service-row-text ul {
  padding-left: 0;
  list-style: none;
  margin: 1.2rem 0 0;
}
.service-row-text ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: #2A3849;
  font-size: .96rem;
}
.service-row-text ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

/* ---------- Quote / pull band ---------- */
.quote-band {
  background: var(--ivory);
  padding: 80px 0;
  position: relative;
}
.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.quote-band::before { top: 40px; }
.quote-band::after { bottom: 40px; }
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  padding: 0 20px;
}
.quote::before, .quote::after {
  content: "“";
  display: inline;
  color: var(--gold);
  font-size: 1.4em;
  vertical-align: -0.1em;
}
.quote::after { content: "”"; }

/* ---------- World map (about page) ---------- */
.worldmap-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  position: relative;
}
.worldmap-wrap svg { width: 100%; height: auto; display: block; }
.worldmap-legend {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: .85rem;
}
.worldmap-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4A5868;
}
.worldmap-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ---------- About hero with visual ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-intro-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(14,42,71,0.15);
}
.about-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,71,0) 60%, rgba(14,42,71,0.4) 100%);
}
.about-intro-visual .accent {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.3;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

/* ---------- Decorative section divider ---------- */
.divider {
  text-align: center;
  margin: 0;
  padding: 32px 0 0;
}
.divider span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 8px;
}
.divider::before, .divider::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .service-block .label { font-size: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 28px; }
  .markets { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-row { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .service-row.reverse .service-row-visual { order: 1; }
  .service-row.reverse .service-row-text { order: 2; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 70px; }
  .page-hero { padding: 70px 0 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px 22px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-meta { gap: 24px; }
}
