:root {
  /* Brand palette */
  --brand-red: #AF3F29;
  --brand-yellow: #F3D634;
  --brand-dark: #333333;
  --brand-bluegray: #5B6B89;
  
  /* Dark theme (default) */
  --bg: var(--brand-dark);
  --panel: #262626;
  --ink: #F5F6F8;
  --muted: #C9CFD8;
  --accent: var(--brand-red);
  --accent-2: var(--brand-yellow);
  --accent-3: var(--brand-bluegray);
  --ok: #16a34a;
  --warn: #f59e0b;
  --danger: #ef4444;
  --maxw: 1200px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --section-padding: 70px 0;
  --section-padding-lg: 90px 0 36px;
  --section-padding-sm: 40px 0;
  --section-head-margin: 28px;
  --grid-gap: 18px;
  --grid-gap-md: 18px;
  --card-bg: linear-gradient(180deg, rgba(38,38,38,.95), rgba(30,30,30,.98));
  --card-border: rgba(255,255,255,.08);
  --header-bg: rgba(51,51,51,.70);
  --header-border: rgba(255,255,255,.06);
  --input-bg: #1e1e1e;
  --input-border: rgba(255,255,255,.14);
}

/* Light theme variables */
.theme-light {
  --bg: #F5F6F8;
  --panel: #FFFFFF;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --accent: var(--brand-red);
  --accent-2: var(--brand-yellow);
  --accent-3: var(--brand-bluegray);
  --ok: #16a34a;
  --warn: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --card-bg: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.98));
  --card-border: rgba(0,0,0,.1);
  --header-bg: rgba(255,255,255,.95);
  --header-border: rgba(0,0,0,.08);
  --input-bg: #ffffff;
  --input-border: rgba(0,0,0,.15);
}

html {
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  min-height: 100vh;
  overflow-x: hidden;
  background:
    url('/assets/bg-pattern.svg') repeat-x,
    var(--bg);
  background-size: 
    180% auto,
    auto;
  background-position:
    center top,
    0 0;
  background-repeat:
    repeat-x,
    repeat;
  background-attachment:
    scroll,
    scroll;
  color: var(--ink);
  line-height: 1.55;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  width: 100%;
}

.theme-light body {
  background:
    url('/assets/bg-pattern.svg') repeat-x,
    var(--bg);
  background-size: 
    180% auto,
    auto;
  background-position:
    center top,
    0 0;
  background-repeat:
    repeat-x,
    repeat;
  background-attachment:
    scroll,
    scroll;
}

/* Decorative wavy lines - two thin wavy lines above background (removed to eliminate color artifacts) */

