/*
Theme Name: Cordial Australia
Theme URI: https://cordial.net.au
Author: Cordial Australia
Author URI: https://cordial.net.au
Description: A vibrant, refreshing WordPress theme designed for Cordial.net.au — Australia's complete guide to cordial. Features fruity colours, warm citrus accents, elegant typography, scroll-reveal animations, and a beautiful user experience crafted for Australian visitors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cordial-au
Tags: custom-menu, featured-images, custom-logo, translation-ready, blog, food-and-drink
*/

/* ===== CSS VARIABLES ===== */
:root {
  --berry-deep: #3a1028;
  --berry-dark: #5c1a3e;
  --berry: #8a2a5e;
  --berry-light: #b84a7e;
  --berry-pale: #e8a0c4;
  --coral: #e8654a;
  --coral-light: #f08a6e;
  --coral-pale: #fcd4c8;
  --lemon: #f0c030;
  --lemon-light: #f5d86a;
  --lemon-pale: #fcf0c0;
  --lime: #6aaa4a;
  --lime-light: #90cc6e;
  --orange: #e88a30;
  --cream: #fefaf4;
  --cream-dark: #f5ede0;
  --text-dark: #1a1418;
  --text-body: #3a3035;
  --text-muted: #6a6065;
  --white: #ffffff;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--berry-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem; color: var(--lemon);
  letter-spacing: 0.15em;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
  background: transparent;
}
.site-nav.scrolled,
.site-nav.solid {
  background: rgba(58, 16, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem; color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--lemon); }
.nav-menu { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-menu li { list-style: none; }
.nav-menu a {
  color: rgba(254,250,244,0.85);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--coral);
  transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--coral-light); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .menu-item-cta a {
  background: var(--coral); color: var(--white);
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-weight: 600; letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.nav-menu .menu-item-cta a:hover { background: var(--coral-light); transform: translateY(-1px); }
.nav-menu .menu-item-cta a::after { display: none; }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 5px; z-index: 1001;
}
.mobile-toggle span { width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(58,16,40,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu-overlay.active { display: flex; }
.mobile-menu-overlay .nav-menu { flex-direction: column; gap: 1.5rem; text-align: center; }
.mobile-menu-overlay .nav-menu a { font-size: 1.1rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 10rem 3rem 5rem; background: var(--berry-deep);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,101,74,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(240,192,48,0.08) 0%, transparent 50%);
}
.page-hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-hero-icon { font-size: 3.5rem; margin-bottom: 1.5rem; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--cream);
  line-height: 1.15; margin-bottom: 1.2rem;
}
.page-hero h1 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--lemon); }
.page-hero p { font-size: 1.15rem; color: rgba(254,250,244,0.65); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { padding: 1.2rem 3rem; background: var(--cream-dark); border-bottom: 1px solid rgba(0,0,0,0.04); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 0.8rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--berry); }
.breadcrumb-inner a:hover { color: var(--coral); }
.breadcrumb-inner .sep { margin: 0 0.5rem; opacity: 0.4; }

/* ===== SECTIONS ===== */
section { position: relative; }
.section-pad { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.section-pad-narrow { padding: 5rem 3rem; max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; width: 30px; height: 1.5px; background: var(--coral); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text-dark);
  line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--berry); }
.section-intro { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; line-height: 1.8; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--coral); color: var(--white);
  padding: 1rem 2.2rem; border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.4s ease;
}
.btn-primary:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,101,74,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--cream);
  padding: 1rem 2.2rem; border: 1.5px solid rgba(254,250,244,0.25);
  border-radius: 2px; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: all 0.4s ease;
}
.btn-secondary:hover { border-color: var(--lemon); color: var(--lemon); }

