/* 
   THE GOOD FUD 
   Premium Editorial Design System 
   Updated: New Palette & Typography
*/

:root {
  /* Bold Palette (Restored from Image) */
  --color-cream: #EFEDE8;
  /* Background Cream */
  --color-cream-dark: #E5E2D9;

  --color-dark-green: #2B3A33;
  /* Deep Forest Green */
  --color-dark-green-light: #3D5248;

  --color-orange: #CF5C36;
  /* Burnt Orange Accent */
  --color-orange-hover: #B54926;

  --color-yellow: #F0C05A;
  /* Mustache Yellow */

  --color-black: #1A1A1A;
  /* Deep Black */
  --color-grey: #4A4A4A;
  /* Dark Grey */
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'DM Sans', sans-serif;
  /* System font stack for SF Pro feel */
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* UI */
  --radius-lg: 24px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
  --transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  /* Increased line height */
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
  overflow-x: hidden;
}

/* Pricing Page Specifics */
.pricing-table-container {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3rem;
  border: 1px solid #F0F0F0;
  max-width: 900px;
  margin: 3rem auto;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
  /* Space between rows */
}

.pricing-table thead th {
  text-align: left;
  padding-bottom: 1rem;
  color: var(--color-grey);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--color-cream);
}

.pricing-table tbody tr {
  transition: transform 0.2s ease;
}

.pricing-table tbody tr:hover {
  transform: scale(1.01);
}

.pricing-table td {
  padding: 1.5rem 1rem;
  background: var(--color-cream);
}

.pricing-table td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.pricing-table td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  font-weight: 700;
  color: var(--color-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Tighter tracking for headings */
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  /* Or Heading font depending on preference, sticking to body for readability */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition-slow);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-black);
  color: var(--color-black);
}

.btn-secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.text-center {
  text-align: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* Ensure full width for spacing */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--color-grey);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-black);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  /* Full viewport height for impact */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Hide overflow from floating elements */
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  /* Increased gap */
  align-items: center;
}

/* ... existing hero styles ... */

/* Who Is This For Section */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.who-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #F0F0F0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-cream-dark);
}

.who-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.who-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.who-card h4 {
  font-size: 1.25rem;
  color: var(--color-dark-green);
  margin-bottom: 0.5rem;
}

.who-card p {
  color: var(--color-grey);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hero Content Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #F8F5E8;
  /* Light beige/yellow tint */
  color: #6B7F6E;
  /* Muted Green */
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge .sparkle-icon {
  font-size: 1.1rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
  /* Black heading */
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.text-highlight {
  color: #2F4F38;
  /* Dark Green */
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-grey);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
  /* Align buttons vertically */
}

.btn-outline {
  background: transparent;
  border: 1px solid #E0E0E0;
  color: var(--color-grey);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--color-black);
  color: var(--color-black);
  background: #FAFAFA;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2F4F38;
  /* Dark Green Text */
}

.check-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #2F4F38;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  background-size: 12px;
  border-radius: 50%;
  /* Make it look like a circle check if needed, or just a standalone check */
  /* Wait, the design is a solid circle with a check inside. Let's do that. */
  background-color: #2F4F38;
}

/* Feature check icon adjustment to match design (white check on green circle) */
.feature-item .check-icon {
  width: 24px;
  height: 24px;
  background-color: #2F4F38;
  border-radius: 50%;
  position: relative;
  mask: none;
  -webkit-mask: none;
}

.feature-item .check-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}


/* Hero Collage Styles */
/* Hero Collage Styles - Strict 1 Top 2 Bottom Grid */
.hero-collage {
  position: relative;
  height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  gap: 1rem;
}

