:root {
  --charcoal: #1A1A1A;
  --gold: #C5A059;
  --white: #ffffff;
  --silver: #A0A0A0;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-padding-top: 100px;
}

body {
  background: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================
   HEADER
===================== */
.header {
  position: fixed;
  width: 100%;
  background: rgba(26, 26, 26, 0.97);
  padding: 18px 0;
  border-bottom: 1px solid #333;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  letter-spacing: 6px;
  font-weight: 300;
  font-size: 22px;
}

.logo span {
  color: var(--gold);
}

.logo p {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 4px 8px;
}

/* =====================
   BUTTONS
===================== */
.btn-outline {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  color: var(--gold) !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
}

.btn-gold {
  background: var(--gold);
  padding: 12px 22px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  text-align: center;
  transition: opacity 0.3s;
}

.btn-gold:hover {
  opacity: 0.85;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.85), rgba(26,26,26,0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  padding: 10px 24px 40px;
}

.hero-logo h1 {
  letter-spacing: 8px;
  font-weight: 300;
  font-size: 36px;
}

.hero-logo span {
  color: var(--gold);
}

.hero-logo p {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-main-title {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 auto 16px;
  max-width: 820px;
}

.hero-text {
  color: #ddd;
  font-size: 15px;
  line-height: 1.8;
  max-width: 720px;
  margin: 16px auto 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.hero-buttons .btn-outline,
.hero-buttons .btn-gold {
  min-width: 200px;
  padding: 14px 24px;
}

/* =====================
   WHY LIGNA
===================== */
.why-ligna {
  padding: 100px 0;
  border-top: 1px solid #333;
}

.why-title {
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
}

.why-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #ccc;
  line-height: 1.8;
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-item {
  border: 1px solid #333;
  padding: 30px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
}

.feature-item:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.feature-item h3 {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.feature-item p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

/* =====================
   LIFESTYLE IMAGE SECTION
===================== */
.lifestyle-section {
  border-top: 1px solid #2a2a2a;
}

.lifestyle-image-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

/* Real image — swap placeholder for this */

.lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Caption overlay — sits on top of image */
.lifestyle-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 5%;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.lifestyle-caption-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.lifestyle-caption-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  max-width: 500px;
}

/* =====================
   PRODUCTS — UPGRADED
===================== */
.products {
  padding: 100px 0;
  border-top: 1px solid #333;
}

.products-title {
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 10px;
}

.products-intro {
  font-size: 15px;
  color: #777;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid #2a2a2a;
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.product-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.04);
}

.product-card-icon {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
}

.product-card h3 {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 600;
}

.product-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 4px;
}

.product-card span {
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 1px;
}

.product-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: #333;
  font-size: 13px;
  transition: color 0.3s, transform 0.3s;
}

.product-card:hover .product-card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* =====================
   SERIES STRIP
===================== */
.series-strip {
  background: #0f0f0f;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 30px 0;
}

.series-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.series-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 50px;
  gap: 4px;
}

.series-strip-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.series-strip-material {
  font-size: 11px;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
}

.series-strip-divider {
  width: 1px;
  height: 36px;
  background: #2a2a2a;
  flex-shrink: 0;
}

.series-strip-cta {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 8px 50px;
  transition: opacity 0.3s;
}

.series-strip-cta:hover {
  opacity: 0.75;
}

/* =====================
   HOME CTA BAND
===================== */
.home-cta-band {
  padding: 90px 0;
  border-top: 1px solid #2a2a2a;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 60%, #181410 100%);
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.home-cta-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.home-cta-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 16px;
}

.home-cta-body {
  font-size: 15px;
  color: #aaa;
  line-height: 1.8;
  max-width: 480px;
}

.home-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.home-cta-buttons .btn-gold,
.home-cta-buttons .btn-outline {
  min-width: 260px;
  padding: 14px 24px;
  text-align: center;
}

/* =====================
   FOOTER — DESKTOP
===================== */
.footer {
  background: #0f0f0f;
  padding: 80px 5%;
  border-top: 1px solid #333;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tag {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-desc {
  color: #aaa;
  max-width: 340px;
  line-height: 1.7;
  font-size: 14px;
}