/* Links & media */
a { color: var(--accent-2); text-decoration: none; }
.theme-light a { color: var(--accent); }
.theme-light a:hover { color: #c23a21; }
img { max-width: 100%; height: auto; border-radius: var(--radius); display: block; }

/* Utilities */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; box-sizing: border-box; position: relative; z-index: 2; max-width: 100vw; }
main { position: relative; z-index: 2; width: 100%; }
.muted { color: var(--muted); }
.grid { display: grid; gap: var(--grid-gap); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Hide CTA buttons in header on mobile */
.nav .cta {
  display: inline-flex;
}
.gap-md { gap: var(--grid-gap-md); }
.note { margin-top: 14px; color: var(--muted); font-size: 14px; }
/* Utility classes for margins */
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
/* Form styles */
.form-grid { display: grid; gap: 12px; }
/* Image spacing */
.img-spacing { margin-top: var(--grid-gap-md); }
/* Map container */
.map-container { margin-top: 20px; }
.map-container iframe { border: 0; border-radius: var(--radius); display: block; width: 100%; }
/* Footer styles */
.footer-brand { margin-bottom: 8px; }
.footer-brand .brand-name { font-size: 28px; }
.footer-heading { margin: 0 0 8px; }
.footer-text-small { font-size: 14px; }
/* Brand link - remove default styling */
.brand-link { text-decoration: none; color: inherit; }
/* Contact link styling */
.contact-link { color: var(--accent); }
.theme-light .contact-link { color: var(--accent); }
/* Price info styling */
.price-info { font-size: 14px; margin-top: 8px; }
/* Grid with spacing */
.grid-spacing { margin-top: 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  will-change: transform;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .2px; cursor: pointer; flex-shrink: 1; min-width: 0; }
.brand-name { font-family: Lobster, Inter, system-ui, sans-serif; font-size: 22px; letter-spacing: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-light .brand-name { color: #4a5568; }
.logo { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-3)); display: grid; place-items: center; box-shadow: var(--shadow); }
.logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 0; background: transparent; padding: 0; }
.menu { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.theme-light .menu { gap: 28px; }
.menu a { color: var(--ink); opacity: .9; font-weight: 500; display: inline-flex; align-items: center; height: 44px; }
.menu a:hover { opacity: 1; }
.theme-light .menu a:hover { color: var(--accent); }
.menu-trigger { background: #444; color: var(--ink); border: 1px solid rgba(255,255,255,.18); padding: 10px 18px; border-radius: 10px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; height: 44px; transition: all 0.2s ease; }
.menu-trigger:hover { filter: brightness(1.05); }
.menu-trigger i { font-size: 12px; transition: transform 0.3s ease; }
.menu-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.mega { display: none; position: absolute; left: 0; right: 0; top: 100%; z-index: 60; background: rgba(51,51,51,.98); border-bottom: 1px solid rgba(255,255,255,.06); backdrop-filter: blur(10px); padding: 8px 0; }
.mega[aria-hidden="false"] { display: block; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 16px 0 22px; }
.mega-card { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; background: #2b2b2b; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px; color: var(--ink); }
.mega-card:hover { background: #343434; }
.mega-card p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.mega-icon { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-3)); display: grid; place-items: center; }
.mega-icon svg { width: 26px; height: 26px; color: #ffffff; fill: currentColor; stroke: currentColor; stroke-width: 1.2; }
.mega-icon i { font-size: 22px; color: #ffffff; opacity: .95; line-height: 1; width: 1.1em; text-align: center; display: inline-block; text-shadow: 0 1px 1px rgba(0,0,0,.25); }
.mega-logo { width: 40px; height: 40px; object-fit: contain; }

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 0;
  z-index: 100;
  position: relative;
}
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1.5px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  margin: 2.5px 0;
}
.mobile-menu-toggle span:first-child {
  margin-top: 0;
}
.mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}
.theme-light .mobile-menu-toggle span {
  background: var(--ink);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: min(320px, 85vw);
  min-height: 100dvh;
  background: var(--panel);
  backdrop-filter: blur(20px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  padding: 80px 20px 100px;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  flex: 1;
}
.mobile-menu .menu a,
.mobile-menu .menu button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: none;
  background: transparent;
  border-bottom: 1px solid var(--card-border);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
  cursor: pointer;
  min-height: 56px;
}
.mobile-menu .menu a:hover,
.mobile-menu .menu a:focus,
.mobile-menu .menu button:hover,
.mobile-menu .menu button:focus {
  background: var(--card-bg);
  color: var(--accent);
}
.theme-light .mobile-menu .menu a:hover,
.theme-light .mobile-menu .menu button:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent);
}
.mobile-menu .menu-trigger {
  width: 100%;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--card-border);
  padding: 16px 20px;
  margin: 0;
  border-radius: 0;
  min-height: 56px;
}
.mobile-menu .mega {
  position: static;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.mobile-menu .mega[aria-hidden="true"] {
  display: none;
}
.mobile-menu .mega-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 0;
  margin-left: 0;
  width: 100%;
  box-sizing: border-box;
}
.mobile-menu .mega-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile menu footer */
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 20px;
  border-top: 1px solid var(--card-border);
  margin-bottom: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.mobile-menu-footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}
.mobile-menu-footer small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.mobile-menu-footer a {
  color: var(--accent);
  text-decoration: none;
}
.mobile-menu-footer a:hover {
  text-decoration: underline;
}
.theme-light .mobile-menu-footer a {
  color: var(--accent);
}