.collage-main {
  grid-column: 1 / -1;
  /* Spans full width (both columns) */
  grid-row: 1;
  /* First row */
  position: relative;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.collage-sub-1 {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.collage-sub-2 {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Floating Elements */
.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  color: #4A4A4A;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 2;
  transform: rotate(-5deg);
  /* Slight tilt for playfulness */
}

.pill-top-left {
  top: 10%;
  left: -20px;
  background: #D4E157;
  color: #2B3A33;
  border: none;
  transform: rotate(-8deg);
}

.pill-top-mid {
  top: 5%;
  right: 40%;
  background: #C5A880;
  color: #fff;
  border: none;
  transform: rotate(5deg);
}

.pill-mid-left {
  top: 50%;
  left: -30px;
  background: #E0CABC;
  color: #5D4037;
  transform: rotate(-12deg);
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-top-right-orange {
  top: 15%;
  right: -15px;
  background: #D98926;
  color: white;
  border: none;
  transform: rotate(10deg);
}

.pill-top-center-dark {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2F4F38;
  color: white;
  border: none;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
}

.pill-top-right-green {
  top: -10px;
  right: -10px;
  background: #98D8A3;
  color: #1A3E2A;
  border: none;
  transform: rotate(5deg);
}


.floating-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #C4E4D8;
  /* Minty Green */
  color: #2F4F38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.circle-mid-right {
  bottom: 25%;
  right: -25px;
}

.food-label {
  position: absolute;
  bottom: -40px;
  right: 20px;
  text-align: right;
  font-family: 'DM Sans', sans-serif;
  /* Or use a handwritten font if available */
  color: #1A1A1A;
  font-weight: 500;
  font-size: 1.1rem;
}

.handwritten-arrow {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: -10px;
  margin-right: 20px;
  color: #4A4A4A;
  transform: rotate(15deg);
}

.label-tag {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Two Ways Section */
.two-ways-bg {
  background-color: var(--color-white);
  padding: var(--spacing-xl) 0;
}

.two-ways-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.two-ways-header .tag {
  display: inline-block;
  background-color: var(--color-cream);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.two-ways-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

/* Plans Section - Premium Editorial Style */
.plans-section {
  padding: var(--spacing-xxl) 0;
  background-color: #fafafa;
  /* Subtle grey background */
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.plan-card {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-orange);
  /* Highlight on hover */
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--color-cream);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-orange);
}

.plan-card h3 {
  font-size: 1.75rem;
  color: var(--color-dark-green);
  margin-bottom: 0.5rem;
}

.plan-card p {
  color: var(--color-grey);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 300px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: 100%;
}

.plan-features li {
  padding: 0.75rem 0;
  color: var(--color-dark-green);
  /* Darker text for readability */
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--color-orange);
  /* Orange checkmarks */
  font-size: 1.1rem;
}

/* App Section - Modern Layout with Blob */
.app-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Blob */
.app-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-cream) 0%, transparent 70%);
  z-index: 0;
  opacity: 0.6;
  border-radius: 50%;
}

.app-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.app-content {
  order: 1;
  /* Text first */
}

.app-image {
  order: 2;
  /* Image second */
  display: flex;
  justify-content: center;
}

.app-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  /* Phone shadow */
  transform: rotate(-5deg);
  /* Playful tilt */
  transition: transform 0.3s ease;
}

.app-image:hover img {
  transform: rotate(0deg) scale(1.02);
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Ethos / Mission Section - High Impact Dark Mode */
.mission-section {
  padding: 6rem 0;
  background-color: var(--color-dark-green);
  color: var(--color-cream);
  text-align: center;
}

.mission-section h2 {
  color: var(--color-cream);
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.mission-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.value-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: var(--color-cream);
  font-weight: 500;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: var(--color-white);
  color: var(--color-dark-green);
  transform: translateY(-3px);
}

.value-item i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}