.footer-nav h3,
.footer-contact h3 {
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: #aaa;
  margin-bottom: 14px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  color: #777;
  font-size: 13px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   TABLET — 768px to 1024px
===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero {
    padding-top: 80px;
  }

  .hero-logo h1 {
    font-size: 30px;
  }

  .hero-main-title {
    font-size: 24px;
  }

  .hero-text {
    font-size: 15px;
  }

  .why-title {
    font-size: 26px;
  }

  .why-text {
    font-size: 15px;
  }

  /* Lifestyle */
  .lifestyle-image-wrap {
    height: 420px;
  }

  .lifestyle-caption-title {
    font-size: 26px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-desc {
    max-width: 100%;
  }

  /* Series strip */
  .series-strip-item {
    padding: 8px 28px;
  }

  .series-strip-cta {
    padding-left: 28px;
  }

  /* CTA band */
  .home-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 36px;
  }

  .home-cta-body {
    max-width: 100%;
  }

  .home-cta-buttons {
    align-items: center;
  }
}

/* =====================
   MOBILE — up to 767px
===================== */
@media (max-width: 767px) {

  html {
    font-size: 15px;
  }

  /* NAV */
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 0;
    display: none;
    border-bottom: 1px solid #333;
  }

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

  .nav-links a {
    font-size: 14px;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* HERO */
  .hero {
    padding-top: 80px;
    min-height: 100vh;
  }

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

  .hero-logo h1 {
    font-size: 26px;
    letter-spacing: 5px;
  }

  .hero-logo p {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .hero-main-title {
    font-size: 18px;
    padding: 0;
    max-width: 100%;
    line-height: 1.45;
  }

  .hero-text {
    font-size: 13px;
    padding: 0;
    margin: 14px auto 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn-outline,
  .hero-buttons .btn-gold {
    width: 100%;
    max-width: 280px;
    min-width: unset;
    padding: 12px 16px;
    font-size: 12px;
  }

  /* WHY LIGNA */
  .why-ligna {
    padding: 60px 0;
  }

  .why-title {
    font-size: 20px;
    padding: 0 10px;
  }

  .why-text {
    font-size: 14px;
    padding: 0 10px;
  }

  /* LIFESTYLE */
  .lifestyle-image-wrap {
    height: 320px;
  }

  .lifestyle-caption {
    padding: 30px 5%;
  }

  .lifestyle-caption-title {
    font-size: 20px;
  }

  .lifestyle-caption .btn-outline {
    font-size: 11px;
    padding: 9px 14px;
  }

  /* PRODUCTS */
  .products {
    padding: 60px 0;
  }

  .products-title {
    font-size: 24px;
  }

  .product-card {
    padding: 28px 20px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  /* SERIES STRIP */
  .series-strip {
    padding: 24px 0;
  }

  .series-strip-inner {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .series-strip-divider {
    width: 40px;
    height: 1px;
    margin: 8px 0;
  }

  .series-strip-item {
    padding: 10px 20px;
  }

  .series-strip-cta {
    padding: 14px 20px 0;
    justify-content: center;
  }

  /* HOME CTA BAND */
  .home-cta-band {
    padding: 60px 0;
  }

  .home-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 32px;
  }

  .home-cta-title {
    font-size: 24px;
  }

  .home-cta-body {
    font-size: 14px;
    max-width: 100%;
  }

  .home-cta-buttons {
    width: 100%;
    align-items: center;
  }

  .home-cta-buttons .btn-gold,
  .home-cta-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
    min-width: unset;
  }

  /* FOOTER — stacked */
  .footer {
    padding: 60px 6%;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-nav,
  .footer-contact {
    width: 100%;
    max-width: 360px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-desc {
    max-width: 100%;
    font-size: 14px;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
  }
}

/* Very short screens */
@media (max-height: 700px) {
  .hero {
    min-height: 700px;
  }
}
/* =====================
   BRAND VIDEO SECTION
===================== */
.brand-video-section {
  border-top: 1px solid #2a2a2a;
}

.brand-video-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 50px 5%;
  gap: 10px;
}

.brand-video-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-video-title {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  max-width: 500px;
}

.brand-video-title span {
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 767px) {
  .brand-video-wrap {
    height: 280px;
  }
  .brand-video-title {
    font-size: 20px;
  }
}