/* ═══════════════════════════════════════════════════════════════
   HOGAN STAKES UK — Production Stylesheet
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── SKIP LINK (Accessibility) ──────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary-yellow, #FFB800);
  color: var(--color-primary-black, #000);
  padding: 8px 16px;
  z-index: 1000;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-dark-gray);
  background: var(--color-white);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── NAVIGATION ──────────────────────────────────────────────── */
nav {
  background: var(--color-primary-black);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-brand { color: var(--color-primary-yellow); font-size: var(--font-size-lg); font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.nav-brand span { color: var(--color-white); font-size: 11px; font-weight: 400; display: block; letter-spacing: 2px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary-yellow); }
.nav-contact { color: #888; font-size: var(--font-size-eyebrow); }
.nav-contact a {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid rgb(255, 184, 0);
  color: rgb(255, 184, 0);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-contact a:hover {
  background-color: rgb(255, 184, 0);
  color: rgb(0, 0, 0);
}

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-white); margin: 5px 0; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  height: 500px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 100%),
    url('../images/hero-manufacturing-hogan-stakes.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
}
.hero-content { max-width: 580px; }
.hero-eyebrow { color: var(--color-primary-yellow); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: var(--spacing-sm); }
.hero h1 { font-size: 52px; font-weight: 900; color: var(--color-white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--color-primary-yellow); font-style: normal; }
.hero p { font-size: var(--font-size-lg); color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: var(--spacing-lg); }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--color-primary-yellow); color: var(--color-primary-black); border: none;
  padding: 14px 32px; font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--color-primary-yellow-hover); }
