﻿/* =====================================================
   ALBANIAN QUAIL FARMS — AQF Global Stylesheet
   Design System: Dark Luxury × Warm Gold
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,600&display=swap');

/* ── RESET & ROOT ────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-bg: #0d0d0d;
  --clr-bg2: #121212;
  --clr-bg3: #1a1a1a;
  --clr-surface: #1e1e1e;
  --clr-surface2: #252525;
  --clr-border: rgba(212, 160, 23, 0.18);
  --clr-gold: #D4A017;
  --clr-gold-light: #F5C842;
  --clr-gold-dark: #B8860B;
  --clr-gold-pale: rgba(212, 160, 23, 0.12);
  --clr-text: #f0ece0;
  --clr-text2: #c8c0a8;
  --clr-text3: #8a8070;
  --clr-accent: #4a7c4e;
  /* earthy green */
  --clr-accent2: #6aaa6f;
  --clr-white: #fff;
  --clr-danger: #e05252;
  --clr-success: #52c878;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;

  --fs-xs: 0.72rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;
  --fs-5xl: 5.5rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 30px;
  --radius-pill: 9999px;

  --shadow-gold: 0 0 28px rgba(212, 160, 23, 0.22);
  --shadow-card: 0 6px 40px rgba(0, 0, 0, 0.55);
  --shadow-nav: 0 2px 40px rgba(0, 0, 0, 0.7);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--clr-gold-light);
}

ul {
  list-style: none;
}

section {
  padding: 6rem 0;
}

/* ── UTILITY CLASSES ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--clr-gold);
}

.text-gold-light {
  color: var(--clr-gold-light);
}

.text-accent {
  color: var(--clr-accent2);
}

.text-muted {
  color: var(--clr-text3);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.font-serif {
  font-family: var(--ff-serif);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold-light));
  border-radius: var(--radius-pill);
  margin: 1.25rem auto;
}

.divider--left {
  margin: 1.25rem 0;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
  color: #0d0d0d;
}

.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
}

.btn--outline:hover {
  background: var(--clr-gold-pale);
  transform: translateY(-2px);
  color: var(--clr-gold-light);
}

.btn--green {
  background: linear-gradient(135deg, #3a6b3e, var(--clr-accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(74, 124, 78, 0.35);
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 124, 78, 0.5);
  color: #fff;
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: var(--fs-base);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-xs);
}

/* ── NAVIGATION ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
  background: rgba(13, 13, 13, 0);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid var(--clr-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 74px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--clr-text2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--clr-gold);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__links a.active {
  color: var(--clr-gold);
}

.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 1rem;
}

/* Mobile nav toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  color: var(--clr-text2);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}

.nav__mobile a:hover {
  color: var(--clr-gold);
}

/* ── SECTION HEADINGS ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.section-title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text2);
  line-height: 1.8;
  max-width: 660px;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(13, 13, 13, 0.7) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  margin-bottom: 1.5rem;
  background: var(--clr-gold-pale);
  border: 1px solid var(--clr-border);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
}

.hero__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--clr-gold);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--clr-white);
}

.hero__title span {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--fs-md);
  color: var(--clr-text2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text3);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '↓';
  font-size: 1.2rem;
  color: var(--clr-gold);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 2.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--clr-text3);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

/* ── PRODUCT CARDS ───────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border-color: rgba(212, 160, 23, 0.4);
}

.product-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__img-wrap {
  overflow: hidden;
  position: relative;
}

.product-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  color: #0d0d0d;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  z-index: 2;
}

.product-card__body {
  padding: 2rem;
}

.product-card__category {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  margin-bottom: 0.6rem;
}

.product-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--clr-border);
  padding-top: 1.25rem;
}

/* ── FEATURE/BENEFIT GRID ─────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  margin-bottom: 0.6rem;
  color: var(--clr-text);
}

.feature-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text2);
  line-height: 1.7;
}

/* ── ARTICLE CONTENT ─────────────────────────────── */
.article-content {
  max-width: 820px;
  margin: 0 auto;
}

.article-content h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  color: var(--clr-text);
  margin: 2.5rem 0 1rem;
  border-left: 4px solid var(--clr-gold);
  padding-left: 1.25rem;
}

