/* ============================================================
   NORR ENERGY GUM — Clean Scandinavian Design System
   ============================================================ */

:root {
  --norr-teal: #2bbfbf;
  --norr-teal-light: #4dd4d4;
  --norr-teal-dark: #1a9999;
  --norr-black: #0d0d0d;
  --norr-white: #fafafa;
  --norr-off: #f4f4f0;
  --norr-grey: #8a8a8a;
  --norr-light-grey: #e8e8e5;
  --norr-border: #e0e0da;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --max-w: 1280px;
  --nav-h: 72px;
  --radius: 2px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--norr-black);
  background: var(--norr-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ UTILITIES ============ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--norr-teal);
  color: var(--norr-white);
  border-color: var(--norr-teal);
}
.btn-primary:hover {
  background: var(--norr-teal-dark);
  border-color: var(--norr-teal-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--norr-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--norr-white);
}
.btn-outline {
  background: transparent;
  color: var(--norr-teal);
  border-color: var(--norr-teal);
}
.btn-outline:hover {
  background: var(--norr-teal);
  color: var(--norr-white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--norr-black);
  border-color: var(--norr-black);
}
.btn-outline-dark:hover {
  background: var(--norr-black);
  color: var(--norr-white);
}
.btn-white {
  background: var(--norr-white);
  color: var(--norr-black);
  border-color: var(--norr-white);
}
.btn-white:hover {
  background: var(--norr-off);
}

/* ============ SECTION LABELS ============ */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--norr-teal);
  margin-bottom: 16px;
}
.section-label.light { color: var(--norr-teal-light); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--norr-black);
  letter-spacing: -0.01em;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--norr-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--norr-white);
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--norr-black); }
.nav-links a:hover,
.nav-links a.active { color: var(--norr-teal); }
.nav-links .nav-cta {
  background: var(--norr-teal);
  color: var(--norr-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--norr-teal-dark);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--norr-white);
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--norr-black); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 40px 0;
  width: 100%;
  animation: fadeUp 1s var(--ease-out) both;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--norr-teal-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--norr-white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badges span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ MARQUEE ============ */
.marquee-bar {
  background: var(--norr-teal);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--norr-white);
}
.marquee-track .dot { color: rgba(255,255,255,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ PRODUCTS ============ */
.products {
  padding: 120px 0;
  background: var(--norr-white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--norr-off);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.product-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f0f0ec;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}
.product-info {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--norr-white);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  width: fit-content;
}
.product-tag.coming-soon {
  background: var(--norr-light-grey);
  color: var(--norr-grey);
}
.product-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.product-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--norr-grey);
  margin-bottom: 20px;
  flex: 1;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--norr-black);
  margin-bottom: 16px;
}
.products-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============ WHY NORR ============ */
.why {
  background: var(--norr-off);
  padding: 0;
  overflow: hidden;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.why-image {
  position: relative;
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-content {
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.why-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 40px;
  max-width: 480px;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--norr-border);
  border-bottom: 1px solid var(--norr-border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--norr-teal);
  line-height: 1;
}
.stat-num small {
  font-size: 1rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--norr-grey);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ============ LIFESTYLE GRID ============ */
.lifestyle {
  padding: 120px 0;
  background: var(--norr-white);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.lifestyle-card.tall {
  grid-row: span 2;
}
.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.lifestyle-card:hover img { transform: scale(1.05); }
.lifestyle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.lifestyle-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--norr-white);
}

/* ============ BUNDLE ============ */
.bundle {
  background: var(--norr-off);
  padding: 100px 0;
}
.bundle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bundle-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}
.bundle-img img {
  width: 100%;
  height: auto;
}
.bundle-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.bundle-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}
.bundle-list {
  margin-bottom: 36px;
}
.bundle-list li {
  font-size: 0.95rem;
  color: var(--norr-black);
  padding: 8px 0;
  border-bottom: 1px solid var(--norr-border);
  font-weight: 500;
}
.bundle-list li:first-child { border-top: 1px solid var(--norr-border); }

/* ============ FAQ TEASER ============ */
.faq-teaser {
  padding: 120px 0;
  background: var(--norr-white);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--norr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.faq-item {
  padding: 40px;
  border: 1px solid var(--norr-border);
  transition: background 0.2s;
}
.faq-item:hover { background: var(--norr-off); }
.faq-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.faq-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}
.faq-cta { text-align: center; }

