/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=DM+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #1E3A5F;
  --navy-light: #264b7a;
  --teal: #0A9396;
  --orange: #E85D04;
  --charcoal: #2b2d30;
  --background: #f8f9fa;
  --foreground: #2b2d30;
  --card: #ffffff;
  --muted: #eef0f2;
  --muted-fg: #6b7280;
  --border: #e2e5e9;
  --radius: 0.5rem;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-editorial: 'Playfair Display', serif;
  --font-dm: 'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Layout Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.section-py { padding: 6rem 0; }
.section-py-sm { padding: 4rem 0; }
.text-balance { text-wrap: balance; }

/* ── Typography ── */
.label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); font-family: var(--font-heading);
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 9999;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1280px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-text {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem;
  color: #fff; letter-spacing: 0.05em;
}
.logo-text span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.2s; letter-spacing: 0.03em;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.mobile-menu-btn {
  display: none; color: #fff; padding: 0.25rem;
}
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-nav {
  display: none; flex-direction: column; gap: 0.75rem;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--navy);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.mobile-nav a:hover { color: #fff; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: #fff; }
.footer-inner { padding: 3.5rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  justify-content: space-between;
}
.footer-brand { max-width: 20rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.5); margin-top: 1rem; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; padding: 1.25rem 1.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.logo-text-footer {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem;
  color: #fff; letter-spacing: 0.05em;
}
.logo-text-footer span { color: var(--teal); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: #fff;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; transition: background 0.2s;
  font-family: var(--font-heading);
}
.btn-primary:hover { background: #d45200; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; transition: all 0.2s;
  font-family: var(--font-heading);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* ── HERO SECTION ── */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(30,58,95,0.72); }
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem;
}
.hero-content .label { color: var(--teal); margin-bottom: 1rem; display: block; }
.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
}
.hero-content p {
  margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.7;
  color: rgba(255,255,255,0.7); max-width: 40rem; margin-left: auto; margin-right: auto;
  margin-top: 1.5rem;
}
.hero-buttons {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 5rem 1.5rem; text-align: center; }
.page-hero .label { display: block; margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700;
  color: #fff;
}
.page-hero p { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.6); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ── REVIEWS SECTION ── */
.reviews-section { background: var(--background); padding: 5rem 0 6rem; }
.reviews-section h2 {
  text-align: center; font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; color: var(--charcoal);
}
.carousel-wrapper { position: relative; margin-top: 3.5rem; overflow: hidden; }
.carousel-track {
  display: flex; gap: 1.5rem; transition: transform 0.4s ease;
  padding: 3rem 0 1rem;
}
.review-card {
  flex: 0 0 calc(40% - 0.75rem);
  min-width: 280px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 3.5rem 1.5rem 2rem;
  text-align: center; position: relative; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.review-avatar-wrap {
  position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%);
}
.review-avatar {
  width: 5rem; height: 5rem; border-radius: 50%;
  border: 4px solid var(--card); box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  object-fit: cover; background: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); }
.stars { display: flex; justify-content: center; gap: 0.2rem; margin-top: 0.75rem; }
.star { font-size: 1.1rem; color: var(--orange); }
.star.empty { color: var(--muted); }
.review-card p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-fg); }
.review-card .reviewer { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.carousel-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 0.5rem; margin-top: 2rem;
}
.carousel-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card);
  color: var(--charcoal); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.carousel-btn:hover { background: var(--muted); }
.carousel-btn svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; gap: 0.5rem; }
.dot {
  height: 0.625rem; border-radius: 9999px; background: var(--border);
  transition: all 0.3s; cursor: pointer; border: none;
}
.dot.active { width: 2rem; background: var(--navy); }
.dot:not(.active) { width: 0.625rem; }

/* ── PRODUCTS SECTION ── */
.products-section { padding: 6rem 0; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
}
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--charcoal); }
.view-all {
  font-size: 0.875rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 0.375rem; transition: color 0.2s;
}
.view-all:hover { color: var(--orange); }
.products-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.product-card {
  background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.product-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--muted);
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-fg); font-size: 0.75rem; font-weight: 500;
  background: linear-gradient(135deg, #dde3ea, #eef0f2);
}
.product-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-info-row { display: flex; justify-content: space-between; align-items: center; }
.product-info h3 { font-size: 0.9375rem; font-weight: 600; color: var(--charcoal); }
.product-price { font-size: 0.875rem; font-weight: 700; color: var(--orange); }
.product-tagline { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.5; flex: 1; }
.product-cta {
  margin-top: 1rem; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy);
  display: flex; align-items: center; gap: 0.25rem; transition: color 0.2s;
}
.product-card:hover .product-cta { color: var(--orange); }

/* ── MISSION SECTION ── */
.mission-section { padding: 6rem 0; }
.two-col {
  display: grid; gap: 3.5rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.img-rounded {
  aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden;
  background: var(--muted); position: relative;
}
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c8d4e0, #dde3ea);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-fg); font-size: 0.8rem;
}
.mission-text .label { display: block; margin-bottom: 0.75rem; }
.mission-text h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--charcoal); }
.mission-text p { margin-top: 1.5rem; line-height: 1.75; color: var(--foreground); }
.stats-row { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat { border-left: 2px solid var(--orange); padding-left: 1rem; }
.stat-value { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 0.7rem; color: var(--muted-fg); margin-top: 0.25rem; }

/* ── EMAIL SIGNUP SECTION ── */
.signup-section {
  position: relative; background: var(--navy);
  padding: 6rem 0; overflow: hidden;
}
.signup-decor-1 {
  position: absolute; top: -5rem; left: -5rem;
  width: 18rem; height: 18rem; border-radius: 50%;
  background: rgba(10,147,150,0.1); pointer-events: none;
}
.signup-decor-2 {
  position: absolute; bottom: -6rem; right: -6rem;
  width: 24rem; height: 24rem; border-radius: 50%;
  background: rgba(232,93,4,0.1); pointer-events: none;
}
.signup-content { position: relative; z-index: 1; text-align: center; max-width: 40rem; margin: 0 auto; padding: 0 1.5rem; }
.signup-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: rgba(232,93,4,0.15); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.5rem;
}
.signup-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.signup-content .label { display: block; margin-bottom: 0.75rem; }
.signup-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff; }
.signup-content > p { margin-top: 1rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.signup-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.input-row { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .input-row { flex-direction: row; } }
.email-input-wrap { position: relative; flex: 1; }
.email-icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--muted-fg);
}
.email-icon svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.email-input {
  width: 100%; height: 3rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); padding: 0 1rem 0 3rem;
  font-size: 0.875rem; color: #fff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.email-input::placeholder { color: rgba(255,255,255,0.5); }
.email-input:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(10,147,150,0.4); }
.submit-btn {
  height: 3rem; padding: 0 1.5rem;
  background: var(--orange); color: #fff; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; display: flex; align-items: center;
  gap: 0.5rem; white-space: nowrap; transition: background 0.2s;
  font-family: var(--font-heading);
}
.submit-btn:hover { background: #d45200; }
.form-error { font-size: 0.875rem; color: #ff6b6b; text-align: center; }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-align: center; }
.signup-success {
  display: none; flex-direction: column; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1); text-align: center;
}
.success-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: rgba(10,147,150,0.2); display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.signup-success h3 { font-size: 1.25rem; font-weight: 700; color: #fff; }
.signup-success p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.trust-badges {
  margin-top: 3rem; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 2rem;
}
.trust-badge { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.trust-badge svg { width: 0.875rem; height: 0.875rem; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── FEATURES SECTION ── */
.features-section { background: var(--navy); padding: 5rem 0; }
.features-section .section-title { text-align: center; margin-bottom: 3.5rem; }
.features-section .section-title h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff; }
.features-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.feature-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(38,75,122,0.5); border-radius: 0.75rem; padding: 2rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(10,147,150,0.3); }
.feature-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.5rem;
  background: rgba(10,147,150,0.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.feature-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

/* ── ABOUT PAGE ── */
.values-section { background: var(--muted); padding: 6rem 0; }
.values-section h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: var(--charcoal); text-align: center; margin-top: 0.75rem; }
.values-section .label { text-align: center; display: block; }
.values-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin-top: 3.5rem; }
.value-card {
  background: var(--card); border-radius: 0.75rem; padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid var(--border);
}
.value-card h3 { font-size: 0.9375rem; font-weight: 600; color: var(--charcoal); margin-top: 1.25rem; }
.value-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-fg); }

