:root {
  --bg: #f1f8f4;
  --ink: #102319;
  --muted: #5f6f66;
  --green: #1d7c39;
  --green-dark: #145828;
  --line: #dbe9df;
  --card: #ffffff;
  --soft: #eef8f1;
  --gold: #f7b731;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  min-height: 88px;
  padding: 0 4%;
  background: #030503;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 44px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.nav a {
  color: #f7fff9;
  text-decoration: none;
}

.article-hero {
  padding: 56px 4% 36px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.dek {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.meta {
  margin-top: 24px;
  color: #6c7b72;
  font-size: 14px;
}

.hero-card {
  min-height: 340px;
  padding: 0;
  border-radius: 8px;
  background: #e8f1ea;
  box-shadow: 0 18px 50px rgba(13, 54, 28, 0.12);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.review-widget {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px rgba(16, 35, 25, 0.12);
}

.rating-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.rating-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 2px;
}

.review-search {
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 999px;
  background: #f3f7f4;
  color: #446053;
  font-weight: 700;
}

.review-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.article-wrap {
  max-width: 1120px;
  margin: 0 auto 72px;
  padding: 0 4%;
  display: grid;
  grid-template-columns: minmax(0, 740px) 300px;
  gap: 56px;
  align-items: start;
}

article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
  box-shadow: 0 14px 42px rgba(13, 54, 28, 0.08);
}

article h2 {
  margin: 38px 0 14px;
  font-size: 30px;
  line-height: 1.25;
}

article h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

article p {
  margin: 0 0 18px;
  color: #34463b;
  font-size: 17px;
}

article ul,
article ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: #34463b;
  font-size: 17px;
}

article li {
  margin: 8px 0;
}

.lead {
  padding-left: 18px;
  border-left: 4px solid var(--green);
  color: #23362b;
  font-size: 18px;
}

.journey {
  counter-reset: journey;
  display: grid;
  gap: 12px;
  margin: 10px 0 28px;
  padding: 0;
  list-style: none;
}

.journey li {
  counter-increment: journey;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f7fbf8;
  border: 1px solid var(--line);
}

.journey li::before {
  content: counter(journey);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.trust-box {
  margin: 34px 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid #d4e8da;
}

.trust-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-image {
  margin: 34px 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #eef5f0;
  box-shadow: 0 12px 34px rgba(13, 54, 28, 0.08);
}

.feature-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.feature-image figcaption {
  padding: 14px 18px;
  color: #52665b;
  font-size: 14px;
  background: #fff;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 34px;
}

.mini-image-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(13, 54, 28, 0.07);
}

.mini-image-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.mini-image-card p {
  margin: 0;
  padding: 14px 16px;
  color: #34463b;
  font-size: 15px;
  line-height: 1.5;
}

