/* ── Mona Sans (self-hosted variable font) ────────────────────────── */
@font-face {
  font-family: 'Mona Sans';
  src: url('assets/fonts/Mona-Sans.woff2') format('woff2 supports variations'),
       url('assets/fonts/Mona-Sans.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal italic;
  font-display: swap;
}

/* ── Brand tokens ─────────────────────────────────────────────────── */
:root {
  --green:   #B6F500;
  --black:   #0a0a0a;
  --white:   #f8f8f8;
  --gray:    #8a8a8a;
  --font:    'Mona Sans', sans-serif;
  --max-w:   1280px;
  --px:      20px;   /* mobile horizontal padding */
  --px-lg:   80px;   /* desktop horizontal padding */

  /* Fluid body type scale — all scale from 375px to 1280px */
  --fs-2xs:  clamp(11px, 0.11vw + 10.6px, 12px);  /* 11 → 12  labels, copyright */
  --fs-xs:   clamp(14px, 0.11vw + 13.6px, 15px);  /* 14 → 15  nav, footer text */
  --fs-sm:   clamp(15px, 0.22vw + 14.2px, 17px);  /* 15 → 17  card body */
  --fs-base: clamp(16px, 0.22vw + 15.2px, 18px);  /* 16 → 18  main body, buttons */
  --fs-lg:   clamp(17px, 0.22vw + 16.2px, 19px);  /* 17 → 19  about text, card h3 */
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Shared layout helpers ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--px-lg); }
}

/* ─────────────────────────────────────────────────────────────────── */
/*  NAVBAR                                                             */
/* ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .nav-inner { height: 80px; }
}

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

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(10, 10, 10, 0.55);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--black);
  font-weight: 600;
}

/* Contact pill */
.nav-links a.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .hamburger { display: none; }
}

.menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transform-origin: center;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  padding: 16px 24px 24px;
}
.mobile-menu.is-open { display: block; }
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu a {
  font-size: var(--fs-base);
  font-weight: 500;
  color: rgba(10, 10, 10, 0.6);
  display: block;
  padding-block: 4px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.05);
}
.mobile-menu .nav-cta {
  margin-top: 8px;
  justify-content: center;
  padding: 12px 24px;
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

/* ─────────────────────────────────────────────────────────────────── */
/*  HERO                                                               */
/* ─────────────────────────────────────────────────────────────────── */
.hero { overflow: hidden; }

/* Headline block */
.hero-headline {
  padding: 40px 20px 28px;
}
@media (min-width: 768px) {
  .hero-headline { padding: 60px 40px 40px; }
}
@media (min-width: 1024px) {
  .hero-headline { padding: 80px; padding-bottom: 60px; }
}

.headline-lines { display: flex; flex-direction: column; gap: 0; }

.headline-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.headline-line--indented { padding-left: clamp(24px, 6vw, 48px); }

.headline-asterisk {
  height: clamp(24px, 6vw, 48px);
  width: auto;
  flex-shrink: 0;
  margin-right: 0;
}

.headline-prefix {
  font-size: clamp(24px, 5.5vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  flex-shrink: 0;
  margin-left: 12px;
  margin-right: 4px;
}

/* Highlighted word — dark chip, sized to content */
.highlight-green,
.highlight-dark {
  font-size: clamp(24px, 5.5vw, 56px);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--green);
  background: var(--black);
  padding: 4px 28px 4px 4px;
  display: inline-block;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--black);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-image-wrap { aspect-ratio: 16 / 6; }
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-gradient-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a, #111, #1a1a2e);
  z-index: -1;
}

/* Subcopy */
.hero-subcopy {
  padding-block: 32px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .hero-subcopy { padding-block: 56px; }
}
@media (min-width: 1024px) {
  .hero-subcopy { padding-block: 80px; }
}

.hero-subcopy p {
  font-size: clamp(18px, 5vw, 40px);
  font-weight: 500;
  color: var(--gray);
  max-width: 540px;
  text-align: left;
  line-height: 1.3;
  padding-left: clamp(36px, 6vw + 12px, 60px);
}

.hero-subcopy strong {
  color: var(--black);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────── */
/*  SECTION WRAPPER                                                    */
/* ─────────────────────────────────────────────────────────────────── */
#about {
  padding-block: 48px;
}
@media (min-width: 1024px) {
  #about { padding-block: 80px; }
}

#services {
  padding-block: 48px;
}
@media (min-width: 1024px) {
  #services { padding-block: 80px; }
}