/* Header phone number */
.header-phone {
  display: inline-flex; /* Visible on desktop */
  align-items: center;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.phone-text {
  display: inline;
}
@media (max-width: 480px) {
  .phone-text {
    display: none;
  }
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 24px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1b130f; font-weight: 700; border: none; box-shadow: var(--shadow); min-height: 44px; transition: all 0.2s ease; cursor: pointer; box-sizing: border-box; }
.cta:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 12px 35px rgba(0,0,0,.45); }
.theme-light .cta { background: var(--accent); color: #ffffff !important; }
.theme-light .cta:hover { background: #c23a21; color: #ffffff !important; filter: none; }
.theme-light .cta * { color: #ffffff !important; }
.cta.secondary { background: #444; color: var(--ink); font-weight: 600; border: 1px solid rgba(255,255,255,.08); }
.theme-light .cta.secondary { background: #1a1a1a; color: #ffffff; border: 1px solid rgba(0,0,0,.2); }
.theme-light .cta.secondary:hover { background: #2a2a2a; border-color: rgba(0,0,0,.3); }

/* Hero */
.hero { 
  padding: var(--section-padding-lg); 
  position: relative; 
  overflow: visible; 
  width: 100%; 
  box-sizing: border-box; 
  max-width: 100%;
}
.hero .container {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  box-sizing: border-box;
}
.hero:before {
  display: none;
}
.theme-light .hero:before {
  display: none;
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.1fr .9fr; 
  gap: 32px; 
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
.eyebrow { color: var(--accent-2); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; }
.theme-light .eyebrow { color: var(--accent); }
h1 { font-size: clamp(28px, 4.2vw, 52px); line-height: 1.15; margin: 10px 0 16px; letter-spacing: -.02em; }
.lead { font-size: clamp(16px, 1.3vw, 18px); color: #c9d4ff; margin: 0 0 22px; line-height: 1.6; }
.theme-light .lead { color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; box-sizing: border-box; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.badge { font-size: 12px; padding: 6px 10px; border-radius: 999px; background: #3b3b3b; color: #fff4d0; border: 1px solid rgba(255,255,255,.08); transition: background 0.3s ease, border-color 0.3s ease; }
.theme-light .badge { background: #e5e7eb; color: #374151; border-color: rgba(0,0,0,.1); }
/* inputs */
input, textarea { font: inherit; color: var(--ink); background: var(--input-bg); border: 1px solid var(--input-border); border-radius: 10px; padding: 12px 14px; width: 100%; box-sizing: border-box; transition: background 0.3s ease, border-color 0.3s ease; }
label span { display:block; margin-bottom:6px; font-weight:600; color:#EAEAEA; }
.theme-light label span { color: var(--ink); }
form .cta { justify-self: start; }
.hero-img { position: relative; width: 100%; max-width: 100%; box-sizing: border-box; overflow: visible; }
.hero-img img { display: block; width: 100%; height: auto; }
.hero-card { margin-top: 16px; background: rgba(50,50,50,.88); padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(6px); box-sizing: border-box; }
.hero-card p { margin: 0; font-size: 13px; color: #cfe6ff; }
.theme-light .hero-card { background: rgba(255,255,255,.95); border-color: rgba(0,0,0,.1); }
.theme-light .hero-card p { color: #1a1a1a; }
@media (min-width: 768px) {
  .hero-img { display: flex; flex-direction: column; }
  .hero-card { position: absolute; right: 16px; bottom: 16px; max-width: calc(100% - 32px); margin-top: 0; display: none; }
}

/* Sections */
section { padding: var(--section-padding); position: relative; }
section::before {
  display: none;
}
section:nth-child(even)::before { display: none; }
.theme-light section::before { display: none; }
.theme-light section:nth-child(even)::before { display: none; }
.section-head { display: grid; gap: 10px; margin-bottom: var(--section-head-margin); text-align: center; }
.section-head h2 { font-size: clamp(22px, 3vw, 34px); margin: 0; }
.card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); backdrop-filter: blur(10px); transition: background 0.3s ease, border-color 0.3s ease; }
.card-link { display: block; text-decoration: none; color: inherit; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,0,0,.45); border-color: var(--accent-2); }
.theme-light .card-link:hover { border-color: var(--accent); box-shadow: 0 12px 35px rgba(0,0,0,.25); }
.card-link-hint { display: inline-block; margin-top: 12px; color: var(--accent-2); font-weight: 500; font-size: 13px; opacity: 0.8; }
.theme-light .card-link-hint { color: var(--accent); }
.card-link:hover .card-link-hint { opacity: 1; }
.card h3 { margin: 2px 0 10px; font-size: 18px; }
.list { display: grid; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.list li { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 12px; }
.check { color: var(--ok); margin-top: 2px; }
.featured { outline: 2px solid rgba(243,214,52,.45); box-shadow: 0 12px 30px rgba(243,214,52,.15); }

/* AI Elements */
.pillbar { display:flex; flex-wrap: wrap; gap:8px; margin-top:10px; }
.pill { padding:6px 10px; border-radius:999px; background:#17223a; color:#cfe6ff; border:1px solid rgba(255,255,255,.08); font-size:12px; }
.ai-stack { margin-top: 16px; }
.flow-svg { width: 100%; height: auto; border-radius: 12px; background: #2c2c2c; }
.flow-svg .flow { stroke-dasharray: 420; stroke-dashoffset: 420; animation: dash 6s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.flow-svg .flow:nth-child(2) { animation-delay: .4s; }
.flow-svg .flow:nth-child(3) { animation-delay: .8s; }
.flow-svg .flow:nth-child(4) { animation-delay: 1.2s; }
.flow-svg .flow:nth-child(5) { animation-delay: 1.6s; }
.flow-svg .flow:nth-child(6) { animation-delay: 2s; }

@keyframes dash {
  0% { stroke-dashoffset: 420; opacity: .15; }
  25% { opacity: .6; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  75% { opacity: .8; }
  100% { stroke-dashoffset: 0; opacity: .4; }
}

/* Background flourishes - removed to eliminate color artifacts */

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,.09); padding: 30px 0 60px; color: #c2cbe5; transition: border-color 0.3s ease, color 0.3s ease; }
.theme-light footer { border-top-color: rgba(0,0,0,.1); color: var(--muted); }
.footgrid { display: grid; gap: 18px; grid-template-columns: 1.3fr 1fr 1fr; }
@media (max-width: 980px) {
  footer {
    padding: 30px 0 40px;
  }
  .footgrid {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 24px 0 32px;
  }
  .footgrid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footgrid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-brand .brand-name {
    font-size: 22px;
  }
  footer .logo-img {
    width: 64px;
    height: 64px;
  }
}

/* Dark mode Google Maps - Note: CSS filters don't work on cross-origin iframes in most browsers */
/* For a true dark map, use Google Maps JavaScript API with custom styling */
.map-container-dark {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.map-container-dark iframe {
  filter: invert(1) hue-rotate(180deg) brightness(0.75) contrast(1.1) saturate(0.9);
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius);
}
.foot small { color: var(--muted); }
footer a { color: #fff; opacity: .9; }
.theme-light footer a { color: var(--ink); opacity: .8; }
footer a:hover { opacity: 1; }
footer .logo-img { width: 88px; height: 88px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .4s ease, transform .4s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .reveal { transition: opacity .3s ease, transform .3s ease; }
}

/* Lobster headings for brand only */
.brand-name { font-family: Lobster, cursive; }

/* Choice page */
.choice-section { padding: 120px 0; display: flex; align-items: center; min-height: calc(100vh - 200px); position: relative; overflow: visible; width: 100%; max-width: 100vw; }
.choice-section::before { display: none; }
.choice-section-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 1; width: 100%; max-width: 100%; overflow: visible; }
.choice-section-logo { width: 1200px; height: auto; opacity: 0.25; filter: blur(6px); max-width: 95vw; max-height: 95vh; object-fit: contain; }
.theme-light .choice-section-logo { opacity: 0.2; }
.choice-container { max-width: 900px; text-align: center; position: relative; z-index: 10; }
.choice-card { position: relative; z-index: 10; }
.choice-intro { margin-bottom: 48px; }
.choice-intro .lead { color: var(--ink); font-weight: 400; opacity: 0.75; }
.theme-light .choice-intro .lead { color: var(--ink); opacity: 0.75; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 32px; }
.choice-card { display: block; background: var(--card-bg); border: 2px solid var(--card-border); border-radius: var(--radius); padding: 32px 24px; text-decoration: none; color: var(--ink); transition: all 0.3s ease; box-shadow: var(--shadow); }
.theme-light .choice-card { border-width: 2px; }
.choice-card:hover { transform: translateY(-4px); border-color: var(--accent-2); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.choice-card h2 { margin: 16px 0 12px; font-size: 28px; color: var(--ink); }
.choice-icon { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), var(--accent-3)); display: grid; place-items: center; margin: 0 auto; }
.choice-icon i { font-size: 32px; color: #ffffff; }
.choice-description { color: var(--muted); margin-bottom: 20px; line-height: 1.6; font-size: 15px; }
.choice-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; display: grid; gap: 10px; }
.choice-features li { display: grid; grid-template-columns: 24px 1fr; align-items: start; gap: 10px; font-size: 14px; }
.choice-cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: var(--accent-2); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; }
.theme-light .choice-card .choice-cta { 
  color: var(--accent); 
  border-top-color: rgba(0, 0, 0, 0.1);
}
.choice-card:hover .choice-cta { color: var(--accent-2); }
.theme-light .choice-card:hover .choice-cta { color: var(--accent); }
.choice-card:hover .choice-cta i { transform: translateX(4px); }
.choice-cta i { transition: transform 0.2s ease; }
.choice-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

/* News Section */
.news-section { padding: var(--section-padding); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { 
  background: var(--card-bg); 
  border: 1px solid var(--card-border); 
  border-radius: var(--radius); 
  padding: 20px; 
  box-shadow: var(--shadow); 
  backdrop-filter: blur(10px); 
  transition: all 0.3s ease; 
  display: block; 
  text-decoration: none; 
  color: inherit;
  cursor: pointer;
}
.news-card:hover { 
  transform: translateY(-4px); 
  border-color: var(--accent-2); 
  box-shadow: 0 16px 40px rgba(0,0,0,.5); 
}
.news-card h3 { 
  margin: 0 0 8px; 
  font-size: 18px; 
  color: var(--ink);
  line-height: 1.3;
}
.news-card .news-date { 
  color: var(--muted); 
  font-size: 13px; 
  margin-bottom: 10px; 
  display: block;
}
.news-card .news-excerpt { 
  color: var(--muted); 
  font-size: 14px; 
  line-height: 1.5; 
  margin: 0 0 12px; 
}
.news-card .news-link { 
  color: var(--accent-2); 
  font-weight: 600; 
  font-size: 14px; 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
}
.theme-light .news-card .news-link { color: var(--accent); }
.news-card:hover .news-link { 
  color: var(--accent-2); 
}
.news-card:hover .news-link i { 
  transform: translateX(4px); 
}
.news-card .news-link i { 
  transition: transform 0.2s ease; 
  font-size: 12px;
}

/* News Article Page */
.news-article { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.news-article-header { margin-bottom: 32px; }
.news-article h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 12px; }
.news-article-meta { 
  color: var(--muted); 
  font-size: 14px; 
  margin-bottom: 24px; 
  padding-bottom: 16px; 
  border-bottom: 1px solid var(--card-border); 
}
.news-article-content { 
  font-size: 16px; 
  line-height: 1.7; 
  color: var(--ink); 
}
.news-article-content h2 { 
  font-size: 24px; 
  margin: 32px 0 16px; 
  color: var(--ink); 
}
.news-article-content h3 { 
  font-size: 20px; 
  margin: 24px 0 12px; 
  color: var(--ink); 
}
.news-article-content p { 
  margin: 0 0 16px; 
}
.news-article-content ul, 
.news-article-content ol { 
  margin: 16px 0; 
  padding-left: 24px; 
}
.news-article-content li { 
  margin: 8px 0; 
}
.news-article-content img { 
  margin: 24px 0; 
  border-radius: var(--radius); 
}
.news-back-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  color: var(--accent-2); 
  font-weight: 600; 
  margin-bottom: 32px; 
  text-decoration: none; 
}
.theme-light .news-back-link { color: var(--accent); }
.news-back-link:hover { 
  opacity: 0.8; 
}
.news-back-link i { 
  font-size: 14px; 
}

/* Brand Carousel */
.brands-carousel {
  padding: var(--section-padding-sm);
}
.carousel-head {
  text-align: center;
  margin-bottom: var(--section-head-margin);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-head .muted {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  margin: 0;
}
.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: fit-content;
  animation: scroll-carousel 60s linear infinite;
  will-change: transform;
}
@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 24px));
  }
}
.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 120px;
  padding: 20px 0;
}
.carousel-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}
/* Hover effects on carousel images removed */
.theme-light .carousel-item img {
  filter: brightness(0.85);
}
.carousel-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}
.carousel-item:hover .carousel-label {
  color: var(--accent-2);
}
.theme-light .carousel-item:hover .carousel-label {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav .menu {
    display: none;
  }
  .nav .cta {
    display: none !important;
  }
  .mobile-menu {
    max-width: min(320px, 85vw);
    padding: 80px 20px 100px;
    box-sizing: border-box;
  }
  .mobile-menu .menu,
  .mobile-menu .mobile-menu-footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .mobile-menu-footer {
    padding-bottom: 40px;
  }
  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero {
    overflow: hidden;
    max-width: 100%;
  }
  .hero:before {
    left: 0;
    right: 0;
    max-width: 100%;
  }
  .grid.cols-4, .grid.cols-3, .grid.cols-2, .footgrid, .choice-grid { grid-template-columns: 1fr; }
  .grid.cols-2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
  }
  .mega { position: static; }
  .mega-grid { grid-template-columns: 1fr; }
  .nav { flex-wrap: nowrap; }
  .hero-card { position: static; margin-top: 12px; }
  .choice-section { padding: 60px 0; min-height: auto; }
  .choice-section-bg { align-items: flex-start; padding-top: 120px; justify-content: center; }
  .choice-section-logo { width: 800px; height: auto; opacity: 0.2; filter: blur(4px); max-width: 100%; }
  .theme-light .choice-section-logo { opacity: 0.18; }
  .choice-card { padding: 24px 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .carousel-item {
    min-width: 100px;
    padding: 16px 0;
  }
  .carousel-item img {
    width: 60px;
    height: 60px;
  }
  .carousel-label {
    font-size: 12px;
  }
  .carousel-track {
    gap: 32px;
  }
  @keyframes scroll-carousel {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 16px));
    }
  }
}

/* Intermediate breakpoint for 4-column grids */
@media (max-width: 640px) {
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --section-padding-lg: 60px 0 32px;
    --section-padding-sm: 30px 0;
    --grid-gap: 24px;
    --grid-gap-md: 20px;
  }
  .container {
    width: min(100% - 32px, var(--maxw));
    box-sizing: border-box;
  }
  .brand-name {
    font-size: 20px;
  }
  .logo-img,
  .logo {
    width: 40px;
    height: 40px;
  }
  .section-head h2 {
    font-size: clamp(24px, 3.5vw, 36px);
  }
  .nav .cta {
    display: none !important;
  }
  .hero-cta {
    width: 100%;
    box-sizing: border-box;
  }
  .hero-cta .cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero {
    overflow: hidden;
    max-width: 100%;
  }
  .hero:before {
    left: 0;
    right: 0;
    max-width: 100%;
  }
  .hero-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 40px 0;
    --section-padding-lg: 40px 0 24px;
    --section-padding-sm: 24px 0;
    --grid-gap: 20px;
    --grid-gap-md: 16px;
    --section-head-margin: 24px;
  }
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  .container {
    width: min(100% - 20px, var(--maxw));
    box-sizing: border-box;
  }
  .hero .container {
    width: min(100% - 20px, var(--maxw));
  }
  .section-head {
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: clamp(22px, 5vw, 28px);
    line-height: 1.2;
  }
  h1 {
    font-size: clamp(28px, 6vw, 36px);
    line-height: 1.2;
    margin: 8px 0 12px;
  }
  .lead {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.65;
    margin: 0 0 20px;
  }
  .card h3 {
    font-size: 17px;
    line-height: 1.3;
  }
  .brand-name {
    font-size: 18px;
  }
  .footer-brand .brand-name {
    font-size: 24px;
  }
  .logo-img,
  .logo {
    width: 36px;
    height: 36px;
  }
  .nav .cta {
    display: none !important;
  }
  .nav {
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .mobile-menu {
    max-width: 100%;
    width: 100%;
    padding: 70px 16px 100px;
    box-sizing: border-box;
  }
  .mobile-menu .menu,
  .mobile-menu .mobile-menu-footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .mobile-menu .menu a,
  .mobile-menu .menu button {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
  }
  .card {
    padding: 20px 16px;
  }
  .choice-card {
    padding: 20px 16px;
  }
  .choice-card h2 {
    font-size: 24px;
  }
  .news-card {
    padding: 20px 16px;
  }
  .news-card h3 {
    font-size: 17px;
  }
  input,
  textarea {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 48px;
  }
  textarea {
    min-height: 120px;
  }
  .cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    font-size: 15px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav .brand {
    flex-shrink: 1;
    min-width: 0;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-cta .cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .news-article-content img {
    margin: 16px 0;
  }
  .news-article {
    padding: 24px 16px;
  }
  .news-article-content {
    padding: 0;
  }
  .news-article-content h2 {
    margin: 24px 0 12px;
    font-size: 20px;
  }
  .news-article-content h3 {
    margin: 20px 0 10px;
    font-size: 18px;
  }
  .team-grid {
    gap: 4px;
    margin: 20px 0;
  }
  .team-img {
    max-width: 180px;
  }
  /* Touch-friendly interactive elements */
  a,
  button,
  .card,
  .choice-card,
  .news-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
  .mobile-menu .menu a,
  .mobile-menu .menu button {
    min-height: 56px;
    display: flex;
    align-items: center;
  }
  .choice-card {
    min-height: auto;
    padding: 24px 20px;
  }
  .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .card:active {
    transform: scale(0.98);
  }
  @media (hover: none) {
    .card:hover {
      transform: none;
    }
    .choice-card:hover {
      transform: none;
    }
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(175, 63, 41, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: #9a3522;
  box-shadow: 0 6px 16px rgba(175, 63, 41, 0.5);
  transform: translateY(-2px);
}
.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}
.scroll-to-top i {
  line-height: 1;
}
@media (max-width: 768px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
}

/* Personal Section */
.personal-section {
  padding: 24px 0 16px;
}
.personal-section::before {
  display: none;
}
.personal-compact-v2 {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 950px;
  margin: 0 auto;
  padding-left: 0;
  width: 100%;
  box-sizing: border-box;
}
.personal-img-large {
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(175, 63, 41, 0.2);
  flex-shrink: 0;
  margin-left: -30px;
}
@media (max-width: 768px) {
  .personal-img-large {
    margin-left: 0;
  }
}
.personal-quote-v2 {
  flex: 1;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(175, 63, 41, 0.03), rgba(175, 63, 41, 0.01));
  border: 1px solid var(--card-border);
  border-right: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.personal-quote-text-v2 {
  margin: 0 0 14px;
  padding: 0;
  border: none;
}
.personal-quote-text-v2 p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
}
.personal-quote-author-v2 {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid var(--card-border);
}
.personal-quote-author-v2 strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  font-style: normal;
}
.personal-quote-author-v2 span {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}
@media (max-width: 768px) {
  .personal-section {
    padding: 20px 0 12px;
  }
  .personal-compact-v2 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }
  .personal-img-large {
    width: 160px;
    height: 160px;
    min-width: 160px;
    margin-left: 0;
  }
  .personal-quote-v2 {
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
    box-sizing: border-box;
  }
  .personal-quote-text-v2 p {
    font-size: 15px;
  }
  .personal-quote-author-v2 {
    align-items: center;
    text-align: center;
  }
}

/* Team Section (Om oss) */
.lead-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 32px;
  font-weight: 400;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0;
}
.team-member {
  text-align: center;
}
.team-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  margin: 0 auto 16px;
  display: block;
}
.team-info h3 {
  font-size: 20px;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 600;
}
.team-role {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 24px 0;
  }
  .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .team-img {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 16px;
  }
  .team-info {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
  .lead-intro {
    font-size: 16px;
    margin: 0 0 24px;
  }
}

/* Breadcrumb Navigation */
.breadcrumbs {
  padding: 12px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 24px;
}
.breadcrumbs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs-item:last-child {
  color: var(--ink);
  font-weight: 500;
}
.breadcrumbs-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs-item a:hover {
  color: var(--accent);
}
.theme-light .breadcrumbs-item a:hover {
  color: var(--accent);
}
.breadcrumbs-separator {
  color: var(--muted);
  opacity: 0.5;
  user-select: none;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 10px 0;
    font-size: 13px;
  }
  .breadcrumbs-container {
    padding: 0 16px;
  }
}