/* ============ EMAIL SIGNUP ============ */
.email-signup {
  background: var(--norr-black);
  padding: 100px 0;
}
.email-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.email-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--norr-white);
  margin-bottom: 16px;
}
.email-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.email-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.email-form input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--norr-white);
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: border-color 0.2s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.35); }
.email-form input:focus { border-color: var(--norr-teal); }
.email-form .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex-shrink: 0;
}
.email-note {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.3) !important;
  margin-bottom: 0 !important;
}

/* ============ FOOTER ============ */
.footer {
  background: #090909;
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  height: 48px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-contact {
  color: var(--norr-teal) !important;
  font-size: 0.85rem !important;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--norr-teal); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SHOP PAGE ============ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--norr-off);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: var(--norr-grey);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.shop-grid-section {
  padding: 80px 0 120px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.shop-bundle {
  background: var(--norr-teal);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  scroll-margin-top: 100px;
}
.bundle-offer-img { border-radius: var(--radius-lg); overflow: hidden; }
.bundle-offer-img img { width: 100%; height: auto; }
.bundle-offer-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--norr-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bundle-offer-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.7;
}
.bundle-offer-content .btn-white { margin-top: 8px; }

/* ============ ABOUT PAGE ============ */
.about-story {
  padding: 80px 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-story-img img { width: 100%; height: auto; }
.about-story-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}
.about-story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.about-values {
  padding: 80px 0 120px;
  background: var(--norr-off);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 40px 32px;
  background: var(--norr-white);
  border-radius: var(--radius-lg);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ============ FAQ PAGE ============ */
.faq-section { padding: 80px 0 120px; }
.faq-full-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-category { margin-bottom: 56px; }
.faq-category h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--norr-teal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--norr-border);
}
.faq-accordion-item {
  border-bottom: 1px solid var(--norr-border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--norr-teal); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--norr-teal);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-accordion-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a-inner {
  padding-bottom: 22px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
}
.faq-accordion-item.open .faq-a { max-height: 200px; }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 80px 0 120px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-detail-item span:first-child {
  font-size: 1.1rem;
  margin-top: 1px;
}
.contact-detail-item a, .contact-detail-item p {
  font-size: 0.95rem;
  color: var(--norr-black);
}
.contact-detail-item a:hover { color: var(--norr-teal); }
.contact-form-wrap {
  background: var(--norr-off);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--norr-black);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--norr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--norr-white);
  color: var(--norr-black);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--norr-teal); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--norr-black);
  color: var(--norr-white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  border-left: 3px solid var(--norr-teal);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .lifestyle-grid { grid-template-rows: 220px 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Mobile nav dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--norr-white);
    padding: 8px 0 24px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  /* All nav links */
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    color: var(--norr-black) !important;
    padding: 16px 24px;
    border-bottom: 1px solid var(--norr-border);
    font-size: 1rem;
  }
  .nav-links a:hover { background: var(--norr-off); color: var(--norr-teal) !important; }

  /* Buy Now CTA button */
  .nav-links .nav-cta {
    display: block;
    margin: 16px 24px 0;
    padding: 14px 24px;
    text-align: center;
    background: var(--norr-teal) !important;
    color: var(--norr-white) !important;
    border-radius: var(--radius);
    border-bottom: none !important;
  }

  /* Language toggle — sits cleanly at bottom */
  .nav-links li:last-child {
    padding: 16px 24px 0;
    border-bottom: none;
  }
  .nav-links li:last-child .lang-toggle {
    display: flex;
    width: 100%;
    background: var(--norr-off);
    border-radius: 4px;
    padding: 4px;
  }
  .nav-links li:last-child .lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
  }

  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-actions { flex-direction: column; width: fit-content; }
  .hero-scroll { display: none; }
  .product-grid, .shop-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { min-height: 300px; }
  .why-content { padding: 48px 28px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lifestyle-card.tall { grid-row: auto; }
  .lifestyle-card { height: 240px; }
  .bundle-inner, .bundle-offer-content { grid-template-columns: 1fr; gap: 32px; }
  .shop-bundle { grid-template-columns: 1fr; padding: 40px 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-story-inner, .contact-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .email-form .btn { border-radius: 0 0 var(--radius) var(--radius); }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-title { font-size: 2.2rem; }
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3px;
  margin-left: 8px;
}
.nav.scrolled .lang-toggle {
  background: rgba(0,0,0,0.07);
}
.lang-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav.scrolled .lang-btn {
  color: var(--norr-grey);
}
.lang-btn.active {
  background: var(--norr-teal);
  color: var(--norr-white) !important;
}
.lang-btn:hover:not(.active) {
  color: var(--norr-white);
  background: rgba(255,255,255,0.1);
}
.nav.scrolled .lang-btn:hover:not(.active) {
  color: var(--norr-black);
  background: rgba(0,0,0,0.06);
}
