/* ============================================================
   NATIONAL Nº1 — Main Stylesheet
   Brand: Yellow #F9ED1A · Red #ED1C24 · Black #000 · White #FFF
   Fonts: Barlow (primary) · Roboto Slab (display)
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand Palette */
  --color-yellow:       #F9ED1A;
  --color-yellow-80:    #F8EE5D;
  --color-yellow-60:    #F9F28A;
  --color-yellow-40:    #FCF6B2;
  --color-red:          #ED1C24;
  --color-red-dark:     #C42126;
  --color-red-darker:   #931B1F;
  --color-red-90:       #EF4130;
  --color-black:        #000000;
  --color-black-soft:   #111111;
  --color-white:        #FFFFFF;
  --color-gray-light:   #E6E7E8;
  --color-gray-mid:     #D1D3D4;
  --color-gray-dark:    #555555;

  /* Typography */
  --font-primary: 'Barlow', sans-serif;
  --font-display: 'Roboto Slab', serif;

  /* Layout */
  --container-max:     1280px;
  --container-pad:     clamp(20px, 5vw, 64px);
  --section-pad:       clamp(60px, 8vw, 120px);
  --nav-height:        80px;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-med:  0.35s ease;
  --t-slow: 0.6s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
sup { font-size: 0.55em; vertical-align: super; line-height: 0; }

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  padding: 8px 20px;
  z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section-pad { padding: var(--section-pad) 0; }

/* ── Background Helpers ────────────────────────────────────── */
.bg-black  { background-color: var(--color-black); }
.bg-yellow { background-color: var(--color-yellow); }
.bg-red    { background-color: var(--color-red); }
.bg-white  { background-color: var(--color-white); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.display-headline {
  font-family: var(--font-display);
  font-weight: 800;
}
.prose p   { margin-bottom: 1.5rem; font-size: 17px; line-height: 1.8; }
.prose h2  { margin: 2.5rem 0 1rem; font-size: clamp(28px, 4vw, 42px); }
.prose h3  { margin: 2rem 0 0.75rem; font-size: clamp(22px, 3vw, 32px); }
.prose ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose li  { margin-bottom: 0.5rem; font-size: 17px; }
.prose a   { color: var(--color-red); font-weight: 600; text-decoration: underline; }
.prose a:hover { color: var(--color-red-dark); }

/* ── Accent Bar ────────────────────────────────────────────── */
.accent-bar {
  display: block;
  width: 72px;
  height: 5px;
  background: var(--color-yellow);
  margin: 20px 0;
  flex-shrink: 0;
}
.accent-bar.red    { background: var(--color-red); }
.accent-bar.white  { background: var(--color-white); }
.accent-bar.black  { background: var(--color-black); }
.accent-bar.center { margin-left: auto; margin-right: auto; }
.accent-bar.full   { width: 100%; height: 6px; margin: 0; }

/* ── Eyebrow Labels ────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 18px;
}
.section-eyebrow.black { color: var(--color-black); }
.section-eyebrow.red   { color: var(--color-red); }
.section-eyebrow.white { color: var(--color-white); }

/* ── Section Title & Body ──────────────────────────────────── */
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 580px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  border: 3px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.btn-yellow          { background: var(--color-yellow); color: var(--color-black); border-color: var(--color-yellow); }
.btn-yellow:hover    { background: transparent; color: var(--color-yellow); }

.btn-red             { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); }
.btn-red:hover       { background: transparent; color: var(--color-red); }