.article-content h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  color: var(--clr-gold-light);
  margin: 2rem 0 0.75rem;
}

.article-content p {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--clr-text2);
  margin-bottom: 1.35rem;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.75rem 1.5rem;
  list-style: disc;
}

.article-content li {
  font-size: var(--fs-md);
  color: var(--clr-text2);
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 4px solid var(--clr-gold);
  margin: 2rem 0;
  padding: 1.25rem 2rem;
  background: var(--clr-gold-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--clr-gold-light);
}

.article-content .callout {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.article-content th {
  background: var(--clr-surface2);
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  padding: 0.85rem 1.25rem;
  text-align: left;
  border: 1px solid var(--clr-border);
}

.article-content td {
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
  color: var(--clr-text2);
}

.article-content tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* ── CONTACT / ORDER FORM ────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text2);
  letter-spacing: 0.03em;
}

.form-group .required {
  color: var(--clr-gold);
}

.form-control {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-control::placeholder {
  color: var(--clr-text3);
}

select.form-control option {
  background: var(--clr-bg3);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ── INFO BOXES ──────────────────────────────────── */
.info-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}

.info-box--gold {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.12), rgba(245, 200, 66, 0.06));
  border-color: rgba(212, 160, 23, 0.35);
}

/* ── TWO-COLUMN LAYOUT ────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split--reverse .split__img {
  order: -1;
}

.split__img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-card__stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--clr-text2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: #0d0d0d;
}

.testimonial-card__name {
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--clr-text3);
}

/* ── CTA SECTION ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.14) 0%, rgba(13, 13, 13, 0) 60%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 6rem 0;
  text-align: center;
}

.cta-section .section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

/* ── PAGE HERO (interior pages) ───────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--clr-bg3) 0%, var(--clr-bg) 100%);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
}

.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-text);
  position: relative;
}

.page-hero__title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text2);
  line-height: 1.8;
  max-width: 680px;
  margin: 1.25rem auto 0;
  position: relative;
}

/* ── ACCORDION ────────────────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item.open {
  border-color: rgba(212, 160, 23, 0.4);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  text-align: left;
  transition: var(--transition);
}

.accordion-trigger:hover {
  color: var(--clr-gold);
}

.accordion-trigger svg {
  color: var(--clr-gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.75rem;
  color: var(--clr-text2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem;
}

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--clr-text3);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--clr-text3);
}

.breadcrumb a:hover {
  color: var(--clr-gold);
}

.breadcrumb span {
  color: var(--clr-gold);
}

/* ── BLOG CARDS ───────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212, 160, 23, 0.35);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.75rem;
}

.blog-card__tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card__title a {
  color: var(--clr-text);
}

.blog-card__title a:hover {
  color: var(--clr-gold);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-text2);
  line-height: 1.7;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
  font-size: var(--fs-xs);
  color: var(--clr-text3);
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--clr-bg3);
  border-top: 1px solid var(--clr-border);
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand p {
  font-size: var(--fs-sm);
  color: var(--clr-text3);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 300px;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--clr-gold-pale);
  border-color: var(--clr-gold);
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: var(--fs-sm);
  color: var(--clr-text3);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--clr-gold);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: var(--fs-sm);
  color: var(--clr-text3);
}

.footer__contact-item span:first-child {
  color: var(--clr-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Lucide SVG icons inside footer/contact items */
.footer__contact-item .icon-contact,
.contact-info-item .icon-contact {
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__social-link svg,
.footer__social-link .social-icon {
  width: 18px;
  height: 18px;
  stroke: var(--clr-text2);
  stroke-width: 1.8;
  transition: var(--transition);
}

.footer__social-link:hover svg,
.footer__social-link:hover .social-icon {
  stroke: var(--clr-gold);
}

/* Nav hamburger Lucide line icons */
.nav__hamburger svg {
  stroke: var(--clr-gold);
  width: 24px;
  height: 24px;
}

/* Inline icon in text (e.g. button icons) */
.btn i[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  margin-right: 0.4rem;
  flex-shrink: 0;
}

/* Order page check-circle icons */
.icon-check-list .icon-contact {
  color: var(--clr-gold);
}

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-text3);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: var(--fs-xs);
  color: var(--clr-text3);
}

