/*
Theme Name: Hatter Ventures
Theme URI: https://hatterventures.com
Author: Hatter Ventures LLC
Author URI: https://hatterventures.com
Description: A multi-page WordPress theme for Hatter Ventures LLC — turn key engineering solutions. Features digital fabrication services, industry pages, FAQ, contact form, and full responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hatter-ventures
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ========== CSS Variables / Design Tokens ========== */
:root {
  --hv-navy: #0e1932;
  --hv-orange: #e3533a;
  --hv-offwhite: #f2f2f2;
  --hv-white: #ffffff;
  --hv-text: #1a1a2e;
  --hv-muted: #6b7280;
  --hv-border: #e0e0e0;
  --hv-font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --hv-font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--hv-font-body);
  color: var(--hv-text);
  background: var(--hv-offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, .font-display {
  font-family: var(--hv-font-display);
  letter-spacing: -0.01em;
}

/* ========== Utility ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--hv-navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header .container {
  height: 64px; display: flex;
  align-items: center; justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 0.5rem; }
.site-logo .logo-diamond {
  display: inline-block; width: 28px; height: 28px;
  background: var(--hv-orange); transform: rotate(45deg);
  transition: transform 0.3s;
}
.site-logo:hover .logo-diamond { transform: rotate(90deg); }
.site-logo .logo-text {
  font-family: var(--hv-font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.05em; color: #fff;
}
.site-logo .logo-text span { color: var(--hv-orange); }

/* Desktop nav */
.main-nav { display: none; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--hv-orange); }
.main-nav .nav-cta {
  background: var(--hv-orange); color: #fff;
  padding: 0.5rem 1rem; font-size: 0.875rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; transition: background 0.2s;
}
.main-nav .nav-cta:hover { background: rgba(227,83,58,0.9); }

/* Industries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown > a svg { width: 14px; height: 14px; }
.nav-dropdown .dropdown-menu {
  display: none; position: absolute; left: 0; top: 100%;
  padding-top: 0.5rem; min-width: 180px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu .dropdown-inner {
  background: var(--hv-navy); border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); padding: 0.5rem 0;
}
.dropdown-menu a {
  display: block; padding: 0.5rem 1rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  color: var(--hv-orange); background: rgba(255,255,255,0.05);
}

/* Mobile menu */
.menu-toggle {
  display: block; background: none; border: none;
  color: #fff; cursor: pointer; padding: 0.25rem;
}
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none; border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--hv-navy); padding: 1rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,0.9);
  padding: 0.5rem 0; font-size: 0.95rem;
}
.mobile-nav .mobile-sub {
  padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .mobile-sub a {
  color: rgba(255,255,255,0.7); font-size: 0.875rem;
}
.mobile-nav .mobile-cta {
  display: block; background: var(--hv-orange); color: #fff;
  text-align: center; padding: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative; background: var(--hv-navy);
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--hv-navy), rgba(14,25,50,0.8), transparent);
}
.hero .container {
  position: relative; padding-top: 7rem; padding-bottom: 10rem;
}
.hero-label {
  display: inline-block; color: var(--hv-orange);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; max-width: 48rem; line-height: 0.95;
}
.hero h1 span { color: var(--hv-orange); }
.hero p {
  margin-top: 1.5rem; max-width: 36rem;
  font-size: 1.125rem; color: rgba(255,255,255,0.8);
}
.hero-buttons { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--hv-orange); color: #fff;
  padding: 0.75rem 1.5rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.btn-primary:hover { background: rgba(227,83,58,0.9); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 0.75rem 1.5rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--hv-navy); color: #fff;
  padding: 0.75rem 1.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.btn-navy:hover { background: rgba(14,25,50,0.9); }

/* Arrow icon in buttons */
.btn-arrow {
  display: inline-block; width: 16px; height: 16px;
  position: relative;
}
.btn-arrow::after {
  content: '→'; font-size: 1rem; line-height: 1;
}

/* ========== Services Cards (Home) ========== */
.services-section { padding: 5rem 0; }
.section-header {
  text-align: center; max-width: 42rem; margin: 0 auto 3rem;
}
.section-label {
  color: var(--hv-orange); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-top: 0.75rem;
  color: var(--hv-navy);
}
.section-subtitle {
  margin-top: 1rem; color: var(--hv-muted);
}