.btn-black           { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.btn-black:hover     { background: transparent; color: var(--color-black); }

.btn-outline-white         { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-white:hover   { background: var(--color-white); color: var(--color-black); }

.btn-outline-black         { background: transparent; color: var(--color-black); border-color: var(--color-black); }
.btn-outline-black:hover   { background: var(--color-black); color: var(--color-white); }

.btn-outline-yellow        { background: transparent; color: var(--color-yellow); border-color: var(--color-yellow); }
.btn-outline-yellow:hover  { background: var(--color-yellow); color: var(--color-black); }

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-black);
  border-bottom: 3px solid var(--color-yellow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img      { height: 48px; width: auto; }
.logo-text          { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--color-yellow); letter-spacing: -0.01em; line-height: 1; }
.logo-no            { color: var(--color-red); }

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.primary-nav li a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
}
.primary-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transition: transform var(--t-fast);
}
.primary-nav li a:hover          { color: var(--color-yellow); }
.primary-nav li a:hover::after   { transform: scaleX(1); }
.primary-nav li.current-menu-item > a { color: var(--color-yellow); }
.primary-nav li.current-menu-item > a::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: 2px solid rgba(255,255,255,0.2);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: var(--t-fast);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--color-black-soft);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { padding: 12px 0; }
.mobile-menu li a {
  display: block;
  padding: 14px var(--container-pad);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu li a:hover  { color: var(--color-yellow); background: rgba(249,237,26,0.06); }
.mobile-cta              { padding: 20px var(--container-pad) 24px; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  background: var(--color-black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: var(--color-yellow);
}

/* Giant decorative background text */
.hero-bg-text {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 480px);
  font-weight: 800;
  color: rgba(249,237,26,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 60px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-yellow);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--color-white);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.hero-title .highlight        { color: var(--color-yellow); }
.hero-title .highlight-red    { color: var(--color-red); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   BRAND MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.brand-strip {
  background: var(--color-yellow);
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 3px solid var(--color-black);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-black);
  white-space: nowrap;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SNAPSHOT (Homepage)
═══════════════════════════════════════════════════════════ */
.about-snapshot { background: var(--color-black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-text {
  padding: var(--section-pad) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}
.about-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-img, .about-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Yellow right accent bar on image */
.about-image::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8px;
  height: 100%;
  background: var(--color-yellow);
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(145deg, #1c1c1c 0%, #2e2e2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES / PRODUCTS GRID (Homepage)
═══════════════════════════════════════════════════════════ */
.services-section { background: var(--color-white); }
.services-header  { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.services-header .accent-bar { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  background: var(--color-black);
}
.card-placeholder {
  position: absolute;
  inset: 0;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 35%, rgba(0,0,0,0.1) 75%);
  z-index: 1;
  transition: background var(--t-med);
}
.service-card:hover .service-card-bg {
  background: linear-gradient(to top, rgba(237,28,36,0.88) 25%, rgba(0,0,0,0.25) 80%);
}
.service-card .service-card-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.card-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px 28px;
}
.card-number {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 10px;
}
.card-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
}
.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-yellow);
  transition: gap var(--t-fast);
}
.service-card:hover .card-arrow { gap: 16px; }

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════════════ */
.stats-section {
  background: var(--color-red);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: 'Nº1';
  position: absolute;
  left: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 35vw, 520px);
  font-weight: 800;
  color: rgba(0,0,0,0.14);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.88;
}

/* ═══════════════════════════════════════════════════════════
   QUOTE / PULL QUOTE SECTION
═══════════════════════════════════════════════════════════ */
.quote-section {
  background: var(--color-yellow);
  text-align: center;
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 800;
  line-height: 0.6;
  color: rgba(0,0,0,0.1);
  margin-bottom: 24px;
  user-select: none;
}
.quote-text {
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-black);
  max-width: 900px;
  margin: 0 auto 28px;
  letter-spacing: -0.025em;
}
.quote-text .highlight { color: var(--color-red); }
.quote-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════
   NEWS GRID (Homepage + Index)
