/* ============================================
   ÇAPA HALAT — Design System
   Industrial Maritime · Editorial Corporate
   ============================================ */

:root {
  /* Colors */
  --bg: #f5f1ea;
  --bg-cream: #efe9de;
  --ink: #0c1620;
  --ink-soft: #1a2632;
  --ink-muted: #4a5662;
  --paper: #ffffff;
  --line: #d8cfc0;
  --line-soft: #e8e0d2;

  --accent: #c8332a;          /* anchor red */
  --accent-deep: #9d2520;
  --accent-bright: #e74c3c;

  --navy: #0a1924;             /* deep maritime navy */
  --navy-soft: #14242f;
  --navy-light: #1f3340;

  --rope: #b89968;             /* hemp tone */
  --gold: #d4a548;

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
em { font-style: italic; font-feature-settings: "ss01"; color: var(--accent); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  min-height: 38px;
}
.topbar-left { display: flex; gap: 28px; }
.topbar-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.topbar-item svg { color: var(--accent); flex-shrink: 0; }
.topbar-badge {
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(200,51,42,0.4);
  padding: 3px 10px;
}
@media (max-width: 700px) {
  .topbar-hide-mobile { display: none; }
}

/* ============ HEADER ============ */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: 0 1px 30px rgba(12,22,32,0.08); }
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 84px; padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.logo-icon {
  width: 46px; height: 46px;
  background: var(--ink);
  display: grid; place-items: center;
  position: relative;
}
.logo-icon::before {
  content: '';
  position: absolute; inset: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}
.logo-icon svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.logo-title i {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  margin: 0 1px;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  margin-left: 12px;
  padding: 12px 22px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); display: block;
}

@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 84px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-link::after { display: none; }
  .nav-cta { margin: 12px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .logo-sub { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: contrast(1.05) saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(10,25,36,0.55) 0%, rgba(10,25,36,0.92) 80%),
    linear-gradient(180deg, rgba(10,25,36,0.5) 0%, rgba(10,25,36,0.95) 100%);
  z-index: -1;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.hero-content {
  padding: 80px 0 120px;
  width: 100%;
  position: relative;
}

.hero-marker {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  animation: fadeInUp .8s var(--ease) both;
}
.hero-marker-line {
  width: 40px; height: 1px; background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  font-feature-settings: "ss01", "ss02";
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: .1s; }
.hero-title-line:nth-child(2) { animation-delay: .25s; font-style: italic; font-weight: 300; }
.hero-title-line:nth-child(3) { animation-delay: .4s; }
.hero-title-line:nth-child(4) { animation-delay: .55s; color: var(--accent); font-style: italic; font-weight: 300; }
.hero-title-accent .amp { font-style: normal; color: var(--accent); }

.hero-lead {
  max-width: 620px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) .8s forwards;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) 1s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  opacity: 0;
  animation: fadeInUp .9s var(--ease) 1.2s forwards;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-stat:nth-child(2) { border-right: none; }
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}
@media (max-width: 980px) { .hero-scroll { display: none; } }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary svg { transition: transform .3s var(--ease); }

.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  user-select: none;
}
.marquee-track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.01em;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ SECTION BASICS ============ */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.eyebrow-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.eyebrow-light .eyebrow-text { color: rgba(255,255,255,0.6); border-left-color: rgba(255,255,255,0.2); }

.section-title {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: 16ch;
}
.section-title-light { color: var(--paper); }

