/* ==========================================================================
   ALKYON TRADING & IMPORTING — Shared Stylesheet
   Aesthetic: Maritime Defense Heritage (refined)
   Typography: Cormorant Garamond (display) · Inter (body) · JetBrains Mono (accents)
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --abyss: #050B14;
  --midnight: #0A1828;
  --deep: #0F2847;
  --navy: #1E4976;
  --sky: #60A5FA;
  --steel: #94A3B8;
  --sand: #E7DDC6;
  --brass: #C9A961;
  --gold: #D4B872;
  --ivory: #F5F1E8;
  --line: rgba(231, 221, 198, 0.09);
  --line-bold: rgba(231, 221, 198, 0.18);

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sand);
  background: var(--abyss);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Language toggle visibility (controlled via <html lang>) */
html[lang="el"] .en { display: none; }
html[lang="en"] .el { display: none; }

/* --------------------------------------------------------------------------
   TYPOGRAPHY SYSTEM — refined, smaller, more sophisticated
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Hero display — dramatically smaller than before */
.display-xl {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.display-xl em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}

/* Section titles */
.display-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ivory);
}
.display-lg em {
  font-style: italic;
  color: var(--sky);
}

/* Subsection titles */
.display-md {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  color: var(--ivory);
}
.display-md em { font-style: italic; color: var(--sky); font-weight: 400; }

/* Page titles (on interior pages) */
.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.page-title em { font-style: italic; color: var(--sky); }

/* Body lead */
.lead {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  color: var(--sand);
  max-width: 55ch;
}

/* --------------------------------------------------------------------------
   TOP BAR
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--abyss);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--steel);
  padding: 10px 0;
  position: relative;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.topbar-left { display: flex; gap: 1.75rem; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; gap: 0.5rem; align-items: center; }
.topbar-left .dot { color: var(--brass); font-size: 0.6rem; }
.topbar-right { display: flex; gap: 1.25rem; align-items: center; }
.lang-toggle { display: inline-flex; border: 1px solid var(--line-bold); border-radius: 2px; overflow: hidden; }
.lang-toggle button {
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--steel);
  transition: all 0.2s;
}
.lang-toggle button.active { background: var(--brass); color: var(--abyss); font-weight: 600; }
.lang-toggle button:hover:not(.active) { color: var(--sand); }
@media (max-width: 720px) {
  .topbar-left { gap: 0.75rem; font-size: 0.6rem; }
  .topbar-left .hide-sm { display: none; }
  .topbar-right { gap: 0.75rem; }
  .topbar-right > span.hide-sm { display: none; }
}
@media (max-width: 480px) {
  .topbar-inner { gap: 1rem; }
  .topbar-left { font-size: 0.58rem; gap: 0.5rem; }
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 11, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--steel);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--sand); }
.nav-menu a.active {
  color: var(--sand);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 10px 18px;
  border: 1px solid var(--brass);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--brass); color: var(--abyss); }

/* Mobile menu */
.menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}
.menu-btn svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--midnight); flex-direction: column; align-items: stretch; padding: 1rem 0; border-top: 1px solid var(--line); gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px var(--gutter); }
  .nav-menu a.active::after { display: none; }
  .nav-menu a.active { background: rgba(201, 169, 97, 0.08); border-left: 2px solid var(--brass); padding-left: calc(var(--gutter) - 2px); }
  .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   PAGE INTRO (for interior pages)
   -------------------------------------------------------------------------- */
.page-intro {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  position: relative;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(30, 73, 118, 0.4), transparent 60%),
    linear-gradient(180deg, var(--abyss), var(--midnight));
  border-bottom: 1px solid var(--line);
}
.page-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 221, 198, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 221, 198, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.page-intro-inner { position: relative; max-width: 780px; }
.page-intro .eyebrow { margin-bottom: 1.25rem; display: block; }
.page-intro .page-title { margin-bottom: 1.25rem; }
.page-intro .lead { max-width: 62ch; }

/* --------------------------------------------------------------------------
   BLOCK (generic section)
   -------------------------------------------------------------------------- */
.block {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
}
.block.tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.block.alt { background: var(--midnight); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.section-head .eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--brass); }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
}

/* --------------------------------------------------------------------------
   HERO (home page only)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(30, 73, 118, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.20), transparent 55%),
    radial-gradient(circle at 65% 85%, rgba(201, 169, 97, 0.10), transparent 45%),
    linear-gradient(180deg, var(--abyss) 0%, var(--midnight) 60%, var(--deep) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 221, 198, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 221, 198, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  overflow: hidden;
}
.hero-waves svg {
  width: 200%;
  height: 100%;
  display: block;
  animation: wave-drift 35s linear infinite;
}
@keyframes wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
  margin-right: 12px;
  vertical-align: middle;
}
.hero-subtitle {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero-subtitle strong { color: var(--ivory); font-weight: 600; }

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: var(--abyss);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--line-bold);
  color: var(--sand);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

/* Hero emblem */
.hero-emblem {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed var(--line-bold);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-emblem-ring::before,
.hero-emblem-ring::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.hero-emblem-ring::before { left: -3px; }
.hero-emblem-ring::after { right: -3px; }
@keyframes spin { from {transform: rotate(0);} to {transform: rotate(360deg);} }

.hero-emblem-logo {
  position: relative;
  width: 72%;
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3));
}
.hero-chip {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(10, 24, 40, 0.8);
  border: 1px solid var(--line-bold);
  padding: 8px 14px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-chip .chip-label { color: var(--brass); font-size: 0.62rem; display: block; margin-bottom: 2px; }
.hero-chip .chip-value { color: var(--sand); font-weight: 500; }
.hero-chip-1 { top: -3%; right: -5%; }
.hero-chip-2 { top: 48%; right: -48%; transform: translateY(-50%); }
.hero-chip-3 { bottom: -3%; left: -30%; }
@media (max-width: 900px) {
  .hero-chip-1 { top: -8%; right: 0; }
  .hero-chip-2 { top: 48%; right: -8%; }
  .hero-chip-3 { bottom: -8%; left: 0; }
}
@media (max-width: 600px) {
  .hero-chip-1 { top: -6%; right: 0; }
  .hero-chip-2 { top: 45%; right: -4%; }
  .hero-chip-3 { bottom: -6%; left: 0; }
}

/* --------------------------------------------------------------------------
   STATS STRIP
   -------------------------------------------------------------------------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--midnight);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 2.25rem var(--gutter);
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
.stat-num em { font-style: italic; color: var(--sky); }
.stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); padding: 1.5rem var(--gutter); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* --------------------------------------------------------------------------
   SECTORS GRID
   -------------------------------------------------------------------------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .sectors-grid { grid-template-columns: 1fr; }
}

.sector {
  background: var(--abyss);
  padding: 2.5rem clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.sector:hover { background: var(--midnight); }

.sector-bg {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  color: var(--sky);
  opacity: 0.06;
  transition: opacity 0.3s;
}
.sector:hover .sector-bg { opacity: 0.13; }
.sector-bg svg { width: 100%; height: 100%; }

.sector-num {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--steel);
  opacity: 0.6;
}
.sector-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--brass);
}
.sector-icon svg { width: 20px; height: 20px; }
.sector-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.sector-title em { font-style: italic; color: var(--sky); font-weight: 400; }
.sector-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.sector-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 4px 10px;
  border: 1px solid var(--line-bold);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   PRODUCTS (tabbed)
   -------------------------------------------------------------------------- */
.product-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  padding-bottom: 2px;
}
.product-tab {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.2s;
}
.product-tab:hover { color: var(--sand); }
.product-tab.active {
  color: var(--sand);
  border-bottom-color: var(--brass);
}

.product-panel { display: none; animation: fadeIn 0.4s ease-out; }
.product-panel.active { display: block; }
@keyframes fadeIn { from {opacity: 0; transform: translateY(6px);} to {opacity: 1; transform: translateY(0);} }