/* ===== HERO (Homepage) ===== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: var(--berry-deep); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,101,74,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(240,192,48,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(138,42,94,0.25) 0%, transparent 50%);
}
.hero-grain { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); background-size: 200px; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.03) 80px, rgba(255,255,255,0.03) 81px), repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.03) 80px, rgba(255,255,255,0.03) 81px); }
.hero-content { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 8rem 3rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text { animation: heroFadeIn 1.2s ease-out 0.5s both; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,101,74,0.12); border: 1px solid rgba(232,101,74,0.25); padding: 0.4rem 1rem; border-radius: 2px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--coral-light); margin-bottom: 2rem; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: var(--cream); line-height: 1.1; font-weight: 700; margin-bottom: 1.5rem; }
.hero h1 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--lemon); }
.hero-subtitle { font-size: 1.15rem; color: rgba(254,250,244,0.7); line-height: 1.8; max-width: 500px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; animation: heroVisualIn 1.4s ease-out 0.8s both; }
@keyframes heroVisualIn { from { opacity: 0; transform: scale(0.9) rotate(-3deg); } to { opacity: 1; transform: scale(1) rotate(0deg); } }
.hero-circle {
  width: 420px; height: 420px; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 40% 40%, var(--berry-dark), var(--berry-deep));
  box-shadow: 0 0 0 1px rgba(232,101,74,0.1), 0 0 80px rgba(232,101,74,0.15), inset 0 0 60px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-circle::before { content: ''; position: absolute; inset: 15px; border-radius: 50%; border: 1px solid rgba(232,101,74,0.1); }
.hero-circle::after { content: ''; position: absolute; inset: 35px; border-radius: 50%; border: 1px dashed rgba(240,192,48,0.15); animation: circleRotate 30s linear infinite; }
@keyframes circleRotate { to { transform: rotate(360deg); } }
.hero-icon { font-size: 8rem; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)); animation: iconFloat 4s ease-in-out infinite; position: relative; z-index: 2; }
@keyframes iconFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-circle-particles { position: absolute; inset: 0; }
.fruit-particle { position: absolute; font-size: 1.2rem; opacity: 0.3; animation: fruitDrift 8s ease-in-out infinite; }
.fruit-particle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.fruit-particle:nth-child(2) { top: 60%; right: 15%; animation-delay: -2s; font-size: 0.9rem; }
.fruit-particle:nth-child(3) { bottom: 20%; left: 30%; animation-delay: -4s; font-size: 1rem; }
.fruit-particle:nth-child(4) { top: 35%; right: 25%; animation-delay: -6s; font-size: 0.8rem; }
@keyframes fruitDrift { 0%,100% { transform: translate(0,0) rotate(0deg); } 25% { transform: translate(5px,-8px) rotate(10deg); } 50% { transform: translate(-3px,-15px) rotate(-5deg); } 75% { transform: translate(8px,-5px) rotate(8deg); } }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(254,250,244,0.4); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(232,101,74,0.5), transparent); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== WHAT IS SECTION ===== */
.what-is { background: var(--cream); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.what-is-card { background: var(--white); border: 1px solid rgba(138,42,94,0.06); border-radius: 4px; padding: 2.5rem; box-shadow: 0 4px 40px rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.what-is-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--coral), var(--lemon)); }
.what-is-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); margin-bottom: 1rem; }
.what-is-card p { color: var(--text-body); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1rem; }
.what-is-highlights { display: flex; flex-direction: column; gap: 1.8rem; }
.highlight-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; border-radius: 4px; transition: all 0.4s ease; }
.highlight-item:hover { background: var(--white); box-shadow: 0 4px 30px rgba(0,0,0,0.05); transform: translateX(5px); }
.highlight-icon { width: 48px; height: 48px; flex-shrink: 0; background: linear-gradient(135deg, var(--berry-dark), var(--berry)); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.highlight-text h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.highlight-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

/* ===== FLAVOURS (replaces Benefits) ===== */
.flavours { background: var(--berry-deep); position: relative; overflow: hidden; }
.flavours .section-title { color: var(--cream); }
.flavours .section-title em { color: var(--lemon); }
.flavours .section-intro { color: rgba(254,250,244,0.6); }
.flavours-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(232,101,74,0.12) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(240,192,48,0.06) 0%, transparent 50%); }
.flavours .section-pad { position: relative; z-index: 2; }
.flavours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.flavour-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(232,101,74,0.08); border-radius: 4px; padding: 2.2rem; transition: all 0.5s ease; position: relative; overflow: hidden; }
.flavour-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0; background: linear-gradient(180deg, rgba(232,101,74,0.08), transparent); transition: height 0.5s ease; }
.flavour-card:hover::before { height: 100%; }
.flavour-card:hover { border-color: rgba(240,192,48,0.2); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.flavour-emoji { font-size: 2rem; margin-bottom: 1.2rem; }
.flavour-card h3 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.2rem; margin-bottom: 0.8rem; }
.flavour-card p { color: rgba(254,250,244,0.55); font-size: 0.9rem; line-height: 1.8; }