.footer__bottom-links a:hover {
  color: var(--clr-gold);
}

/* ── CERTIFICATIONS / BADGES ─────────────────────── */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--clr-text2);
  letter-spacing: 0.05em;
}

.cert-badge span {
  color: var(--clr-gold);
  font-size: 1rem;
}

/* ── CUSTOM ANIMATIONS ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* staggered children */
.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.0s;
}

.stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

.stagger.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

/* ── GOLD SEPARATOR ──────────────────────────────── */
.gold-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0.5;
  margin: 2rem 0;
}

/* ── NOTIFICATION TOAST ──────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--clr-surface);
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition);
  max-width: 380px;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast__icon {
  font-size: 1.5rem;
}

.toast__text {
  font-size: var(--fs-sm);
  color: var(--clr-text2);
}

.toast__title {
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  font-size: var(--fs-base);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST COMPLETE OVERHAUL
   ═══════════════════════════════════════════════════ */

/* ── 1024px — TABLET LANDSCAPE ─────────────────────── */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split--reverse .split__img {
    order: 0;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Order & contact 2-col → 1-col */
  .order-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
  }

  /* Page hero padding */
  .page-hero {
    padding: 8rem 0 4rem;
  }

  /* Product hero split (products.html) */
  .product-hero-split {
    grid-template-columns: 1fr;
  }

  .product-hero-card {
    min-height: 420px;
  }

  /* Process steps – allow wrapping */
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Timeline */
  .timeline::before {
    left: 22px;
  }

  .timeline-item__dot {
    width: 44px;
    height: 44px;
    font-size: var(--fs-xs);
  }
}

