/* ============================================================
   AGASTHIYAR HERBAL PRODUCTS — STYLE SHEET
   Colors: Scarlet #9F1717, Gold #D4AF37, Violet #5B1370,
           Turquoise #00897B, Cream #FFF8E7, Dark #1A0533
   Font: Inter + Cinzel Decorative + Playfair Display
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --color-scarlet: #9F1717;
  --color-scarlet-dark: #7a1010;
  --color-gold: #D4AF37;
  --color-gold-light: #F5E28A;
  --color-violet: #5B1370;
  --color-violet-light: #9B5FBA;
  --color-turquoise: #00897B;
  --color-turquoise-light: #26C6B5;
  --color-dark: #1A0533;
  --color-dark-mid: #2D1B4E;
  --color-cream: #FFF8E7;
  --color-warm-white: #FFFDF5;
  --color-text: #2C1810;
  --color-text-muted: #6B4C3B;
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 8px 32px rgba(26, 5, 51, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-ornate: 'Cinzel Decorative', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-warm-white);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ── Floating Petals ── */
.floating-petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.35;
  animation: floatPetal linear infinite;
  user-select: none;
}

.petal-1 {
  left: 5%;
  animation-duration: 18s;
  animation-delay: 0s;
  top: -40px;
}

.petal-2 {
  left: 20%;
  animation-duration: 22s;
  animation-delay: -5s;
  top: -40px;
}

.petal-3 {
  left: 40%;
  animation-duration: 20s;
  animation-delay: -10s;
  top: -40px;
}

.petal-4 {
  left: 60%;
  animation-duration: 24s;
  animation-delay: -3s;
  top: -40px;
}

.petal-5 {
  left: 78%;
  animation-duration: 19s;
  animation-delay: -8s;
  top: -40px;
}

.petal-6 {
  left: 92%;
  animation-duration: 23s;
  animation-delay: -15s;
  top: -40px;
}

@keyframes floatPetal {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.35;
  }

  90% {
    opacity: 0.35;
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: rgb(159, 23, 23);
  color: #fff;
  box-shadow: 0 4px 18px rgba(159, 23, 23, 0.4);
}

.btn-primary:hover {
  background: var(--color-scarlet-dark);
  box-shadow: 0 6px 24px rgba(159, 23, 23, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 0 0 var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
}

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

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-scarlet), var(--color-gold));
  border-radius: 2px;
  margin-bottom: 24px;
}

.title-underline.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Leaf Forest Divider ── */
.leaf-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  background: transparent;
}

.main-header.scrolled {
  background: rgba(255, 253, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26, 5, 51, 0.12), 0 1px 0 var(--color-gold);
  padding: 10px 0;
}

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

.site-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
  transition: var(--transition);
}

.main-header.scrolled .site-logo {
  height: 46px;
}

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

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.main-header.scrolled .nav-link {
  color: var(--color-dark);
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.18);
  color: var(--color-gold);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgb(159, 23, 23);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
  margin-left: 8px;
  box-shadow: 0 3px 12px rgba(159, 23, 23, 0.4);
}