.product-panel-lead {
  max-width: 70ch;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--sand);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-item {
  background: var(--abyss);
  padding: 1.25rem 1.35rem;
  transition: background 0.2s;
}
.product-item:hover { background: var(--midnight); }
.product-item-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-item-spec {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

/* --------------------------------------------------------------------------
   CERTIFICATIONS PANEL
   -------------------------------------------------------------------------- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 820px) { .cred-grid { grid-template-columns: 1fr; } }
.cred-card {
  padding: 2rem 1.75rem;
  background: var(--midnight);
  border: 1px solid var(--line-bold);
  border-radius: 3px;
  text-align: center;
  transition: border-color 0.3s;
}
.cred-card:hover { border-color: var(--brass); }
.cred-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  color: var(--brass);
}
.cred-badge-img {
  display: block;
  max-width: 180px;
  max-height: 80px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}
.cred-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.cred-body {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CLIENTS MARQUEE
   -------------------------------------------------------------------------- */
.clients {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--midnight);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  margin-bottom: 1.5rem;
}
.marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--steel);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 3px;
  height: 3px;
  background: var(--brass);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   FEATURE / REFERENCE PROJECT
   -------------------------------------------------------------------------- */
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .feature-inner { grid-template-columns: 1fr; } }

.feature-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--deep), var(--midnight));
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line-bold);
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.feature-illustration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.feature-illustration svg {
  width: 100%;
  max-height: 60%;
  color: var(--sky);
  opacity: 0.32;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.2));
}
.feature-visual-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.feature-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.feature-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--brass);
  border-radius: 2px;
}
.feature-year {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  color: var(--sky);
}
.feature-caption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-bold);
  line-height: 1.5;
}
.feature-content .eyebrow { margin-bottom: 1rem; display: block; }
.feature-content .display-lg { margin-bottom: 1.25rem; }
.feature-content p { max-width: 55ch; margin-bottom: 1rem; color: var(--sand); }
.feature-content p strong { color: var(--ivory); }
.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .num {
  font-family: var(--mono);
  color: var(--brass);
  font-size: 0.75rem;
  min-width: 22px;
}

/* --------------------------------------------------------------------------
   ABOUT / VALUES
   -------------------------------------------------------------------------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; } }
.about-left { position: sticky; top: 100px; }
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--brass);
}
.about-attribution {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}
.about-body p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--sand);
}
.about-body p strong { color: var(--ivory); font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 1.5rem;
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.value-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.value-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}
.value-body {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--steel);
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }
.contact-lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--sand);
  margin: 1rem 0 2rem;
  max-width: 50ch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-item { display: flex; gap: 1.5rem; align-items: start; }
.contact-item-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  min-width: 90px;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--sand);
  line-height: 1.5;
}
.contact-item-value small {
  display: block;
  font-size: 0.75rem;
  color: var(--steel);
  margin-top: 2px;
}

.contact-form {
  padding: 2rem;
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 12px;
  background: var(--abyss);
  border: 1px solid var(--line-bold);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ivory);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--brass);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--brass);
  color: var(--abyss);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold); }

/* --------------------------------------------------------------------------
   TEASERS (on home page)
   -------------------------------------------------------------------------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 820px) { .teaser-grid { grid-template-columns: 1fr; } }
.teaser-card {
  padding: 2rem;
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}
.teaser-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.teaser-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 1rem;
}
.teaser-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.teaser-title em { font-style: italic; color: var(--sky); font-weight: 400; }
.teaser-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--steel);
  margin-bottom: 1.25rem;
}
.teaser-link {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.teaser-link::after {
  content: '→';
  transition: transform 0.25s;
}
.teaser-card:hover .teaser-link::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--abyss);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 1.5rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--steel);
  max-width: 26ch;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--steel);
}
.footer-col a { color: var(--steel); transition: color 0.2s; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--steel);
}
.footer-certs {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-certs span { color: var(--brass); }

/* --------------------------------------------------------------------------
   REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.js-ready .reveal.in { opacity: 1; transform: translateY(0); }
/* When JS is off, show everything */
html:not(.js-ready) .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
