/* ============================================
   HTSL — Horizine Technical Services Limited
   Corporate Website Stylesheet
   ============================================ */

:root {
  --navy-900: #0a1828;
  --navy-800: #0f2542;
  --navy-700: #142d52;
  --navy-600: #1c3b6b;
  --gold-500: #c9a14a;
  --gold-400: #d4b56a;
  --gold-300: #e2c88a;
  --ink-900: #0e1116;
  --ink-700: #2a313b;
  --ink-500: #4a5260;
  --ink-300: #8b94a3;
  --paper: #ffffff;
  --paper-soft: #f6f7fb;
  --paper-warm: #f3eee2;
  --line: #e3e6ee;
  --shadow-sm: 0 1px 2px rgba(10, 24, 40, 0.06), 0 1px 3px rgba(10, 24, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 24, 40, 0.08), 0 2px 4px rgba(10, 24, 40, 0.06);
  --shadow-lg: 0 18px 40px rgba(10, 24, 40, 0.18);
  --radius: 6px;
  --radius-lg: 10px;
  --container: 1200px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

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

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

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

p { margin: 0 0 1rem; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.125rem;
  color: var(--ink-500);
  max-width: 720px;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name { font-size: 1.05rem; letter-spacing: .02em; }
.brand-text .tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}

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

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
}

.nav-cta {
  background: var(--navy-800);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--navy-900); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--navy-900);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 140px);
  background:
    linear-gradient(135deg, rgba(10, 24, 40, 0.86), rgba(15, 37, 66, 0.78)),
    url("https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.hero h1 { color: #fff; max-width: 920px; }
.hero .lead { color: rgba(255, 255, 255, 0.85); max-width: 760px; }
.hero .eyebrow { color: var(--gold-300); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-300); color: var(--gold-300) !important; }

.btn-dark {
  background: var(--navy-800);
  color: #fff !important;
}
.btn-dark:hover { background: var(--navy-900); transform: translateY(-2px); }

/* ===== Page hero (smaller) ===== */
.page-hero {
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0 clamp(60px, 8vw, 90px);
  position: relative;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 24, 40, 0.85), rgba(15, 37, 66, 0.7));
}

.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.85); }
.page-hero .eyebrow { color: var(--gold-300); }

.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--gold-300); }
.breadcrumbs span { margin: 0 8px; }

/* ===== Sections ===== */
.section {
  padding: clamp(64px, 9vw, 110px) 0;
}
.section-soft { background: var(--paper-soft); }
.section-dark { background: var(--navy-900); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--gold-300); }

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

/* ===== Pillar grid (services) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  margin-bottom: 22px;
  font-size: 1.4rem;
}

.pillar h3 { color: var(--navy-900); margin-bottom: 10px; }
.pillar p { color: var(--ink-500); font-size: 0.97rem; margin-bottom: 18px; }

.pillar-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-link::after {
  content: "→";
  transition: transform .2s;
}
.pillar:hover .pillar-link::after { transform: translateX(4px); }

/* ===== Two column ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.1fr; }
.two-col.reverse .col-text { order: 2; }

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
}
.image-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.image-card.tall { aspect-ratio: 3 / 4; }

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.stat .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-300);
  font-weight: 600;
  line-height: 1;
}
.stat .label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ===== Capability list ===== */
.cap-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cap-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.96rem;
  color: var(--ink-700);
  display: flex;
  gap: 14px;
}
.cap-list .cap-icon {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cap-list strong { color: var(--navy-900); display: block; margin-bottom: 4px; }

/* ===== Tabs / detail strip ===== */
.detail-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-strip > div {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.detail-strip > div:last-child { border-right: 0; }
.detail-strip h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 8px; }
.detail-strip p { font-size: 0.95rem; color: var(--ink-700); margin: 0; }

/* ===== Process / steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px; left: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-family: var(--serif);
  font-size: 0.95rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.step h4 { color: var(--navy-900); font-family: var(--serif); font-size: 1.15rem; margin: 12px 0 8px; }
.step p { color: var(--ink-500); font-size: .94rem; margin: 0; }

/* ===== Logos / partners ===== */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.partner-card::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* ===== CTA banner ===== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10, 24, 40, 0.88), rgba(15, 37, 66, 0.85)),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 24px;
  border-radius: var(--radius-lg);
  margin: 0 24px;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 26px; }