.services-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.service-card {
  background: var(--hv-white); border: 1px solid var(--hv-border);
  padding: 1.5rem; transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--hv-orange); }
.service-card .card-icon {
  font-size: 2rem; color: var(--hv-orange); margin-bottom: 1rem;
  width: 32px; height: 32px;
}
.service-card h3 {
  font-family: var(--hv-font-display);
  font-size: 1.25rem; font-weight: 700; color: var(--hv-navy);
}
.service-card p {
  color: var(--hv-muted); margin-top: 0.5rem; font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ========== Why Hatter (Home) ========== */
.why-section {
  background: var(--hv-navy); color: #fff; padding: 5rem 0;
}
.why-grid {
  display: grid; gap: 3rem;
}
.why-grid .why-text .section-label { color: var(--hv-orange); }
.why-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-top: 1rem; color: #fff;
}
.why-grid .why-desc {
  margin-top: 1.25rem; color: rgba(255,255,255,0.75);
  max-width: 32rem;
}
.why-list { margin-top: 2rem; }
.why-list li {
  display: flex; gap: 0.75rem;
  color: rgba(255,255,255,0.9); margin-bottom: 0.75rem;
}
.why-list li .check {
  color: var(--hv-orange); flex-shrink: 0; margin-top: 0.125rem;
  font-size: 1.25rem;
}
.why-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.why-images img {
  aspect-ratio: 1; object-fit: cover; width: 100%;
}
.why-images img:nth-child(2) { margin-top: 2rem; }
.why-images .accent-block {
  background: var(--hv-orange); aspect-ratio: 1;
  margin-top: 2rem; display: flex; align-items: center;
  justify-content: center; padding: 1.5rem; text-align: center;
}
.why-images .accent-block span {
  font-family: var(--hv-font-display);
  font-size: 1.5rem; font-weight: 700; text-transform: uppercase;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ========== Testimonials ========== */
.testimonials-section { padding: 5rem 0; }
.testimonials-grid {
  display: grid; gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial {
  background: var(--hv-white); border-left: 4px solid var(--hv-orange);
  padding: 1.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.testimonial blockquote {
  color: var(--hv-navy); font-size: 1.125rem; line-height: 1.4;
}
.testimonial figcaption {
  margin-top: 1rem; font-size: 0.875rem;
  color: var(--hv-muted); text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== CTA Banner ========== */
.cta-banner { background: var(--hv-orange); }
.cta-banner .container {
  padding: 4rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700; color: #fff;
}
.cta-banner p { color: rgba(255,255,255,0.9); margin-top: 0.5rem; }

@media (min-width: 768px) {
  .cta-banner .container {
    flex-direction: row; align-items: center; justify-content: space-between;
  }
}

/* ========== Services Page ========== */
.page-hero {
  background: var(--hv-navy); color: #fff; padding: 5rem 0;
}
.page-hero .section-label { color: var(--hv-orange); }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700; margin-top: 0.75rem;
}
.page-hero p {
  margin-top: 1rem; max-width: 42rem;
  color: rgba(255,255,255,0.8); font-size: 1.125rem;
}

.services-page-grid {
  display: grid; gap: 1.5rem; padding: 5rem 0;
}
.services-page-grid article {
  background: var(--hv-white); border: 1px solid var(--hv-border);
  overflow: hidden; transition: border-color 0.3s;
}
.services-page-grid article:hover { border-color: var(--hv-orange); }
.services-page-grid .svc-img {
  aspect-ratio: 4/3; overflow: hidden;
}
.services-page-grid .svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.services-page-grid article:hover .svc-img img {
  transform: scale(1.05);
}
.services-page-grid .svc-body { padding: 1.5rem; }
.services-page-grid .svc-body h3 {
  font-family: var(--hv-font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--hv-navy);
}
.services-page-grid .svc-body p {
  color: var(--hv-muted); margin-top: 0.5rem; font-size: 0.875rem;
}
.services-bottom-cta {
  margin-top: 4rem; background: var(--hv-navy); color: #fff;
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.services-bottom-cta h2 {
  font-family: var(--hv-font-display);
  font-size: 1.875rem; font-weight: 700;
}
.services-bottom-cta p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

@media (min-width: 768px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bottom-cta {
    flex-direction: row; align-items: center; justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .services-page-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== Industries Page ========== */
.industry-hero-buttons {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.industry-section { padding: 6rem 0; scroll-margin-top: 5rem; }
.industry-grid {
  display: grid; gap: 3rem;
}
.industry-content .industry-label {
  color: var(--hv-orange); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em;
}
.industry-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-top: 0.75rem;
}
.industry-content .industry-desc {
  margin-top: 1.25rem; font-size: 1.125rem; line-height: 1.7;
  color: var(--hv-muted);
}
.industry-content .industry-desc-2 {
  margin-top: 1rem; line-height: 1.7; color: var(--hv-muted);
}
.industry-content .industry-desc strong,
.industry-content .industry-desc-2 strong {
  color: var(--hv-navy); font-weight: 600;
}
.industry-list { margin-top: 2rem; }
.industry-list li {
  display: flex; gap: 0.75rem; margin-bottom: 0.75rem;
}
.industry-list .bullet {
  margin-top: 0.5rem; width: 8px; height: 8px;
  background: var(--hv-orange); flex-shrink: 0;
}
.industry-list span { font-weight: 500; }
.industry-callout {
  margin-top: 2rem; padding: 1.5rem;
  border-left: 4px solid var(--hv-orange);
}
.industry-callout p { font-weight: 500; line-height: 1.7; }
.industry-callout strong { font-weight: 700; }

.industry-image-frame {
  background: var(--hv-navy); padding: 2rem 3rem;
}
.industry-image-frame img { width: 100%; height: auto; }
.industry-image-frame .caption {
  color: rgba(255,255,255,0.7); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  text-align: center; margin-top: 1.5rem;
}

/* EHS — white bg */
.industry-ehs { background: var(--hv-white); }
.industry-ehs h2 { color: var(--hv-navy); }
.industry-ehs .industry-list span { color: var(--hv-navy); }
.industry-ehs .industry-callout { background: rgba(14,25,50,0.05); }
.industry-ehs .industry-callout p { color: var(--hv-navy); }

/* Legal — navy bg */
.industry-legal { background: var(--hv-navy); color: #fff; }
.industry-legal .industry-desc { color: rgba(255,255,255,0.8); }
.industry-legal .industry-desc strong { color: var(--hv-orange); }
.industry-legal .industry-desc-2 { color: rgba(255,255,255,0.7); }
.industry-legal .industry-desc-2 strong { color: #fff; }
.industry-legal .industry-list span { color: rgba(255,255,255,0.9); }
.industry-legal .industry-callout { background: rgba(255,255,255,0.05); }
.industry-legal .industry-callout p { color: #fff; }
.industry-legal .industry-callout strong { color: var(--hv-orange); }

/* Manufacturing — white bg */
.industry-mfg { background: var(--hv-white); }
.industry-mfg h2 { color: var(--hv-navy); }
.industry-mfg .industry-list span { color: var(--hv-navy); }
.industry-mfg .industry-callout { background: rgba(14,25,50,0.05); }
.industry-mfg .industry-callout p { color: var(--hv-navy); }

@media (min-width: 1024px) {
  .industry-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ========== FAQ Page ========== */
.faq-list { max-width: 48rem; margin: 0 auto; padding: 5rem 0; }
.faq-item {
  border: 1px solid var(--hv-border); background: var(--hv-white);
  margin-bottom: 0.75rem; padding: 0 1.5rem;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; text-align: left;
  font-family: var(--hv-font-display);
  font-size: 1.125rem; font-weight: 700;
  color: var(--hv-navy); transition: color 0.2s;
}
.faq-question:hover { color: var(--hv-orange); }
.faq-question .chevron {
  transition: transform 0.3s; font-size: 1.25rem;
  color: var(--hv-muted);
}
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--hv-muted); line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 200px; padding-bottom: 1.25rem;
}
.faq-cta {
  margin-top: 3rem; text-align: center;
}
.faq-cta p { color: var(--hv-muted); }
.faq-cta a { margin-top: 0.75rem; display: inline-block; }

/* ========== Contact Page ========== */
.contact-grid {
  display: grid; gap: 3rem; padding: 5rem 0;
}
.contact-sidebar .sidebar-block {
  border-left: 4px solid var(--hv-orange); padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-sidebar h3 {
  font-family: var(--hv-font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--hv-navy); text-transform: uppercase;
}
.contact-sidebar ul { margin-top: 1rem; }
.contact-sidebar li {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem; font-size: 0.875rem;
}
.contact-sidebar .icon {
  color: var(--hv-orange); width: 16px;
}
.contact-sidebar .next-steps {
  background: var(--hv-offwhite); padding: 1.5rem;
}
.contact-sidebar .next-steps h4 {
  font-family: var(--hv-font-display);
  font-size: 1.125rem; font-weight: 700; color: var(--hv-navy);
}
.contact-sidebar .next-steps ol {
  margin-top: 0.75rem; list-style: decimal inside;
  color: var(--hv-muted); font-size: 0.875rem;
}
.contact-sidebar .next-steps li { margin-bottom: 0.5rem; }

.contact-form {
  background: var(--hv-white); border: 1px solid var(--hv-border);
  padding: 2rem;
}
.contact-form .form-row {
  display: grid; gap: 1.25rem;
}
.contact-form .form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--hv-navy); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%; border: 1px solid var(--hv-border);
  background: var(--hv-white); padding: 0.75rem 1rem;
  font-family: var(--hv-font-body); font-size: 1rem;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--hv-orange); }
.form-group .error {
  color: #dc2626; font-size: 0.75rem; margin-top: 0.25rem;
}

.form-submit {
  width: 100%; background: var(--hv-orange); color: #fff;
  border: none; padding: 1rem; font-size: 1rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: rgba(227,83,58,0.9); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  background: var(--hv-orange); color: #fff; padding: 2.5rem;
}
.form-success h2 {
  font-family: var(--hv-font-display);
  font-size: 1.875rem; font-weight: 700;
}
.form-success p {
  margin-top: 0.75rem; color: rgba(255,255,255,0.9);
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}
@media (max-width: 767px) {
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
}

/* ========== Legal/Privacy Pages ========== */
.legal-content {
  max-width: 48rem; margin: 0 auto; padding: 5rem 1.5rem;
}
.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700; color: var(--hv-navy);
}
.legal-content .updated {
  color: var(--hv-muted); margin-top: 2rem;
}
.legal-content p {
  margin-top: 1rem; line-height: 1.7;
}
.legal-content h2 {
  font-size: 1.5rem; font-weight: 700;
  color: var(--hv-navy); margin-top: 2rem;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--hv-navy); color: rgba(255,255,255,0.8);
  margin-top: 6rem;
}
.footer-grid {
  display: grid; gap: 2.5rem; padding: 3.5rem 0;
}
.footer-brand .logo-row {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-brand .logo-row .diamond {
  display: inline-block; width: 24px; height: 24px;
  background: var(--hv-orange); transform: rotate(45deg);
}
.footer-brand .logo-row span {
  font-family: var(--hv-font-display);
  font-size: 1.125rem; font-weight: 700; color: #fff;
}
.footer-brand .logo-row span em {
  color: var(--hv-orange); font-style: normal;
}
.footer-brand p {
  margin-top: 1rem; max-width: 28rem; font-size: 0.875rem;
}
.footer-heading {
  font-family: var(--hv-font-display); color: #fff;
  font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--hv-orange); }
.footer-contact li {
  font-size: 0.875rem; margin-bottom: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a:hover { color: var(--hv-orange); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 50; background: var(--hv-navy); color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.875rem; }
.cookie-buttons { margin-top: 1rem; display: flex; gap: 0.75rem; }
.cookie-accept {
  background: var(--hv-orange); color: #fff; border: none;
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
}
.cookie-learn {
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  background: none; cursor: pointer; transition: background 0.2s;
}
.cookie-learn:hover { background: rgba(255,255,255,0.1); }

@media (min-width: 768px) {
  .cookie-banner { left: auto; right: 1.5rem; max-width: 28rem; }
}