.references {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.references h2 {
  margin-top: 0;
}

.references li {
  color: #42554a;
}

.sidebar {
  position: sticky;
  top: 24px;
}

.cta-card {
  padding: 28px;
  border-radius: 8px;
  background: #08210f;
  color: #f7fff9;
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.cta-card p {
  margin: 0 0 22px;
  color: #d9eadf;
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.summary-card,
.related {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.summary-card h2,
.related h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.summary-card ul {
  margin: 0;
  padding-left: 18px;
  color: #42554a;
  font-size: 14px;
}

.related a {
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

footer {
  padding: 36px 4%;
  background: #030503;
  color: #dce8df;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .article-wrap {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  article {
    padding: 30px 22px;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .article-hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 32px;
  }

  .dek {
    font-size: 17px;
  }

  .hero-card {
    min-height: 250px;
    padding: 0;
  }

  .hero-card img {
    min-height: 280px;
  }

  .review-widget {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .rating-line {
    align-items: flex-start;
    flex-direction: column;
  }

  article h2 {
    font-size: 26px;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CSS VARIABLES & RESET --- */
.navbar-container {
  --color-bg: #050505;
  --color-text: #ffffff;
  --color-text-muted: #a3a3a3;
  --color-gold: #d4af37;
  --color-gold-bright: #ffd700;
  --color-gold-dim: rgba(212, 175, 55, 0.5);
  --font-main: "Rajdhani", sans-serif;
  --nav-height: 96px;
  --ease-tech: cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-container {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- NAVBAR CONTAINER --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
  z-index: 1000;
}

.navbar-content {
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  /* Above mobile menu */
  background-color: #000000;
  /* Cover mobile menu sliding out */
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/* Updated to support both SVG and IMG logos */
.logo svg,
.logo img {
  height: 5rem;
  /* Fix height to fit navbar */
  width: auto;
  /* Maintain aspect ratio */
  transition: transform 0.5s var(--ease-tech);
}

.logo:hover svg,
.logo:hover img {
  transform: scale(1.02);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
}

.logo-subtitle {
  color: #737373;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.logo:hover .logo-subtitle {
  color: var(--color-gold);
}

/* --- DESKTOP NAVIGATION --- */
.desktop-nav {
  display: none;
  /* Hidden on mobile */
  gap: 4rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease-out;
  padding: 0.5rem 0;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.3s;
}

/* Hover Interactions */
.nav-link:hover {
  color: #70af69;
}

.nav-link:hover span {
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
}

/* Focus Interaction */
.nav-link:focus-visible {
  outline: 1px solid var(--color-gold-dim);
  outline-offset: 4px;
}

/* Special "Purchase" Item */
.nav-link.special {
  color: white;
  font-weight: 500;
}

.nav-link.special:hover span {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-link.special::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav-link.special:hover::after {
  opacity: 1;
}

/* --- MOBILE MENU TOGGLE (Checkbox Hack) --- */
#menu-toggle {
  display: none;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 30;
}

.menu-btn span {
  display: block;
  height: 1px;
  background-color: white;
  transition: all 0.3s var(--ease-tech);
}

.menu-btn span:nth-child(1) {
  width: 32px;
}

.menu-btn span:nth-child(2) {
  width: 20px;
}

.menu-btn span:nth-child(3) {
  width: 12px;
}

.menu-btn:hover span:nth-child(3) {
  width: 32px;
}

/* Animation when Checked */
#menu-toggle:checked + .menu-btn span:nth-child(1) {
  width: 24px;
  transform: translateY(7px) rotate(-45deg);
  background-color: var(--color-gold);
}

#menu-toggle:checked + .menu-btn span:nth-child(2) {
  opacity: 0;
  width: 0;
}

#menu-toggle:checked + .menu-btn span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(45deg);
  background-color: var(--color-gold);
}

/* --- MOBILE NAVIGATION DROPDOWN --- */
.mobile-nav {
  position: absolute;
  top: 100%;
  /* Directly below header */
  left: 0;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;

  /* Hidden State */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  transition: all 0.5s var(--ease-tech);
  z-index: 10;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}

.mobile-nav a:hover {
  color: var(--color-gold);
  letter-spacing: 0.3em;
}

/* Open State */
#menu-toggle:checked ~ .mobile-nav {
  max-height: 400px;
  /* Allow enough height for content */
  opacity: 1;
  visibility: visible;
  padding: 1.5rem 0;
}

/* Staggered Animation for links */
#menu-toggle:checked ~ .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(1) {
  transition-delay: 0.05s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(2) {
  transition-delay: 0.1s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(3) {
  transition-delay: 0.15s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(4) {
  transition-delay: 0.2s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(5) {
  transition-delay: 0.25s;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}
.tc-brand__img {
  height: 5.3rem;
  width: auto;
  transition: transform 0.5s var(--ease-tech);
}

.blog-image {
  margin: 40px 0;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.blog-image img {
  display: block;
  width: 100%;
  height: auto;

  border-radius: inherit;
}

/* Tablet */
@media (max-width: 768px) {
  .blog-image {
    margin: 32px 0;
    border-radius: 8px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .blog-image {
    margin: 24px 0;
    border-radius: 6px;
  }
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}