.btn-secondary {
  background: transparent; color: var(--color-white); border: 2px solid var(--color-white);
  padding: 12px 32px; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s; margin-left: var(--spacing-sm);
}
.btn-secondary:hover { border-color: var(--color-primary-yellow); color: var(--color-primary-yellow); }
.btn-dark {
  background: var(--color-dark-gray); color: var(--color-white); border: none;
  padding: 14px 32px; font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.btn-dark:hover { background: #333; }

/* ─── STATUS BADGES ───────────────────────────────────────────── */
.status-badge { padding: 4px 10px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; display: inline-block; }
.status-in-stock    { background: var(--status-in-stock-bg); color: var(--status-in-stock-text); }
.status-coming-soon { background: var(--status-coming-soon-bg); color: var(--status-coming-soon-text); }
.status-limited     { background: var(--status-limited-stock-bg); color: var(--status-limited-stock-text); }
.status-made-to-order { background: var(--status-made-to-order-bg); color: var(--status-made-to-order-text); }

/* ─── PAGE HEADER (inner pages) ───────────────────────────────── */
.page-header {
  background: var(--color-dark-gray);
  padding: 60px 80px;
  border-bottom: 4px solid var(--color-primary-yellow);
}
.breadcrumb { color: #666; font-size: 13px; margin-bottom: var(--spacing-sm); }
.breadcrumb a { color: var(--color-primary-yellow); text-decoration: none; }
.breadcrumb span { color: #666; margin: 0 var(--spacing-xs); }
.page-header h1 { font-size: var(--font-size-4xl); font-weight: 900; color: var(--color-white); line-height: 1.1; margin-bottom: 12px; }
.page-header p { font-size: 17px; color: #aaa; max-width: 600px; }
.article-author {
  margin-top: 4px;
  font-size: 15px;
  color: #d2d2d2;
  max-width: none;
}
.article-author a {
  color: var(--color-primary-yellow);
  font-weight: 700;
}
.article-author a:hover { color: var(--color-primary-yellow-hover); }

/* ─── SINCE BANNER ────────────────────────────────────────────── */
.since-banner {
  background: var(--color-primary-yellow); padding: 14px 60px;
  text-align: center; font-size: 13px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary-black);
}

/* ─── SECTIONS ────────────────────────────────────────────────── */
section { padding: var(--section-padding-desktop); }
.section-eyebrow { color: var(--color-primary-yellow); font-size: var(--font-size-eyebrow); font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-headline { font-size: 34px; font-weight: 900; color: var(--color-dark-gray); margin-bottom: var(--spacing-sm); line-height: 1.15; }
.section-headline.light { color: var(--color-white); }
.section-intro { font-size: var(--font-size-base); color: var(--color-medium-gray); line-height: 1.75; max-width: 620px; margin-bottom: var(--spacing-xl); }
.section-intro.light { color: #bbb; }
.bg-gray { background: var(--color-light-gray); }
.bg-dark { background: var(--color-dark-gray); }
.bg-black { background: var(--color-primary-black); }

/* ─── FEATURE GRID ────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--color-white); padding: var(--spacing-lg) var(--spacing-md); border-top: 4px solid var(--color-primary-yellow); }
.feature-card.dark { background: #2a2a2a; border-top-color: var(--color-primary-yellow); }
.feature-icon { font-size: 28px; margin-bottom: var(--spacing-sm); }
.feature-card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.feature-card.dark h3 { color: var(--color-white); }
.feature-card p { font-size: var(--font-size-sm); color: var(--color-medium-gray); line-height: 1.7; }
.feature-card.dark p { color: #aaa; }

/* ─── PRODUCT CARDS ───────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { border: 1px solid var(--color-border-gray); background: var(--color-white); overflow: hidden; }
.product-img { background: #f5f5f5; height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { max-height: 95%; max-width: 95%; object-fit: contain; }
.product-img .status-badge { position: absolute; top: 12px; right: 12px; }
.product-info { padding: 20px; }
.product-info h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-dims { font-size: 13px; color: #888; margin-bottom: 10px; }
.product-desc { font-size: 13px; color: var(--color-medium-gray); line-height: 1.6; margin-bottom: var(--spacing-sm); }
.product-cta { display: block; width: 100%; background: var(--color-primary-yellow); color: var(--color-primary-black); border: none; padding: 11px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; text-align: center; text-decoration: none; transition: background 0.2s; }
.product-cta:hover { background: var(--color-primary-yellow-hover); }
.product-cta.ghost { background: transparent; border: 2px solid #ddd; color: #888; cursor: pointer; transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.15s ease; }
.product-cta.ghost:hover { border-color: var(--color-primary-yellow); color: var(--color-primary-yellow); }
.product-cta.ghost:active { background: var(--color-primary-yellow); color: var(--color-primary-black); border-color: var(--color-primary-yellow); transform: scale(0.97); }

/* ─── PRODUCT DETAIL ──────────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail-img { background: #f5f5f5; padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 460px; position: relative; }
.product-detail-img img { max-width: 100%; max-height: 420px; object-fit: contain; }
.product-detail-img .status-badge { position: absolute; top: 20px; right: 20px; font-size: 13px; padding: 6px 14px; }
.product-detail-info h1 { font-size: var(--font-size-3xl); font-weight: 900; line-height: 1.15; margin-bottom: var(--spacing-xs); }
.product-detail-dims { font-size: var(--font-size-base); color: #888; margin-bottom: var(--spacing-md); font-style: italic; }
.product-detail-desc { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 28px; }
.key-features { list-style: none; margin-bottom: var(--spacing-lg); }
.key-features li { font-size: var(--font-size-sm); color: #444; padding: var(--spacing-xs) 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px; }
.key-features li::before { content: '\2713'; color: var(--color-primary-yellow); font-weight: 900; font-size: var(--font-size-base); }

/* Size pills */
.other-sizes { margin-top: 48px; padding-top: 40px; border-top: 1px solid #eee; }
.other-sizes h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.size-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pill { border: 2px solid #ddd; padding: var(--spacing-xs) var(--spacing-sm); font-size: 13px; font-weight: 700; color: #666; text-decoration: none; transition: all 0.2s; text-align: center; }
.size-pill.active { border-color: var(--color-primary-yellow); background: var(--color-primary-yellow); color: var(--color-primary-black); }
.size-pill:hover { border-color: var(--color-primary-yellow); color: var(--color-dark-gray); }
.size-pill small { font-size: 11px; color: #999; display: block; margin-top: 2px; }
.size-pill.active small { color: var(--color-primary-black); }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.testimonial-card { background: #2a2a2a; padding: var(--spacing-lg); border-left: 4px solid var(--color-primary-yellow); }
.testimonial-quote { font-size: 15px; color: #ddd; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-attr { font-size: 13px; font-weight: 700; color: var(--color-primary-yellow); letter-spacing: 0.5px; }

/* ─── TRADE / B2B SECTION ─────────────────────────────────────── */
.trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.trade-card { padding: 40px; border: 2px solid var(--color-border-gray); }
.trade-card.featured { border-color: var(--color-primary-yellow); background: #fffdf0; }
.trade-card h3 { font-size: var(--font-size-xl); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--spacing-sm); }
.trade-card p { font-size: 15px; color: var(--color-medium-gray); line-height: 1.7; margin-bottom: 28px; }

/* ─── FORMS ───────────────────────────────────────────────────── */
.form-wrapper { max-width: 620px; background: var(--color-white); padding: var(--spacing-xl); border: 1px solid var(--color-border-gray); }
.form-wrapper.dark { background: #2a2a2a; border-color: #333; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group label.light { color: #ccc; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid #ddd;
  font-size: 15px; font-family: var(--font-family-base);
  background: var(--color-white); color: var(--color-dark-gray); transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-primary-yellow); box-shadow: 0 0 0 2px rgba(255,184,0,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .field-note { font-size: 12px; color: #999; margin-top: 4px; }
.form-group .error-msg { font-size: 12px; color: #c62828; margin-top: 4px; display: none; }
.form-group.error input,
.form-group.error textarea,
.form-group.error select { border-color: #c62828; }
.form-group.error .error-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.required-note { font-size: 12px; color: #999; margin-bottom: 24px; }
.btn-submit { width: 100%; background: var(--color-primary-yellow); color: var(--color-primary-black); border: none; padding: var(--spacing-sm); font-size: var(--font-size-sm); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: var(--spacing-xs); }
.btn-submit:hover { background: var(--color-primary-yellow-hover); }
.btn-submit:disabled { background: #ddd; color: #999; cursor: not-allowed; }

/* Contact page layout */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.contact-main h2 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.contact-main p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 32px; max-width: 580px; }
.contact-sidebar { background: var(--color-dark-gray); padding: 40px; }
.contact-sidebar h3 { font-size: var(--font-size-sm); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--color-primary-yellow); margin-bottom: 20px; }
.contact-sidebar p { font-size: var(--font-size-sm); color: #aaa; line-height: 1.7; margin-bottom: var(--spacing-sm); }
.contact-sidebar a { color: var(--color-primary-yellow); text-decoration: none; font-weight: 700; }
.contact-sidebar .divider-dark { border: none; border-top: 1px solid #333; margin: 28px 0; }

/* Audience tabs */
.audience-tabs { display: inline-flex; gap: 0; margin-bottom: var(--spacing-lg); border: 2px solid var(--color-primary-yellow); }
.audience-tab { padding: 10px 24px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; background: transparent; border: none; color: #888; transition: all 0.2s; font-family: var(--font-family-base); }
.audience-tab.active { background: var(--color-primary-yellow); color: var(--color-primary-black); }

/* Success message */
.success-msg { background: #e8f5e9; border-left: 4px solid #2e7d32; padding: 16px 20px; margin-bottom: 20px; display: none; }
.success-msg p { color: #2e7d32; font-size: 14px; font-weight: 700; margin: 0; }

/* Contact section on product page */
.contact-section { background: var(--color-light-gray); }
.contact-section .section-headline { margin-bottom: var(--spacing-xs); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 40px; }
.contact-reasons h3 { font-size: var(--font-size-base); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--color-dark-gray); }
.contact-reasons ul { list-style: none; }
.contact-reasons ul li { font-size: var(--font-size-sm); color: var(--color-medium-gray); padding: 10px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px; }
.contact-reasons ul li::before { content: '\2192'; color: var(--color-primary-yellow); font-weight: 900; }

/* ─── TWO-COLUMN SPLIT ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text h2 { font-size: 30px; font-weight: 900; margin-bottom: var(--spacing-sm); line-height: 1.2; }
.split-text h2.light { color: var(--color-white); }
.split-text p { font-size: 15px; color: var(--color-medium-gray); line-height: 1.8; margin-bottom: var(--spacing-sm); }
.split-text p.light { color: #aaa; }
.split-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.split-img.tall img { height: 480px; }

/* ─── PROCESS STEPS ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.step { text-align: center; padding: 24px 16px; }
.step-number { width: 48px; height: 48px; background: var(--color-primary-yellow); color: var(--color-primary-black); border-radius: 50%; font-size: var(--font-size-xl); font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--spacing-sm); }
.step h4 { font-size: var(--font-size-sm); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--spacing-xs); color: var(--color-white); }
.step p { font-size: 13px; color: #666; line-height: 1.6; }

/* ─── RESOURCE CARDS ──────────────────────────────────────────── */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card { border: 1px solid var(--color-border-gray); padding: 28px; background: var(--color-white); }
.resource-type { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--color-primary-yellow); margin-bottom: 10px; }
.resource-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.resource-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.resource-link { font-size: 13px; font-weight: 800; color: var(--color-primary-yellow); text-transform: uppercase; letter-spacing: 1px; text-decoration: none; }
.resource-link:hover { color: var(--color-primary-yellow-hover); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid #eee; padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid #eee; }
.faq-q { font-size: var(--font-size-base); font-weight: 800; color: var(--color-dark-gray); margin-bottom: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--spacing-sm); }
.faq-q::after { content: '+'; font-size: 22px; color: var(--color-primary-yellow); font-weight: 900; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { font-size: 15px; color: var(--color-medium-gray); line-height: 1.8; max-width: 720px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding-top: 0; }
.faq-item.open .faq-a { max-height: 500px; padding-top: 12px; }

/* ─── SPEC TABLE ──────────────────────────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.spec-table tr { border-bottom: 1px solid #eee; }
.spec-table td { padding: 12px 16px; font-size: 14px; }
.spec-table td:first-child { font-weight: 700; color: var(--color-dark-gray); width: 40%; background: var(--color-light-gray); }
.spec-table td:last-child { color: #444; }

/* ─── TRUST SIGNALS ───────────────────────────────────────────── */
.trust-band { background: var(--color-light-gray); padding: var(--spacing-xl) var(--spacing-3xl); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); border-top: 1px solid #eee; }
.trust-band .trust-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--color-primary-yellow); margin-bottom: var(--spacing-xs); }
.trust-band p { font-size: var(--font-size-sm); color: var(--color-medium-gray); line-height: 1.7; }

/* ─── CTA BAND ─────────────────────────────────────────────────── */
.cta-band { background: var(--color-primary-yellow); padding: var(--spacing-xl) var(--spacing-3xl); display: flex; align-items: center; justify-content: space-between; gap: var(--spacing-lg); }
.cta-band h2 { font-size: 26px; font-weight: 900; color: var(--color-primary-black); max-width: 560px; }
.cta-band-dark { background: var(--color-dark-gray); }
.cta-band-dark h2 { color: var(--color-white); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--color-primary-black); color: var(--color-white); padding: 60px var(--spacing-3xl) var(--spacing-lg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--spacing-xl); margin-bottom: var(--spacing-xl); }
.footer-brand h3 { color: var(--color-primary-yellow); font-size: var(--font-size-base); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-brand p { color: #888; font-size: var(--font-size-sm); line-height: 1.7; }
.footer-brand a { color: var(--color-primary-yellow); }
.footer-brand a:hover { color: var(--color-primary-yellow-hover); }
.footer-col h4 { color: var(--color-white); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: var(--spacing-sm); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #888; text-decoration: none; font-size: var(--font-size-sm); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--color-primary-yellow); }
.footer-bottom { border-top: 1px solid var(--color-text); padding-top: var(--spacing-md); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--color-medium-gray); font-size: 13px; }

/* ─── UTILITY ─────────────────────────────────────────────────── */
.text-yellow { color: var(--color-primary-yellow); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.center { text-align: center; }
.divider { border: none; border-top: 1px solid #eee; margin: 48px 0; }
.divider-dark { border: none; border-top: 1px solid #333; margin: 48px 0; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }

  /* Navigation: hamburger menu for tablets and landscape phones */
  nav { padding: 0 24px; }
  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--color-primary-black); flex-direction: column; gap: 0; padding: var(--spacing-sm) 0; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 24px; }
  .nav-links a { font-size: 15px; }
  .nav-contact { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 768px) {
  .hero { height: 400px; padding: 0 24px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }

  section { padding: var(--section-padding-mobile); }
  .page-header { padding: 40px 24px; }
  .page-header h1 { font-size: 32px; }
  .since-banner { padding: 12px 24px; font-size: 11px; letter-spacing: 2px; }

  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid-3 { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trade-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-band { padding: 32px 24px; flex-direction: column; text-align: center; }
  .cta-band h2 { font-size: 22px; }
  .trust-band { grid-template-columns: 1fr; padding: 32px 24px; }

  .btn-secondary { margin-left: 0; margin-top: 12px; }
  .contact-layout { gap: 40px; }
  .product-detail-img { min-height: 300px; padding: 24px; }
  .split-img img { height: 280px; }
}

/* ─── Cookie Consent Banner ─────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary-black);
  border-top: 3px solid var(--color-primary-yellow);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2000;
  transform: translateY(0);
  transition: transform 0.3s ease;
  flex-wrap: wrap;
}
#cookie-banner p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookie-banner p a { color: var(--color-primary-yellow); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-dark {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark {
  background: transparent;
  color: #aaa;
  border: 1px solid #555;
}
.btn-dark:hover { border-color: #aaa; color: #fff; }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