═══════════════════════════════════════════════════════════ */
.news-section { background: var(--color-white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-light);
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-med);
}
.news-card:hover { border-color: var(--color-yellow); transform: translateY(-4px); }
.news-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.news-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-img-placeholder {
  aspect-ratio: 16/9;
  background: var(--color-gray-light);
}
.news-card-body { padding: 24px; }
.news-date {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}
.news-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.news-title a { color: var(--color-black); }
.news-title a:hover { color: var(--color-red); }
.news-excerpt { font-size: 14px; color: var(--color-gray-dark); line-height: 1.65; margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section { background: var(--color-black); text-align: center; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--color-black);
  padding: 72px 0 60px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--color-yellow);
}
.page-hero-bg-text {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 800;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a      { color: var(--color-yellow); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span   { color: rgba(255,255,255,0.35); }
.page-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 0.95;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.page-title .highlight    { color: var(--color-yellow); }
.page-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image { position: relative; }
.story-img-wrap { position: relative; }
.story-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-yellow);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badge-year  { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-black); }
.badge-num   { font-size: 36px; font-weight: 800; color: var(--color-black); line-height: 1; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.value-item {
  background: var(--color-black-soft);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--color-yellow);
  transition: border-color var(--t-fast);
}
.value-item:nth-child(3n+2) { border-color: var(--color-red); }
.value-item:nth-child(3n+3) { border-color: var(--color-white); }
.value-item:hover { background: #1a1a1a; }
.value-number {
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 12px;
  pointer-events: none;
}
.value-icon    { margin-bottom: 20px; }
.value-title   { font-size: 22px; font-weight: 800; color: var(--color-white); margin-bottom: 12px; }
.value-text    { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════════════════════════ */
.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-feature-grid.reverse { direction: rtl; }
.product-feature-grid.reverse > * { direction: ltr; }

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.product-features-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  padding-left: 24px;
  position: relative;
}
.product-features-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-yellow);
  font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-details-section {
  background: var(--color-black);
  padding: 56px 48px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.contact-info  { display: flex; flex-direction: column; gap: 20px; }
.contact-item  { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon  { width: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 4px;
}
.contact-text  { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.contact-text a:hover { color: var(--color-yellow); }

/* Contact Form */
.no1-contact-form   { max-width: 620px; }
.form-group         { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 15px 18px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-black);
  background: #f4f4f4;
  border: 2px solid transparent;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus    { border-color: var(--color-yellow); background: var(--color-white); }
.form-textarea        { min-height: 140px; resize: vertical; }
.form-row             { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Success banner */
.form-success-banner {
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 40px;
  border-left: 5px solid var(--color-red);
}

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  border-top: 5px solid var(--color-yellow);
}
.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-yellow);
  margin-bottom: 18px;
  line-height: 1;
}
.footer-logo img   { height: 44px; width: auto; }
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.social-link:hover { border-color: var(--color-yellow); color: var(--color-yellow); background: rgba(249,237,26,0.08); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(249,237,26,0.2);
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0;
  transition: color var(--t-fast), gap var(--t-fast);
}
.footer-nav a::before {
  content: '→';
  font-size: 12px;
  color: var(--color-yellow);
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity var(--t-fast), width var(--t-fast);
}
.footer-nav a:hover { color: var(--color-yellow); gap: 10px; }
.footer-nav a:hover::before { opacity: 1; width: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal     { display: flex; gap: 24px; }
.footer-legal a   { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--color-yellow); }

/* ═══════════════════════════════════════════════════════════
   BLOG / NEWS
═══════════════════════════════════════════════════════════ */
.post-hero-image { margin-bottom: 40px; }
.post-hero-image img { width: 100%; height: auto; }
.post-nav { margin-top: 48px; padding-top: 40px; border-top: 2px solid var(--color-gray-light); }
.post-nav .nav-links { display: flex; justify-content: space-between; gap: 24px; }
.pagination-wrap { margin-top: 56px; text-align: center; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-numbers li a,
.page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--color-gray-light);
  color: var(--color-black);
  transition: var(--t-fast);
}
.page-numbers li a:hover             { border-color: var(--color-yellow); color: var(--color-black); background: var(--color-yellow); }
.page-numbers li .current            { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }

/* No Posts */
.no-posts { text-align: center; padding: 60px 0; }
.no-posts h2 { font-size: 32px; margin-bottom: 12px; }
.no-posts p  { color: var(--color-gray-dark); font-size: 16px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1100px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-story-grid,
  .product-feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-feature-grid.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-details-section { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE LANDSCAPE (max 900px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.18); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: span 2; aspect-ratio: 16/6; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 320px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav */
  .primary-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(42px, 12vw, 72px); }
  .hero-bg-text { font-size: clamp(120px, 28vw, 220px); }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.18); }

  /* Services */
  .services-grid,
  .services-grid .service-card:last-child { grid-column: auto; aspect-ratio: 4/5; }
  .services-grid { grid-template-columns: 1fr; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { justify-content: center; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-details-section { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: auto; min-width: 260px; }
  .hero-actions .btn { justify-content: center; }
  .story-badge { width: 90px; height: 90px; left: -12px; bottom: -12px; }
  .badge-num { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.js-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: none;
}
.js-fade-in:nth-child(2) { transition-delay: 0.1s; }
.js-fade-in:nth-child(3) { transition-delay: 0.2s; }
.js-fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   WORDPRESS-SPECIFIC UTILITIES
═══════════════════════════════════════════════════════════ */
.alignleft   { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright  { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--color-gray-dark); margin-top: 6px; font-style: italic; }

/* Screen reader only */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.screen-reader-text:focus {
  clip: auto !important;
  height: auto;
  left: 5px;
  top: 5px;
  width: auto;
  z-index: 100000;
  font-size: 14px;
  font-weight: 700;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 10px 20px;
}