/* ===== Forms ===== */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form .full { grid-column: 1 / -1; }
.form label { font-size: 0.82rem; font-weight: 600; color: var(--navy-900); display: block; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink-700);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer h4 {
  font-family: var(--sans);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gold-300); }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand-text .name { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ===== Vessels grid ===== */
.vessels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.vessel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.vessel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vessel-card .img {
  aspect-ratio: 16 / 10;
  background: var(--navy-700) center/cover no-repeat;
}
.vessel-card .body { padding: 22px 24px 26px; }
.vessel-card h3 { color: var(--navy-900); margin-bottom: 6px; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.vessel-card .role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-500); font-weight: 700; margin-bottom: 10px; }
.vessel-card p { font-size: 0.92rem; color: var(--ink-500); margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .col-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form { grid-template-columns: 1fr; padding: 24px; }
  .detail-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-strip > div:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta { display: inline-block; margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 80px 0 70px; }
}

/* ===== Scroll reveal helper ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== HTSL Brand Accent (corporate red from logo) ===== */
:root {
  --htsl-red: #a52437;
  --htsl-red-dark: #7d1a28;
  --htsl-red-soft: #f8e6e9;
}

.brand-bar {
  background: var(--htsl-red);
  color: #fff;
  height: 6px;
  width: 100%;
}

/* ===== Photo gallery / facility tour ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-item .photo {
  aspect-ratio: 4 / 3;
  background-color: var(--navy-800);
  background-size: cover;
  background-position: center;
}
.gallery-item .caption {
  padding: 14px 18px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  border-top: 3px solid var(--htsl-red);
}

.gallery.tight { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.gallery.wide { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* Photo strip — full-width landscape image with caption below */
.photo-feature {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.photo-feature img { width: 100%; height: auto; display: block; }
.photo-feature .caption {
  padding: 18px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-900);
  border-top: 3px solid var(--htsl-red);
  text-align: center;
}

/* ===== Chairman / leadership card ===== */
.leader-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 920px;
  margin: 0 auto;
}
.leader-card .portrait {
  aspect-ratio: 3 / 4;
  background-color: var(--htsl-red);
  background-size: cover;
  background-position: center top;
}
.leader-card .body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-card .name-bar {
  background: #f5c500;
  display: inline-block;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  margin-bottom: 16px;
  align-self: flex-start;
}
.leader-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.leader-card .role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--htsl-red);
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 720px) {
  .leader-card { grid-template-columns: 1fr; }
  .leader-card .portrait { aspect-ratio: 4 / 5; }
}

/* ===== Section divider — title slab from PDF ===== */
.title-slab {
  text-align: center;
  padding: clamp(60px, 9vw, 100px) 24px;
  background: var(--htsl-red-soft);
  position: relative;
}
.title-slab::before, .title-slab::after {
  content: "";
  display: block;
  height: 6px;
  background: var(--htsl-red);
  position: absolute; left: 0; right: 0;
}
.title-slab::before { top: 0; }
.title-slab::after { bottom: 0; }
.title-slab h1, .title-slab h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 6px;
  font-weight: 700;
}
.title-slab .red {
  color: var(--htsl-red);
  display: block;
  font-style: italic;
}

/* ===== HTSL logo lockup using image ===== */
.brand-logo-img {
  width: 48px;
  height: 48px;
  background: #fff url('../img/htsl-logo-mark.jpg') center/contain no-repeat;
  border-radius: 8px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

/* ===== Lightbox-light: clickable images zoom on hover ===== */
.zoomable { cursor: zoom-in; }

/* ===== Quote / pull-quote ===== */
.pull-quote {
  border-left: 4px solid var(--htsl-red);
  padding: 12px 0 12px 24px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy-900);
  margin: 24px 0;
  max-width: 760px;
}

/* ===== Two-column rich text ===== */
.rich-text {
  max-width: 820px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.rich-text strong { color: var(--navy-900); }
.rich-text h3 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--htsl-red);
  margin: 32px 0 12px;
}
.rich-text ul {
  padding-left: 20px;
  margin: 12px 0 16px;
}
.rich-text ul li { margin-bottom: 6px; }