.nav-cta-btn:hover {
  background: var(--color-scarlet-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(159, 23, 23, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.main-header.scrolled .hamburger span {
  background: var(--color-dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 5, 51, 0.72) 0%,
      rgba(91, 19, 112, 0.55) 35%,
      rgba(0, 137, 123, 0.35) 70%,
      rgba(26, 5, 51, 0.65) 100%);
  z-index: 1;
}

/* Peacock feathers */
.peacock-left,
.peacock-right {
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0.55;
  animation: featherSway 6s ease-in-out infinite alternate;
}

.peacock-left {
  left: 0;
  transform-origin: bottom left;
}

.peacock-right {
  right: 0;
  transform: scaleX(-1);
  transform-origin: bottom right;
}

@keyframes featherSway {
  0% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(4deg);
  }
}

.peacock-right {
  animation-direction: alternate-reverse;
}

/* Ornament lines */
.hero-ornament {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-ornament--top {
  top: 80px;
}

.hero-ornament--bottom {
  bottom: 12px;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 24px 60px;
  max-width: 760px;
}

.hero-greeting {
  font-size: 1.1rem;
  color: var(--color-gold-light);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: var(--font-ornate);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ═══════════════════════════════════════════════
   SUPPORT SECTION
═══════════════════════════════════════════════ */
.support-section {
  position: relative;
  padding: 80px 0 90px;
  background: linear-gradient(160deg, var(--color-cream) 0%, #F5EDFF 60%, #E0F7FA 100%);
  overflow: hidden;
}

.support-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 Q360,60 720,0 Q1080,-60 1440,0 L1440,60 L0,60Z' fill='%23FFF8E7'/%3E%3C/svg%3E") no-repeat center / cover;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.support-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-mandala {
  width: min(260px, 100%);
  height: auto;
  animation: rotateMandala 30s linear infinite;
  filter: drop-shadow(0 8px 24px rgba(91, 19, 112, 0.25));
}

@keyframes rotateMandala {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.support-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.support-desc strong {
  color: var(--color-dark);
}

.support-contact-text {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.support-email {
  color: var(--color-scarlet);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--color-scarlet);
  transition: var(--transition);
}

.support-email:hover {
  color: var(--color-violet);
  border-bottom-color: var(--color-violet);
}

/* Social links */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.social-link--instagram {
  background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}

.social-link--twitter {
  background: #000;
}

.social-link--facebook {
  background: #1877F2;
}

.social-link--linkedin {
  background: #0077B5;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════ */
.products-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--color-warm-white);
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(91, 19, 112, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Corner leafs */
.corner-leaf {
  position: absolute;
  font-size: 3rem;
  opacity: 0.12;
  pointer-events: none;
}

.corner-leaf--tl {
  top: 16px;
  left: 16px;
  transform: rotate(-20deg);
}

.corner-leaf--tr {
  top: 16px;
  right: 16px;
  transform: rotate(20deg);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 5, 51, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

/* Top border accent */
.product-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-scarlet), var(--color-gold), var(--color-violet));
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-scarlet);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-img-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-cream), #F5EDFF);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-info {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
}

.product-weight {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0;
}

.price-original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-scarlet);
}

.price-badge {
  background: #FFF3CD;
  color: #b8860b;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid #f0c040;
}

.product-info .btn {
  margin-top: auto;
}

/* CTA card */
.product-card--cta {
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-mid));
  color: #fff;
  justify-content: center;
  align-items: center;
}

.product-card--cta::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-turquoise), var(--color-gold));
}

.product-cta-content {
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.product-cta-icon {
  font-size: 3rem;
}

.product-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
}

.product-cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--color-dark);
}

.footer-wave {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-body {
  background: var(--color-dark);
  padding: 60px 0 0;
  position: relative;
}

.footer-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fsocial-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.fsocial-link:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

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

.footer-link i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 860px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

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

.footer-site-link {
  color: var(--color-gold);
  text-decoration: none;
  opacity: 0.8;
}

.footer-site-link:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-image-col {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {

  /* Header mobile */
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 24px;
  }

  .main-nav.open .nav-list {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .main-nav.open .nav-link {
    font-size: 1.3rem;
    color: var(--color-gold);
    padding: 12px 24px;
  }

  .main-nav.open .nav-cta-btn {
    margin-left: 0;
    font-size: 1.1rem;
    padding: 14px 32px;
    margin-top: 8px;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .peacock-left,
  .peacock-right {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-body {
    padding: 40px 0 0;
  }

  .footer-brand-col {
    margin-bottom: 8px;
  }
}

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

  .btn {
    padding: 12px 22px;
  }
}

/* ═══════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--color-scarlet), var(--color-gold));
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════
   SELECTION
═══════════════════════════════════════════════ */
::selection {
  background: rgba(212, 175, 55, 0.35);
  color: var(--color-dark);
}

/* ═══════════════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════════════ */
.blog-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--color-warm-white) 0%, #FFFDF5 100%);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 5, 51, 0.12), 0 0 0 1px var(--color-gold);
}

.blog-card__header {
  padding: 16px 24px 0;
}

.blog-card__date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-scarlet);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__body {
  padding: 15px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card__excerpt {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card__link {
  color: var(--color-scarlet);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-card__link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__link i {
  transform: translateX(4px);
}

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