/* ── 768px — TABLET PORTRAIT / LARGE MOBILE ─────────── */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* NAV */
  .nav {
    padding: 0 1.25rem;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    height: 64px;
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__mobile {
    top: 64px;
    padding: 1.5rem;
    gap: 0;
  }

  .nav__mobile a {
    padding: 1rem 0;
    font-size: var(--fs-base);
    gap: 0;
  }

  .nav__mobile .btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* HERO */
  .hero {
    min-height: 90vh;
    padding: 0 0 4rem;
  }

  .hero .container {
    padding-top: 7rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__description {
    font-size: var(--fs-base);
  }

  .hero__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.9rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  /* STATS */
  .stats-bar {
    padding: 1.75rem 0;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat__number {
    font-size: var(--fs-2xl);
  }

  /* SECTION HEADINGS */
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .section-subtitle {
    font-size: var(--fs-base);
  }

  /* PAGE HERO */
  .page-hero {
    padding: 7rem 0 3rem;
  }

  .page-hero__title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .page-hero__subtitle {
    font-size: var(--fs-sm);
  }

  /* SPLIT LAYOUTS */
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split__img {
    order: -1;
  }

  .split__img img {
    max-height: 300px;
    object-fit: cover;
  }

  /* PRODUCTS */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card__img {
    height: 220px;
  }

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card:hover {
    transform: none;
  }

  /* disable on touch */

  /* WHY GRID (homepage) */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-item {
    padding: 1.25rem 1rem;
  }

  /* PROCESS STEPS */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step__num {
    width: 48px;
    height: 48px;
    font-size: var(--fs-lg);
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* BLOG */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card__img {
    height: 180px;
  }

  /* FORMS */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .form-group--full {
    grid-column: 1;
  }

  .form-control {
    font-size: 16px;
  }

  /* prevents iOS zoom */

  /* ORDER / CONTACT LAYOUTS */
  .order-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
    margin-top: 2rem;
  }

  /* INFO BOX */
  .info-box {
    padding: 1.5rem;
  }

  /* CTA */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section .btn {
    width: 100%;
    justify-content: center;
    max-width: 360px;
    margin: 0 auto;
  }

  .cta-section div[style*="display:flex"] {
    flex-direction: column;
    align-items: center;
  }

  /* TIMELINE */
  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .timeline-item__dot {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  /* TEAM GRID */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* VALUES GRID */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* PACKAGING GRID */
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* PRODUCT HERO SPLIT (products.html) */
  .product-hero-split {
    grid-template-columns: 1fr;
  }

  .product-hero-card {
    min-height: 360px;
  }

  .product-hero-card__body {
    padding: 1.75rem;
  }

  /* TABLES — horizontally scrollable */
  .article-content table,
  .comparison-table,
  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }

  .article-content th,
  .article-content td {
    white-space: normal;
    min-width: 120px;
  }

  /* ACCORDION */
  .accordion-trigger {
    font-size: var(--fs-base);
    padding: 1rem 1.25rem;
  }

  /* FOOTER */
  .footer {
    padding: 3.5rem 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer__brand p {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0;
    gap: 0.75rem;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* MAP */
  .map-embed {
    height: 280px;
  }

  /* TOAST */
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  /* NEWSLETTER FORM */
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .newsletter-form input {
    min-width: 0;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  /* CERT BADGES wrap nicely */
  .cert-badges {
    gap: 0.5rem;
  }

  .cert-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
  }
}

/* ── 480px — SMALL PHONES ───────────────────────────── */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }

  /* HERO */
  .hero {
    min-height: 85vh;
  }

  .hero__title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero__eyebrow {
    display: none;
  }

  /* too wide on tiny screens */

  /* STATS — 2 col tight */
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat__number {
    font-size: var(--fs-xl);
  }

  .stat__label {
    font-size: 0.65rem;
  }

  /* WHY GRID → 1 col on tiny phones */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* PROCESS → 1 col */
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: row;
    gap: 1.25rem;
    text-align: left;
    align-items: flex-start;
  }

  .process-step__num {
    flex-shrink: 0;
  }

  /* PRODUCTS */
  .product-card__body {
    padding: 1.5rem;
  }

  .product-card__footer {
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-card__footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* TEAM → 1 col */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* PACKAGING → 1 col */
  .packaging-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 1.5rem;
  }

  /* BLOG */
  .blog-card__body {
    padding: 1.25rem;
  }

  /* FOOTER bottom links: stack */
  .footer__bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* ACCORDION body text */
  .accordion-item.open .accordion-body {
    max-height: 600px;
  }

  /* ARTICLE */
  .article-content h2 {
    font-size: var(--fs-xl);
  }

  .article-content h3 {
    font-size: var(--fs-lg);
  }

  .article-content blockquote {
    padding: 1rem 1.25rem;
    font-size: var(--fs-base);
  }

  .article-content .callout {
    padding: 1.25rem;
  }

  /* BUTTONS full-width in HERO */
  .btn--lg {
    padding: 1rem 1.75rem;
    font-size: var(--fs-sm);
  }

  /* PAGE HERO */
  .page-hero {
    padding: 6.5rem 0 2.5rem;
  }

  /* CONTACT cards */
  .contact-info-card {
    padding: 1.5rem;
  }

  /* PRODUCT HERO CARDS (products.html) */
  .product-hero-card {
    min-height: 300px;
  }

  /* STEP BADGE (order.html) */
  .step-badge {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  /* TOAST */
  .toast {
    font-size: var(--fs-xs);
  }
}

/* ── TOUCH DEVICE ENHANCEMENTS ───────────────────────── */
@media (hover: none) and (pointer: coarse) {

  /* Remove hover lifts on mobile (they don't release cleanly on touch) */
  .product-card:hover,
  .feature-card:hover,
  .why-item:hover,
  .blog-card:hover,
  .team-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Make tap targets generous */
  .btn {
    min-height: 48px;
  }

  .accordion-trigger {
    min-height: 52px;
  }

  .nav__mobile a {
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .footer__links a {
    padding: 0.35rem 0;
    display: inline-block;
  }
}

/* ── PRINT STYLES ────────────────────────────────────── */
@media print {

  .nav,
  .nav__mobile,
  .hero__scroll,
  .toast,
  .footer__socials,
  .cta-section {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
  }

  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}
/* ── BLOG FEATURED ARTICLE GRID ─────────────────────── */
.featured-article-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 768px) {
  .featured-article-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-article-grid > img {
    height: 240px;
    object-fit: cover;
    width: 100%;
  }
  .featured-article-grid > div {
    padding: 1.75rem !important;
  }
}