@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,500;0,7..72,600;0,7..72,700;1,7..72,400;1,7..72,500&family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400;1,8..60,500&display=swap');

:root {
  --color-primary: #D4AF37;
  --color-primary-light: #E7C873;
  --color-primary-dark: #C9A24A;
  --color-secondary: #C9A24A;
  --color-secondary-light: #E7C873;
  --color-accent: #D4AF37;
  --color-bg: #F5F1E6;
  --color-bg-alt: #EDE8D8;
  --color-bg-dark: #000000;
  --color-bg-darker: #0A0A08;
  --color-text: #1A1A1A;
  --color-text-light: #555555;
  --color-text-on-dark: #F5F1E6;
  --color-white: #FFFFFF;
  --color-border: #D8D0BF;
  --color-olive: #C9A24A;

  --font-heading: 'Literata', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Source Serif 4', 'Georgia', serif;

  --container-max: 1400px;
  --container-wide: 1400px;
  --section-padding: 100px;
  --header-height: 80px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-bg-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER / NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
  color: var(--color-text-on-dark);
}

.header.scrolled .logo-text {
  color: var(--color-primary);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  transition: color var(--transition-base);
}

.logo-text span {
  color: var(--color-primary-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link .arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  border: 1px solid var(--color-border);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.dropdown a:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--color-primary-dark);
  padding-left: 28px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-primary);
  color: var(--color-bg-dark) !important;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  color: var(--color-bg-dark) !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header.scrolled .menu-toggle span {
  background: var(--color-text-on-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero section background 1.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero .container {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
  opacity: 0.15;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: inherit;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.5), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page Hero (for subpages) */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: url('../images/hero section background 2.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a:hover {
  color: var(--color-secondary);
}

.page-hero .breadcrumb .separator {
  font-size: 0.7rem;
}

.page-hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-bg-dark);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-dark {
  background: var(--color-bg-dark);
  color: var(--color-primary);
}

.btn-dark:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: var(--section-padding) 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-dark .section-label {
  color: var(--color-secondary);
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  margin: 20px auto;
  border-radius: 2px;
}

/* ==================== FEATURE CARDS ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== ABOUT / SPLIT SECTIONS ==================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1a18, #0a0a08);
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: inherit;
}

.split-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content h2 {
  margin-bottom: 24px;
}

.split-content .section-label {
  text-align: left;
}

.split-content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.split-content .btn {
  margin-top: 16px;
}

/* ==================== OLIVE VARIETIES ==================== */
.variety-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.variety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.variety-image {
  height: 260px;
  background: linear-gradient(135deg, #1a1a18, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.variety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.variety-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.variety-body {
  padding: 32px;
}

.variety-body h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.variety-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.variety-traits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.variety-trait {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.variety-trait .trait-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.variety-trait strong {
  font-weight: 600;
  color: var(--color-bg-dark);
  min-width: 85px;
}

.varieties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Variety detail (full page) */
.variety-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 40px 0;
}

.variety-detail-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a18, #000);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: sticky;
  top: 120px;
  overflow: hidden;
}

.variety-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.variety-detail:hover .variety-detail-image img {
  transform: scale(1.05);
}

.variety-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.variety-detail-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-light);
}

.traits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.trait-box {
  background: var(--color-bg-alt);
  padding: 20px;
  border-radius: var(--radius-md);
}

.trait-box .trait-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.trait-box .trait-value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ==================== TIMELINE ==================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding: 0 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-alt);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.timeline-period {
  text-align: right;
  padding-right: 40px;
}

.timeline-period h3 {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.timeline-period .era {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-text-light);
  font-style: italic;
}

.timeline-content {
  padding-left: 40px;
}

.timeline-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-dark .timeline::before {
  background: rgba(255,255,255,0.15);
}

.section-dark .timeline-dot {
  border-color: var(--color-bg-dark);
}

.section-dark .timeline-period h3 {
  color: var(--color-secondary);
}

.section-dark .timeline-content p {
  color: rgba(255,255,255,0.7);
}