.section-sub {
  max-width: 620px;
  margin-top: 26px;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.section-head { margin-bottom: clamp(50px, 7vw, 88px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  transition: gap .3s var(--ease), color .2s;
}
.link-arrow:hover { gap: 18px; color: var(--accent); border-bottom-color: var(--accent); }

/* ============ INTRO ============ */
.section-intro { background: var(--bg); border-top: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.intro-paragraph {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.intro-paragraph + .intro-paragraph { margin-bottom: 36px; }
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; } }

/* ============ PRODUCTS ============ */
.section-products {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}
.product-card {
  grid-column: span 2;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .3s, box-shadow .3s;
}
.product-card-large { grid-column: span 3; }
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -16px rgba(12,22,32,0.18);
}
.product-img {
  flex: 1;
  overflow: hidden;
  background: var(--navy);
  min-height: 220px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: contrast(1.02);
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-meta {
  padding: 24px 26px 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.product-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.product-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}
.product-arrow {
  position: absolute;
  right: 26px; top: 26px;
  font-size: 22px;
  color: var(--ink-muted);
  transition: transform .3s var(--ease), color .3s;
}
.product-card:hover .product-arrow { transform: translateX(6px); color: var(--accent); }

@media (max-width: 980px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card, .product-card-large { grid-column: span 1; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ============ WHY ============ */
.section-why { background: var(--bg); border-bottom: 1px solid var(--line); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-card {
  padding: 48px 40px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--bg);
  transition: background .3s;
}
.why-card:hover { background: var(--paper); }
.why-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
.why-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.why-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ INDUSTRIES ============ */
.section-industries {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-industries::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(200,51,42,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.industries-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 760px) {
  .industries-head { grid-template-columns: 1fr; gap: 24px; }
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.industry-item {
  padding: 36px 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 20px;
  transition: background .3s, color .3s;
  cursor: default;
}
.industry-item:hover {
  background: var(--accent);
}
.industry-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  transition: color .3s;
}
.industry-item:hover .industry-num { color: var(--paper); }
.industry-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 880px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

.industries-cta { margin-top: 60px; text-align: center; }

/* ============ CTA ============ */
.section-cta { background: var(--bg-cream); }
.cta-box {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(50px, 7vw, 100px) clamp(40px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,51,42,0.3) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  filter: blur(40px);
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  position: relative;
}
.cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 32px;
  position: relative;
}
.cta-actions {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-phone {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}
.cta-phone:hover { color: var(--accent); border-bottom-color: var(--accent); }
.cta-phone svg { color: var(--accent); }

@media (max-width: 880px) {
  .cta-box { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--paper);
  display: block;
  margin-bottom: 20px;
}
.footer-logo i { color: var(--accent); font-style: italic; font-weight: 400; }
.footer-tag {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--paper); padding-left: 6px; }
.footer-info {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 0 12px;
}
.footer-info a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ INNER PAGES — PAGE HEAD ============ */
.page-head {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(70px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,51,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb span { margin: 0 12px; opacity: 0.4; }
.page-title {
  font-size: clamp(44px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 14ch;
  position: relative;
}
.page-title em { color: var(--accent); }
.page-lead {
  max-width: 600px;
  margin-top: 32px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  position: relative;
}

/* ============ PROSE / CONTENT ============ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 60px 0 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-body);
  font-size: 20px;
  margin: 40px 0 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.prose blockquote {
  margin: 50px 0;
  padding: 0 0 0 36px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}
.prose strong { font-weight: 600; color: var(--ink); }

/* ============ DROP CAP ============ */
.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 500;
  float: left;
  line-height: 0.86;
  margin: 8px 14px 0 -2px;
  color: var(--accent);
}

/* ============ TABLE ============ */
.spec-table-wrap { overflow-x: auto; margin: 40px 0; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.spec-table thead {
  background: var(--ink);
  color: var(--paper);
}
.spec-table th {
  text-align: left;
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.spec-table th:last-child { border-right: none; }
.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
}
.spec-table td:first-child { font-weight: 600; color: var(--ink); font-family: var(--font-mono); }
.spec-table td:last-child { border-right: none; }
.spec-table tbody tr:hover { background: var(--bg-cream); }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
}
.contact-info-value a:hover { color: var(--accent); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 40px;
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-bottom-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .form-row-grid { grid-template-columns: 1fr; } }

/* ============ CARDS GENERIC ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px 40px;
  transition: transform .4s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.feature-card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}
.feature-card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

/* ============ PRODUCT DETAIL BLOCKS ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 7vw, 90px) 0;
  border-bottom: 1px solid var(--line);
}
.product-detail:last-child { border-bottom: none; }
.product-detail-reverse { direction: rtl; }
.product-detail-reverse > * { direction: ltr; }
.product-detail-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
}
.product-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-detail-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.product-detail-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.product-detail-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.product-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.product-detail-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.product-detail-list li:last-child { border-bottom: 1px solid var(--line); }
.product-detail-list-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.product-detail-list-val { color: var(--ink); font-weight: 500; }

@media (max-width: 760px) {
  .product-detail, .product-detail-reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ============ MAP ============ */
.map-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-cream);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ SECTORS PAGE ============ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 760px) { .sector-grid { grid-template-columns: 1fr; } }

.sector-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: stretch;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.sector-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.sector-icon {
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  font-style: italic;
}
.sector-icon-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-top: 8px;
  font-style: normal;
}
.sector-content { padding: 28px 30px 32px; }
.sector-content h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.sector-content p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  margin: 60px 0;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 50px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -47px; top: 4px;
  width: 13px; height: 13px;
  background: var(--accent);
  border: 3px solid var(--bg);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.timeline-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 56ch;
}

/* ============ ANCHORS ============ */
[id] { scroll-margin-top: 100px; }