/* Who Is This For - Bento Grid */
.who-section {
  padding: var(--spacing-xxl) 0;
  background: var(--color-cream);
  /* Light contrast */
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.who-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Bento Spans */
.who-card:nth-child(1) {
  grid-column: span 2;
  /* Wide card */
  background: linear-gradient(to right, #ffffff, #fcfcfc);
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.who-card i {
  font-size: 2.5rem;
  color: var(--color-orange);
  /* Or Green */
  margin-bottom: 1.5rem;
  background: var(--color-cream);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.who-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--color-dark-green);
}

.who-card p {
  color: var(--color-grey);
  line-height: 1.6;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.app-feature i {
  color: var(--color-orange);
  font-size: 1.2rem;
}

.app-feature span {
  font-weight: 600;
  color: var(--color-dark-green);
  font-size: 0.9rem;
}

/* Two Ways Section */
.two-ways-header p {
  color: var(--color-grey);
  font-size: 1.1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background-color: var(--color-white);
  border: 1px solid #E5E5E5;
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.popular-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: #D4E157;
  /* Lime-ish green from image */
  color: var(--color-dark-green);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.plan-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.icon-delivery {
  background-color: var(--color-dark-green);
  color: var(--color-white);
}

.icon-recipe {
  background-color: #C5A880;
  /* Tan/Gold */
  color: var(--color-white);
}

.plan-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.plan-card .desc {
  color: var(--color-grey);
  margin-bottom: 2rem;
  min-height: 60px;
}

.plan-features li {
  padding: 0.75rem 0;
  color: var(--color-dark-green);
}

.plan-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #D4E157;
  /* Lime green check */
  color: var(--color-dark-green);
  border-radius: 50%;
  margin-right: 12px;
  font-size: 0.7rem;
  font-weight: bold;
}

.icon-recipe~.plan-features li::before {
  background-color: #E0D5C1;
  /* Muted gold for recipe checks */
  color: #8D7656;
}

.btn-full {
  width: 100%;
  margin-top: 2rem;
}

.btn-delivery {
  background-color: var(--color-dark-green);
  color: var(--color-white);
}

.btn-delivery:hover {
  background-color: var(--color-dark-green-light);
}

.btn-outline-gold {
  border: 1px solid #C5A880;
  color: #8D7656;
}

.btn-outline-gold:hover {
  background-color: #C5A880;
  color: var(--color-white);
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-grey);
}

.modal-header h3 {
  font-size: 1.75rem;
  color: var(--color-dark-green);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--color-grey);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--color-dark-green);
}

#success-message {
  text-align: center;
  display: none;
}

#success-message h3 {
  color: var(--color-dark-green);
  margin-bottom: 1rem;
}

#success-message .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* --- Static Grid Layout (Refactored) --- */

.hiw-intro {
  padding: var(--spacing-xl) 0 2rem 0;
  background-color: var(--color-white);
  text-align: center;
}