.placeholder-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  border: 2px dashed rgba(10, 10, 10, 0.15);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
@media (min-width: 1024px) {
  .section-divider { padding-inline: var(--px-lg); }
}

/* ─────────────────────────────────────────────────────────────────── */
/*  SECTION LABELS / HEADINGS (shared)                                 */
/* ─────────────────────────────────────────────────────────────────── */
.section-label {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────────────────────────────── */
/*  ABOUT SECTION                                                      */
/* ─────────────────────────────────────────────────────────────────── */
.about-headline {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .about-headline { max-width: 680px; }
}


.about-headline .headline-prefix {
  font-size: clamp(20px, 5.5vw, 64px);
  line-height: 1.10;
}
@media (min-width: 1024px) {
  .about-headline .headline-prefix { font-size: 64px; }
}

.about-subtext {
  font-size: var(--fs-base);
  color: var(--black);
  line-height: 1.5;
  padding-left: clamp(36px, 6vw + 12px, 60px);
}

.market-list {
  list-style: none;
  margin-top: 40px;
  margin-left: clamp(36px, 6vw + 12px, 60px);
  border-top: 1px solid #e0e0e0;
}
@media (min-width: 768px) {
  .market-list { margin-top: 60px; }
}

.market-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.market-name {
  font-size: clamp(20px, 5.5vw, 40px);
  font-weight: 500;
  color: var(--black);
}

.market-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: none;
}

.about-body {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .about-body {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.about-text p {
  font-size: var(--fs-lg);
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }

/* Values grid */
.values-heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}

.values-grid {
  display: grid;
  gap: 24px;
}

.value-card {
  border-top: 2px solid var(--green);
  padding-top: 16px;
}

.value-card h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: 6px;
}

.value-card p {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────── */
/*  SERVICES SECTION                                                   */
/* ─────────────────────────────────────────────────────────────────── */
.services-intro {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.services-intro p {
  font-size: var(--fs-base);
  color: var(--black);
  line-height: 1.5;
  padding-left: clamp(36px, 6vw + 12px, 60px);
  max-width: 680px;
}

.services-heading-text {
  font-size: clamp(20px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.10;
  color: var(--black);
  flex-shrink: 0;
  margin-left: 12px;
  margin-right: 4px;
}
@media (min-width: 1024px) {
  .services-heading-text { font-size: 64px; }
}

.services-grid {
  display: grid;
  gap: 16px;
  margin-left: clamp(36px, 6vw + 12px, 60px);
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.service-card {
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 24px rgba(182, 245, 0, 0.12);
}

.service-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────── */
/*  CONTACT CTA                                                        */
/* ─────────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
  text-align: center;
  padding-block: 80px;
}
@media (min-width: 1024px) {
  .cta-section { padding-block: 96px; }
}

/* Decorative asterisks */
.cta-asterisk-sm {
  position: absolute;
  top: 40px;
  left: 32px;
  font-size: 36px;
  font-weight: 900;
  color: #c8f135;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .cta-asterisk-sm { top: 56px; left: 56px; font-size: 48px; }
}

.cta-asterisk-lg {
  position: absolute;
  top: -40px;
  right: -64px;
  font-size: 280px;
  font-weight: 900;
  color: rgba(200, 241, 53, 0.1);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .cta-asterisk-lg { font-size: 380px; }
}

.cta-inner {
  position: relative;
  max-width: 672px;
  margin-inline: auto;
  padding-inline: 24px;
}

.cta-inner h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: var(--fs-base);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 512px;
  margin-inline: auto;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-base);
  padding: 16px 32px;
  border-radius: 9999px;
  transition: background 0.15s;
}
.btn-primary:hover { background: rgba(10, 10, 10, 0.8); }

/* ─────────────────────────────────────────────────────────────────── */
/*  FOOTER                                                             */
/* ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: 48px 32px;
}

.footer-inner {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }
}

.footer-brand img { height: 28px; width: auto; margin-bottom: 16px; }

.footer-tagline {
  font-size: var(--fs-xs);
  color: rgba(248, 248, 248, 0.45);
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: var(--fs-2xs);
  color: rgba(248, 248, 248, 0.3);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
}
@media (min-width: 768px) {
  .footer-nav { justify-content: flex-end; }
}

.footer-nav a {
  font-size: var(--fs-xs);
  color: rgba(248, 248, 248, 0.55);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }
