/* ===== Fonts: Self-hosted ===== */
@font-face {
  font-family: 'Freigeist XCon';
  font-weight: 400;
  font-style: normal;
  src: url('fonts/font-Freigeist-XConRegular.woff2') format('woff2');
}

@font-face {
  font-family: 'Freigeist XCon';
  font-weight: 500;
  font-style: normal;
  src: url('fonts/font-Freigeist-XConMedium.woff2') format('woff2');
}

@font-face {
  font-family: 'Lexend Deca';
  font-weight: 300;
  font-style: normal;
  src: url('fonts/font-LexendDeca-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Lexend Deca';
  font-weight: 400;
  font-style: normal;
  src: url('fonts/font-LexendDeca-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lexend Deca';
  font-weight: 500;
  font-style: normal;
  src: url('fonts/font-LexendDeca-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Lexend';
  font-weight: 600;
  font-style: normal;
  src: url('fonts/font-Lexend-SemiBold.woff2') format('woff2');
}

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

:root {
  --cream: #fdf5ef;
  --white: #ffffff;
  --text: #2c2f21;
  --text-light: #5a5d4f;
  --cta: #ba4b1a;
  --cta-hover: #a3410f;
  --accent: #d3841e;
  --border: #e8ddd3;
  --green-dark: #2c2f21;
  --radius: 0.8rem;
  --font-heading: 'Freigeist XCon', Georgia, 'Times New Roman', serif;
  --font-body: 'Lexend Deca', 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  display: block;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.announcement-bar:hover {
  opacity: 0.9;
}

.announcement-bar strong {
  font-weight: 700;
}

/* ===== Navbar ===== */
.navbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.2s;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(44, 47, 33, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cta);
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icons a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.nav-icons a:hover {
  opacity: 0.6;
}

.nav-icons svg {
  width: 18px;
  height: 18px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 47, 33, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 60px 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}

.hero .btn {
  margin-bottom: 20px;
  font-size: 0.9rem;
  padding: 16px 44px;
}

.hero-trust {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* ===== Section Headings ===== */
.trust-strip h2,
.comparison h2,
.products h2,
.media-strip h2,
.benefits h2,
.social-proof h2,
.canadian h2,
.faq h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--white);
  padding: 80px 0;
}

.trust-strip h2 {
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.trust-icon {
  margin-bottom: 20px;
}

.trust-icon img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.trust-comparison {
  font-size: 0.82rem;
  color: var(--cta);
  font-weight: 500;
  margin-bottom: 12px;
}

.trust-card p:last-child {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Comparison Table ===== */
.comparison {
  background: var(--cream);
  padding: 80px 0;
}

.comparison h2 {
  margin-bottom: 8px;
}

.comparison .section-subtitle {
  margin-bottom: 40px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 600px;
}

.comparison-table thead {
  background: var(--green-dark);
  color: var(--white);
}

.comparison-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(253, 245, 239, 0.5);
}

.highlight-col {
  background: rgba(186, 75, 26, 0.04);
}

thead .highlight-col {
  background: rgba(186, 75, 26, 0.2);
}

.check {
  color: #2a8c4a;
  font-weight: 700;
  margin-right: 4px;
}

.cross {
  color: #c0392b;
  font-weight: 700;
  margin-right: 4px;
}

.comparison-cta {
  text-align: center;
}

/* ===== Products ===== */
.products {
  background: var(--white);
  padding: 80px 0;
}

.products h2 {
  margin-bottom: 8px;
}

.products .section-subtitle {
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 47, 33, 0.1);
}

.product-image {
  aspect-ratio: 4/3;
  background: #f0e8df;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 28px 24px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-price {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.product-price strong {
  font-weight: 700;
  color: var(--text);
}

.product-info .btn {
  width: 100%;
  padding: 12px 24px;
}

/* ===== Media Strip ===== */
.media-strip {
  background: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.media-strip h2 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 32px;
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logo {
  transition: opacity 0.2s;
}

.media-logo:hover {
  opacity: 0.8;
}

.media-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ===== Benefits ===== */
.benefits {
  background: var(--white);
  padding: 80px 0;
}

.benefits h2 {
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  text-align: center;
  padding: 32px 24px 36px;
}

.benefit-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.benefits-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Social Proof ===== */
.social-proof {
  background: var(--cream);
  padding: 80px 0;
}

.social-proof h2 {
  margin-bottom: 40px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-logo {
  transition: opacity 0.2s;
}

.trust-logo:hover {
  opacity: 0.8;
}

.trust-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.testimonial-text {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial-text blockquote p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info .author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  display: block;
}

.testimonial-author-info .author-product {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  text-decoration: none;
}

.testimonial-author-info a.author-product:hover {
  color: var(--cta);
}

.testimonial-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .testimonial {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-photo {
    aspect-ratio: 1/1;
    max-height: 400px;
  }
}

/* ===== Canadian Section ===== */
.canadian {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0;
}

.canadian h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.canadian-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.canadian-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--white);
  padding: 80px 0;
}

.faq h2 {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--cta);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--cta);
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .trust-grid,
  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 60vh;
    background-image: url('images/hero.jpg');
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(44, 47, 33, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .media-logos,
  .trust-logos {
    gap: 24px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .trust-strip,
  .comparison,
  .products,
  .benefits,
  .social-proof,
  .canadian,
  .faq {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .hero .btn {
    padding: 14px 36px;
  }
}