/* ===== HOW TO MAKE ===== */
.how-to { background: var(--cream-dark); }
.how-to-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.how-step { background: var(--white); border-radius: 4px; padding: 2.2rem 1.8rem; border: 1px solid rgba(138,42,94,0.06); position: relative; text-align: center; transition: all 0.4s ease; }
.how-step:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.step-number { font-family: 'Instrument Serif', serif; font-size: 3.5rem; color: var(--berry-pale); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.how-step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.how-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FACTS ===== */
.facts { background: linear-gradient(135deg, var(--berry-dark), var(--berry-deep)); position: relative; overflow: hidden; }
.facts-bg { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px); }
.facts .section-pad { position: relative; z-index: 2; text-align: center; }
.facts .section-label { justify-content: center; }
.facts .section-label::before { display: none; }
.facts .section-title { color: var(--cream); }
.facts .section-title em { color: var(--lemon); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 3rem; }
.fact-item { text-align: center; }
.fact-number { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--coral); font-weight: 700; line-height: 1.1; }
.fact-unit { font-family: 'Instrument Serif', serif; font-size: 1.2rem; color: var(--coral-light); font-style: italic; display: block; margin-top: 0.3rem; }
.fact-desc { color: rgba(254,250,244,0.55); font-size: 0.85rem; margin-top: 0.6rem; line-height: 1.6; }
.fact-divider { width: 30px; height: 1.5px; background: rgba(232,101,74,0.3); margin: 0.8rem auto 0; }

