/* CSS Variables for consistent theming */
:root {
  --background: hsl(33, 60%, 95%);
  --foreground: hsl(0, 0%, 17%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 17%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(0, 0%, 17%);
  --primary: hsl(33, 85%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(120, 35%, 25%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(33, 30%, 88%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(33, 85%, 45%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(33, 20%, 82%);
  --input: hsl(0, 0%, 100%);
  --ring: hsl(33, 85%, 45%);
  --radius: 0.75rem;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  z-index: 50;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text p {
  color: var(--foreground);
  font-size: 0.875rem;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
  }
  
  .cookie-text p {
    text-align: left;
  }
  
  .cookie-buttons {
    justify-content: flex-end;
  }
}

/* Navigation */
.navbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  color: var(--primary);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.nav-menu {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--primary-foreground);
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-graphic {
  margin-bottom: 2rem;
}

.hero-svg {
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: hsl(33, 85%, 40%);
  color: var(--primary-foreground);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: hsl(120, 35%, 20%);
  color: var(--secondary-foreground);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
  color: var(--foreground);
}

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

.btn-white:hover {
  background: var(--muted);
  color: var(--primary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Page Header */
.page-header {
  background: var(--background);
  padding: 4rem 0;
  text-align: center;
}

.page-header-content {
  max-width: 48rem;
  margin: 0 auto;
}

.page-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Main Content */
.main-content {
  flex: 1;
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* Featured Recipes */
.featured-recipes {
  padding: 4rem 0;
  background: var(--background);
}

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

@media (min-width: 768px) {
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .recipe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recipe-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.recipe-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.recipe-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.recipe-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recipe-time {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.recipe-link {
  color: var(--primary);
  font-weight: 500;
}

.recipe-link:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-icon {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-card {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-column-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-image img {
  width: 100%;
  height: auto;
}

.rounded-image {
  border-radius: var(--radius);
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.content-paragraph {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--primary);
  font-weight: 600;
}

.feature-text {
  color: var(--foreground);
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.team-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.team-role {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.team-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Courses Section */
.courses-section {
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.course-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.course-content {
  padding: 1.5rem;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.course-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.course-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.detail-icon {
  flex-shrink: 0;
}

.detail-text {
  flex: 1;
}

/* Group Bookings */
.group-bookings {
  padding: 4rem 0;
}

/* Testimonials */
.testimonials-section {
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--muted) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-photo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.author-course {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.blog-title {
  margin-bottom: 0.75rem;
}

.blog-title a {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 500;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* Newsletter CTA */
.newsletter-cta {
  padding: 4rem 0;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-text {
  color: var(--muted-foreground);
}

.directions {
  margin-top: 2rem;
}

.directions-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.directions-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.directions-info {
  background: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
}

.directions-detail {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-form-container {
  max-width: 100%;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.form-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--input);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(33, 85%, 45%, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

.privacy-link {
  color: var(--primary);
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Blog Article */
.blog-article {
  padding: 2rem 0;
}

.article-header {
  max-width: 48rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--primary);
}

.article-image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .article-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  line-height: 1.2;
}

.article-intro {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.article-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.article-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.article-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

/* Ingredients Section */
.ingredients-section {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
}

.ingredients-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.ingredients-list li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Recipe Steps */
.recipe-steps {
  margin: 2rem 0;
}

.recipe-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.recipe-step h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Chef Tips */
.chef-tips {
  margin: 2rem 0;
}

.tip {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.tip h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Variations */
.variations h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

/* Nutrition Info */
.nutrition-info {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.nutrition-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: var(--card);
  border-radius: 0.5rem;
}

.nutrition-label {
  font-weight: 500;
  color: var(--foreground);
}

.nutrition-value {
  font-weight: 600;
  color: var(--primary);
}

.article-conclusion {
  font-size: 1.125rem;
  color: var(--foreground);
  font-weight: 500;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

/* Article Footer */
.article-footer {
  max-width: 48rem;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.author-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
}

.author-photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.author-bio {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.4;
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* Cookie Settings */
.cookie-settings {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.cookie-controls {
  margin-bottom: 1.5rem;
}

.cookie-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-control:last-child {
  border-bottom: none;
}

.cookie-name {
  font-weight: 500;
  color: var(--foreground);
}

.cookie-status {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.always-on {
  color: var(--primary);
}

.cookie-toggle {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.cookie-toggle:hover {
  background: hsl(33, 85%, 40%);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Cookie Table */
.cookie-table {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.cookie-row:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .cookie-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cookie-cell {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.browser-note {
  background: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin: 1rem 0;
}

/* Thanks Page */
.thanks-page {
  padding: 4rem 0;
  text-align: center;
}

.thanks-content {
  max-width: 48rem;
  margin: 0 auto;
}

.thanks-icon {
  margin-bottom: 2rem;
}

.success-icon {
  color: var(--primary);
}

.thanks-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

.thanks-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.thanks-steps {
  margin-bottom: 2rem;
}

.steps-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.thanks-actions {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .thanks-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.thanks-info {
  margin-top: 2rem;
}

.info-card {
  text-align: left;
}

.info-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-family: var(--font-serif);
}

.info-text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  color: white;
}

.footer-brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.footer-description {
  color: hsl(0, 0%, 80%);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: hsl(0, 0%, 80%);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  font-size: 0.875rem;
  color: hsl(0, 0%, 80%);
  line-height: 1.5;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid hsl(120, 35%, 35%);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: hsl(0, 0%, 80%);
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .thanks-title {
    font-size: 2rem;
  }
  
  .legal-title {
    font-size: 2rem;
  }
  
  .article-image {
    height: 16rem;
  }
}

/* Hidden state for mobile menu */
.nav-menu.hidden {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu.hidden {
    display: flex;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}
