/* ===================================
   Ceyliz - Premium Editorial Design
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

:root {
  /* Refined Color Palette */
  --primary: #2C1810;
  --primary-soft: #4A2C1F;
  --accent: #B8895C;
  --accent-light: #D4A574;
  --accent-dark: #8B5A2B;
  --gold: #C9A961;
  --cream: #F8F4ED;
  --warm-white: #FBF8F2;
  --paper: #FFFEFB;
  --text-dark: #1A0F0A;
  --text-medium: #5C4A3F;
  --text-light: #8B7B6E;
  --border-subtle: #E8DFD3;
  --border-line: #D4C5B0;
  
  /* Refined Shadows */
  --shadow-xs: 0 1px 2px rgba(44, 24, 16, 0.04);
  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.12);
  
  --max-width: 1280px;
  --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  --transition-slow: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.01em;
}

h1 { 
  font-size: clamp(2.25rem, 5.5vw, 4.5rem); 
  font-weight: 500;
  letter-spacing: -0.02em;
}
h2 { 
  font-size: clamp(1.875rem, 4vw, 3rem); 
  font-weight: 500;
}
h3 { 
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); 
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: var(--text-medium);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 769px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ===================================
   HEADER
   =================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  height: 90px;
}

.site-header.scrolled {
  background: rgba(251, 248, 242, 0.98);
  box-shadow: var(--shadow-sm);
  height: 75px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
}

@media (min-width: 769px) {
  .header-inner {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 3rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .logo img {
  height: 65px;
}

.logo:hover {
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 2.75rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-medium);
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  background: var(--warm-white);
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(184, 137, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: 'CEYLON';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(184, 137, 92, 0.05);
  font-weight: 400;
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  font-style: italic;
}

.hero-text h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 400;
}

.hero-text p {
  font-size: 1.0625rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 480px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-media {
  position: relative;
  height: 600px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 1s ease-out 0.2s both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.hero-media:hover img {
  transform: scale(1.05);
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44, 24, 16, 0.2));
  z-index: 1;
  pointer-events: none;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--paper);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-soft);
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-line);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(184, 137, 92, 0.05);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

@media (min-width: 769px) {
  .section {
    padding: 7rem 0;
  }
}

.section-light {
  background: var(--paper);
}

.section-dark {
  background: var(--primary);
  color: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  margin-bottom: 1.25rem;
  font-style: italic;
}

.section-title em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 400;
}

.section-description {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-title {
  color: var(--paper);
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.75);
}

.section-dark .section-eyebrow {
  color: var(--accent-light);
}

.section-dark .section-eyebrow::before,
.section-dark .section-eyebrow::after {
  background: var(--accent-light);
}

/* Subtitles for backwards compatibility */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

/* ===================================
   PRODUCT GRID
   =================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--paper);
  overflow: hidden;
  transition: var(--transition-slow);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
}

.product-image {
  height: 380px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(44, 24, 16, 0.1));
  pointer-events: none;
}

.product-info {
  padding: 1.75rem 0.5rem;
}

.product-category {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 0.625rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--primary);
}

.product-description {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.product-weight {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.product-link:hover {
  color: var(--accent-dark);
  gap: 0.875rem;
}

/* ===================================
   STORY SECTION
   =================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-content h2 {
  color: var(--paper);
  margin-bottom: 2rem;
  font-style: italic;
}

.story-content h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--accent-light);
  font-weight: 400;
}

.story-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.story-content .btn {
  margin-top: 1rem;
}

.section-dark .btn-secondary {
  color: var(--paper);
  border-color: var(--paper);
}

.section-dark .btn-secondary:hover {
  background: var(--paper);
  color: var(--primary);
}

.story-media {
  height: 560px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.story-media:hover img {
  transform: scale(1.05);
}

/* ===================================
   VALUES GRID
   =================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}

.value-card {
  background: transparent;
  padding: 3rem 2.25rem;
  transition: var(--transition);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.value-card:hover {
  background: var(--cream);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.value-card:hover::before {
  width: 100%;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-medium);
  line-height: 1.75;
  font-size: 0.9375rem;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .page-header {
    padding: 5rem 0 3rem;
  }
}

.page-header h1 {
  margin-bottom: 1.25rem;
  font-style: italic;
}

.page-header h1 em {
  font-family: 'DM Serif Display', serif;
  color: var(--accent-dark);
  font-weight: 400;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ===================================
   TWO COLUMN LAYOUT
   =================================== */
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form-wrapper {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
}