/* ===== VS TABLE ===== */
.vs { background: var(--cream); }
.vs-table { margin-top: 3rem; width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
.vs-table thead th { padding: 1.4rem 2rem; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; text-align: left; }
.vs-table thead th:first-child { background: var(--cream-dark); color: var(--text-muted); }
.vs-table thead th:nth-child(2) { background: var(--berry-deep); color: var(--cream); }
.vs-table thead th:nth-child(3) { background: var(--orange); color: var(--white); }
.vs-table tbody td { padding: 1.1rem 2rem; font-size: 0.92rem; color: var(--text-body); border-bottom: 1px solid rgba(0,0,0,0.04); }
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table tbody td:first-child { font-weight: 600; color: var(--text-dark); background: rgba(0,0,0,0.01); }
.vs-table tbody td:nth-child(2) { background: rgba(138,42,94,0.03); }

/* ===== EXPLORE CARDS ===== */
.explore { background: var(--cream-dark); }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.explore-card { background: var(--white); border-radius: 4px; border: 1px solid rgba(138,42,94,0.06); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: all 0.5s ease; display: block; }
.explore-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--coral), var(--lemon)); transform: scaleX(0); transition: transform 0.5s ease; transform-origin: left; }
.explore-card:hover::before { transform: scaleX(1); }
.explore-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.08); }
.explore-card-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.explore-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.7rem; }
.explore-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.explore-card-link { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--berry); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.3s ease; }
.explore-card:hover .explore-card-link { gap: 0.8rem; color: var(--coral); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--berry-deep); position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(232,101,74,0.15) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(240,192,48,0.08) 0%, transparent 60%); }
.cta-banner .section-pad { position: relative; z-index: 2; text-align: center; padding: 5rem 3rem; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--cream); margin-bottom: 1rem; }
.cta-banner h2 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--lemon); }
.cta-banner p { color: rgba(254,250,244,0.6); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2rem; line-height: 1.8; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2.5rem; }
.blog-card { background: var(--white); border-radius: 4px; border: 1px solid rgba(0,0,0,0.05); overflow: hidden; transition: all 0.4s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.07); transform: translateY(-4px); }
.blog-card-thumb { height: 200px; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-thumb-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.7rem; flex-wrap: wrap; }
.blog-card-cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 2px; color: var(--berry); background: rgba(138,42,94,0.08); }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--text-dark); line-height: 1.35; margin-bottom: 0.6rem; }
.blog-card-body h3 a { transition: color 0.3s; }
.blog-card-body h3 a:hover { color: var(--berry); }
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-card-read { margin-top: 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.3s; }
.blog-card:hover .blog-card-read { gap: 0.7rem; }
.bg-berry{background:linear-gradient(135deg,var(--berry-dark),var(--berry-deep))}.bg-coral{background:linear-gradient(135deg,var(--coral),#a84030)}.bg-lemon{background:linear-gradient(135deg,var(--lemon),#c89a10)}.bg-lime{background:linear-gradient(135deg,var(--lime),#3a6a2a)}.bg-plum{background:linear-gradient(135deg,#5a2050,#2a1028)}.bg-teal{background:linear-gradient(135deg,#1a5a5a,#0d2d2d)}.bg-orange{background:linear-gradient(135deg,var(--orange),#a85a10)}.bg-rose{background:linear-gradient(135deg,#c44a6a,#8a2a4a)}.bg-grape{background:linear-gradient(135deg,#6a3a8a,#3a1a5a)}

/* ===== SINGLE POST ===== */
.single-content { background: var(--cream); }
.single-content .section-pad-narrow { max-width: 780px; }
.single-content .entry-content { font-size: 1.05rem; line-height: 2; color: var(--text-body); }
.single-content .entry-content p { margin-bottom: 1.5rem; }
.single-content .entry-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); margin: 2.5rem 0 1rem; }
.single-content .entry-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); margin: 2rem 0 0.8rem; }
.single-content .entry-content blockquote { font-family: 'Instrument Serif', serif; font-size: 1.4rem; color: var(--berry); line-height: 1.5; border-left: 3px solid var(--coral); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; }
.single-content .entry-content img { border-radius: 4px; margin: 2rem 0; }
.single-content .entry-content ul, .single-content .entry-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.single-content .entry-content li { margin-bottom: 0.5rem; }
.post-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); display: flex; flex-wrap: wrap; gap: 0.5rem; }
.post-tag { padding: 0.3rem 0.8rem; border: 1px solid rgba(0,0,0,0.08); border-radius: 2px; font-size: 0.78rem; color: var(--text-muted); transition: all 0.3s; }
.post-tag:hover { border-color: var(--berry); color: var(--berry); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.post-nav a { background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 4px; padding: 1.5rem; transition: all 0.3s; }
.post-nav a:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.post-nav .nav-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral); font-weight: 600; margin-bottom: 0.3rem; }
.post-nav .nav-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); }

/* ===== SIDEBAR ===== */
.sidebar-box { background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 4px; padding: 1.8rem; margin-bottom: 1.5rem; box-shadow: 0 2px 15px rgba(0,0,0,0.03); }
.sidebar-box h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid rgba(138,42,94,0.1); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination .page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 2px; font-size: 0.88rem; color: var(--text-body); font-weight: 500; transition: all 0.3s; background: var(--white); }
.pagination .page-numbers:hover { border-color: var(--berry); color: var(--berry); }
.pagination .page-numbers.current { background: var(--berry-deep); color: var(--cream); border-color: var(--berry-deep); }

/* ===== FOOTER ===== */
.site-footer { background: #18080e; color: rgba(254,250,244,0.4); padding: 4rem 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--cream-dark); font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(254,250,244,0.4); font-size: 0.88rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom a { color: var(--coral); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== WP DEFAULTS ===== */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.error-404 { text-align: center; padding: 4rem 0; }
.error-404 .emoji-big { font-size: 5rem; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-circle { width: 300px; height: 300px; }
  .hero-icon { font-size: 5.5rem; }
  .what-is-grid { grid-template-columns: 1fr; }
  .flavours-grid { grid-template-columns: repeat(2, 1fr); }
  .how-to-steps { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .explore-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .site-nav.scrolled, .site-nav.solid { padding: 0.6rem 1.5rem; }
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .section-pad, .section-pad-narrow { padding: 4.5rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .flavours-grid, .how-to-steps { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid, .blog-grid { grid-template-columns: 1fr; }
  .vs-table { font-size: 0.85rem; }
  .vs-table thead th, .vs-table tbody td { padding: 0.8rem 1rem; }
  .post-nav { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