/* ── PRODUCTS PAGE ── */
.products-list { padding: 6rem 0; }
.product-detail {
  display: grid; gap: 3.5rem; align-items: center;
  grid-template-columns: 1fr; margin-bottom: 6rem;
}
@media (min-width: 1024px) { .product-detail { grid-template-columns: 1fr 1fr; } }
.product-detail:last-child { margin-bottom: 0; }
.product-detail.reverse-layout { }
@media (min-width: 1024px) { .product-detail.reverse-layout .product-detail-img { order: 2; } .product-detail.reverse-layout .product-detail-text { order: 1; } }
.product-detail-img { aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden; background: var(--muted); box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-text .price-tag { font-size: 0.875rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; }
.product-detail-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--charcoal); margin-top: 0.5rem; }
.product-detail-text .tagline { color: var(--teal); font-weight: 500; margin-top: 0.25rem; }
.product-detail-text > p { margin-top: 1.25rem; line-height: 1.75; color: var(--foreground); }
.feature-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--foreground); }
.check-icon svg { width: 1rem; height: 1rem; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; margin-top: 0.125rem; flex-shrink: 0; }

/* ── BLOG PAGE ── */
.blog-page { min-height: 100vh; background: #0D0D1A; }
.blog-header { padding: 5rem 1.5rem 3rem; max-width: 1280px; margin: 0 auto; }
.blog-header .blog-label { font-family: var(--font-dm); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); display: block; margin-bottom: 0.75rem; }
.blog-header h1 { font-family: var(--font-editorial); font-size: clamp(2rem, 6vw, 4rem); font-weight: 700; color: #fff; line-height: 1.15; }
.blog-grid { padding: 0 1.5rem 2.5rem; max-width: 1280px; margin: 0 auto; }
.blog-featured {
  position: relative; border-radius: 0.75rem; overflow: hidden;
  margin-bottom: 2rem; display: block;
}
.blog-featured-img {
  aspect-ratio: 21/9; background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative; overflow: hidden;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.05); }
.blog-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0D0D1A 0%, rgba(13,13,26,0.4) 50%, transparent 100%);
}
.blog-card-text {
  position: absolute; bottom: 0; left: 0; padding: 1.5rem 2.5rem;
}
.blog-category { font-family: var(--font-dm); font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); display: block; margin-bottom: 0.5rem; }
.blog-card-text h2 { font-family: var(--font-editorial); font-size: clamp(1.25rem, 3vw, 2.25rem); font-weight: 700; color: #fff; line-height: 1.2; max-width: 40rem; }
.blog-card-text p { font-family: var(--font-dm); font-size: 0.875rem; color: rgba(232,232,240,0.7); margin-top: 0.5rem; max-width: 36rem; line-height: 1.6; }
.blog-two-col { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-two-col { grid-template-columns: 1fr 1fr; } }
.blog-small-card {
  position: relative; border-radius: 0.75rem; overflow: hidden; display: block;
}
.blog-small-img {
  aspect-ratio: 16/10; background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative; overflow: hidden;
}
.blog-small-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-small-card:hover .blog-small-img img { transform: scale(1.05); }
.blog-divider { height: 1px; background: rgba(255,255,255,0.1); max-width: 1280px; margin: 4rem auto; }
.blog-posts-full { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem 6rem; }
.blog-post { margin-bottom: 6rem; }
.blog-post:last-child { margin-bottom: 0; }
.blog-post-hero { position: relative; border-radius: 0.75rem; overflow: hidden; margin-bottom: 3rem; }
.blog-post-hero-img { aspect-ratio: 21/9; position: relative; overflow: hidden; }
.blog-post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-hero-text { position: absolute; bottom: 0; left: 0; padding: 2rem 3.5rem; }
.blog-post-body { max-width: 42rem; margin: 0 auto; }
.blog-post-body h3 { font-family: var(--font-editorial); font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; color: #fff; margin: 3.5rem 0 1.25rem; }
.blog-post-body p { font-family: var(--font-dm); font-size: 1rem; line-height: 1.85; color: rgba(232,232,240,0.8); margin-bottom: 1.5rem; }
.blog-post-body blockquote { border-left: 4px solid var(--orange); padding: 0.5rem 0 0.5rem 2rem; margin: 2.5rem 0; }
.blog-post-body blockquote p { font-family: var(--font-editorial); font-size: 1.25rem; font-style: italic; color: rgba(255,255,255,0.9); }
.blog-post-inline-img { margin: 2.5rem 0; border-radius: 0.5rem; overflow: hidden; }
.blog-post-inline-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ── LEGAL PAGES ── */
.legal-section { padding: 5rem 0; }
.legal-content { display: flex; flex-direction: column; gap: 2.5rem; line-height: 1.75; color: var(--foreground); }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--charcoal); }
.legal-content p { margin-top: 0.75rem; }

/* ── SVG Icons (inline) ── */
svg { display: inline-block; vertical-align: middle; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .review-card { flex: 0 0 80%; }
  .blog-card-text { padding: 1rem 1.25rem; }
  .blog-post-hero-text { padding: 1rem 1.5rem; }
}
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
