/* ─── LINNET HOME PAGE ─── */

/* Dark ink body */
body {
  background: var(--ink);
  color: var(--paper);
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV (home – dark, bare) ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 100;
}

/* Left side: logo image | wordmark + main nav column */
.nav-left {
  display: flex;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

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

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

/* Main nav links under logo */
.main-nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.75rem;
  color: rgba(244, 241, 235, 0.45);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--gold); }

/* Remove old nav-links usage on home */
.nav-links { display: none; }

.nav-cta {
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 10rem 3rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-left h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 2rem;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(244, 241, 235, 0.65);
  line-height: 1.7;
  max-width: 420px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-item {}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 241, 235, 0.45);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
}

.stat-sub {
  font-size: 0.875rem;
  color: rgba(244, 241, 235, 0.55);
  margin-top: 0.4rem;
}

/* ─── PRODUCTS ─── */
.products-section {
  background: var(--ink-soft);
  padding: 6rem 3rem;
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.product-card {
  padding: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: border-color 0.3s, transform 0.3s;
  background: rgba(244, 241, 235, 0.02);
}

.product-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.product-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.product-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.product-desc {
  font-size: 1rem;
  color: rgba(244, 241, 235, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(244, 241, 235, 0.55);
}

.product-features li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.product-link:hover { gap: 0.875rem; }
.product-link::after { content: '→'; }

/* product card accents */
.product-corvus { border-top: 2px solid #0D0221; }
.product-corvus:hover { border-top-color: var(--corvus); }
.product-kite { border-top: 2px solid var(--kite); }

/* ─── HERITAGE ─── */
.heritage {
  background: var(--ink);
  padding: 6rem 3rem;
}

.heritage-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.heritage-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(244, 241, 235, 0.7);
}

.heritage-text p { margin-bottom: 1.5rem; }

.client-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 241, 235, 0.4);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.client-list {
  list-style: none;
  margin-bottom: 3rem;
}

.client-list li {
  padding: 0.875rem 0;
  font-size: 0.95rem;
  color: rgba(244, 241, 235, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.03em;
}

.heritage-timeline { margin-top: 0; }

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.timeline-year {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--gold);
  padding-top: 0.1rem;
  min-width: 3rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: rgba(244, 241, 235, 0.55);
  line-height: 1.7;
}

/* ─── MARKETS ─── */
.markets {
  background: var(--ink-soft);
  padding: 6rem 3rem;
}

.markets-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.market-primary h3 {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.office-list {
  list-style: none;
  margin-top: 1rem;
}

.office-list li {
  font-size: 0.95rem;
  color: rgba(244, 241, 235, 0.55);
  margin-bottom: 0.75rem;
}

.market-region { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }

.region-card {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.region-flag { font-size: 1.75rem; margin-bottom: 0.75rem; }
.region-name { font-size: 1rem; color: var(--paper); margin-bottom: 0.5rem; }
.region-desc { font-size: 0.875rem; color: rgba(244, 241, 235, 0.45); line-height: 1.6; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--ink);
  padding: 6rem 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.15;
}

.cta-banner h2 em { font-style: italic; color: var(--gold); }

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.cta-primary {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}

.cta-primary:hover { background: var(--gold-light); }

.cta-secondary {
  border: 1px solid rgba(244, 241, 235, 0.3);
  color: rgba(244, 241, 235, 0.7);
}

.cta-secondary:hover {
  border-color: var(--paper);
  color: var(--paper);
}

/* ─── HOME FOOTER ─── */
footer {
  background: var(--ink-soft);
  padding: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: rgba(244, 241, 235, 0.35);
  letter-spacing: 0.04em;
}

.footer-logo {
  display: block;
  opacity: 0.35;
}

.footer-logo img { height: 24px; }

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(244, 241, 235, 0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(244, 241, 235, 0.7); }

/* ─── RESPONSIVE HOME ─── */
@media (max-width: 1024px) {
  .hero          { grid-template-columns: 1fr; min-height: auto; padding-top: 8rem; }
  .hero-right    { justify-content: flex-start; }
  .stat-block    { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .heritage-inner,
  .cta-banner-inner { grid-template-columns: 1fr; gap: 3rem; }
  .markets-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; text-align: center; }
  .footer-links  { justify-content: center; }
  .footer-logo   { margin: 0 auto; }
}

@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hero, .products-section, .heritage, .markets, .cta-banner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
}