.contact-form-wrapper h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary) !important;
}

.contact-form-wrapper > h2 + p,
.contact-form-wrapper p:first-of-type {
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border-line);
  border-radius: 0;
  font-family: 'Inter', inherit;
  font-size: 0.9375rem;
  background: var(--paper);
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 137, 92, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.status-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0;
  background: #f0ebe0;
  color: #5C4A3F;
  border: 1px solid #d4c5b0;
  font-size: 0.9375rem;
}

.contact-details {
  background: var(--cream);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
}

.contact-details h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: var(--primary) !important;
}

.contact-details p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-details ul {
  list-style: none;
}

.contact-details li {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details strong {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  color: var(--accent-dark) !important;
}

.contact-details a {
  color: var(--primary);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--accent-dark);
}

/* ===================================
   FAQ STYLING
   =================================== */
details {
  background: var(--paper) !important;
  padding: 1.75rem 2rem !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

details:hover {
  border-color: var(--accent);
}

details[open] {
  border-color: var(--accent);
  background: var(--cream) !important;
}

details summary {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  font-size: 1.25rem !important;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

details summary span {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.5rem !important;
  color: var(--accent-dark);
  transition: var(--transition);
}

details[open] summary span {
  transform: rotate(180deg);
}

details p {
  color: var(--text-medium) !important;
  line-height: 1.8 !important;
  margin-top: 1.25rem !important;
  padding-top: 1.25rem !important;
  border-top: 1px solid var(--border-subtle) !important;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 1.5rem 2rem;
  margin-top: 0;
}

@media (min-width: 769px) {
  .site-footer {
    padding: 5rem 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand .logo img {
  height: 75px;
  width: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 380px;
  font-size: 0.9375rem;
}

.footer-links h4 {
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer-links a {
  display: block;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================
   PROCESS SECTION (About page)
   =================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.process-step {
  text-align: center;
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition);
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--cream);
}

.process-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
  font-style: italic;
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.process-step p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===================================
   TIMELINE
   =================================== */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-line);
}

.timeline-item {
  padding: 2rem 0 2rem 3.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 2.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--accent);
}

.timeline-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.625rem;
}

.timeline-item .year {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-item p {
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 968px) {
  .hero-grid,
  .story-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-media,
  .story-media {
    height: 450px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(1.875rem, 6vw, 2.5rem); }
  h2 { font-size: clamp(1.625rem, 5vw, 2.25rem); }
  h3 { font-size: clamp(1.125rem, 3.5vw, 1.375rem); }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 99;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav a {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1.5rem 4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-media {
    height: 400px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-image {
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-wrapper,
  .contact-details {
    padding: 2rem;
  }

  .value-card {
    padding: 2.5rem 1.75rem;
  }

  .process-step {
    border-right: none;
  }

  .story-media {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }

  .hero {
    padding: 2.5rem 1.25rem 3rem;
  }

  .hero-eyebrow {
    font-size: 0.6875rem;
  }

  .hero-text p {
    font-size: 0.9375rem;
  }

  .hero-media {
    height: 340px;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
  }

  .product-image {
    height: 300px;
  }

  .product-info {
    padding: 1.5rem 0.25rem;
  }

  .contact-form-wrapper,
  .contact-details {
    padding: 1.75rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .logo img {
    height: 60px;
  }

  .site-header {
    height: 75px;
  }

  .site-header.scrolled .logo img {
    height: 55px;
  }

  .footer-brand .logo img {
    height: 65px;
  }

  .site-footer {
    padding: 4rem 1.25rem 2rem;
  }

  .page-header {
    padding: 3.5rem 1.25rem 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  details {
    padding: 1.5rem !important;
  }

  details summary {
    font-size: 1.125rem !important;
  }
}