/* ==================== PROCESS STEPS ==================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  padding-top: 20px;
  overflow: visible;
}

.process-step {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  counter-increment: step;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  overflow: visible;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--color-bg-dark);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.process-step .step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==================== QUOTE / MANIFESTO ==================== */
.quote-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-secondary);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: -20px;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-text-on-dark);
  line-height: 2;
  font-style: italic;
  margin-bottom: 32px;
}

.quote-author {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ==================== MANIFESTO BLOCK ==================== */
.manifesto {
  max-width: 750px;
  margin: 0 auto;
}

.manifesto p {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-dark .manifesto p {
  color: rgba(255, 255, 255, 0.8);
}

.manifesto p strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* ==================== SERVICES ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--color-bg-dark);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== STATS ==================== */
.stats-section {
  background: var(--color-bg-dark);
  padding: 60px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.contact-info-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 0;
}

.contact-info-text a {
  color: var(--color-primary-dark);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: var(--color-bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ==================== PROSE / LONG TEXT ==================== */
.prose {
  max-width: 750px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.prose h3 {
  margin-top: 36px;
  margin-bottom: 16px;
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.prose p:first-of-type {
  font-size: 1.15rem;
}

.prose blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 16px 0 16px 28px;
  margin: 32px 0;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
}

/* ==================== LEAFY DECORATIONS ==================== */
.leaf-decoration {
  position: absolute;
  font-size: 3rem;
  opacity: 0.06;
  pointer-events: none;
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo-img {
  width: 140px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-logo span {
  color: var(--color-primary-light);
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
  animation: loader-fill 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes loader-fill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1001;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 200% 100%;
  animation: shimmer-gradient 3s ease-in-out infinite;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes shimmer-gradient {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==================== ANIMATION CLASSES ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==================== HERO ENTRANCE ANIMATIONS ==================== */
.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.hero-loaded .anim-slide-up {
  opacity: 1;
  transform: translateY(0);
}

.anim-text-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.hero-loaded .anim-text-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== HERO PARTICLES ==================== */
.hero-particles,
.quote-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent 70%);
}

/* ==================== 3D TILT CARD EFFECT ==================== */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.process-step.tilt-card {
  overflow: visible;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 175, 55, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.tilt-card:hover .card-shine {
  opacity: 1;
}

/* ==================== ENHANCED BUTTON EFFECTS ==================== */
.btn-magnetic {
  position: relative;
  overflow: hidden;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-magnetic:hover::before {
  width: 300px;
  height: 300px;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn:hover::after {
  left: 120%;
}

/* ==================== QUOTE LINE ANIMATION ==================== */
.quote-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-line:nth-child(1) { transition-delay: 0.15s; }
.quote-line:nth-child(2) { transition-delay: 0.35s; }
.quote-line:nth-child(3) { transition-delay: 0.55s; }

.quote-content.visible .quote-line {
  opacity: 1;
  transform: translateY(0);
}

.quote-mark {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.quote-content.visible .quote-mark {
  animation: quote-mark-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes quote-mark-enter {
  0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
}

/* ==================== ANIMATED SECTION DIVIDER ==================== */
.section-divider {
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: divider-shimmer 3s ease-in-out infinite;
}

@keyframes divider-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ==================== STAT ITEM GLOW ==================== */
.stat-item {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item h3 {
  transition: text-shadow 0.4s ease;
}

.stat-item:hover h3 {
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* ==================== ENHANCED FEATURE ICON ==================== */
.feature-icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(5deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

/* ==================== VARIETY CARD IMAGE ZOOM ==================== */
.variety-card:hover .variety-image img {
  transform: scale(1.08);
}

.variety-card:hover .variety-image span {
  animation: olive-float 2s ease-in-out infinite;
}

@keyframes olive-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* ==================== PROCESS STEP ENHANCED ==================== */
.process-step::before {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}

.process-step:hover::before {
  transform: translateX(-50%) scale(1.15);
  background: var(--color-primary);
  color: var(--color-bg-dark);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.process-step .step-icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .step-icon {
  transform: scale(1.2) rotate(-5deg);
}

/* ==================== CTA BANNER GLOW ==================== */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: cta-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

/* ==================== FOOTER LINK HOVER ==================== */
.footer-col ul a {
  position: relative;
}

.footer-col ul a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.footer-col ul a:hover::before {
  width: 100%;
}

/* ==================== NAV LINK UNDERLINE ==================== */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 60%;
  left: 20%;
}

/* ==================== LOGO ANIMATION ==================== */
.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-icon {
  transition: none;
}

/* ==================== BACK TO TOP PULSE ==================== */
.back-to-top.visible {
  animation: back-top-pulse 2s ease-in-out infinite;
}

.back-to-top:hover {
  animation: none;
}

@keyframes back-top-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.25); }
}

/* ==================== SMOOTH SECTION TRANSITIONS ==================== */
.section,
.section-alt,
.section-dark,
.quote-section,
.stats-section,
.cta-banner {
  position: relative;
}

/* ==================== IMAGE REVEAL ==================== */
.split-image {
  position: relative;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  z-index: 2;
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: 0.2s;
  border-radius: inherit;
}

.split-image.visible::before {
  transform: scaleX(0);
}

/* ==================== DROPDOWN ANIMATION ==================== */
.dropdown a {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
}

.nav-item:hover .dropdown a {
  opacity: 1;
  transform: translateX(0);
}

.nav-item:hover .dropdown a:nth-child(1) { transition-delay: 0.05s; }
.nav-item:hover .dropdown a:nth-child(2) { transition-delay: 0.1s; }
.nav-item:hover .dropdown a:nth-child(3) { transition-delay: 0.15s; }
.nav-item:hover .dropdown a:nth-child(4) { transition-delay: 0.2s; }

/* ==================== CONTACT FORM FOCUS ==================== */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ==================== HIGHLIGHT BOX ANIMATED ==================== */
.highlight-box {
  transition: border-left-color 0.4s ease, transform 0.3s ease;
}

.highlight-box:hover {
  border-left-color: var(--color-primary-light);
  transform: translateX(4px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .varieties-grid {
    grid-template-columns: 1fr;
  }

  .variety-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .variety-detail-image {
    position: static;
    aspect-ratio: 16 / 9;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 40px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-dot {
    left: 0;
  }

  .timeline-period {
    text-align: left;
    padding-right: 0;
  }

  .timeline-content {
    padding-left: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --header-height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #0a0a08;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    transition: right var(--transition-base);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    gap: 4px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    color: var(--color-text-on-dark);
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-menu .nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
  }

  .nav-item .dropdown,
  .nav-item:hover .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin: 4px 0 4px 16px;
    min-width: unset;
    display: none;
  }

  .nav-item.dropdown-open .dropdown {
    display: block;
  }

  .nav-item .dropdown a,
  .nav-item .dropdown a:hover {
    color: var(--color-text-on-dark);
    padding: 10px 20px;
    font-size: 0.95rem;
    background: transparent;
  }

  .nav-item .dropdown a:active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-primary);
  }

  .nav-menu .nav-cta {
    margin-top: 16px;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .features-grid,
  .services-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .traits-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .tilt-card {
    transform: none !important;
  }

  .card-shine {
    display: none;
  }

  .split-image::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    display: none;
  }

  .fade-in, .fade-in-left, .fade-in-right, .scale-in,
  .anim-slide-up, .anim-text-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

/* Full-width text block for history / long prose */
.prose-section {
  margin: 0 auto;
  padding: 0 24px;
}

.prose-section h3 {
  font-size: 1.6rem;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--color-bg-dark);
}

.section-dark .prose-section h3 {
  color: var(--color-secondary);
}

.prose-section p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.section-dark .prose-section p {
  color: rgba(255,255,255,0.75);
}

.prose-section .lead-text {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 32px;
}

.section-dark .prose-section .lead-text {
  color: rgba(255,255,255,0.9);
}

/* Olive oil long content */
.oil-content-block {
  margin-bottom: 48px;
}

.oil-content-block:last-child {
  margin-bottom: 0;
}

/* Highlight box */
.highlight-box {
  background: rgba(212, 175, 55, 0.06);
  border-left: 4px solid var(--color-primary);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}

.highlight-box p {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-bg-dark);
  color: var(--color-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}