.timeline-header {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-header .tag {
  display: inline-block;
  background-color: var(--color-cream);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-header h2 {
  font-size: 4rem;
  /* Big impact as requested */
  color: var(--color-dark-green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-header p {
  font-size: 1.25rem;
  color: var(--color-grey);
}

.timeline-section {
  padding: 4rem 0 var(--spacing-xl) 0;
  /* Lined Paper Background */
  background-color: #Fdfdfd;
  background-image: repeating-linear-gradient(transparent, transparent 29px, #E5E5E5 30px);
  /* Subtle shadow inset for depth if needed, or just flat paper */
  position: relative;
  overflow: hidden;
  /* For connectors */
}

/* Central dashed line for connector path */
.timeline-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  /* Width of the path */
  height: 2px;
  border-top: 2px dashed #D1C4E9;
  /* Horizontal dashed line */
  border-left: none;
  z-index: 0;
  opacity: 0.6;
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* The Pin Board Grid */
.hiw-grid {
  display: flex;
  flex-direction: row;
  /* Horizontal layout */
  justify-content: center;
  gap: 2rem;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Card Styles - Pin Note Look */
.hiw-card {
  background: var(--color-white);
  border-radius: 16px;
  /* Soft paper corners */
  padding: 1.5rem 1rem;
  /* Reduced padding */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  /* Lifted shadow */
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  transition: transform 0.3s ease;
  width: 220px;
  /* Reduced width */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Zig-Zag Positioning - Vertical Offsets */
.hiw-card:nth-child(odd) {
  transform: rotate(-2deg) translateY(-30px);
  /* Up */
  align-self: flex-start;
}

.hiw-card:nth-child(even) {
  transform: rotate(2deg) translateY(30px);
  /* Down */
  align-self: flex-end;
  margin-top: 0;
}

.hiw-card:hover {
  transform: scale(1.05) rotate(0deg) translateY(0);
  /* Pop out */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* The Pin */
.hiw-card::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Alternating Pin Colors */
.hiw-card:nth-child(1)::before {
  background: radial-gradient(circle at 30% 30%, #FF8A65, #CF5C36);
}

/* Orange */
.hiw-card:nth-child(2)::before {
  background: radial-gradient(circle at 30% 30%, #4DB6AC, #2B3A33);
}

/* Green */
.hiw-card:nth-child(3)::before {
  background: radial-gradient(circle at 30% 30%, #BA68C8, #7B1FA2);
}

/* Purple ish - utilizing brand variant or just orange/green */
/* Let's stick to brand colors */
.hiw-card:nth-child(3)::before {
  background: radial-gradient(circle at 30% 30%, #FFD54F, #F0C05A);
}

/* Yellow */
.hiw-card:nth-child(4)::before {
  background: radial-gradient(circle at 30% 30%, #64B5F6, #1976D2);
}

/* Blue accent */


/* Card Content Styling */
.hiw-content h4 {
  font-size: 1.1rem;
  /* Reduced from 1.5rem */
  color: var(--color-dark-green);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.hiw-content p {
  font-size: 0.85rem;
  /* Reduced from 1rem */
  color: var(--color-grey);
  line-height: 1.5;
}

/* Number / Step Indicator (Optional, based on '01', '02' in reference) */
/* We can use counter or just the existing icons. The reference has numbers. */
/* Let's keep the existing icons as they are distinctive brand assets */


@media (max-width: 1024px) {

  /* Switch back to vertical stack on smaller desktops/tablets */
  .hiw-grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .hiw-card {
    width: 80%;
    max-width: 400px;
    transform: none !important;
    /* Remove rotation/offset */
  }

  .hiw-card:nth-child(odd),
  .hiw-card:nth-child(even) {
    transform: none;
    align-self: center;
  }

  /* Vertical Line for Mobile */
  .timeline-section::before {
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 2px dashed #D1C4E9;
    top: 0;
  }
}

/* Who Is This For - Bento Grid */
.who-is-this {
  padding: 6rem 0;
  background-color: #F8F9FA;
  /* Off-white background from ref */
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2x2 Grid */
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.who-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 400px;
  position: relative;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.who-badge {
  background-color: #D4E157;
  /* Lime/Green default */
  color: #2B3A33;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.who-card:nth-child(2) .who-badge {
  background-color: #BA68C8;
  /* Purple variant */
  color: white;
}

.who-card:nth-child(3) .who-badge {
  background-color: #FFD54F;
  /* Yellow variant */
  color: #5D4037;
}

.who-card:nth-child(4) .who-badge {
  background-color: #64B5F6;
  /* Blue variant */
  color: white;
}


.who-card h3 {
  font-size: 2rem;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.who-img-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.who-img-container img {
  max-width: 80%;
  max-height: 180px;
  object-fit: contain;
}

.who-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin-top: auto;
  /* Push to bottom if needed, or let flow */
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* App Section Bento Grid */
.app-section {
  padding: 6rem 0;
  background: #fff;
}

.app-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  /* 3 Columns */
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-bento-card {
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Card 1: Main (Top Left Wide) */
.app-card-main {
  grid-column: 1 / span 2;
  grid-row: 1;
  background-color: var(--color-cream);
  /* Or Brand Green/custom */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
}

.app-card-main h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-dark-green);
}

.app-card-main p {
  font-size: 1.2rem;
  color: var(--color-grey);
  margin-bottom: 2rem;
  max-width: 80%;
}

/* Card 2: Tall Image (Right) */
.app-card-tall {
  grid-column: 3;
  grid-row: 1 / span 2;
  background-color: #E8F5E9;
  /* Light Green background */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

/* Card 3 & 4: Small Features (Bottom Left & Center) */
.app-card-feature {
  background-color: #F8F9FA;
  /* Light Grey */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.app-card-feature h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.app-card-feature p {
  font-size: 1rem;
  color: #666;
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-orange);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .app-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .app-card-main,
  .app-card-tall,
  .app-card-feature {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
  }

  .app-card-tall {
    height: 400px;
    order: -1;
    /* Show image first on mobile? Or kept normal */
  }
}


/* Recipe Waitlist */
.recipe-waitlist {
  padding: var(--spacing-xl) 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Science Page - Plate Comparison */
.scienc.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  /* Adjusted for Content fit */
  gap: 2rem;
  margin-bottom: 4rem;
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.plate-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 32px;
  text-align: left;
  position: relative;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.plate-card:hover {
  transform: translateY(-5px);
}

.plate-card.bad {
  background: #FFF5F5;
  border: 1px solid #FFCDCD;
}

.plate-card.bad h3 {
  color: #D32F2F;
}

.plate-card.good {
  background: #F1F8E9;
  border: 1px solid #C5E1A5;
}

.plate-card.good h3 {
  color: var(--color-dark-green);
}

.plate-card ul {
  margin-top: 1rem;
}

.plate-card li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Science Page - Creative Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comp-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.comp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Bad Card Theme */
.comp-card.bad {
  background: #FFF9F5;
  border-color: #FFE0D1;
}

.badge-bad {
  background: #FFECDF;
  color: #D35400;
}

.bad-fill {
  background: linear-gradient(90deg, #E67E22, #D35400);
}

.bad-circle {
  border: 4px solid #FFE0D1;
  background: #fff;
}

/* Good Card Theme */
.comp-card.good {
  background: #F4F9F4;
  border-color: #C8E6C9;
}

.badge-good {
  background: #E8F5E9;
  color: var(--color-dark-green);
}

.good-fill {
  background: linear-gradient(90deg, #66BB6A, #2E7D32);
}

.good-circle {
  border: 4px solid #C8E6C9;
  position: relative;
  overflow: hidden;
}

/* Common Elements */
.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.comp-card h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-black);
}

.plate-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.plate-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.plate-circle .emoji {
  font-size: 3rem;
}

.plate-circle .visual-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
}

/* Macro Bars */
.macro-bars {
  margin-bottom: 2rem;
}

.macro-group {
  margin-bottom: 1rem;
}

.macro-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.progress-track {
  background: rgba(0, 0, 0, 0.05);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
}

.impact-box {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-grey);
}

/* Final CTA Section - Clean & Direct */
.final-cta-section {
  padding: 6rem 0;
  background-color: var(--color-white);
  text-align: center;
}

.final-cta-content h2 {
  font-size: 3rem;
  color: var(--color-dark-green);
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.2rem;
  color: var(--color-grey);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}


.recipe-waitlist h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-dark-green);
}

.recipe-waitlist p {
  font-size: 1.2rem;
  color: var(--color-grey);
  margin-bottom: 3rem;
}

.recipe-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.recipe-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recipe-feature span {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-orange);
  font-weight: 600;
}

/* Ethos Section */
.ethos {
  background-color: var(--color-dark-green);
  color: var(--color-cream);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.ethos h2 {
  color: var(--color-yellow);
  /* Pop of yellow on green */
  margin-bottom: 2rem;
}

.ethos-copy {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-family: var(--font-heading);
  font-weight: 400;
}

.ethos-values {
  display: flex;
  justify-content: center;
  gap: 4rem;
  opacity: 0.9;
  font-family: var(--font-body);
}

/* Footer */
footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--color-black);
  /* Dark footer */
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 3rem;
  align-items: start;
}


.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #AAAAAA;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--color-white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 4rem;
  font-size: 0.85rem;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {

  .hero-grid,
  .section-grid,
  .app-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
    margin-top: 2rem;
  }

  .hero-image {
    order: 1;
    height: 50vh;
  }

  .hero-collage {
    order: 1;
    height: 400px;
    margin-bottom: 2rem;
  }

  .meal-image {
    height: 400px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: center;
  }

  .recipe-features {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ethos-values {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Modern App Layout Utilities (Fixed) */
.section-dark {
  background-color: var(--color-dark-green);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--color-white);
}

.section-dark .tag {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--color-white) !important;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ticket-card {
  background-color: var(--color-cream);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  color: var(--color-black);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.ticket-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-orange);
}

.ticket-card h3 {
  color: var(--color-dark-green);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.ticket-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 1rem 0;
}

.ticket-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-grey);
}

.ticket-features {
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
  flex-grow: 1;
  /* Pushes button down */
}

.ticket-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(300px, auto);
  /* Increased min-height */
  gap: 2rem;
  margin-top: 3rem;
}

.bento-item {
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Added shadow */
  transition: transform 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-5px);
}

.bento-item.tall {
  grid-column: span 4;
  grid-row: span 2;
}

.bento-item.wide {
  grid-column: span 8;
}

.bento-item.square {
  grid-column: span 4;
}

.bento-green {
  background-color: var(--color-dark-green);
  color: white;
}

.bento-green h3,
.bento-green p {
  color: white;
}

.bento-cream {
  background-color: var(--color-white);
  /* Changed to White */
  color: var(--color-black);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-image {
  padding: 0;
  min-height: 400px;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  /* Absolute ensure fill */
  top: 0;
  left: 0;
}

@media (max-width: 900px) {
  .bento-item {
    grid-column: span 12 !important;
    grid-row: auto !important;
    min-height: 300px;
  }

  .bento-item.tall {
    min-height: 400px;
  }
}

/* Document Card */
.doc-canvas {
  background-color: var(--color-cream);
  min-height: 100vh;
  padding-bottom: 4rem;
}

.doc-card {
  background: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}