/* ==========================================================================
   DESIGN TOKENS & CSS VARIABLES (Modern Culinary Olive & Golden Honey)
   ========================================================================== */
:root {
  /* Light Theme */
  --bg-primary: hsl(42, 25%, 98%);
  --bg-secondary: hsl(40, 20%, 94%);
  --bg-card: hsl(0, 0%, 100%);
  --bg-glass: rgba(250, 248, 245, 0.90);
  
  --text-primary: hsl(150, 15%, 12%);
  --text-secondary: hsl(150, 8%, 38%);
  --text-muted: hsl(150, 6%, 58%);
  
  --accent-color: hsl(154, 42%, 28%);
  --accent-hover: hsl(154, 45%, 21%);
  --accent-light: hsl(150, 35%, 93%);
  --badge-color: hsl(38, 92%, 48%);
  
  --border-color: rgba(39, 92, 61, 0.12);
  --border-glass: rgba(255, 255, 255, 0.7);
  
  --shadow-sm: 0 2px 8px rgba(39, 92, 61, 0.05);
  --shadow-md: 0 8px 24px rgba(39, 92, 61, 0.08);
  --shadow-lg: 0 16px 40px rgba(39, 92, 61, 0.12);
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radii & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme {
  /* Dark Theme */
  --bg-primary: hsl(150, 12%, 10%);
  --bg-secondary: hsl(150, 10%, 14%);
  --bg-card: hsl(150, 8%, 18%);
  --bg-glass: rgba(22, 29, 25, 0.90);
  
  --text-primary: hsl(45, 15%, 94%);
  --text-secondary: hsl(45, 10%, 72%);
  --text-muted: hsl(150, 6%, 55%);
  
  --accent-color: hsl(154, 45%, 52%);
  --accent-hover: hsl(154, 45%, 62%);
  --accent-light: hsl(154, 30%, 20%);
  --badge-color: hsl(38, 90%, 55%);
  
  --border-color: rgba(255, 255, 255, 0.12);
  --border-glass: rgba(255, 255, 255, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo span.accent {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.theme-toggle:hover {
  transform: rotate(15deg);
}

.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }
body.dark-theme .theme-toggle .sun-icon { display: block; }
body.dark-theme .theme-toggle .moon-icon { display: none; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--bg-secondary);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background: var(--accent-light);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: #fff;
}

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

/* ==========================================================================
   FILTER & SEARCH SECTION
   ========================================================================== */
.filter-section {
  margin: 2.5rem auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cat-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/* ==========================================================================
   ARTICLE CARDS GRID
   ========================================================================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.card-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.read-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   NEWSLETTER CARD
   ========================================================================== */
.newsletter-section {
  background: var(--accent-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
}

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter-desc {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  outline: none;
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-desc {
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-size: 0.95rem;
  max-width: 360px;
}

.footer-links-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 60px;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 60px);
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }
  .nav-links.active {
    right: 0;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-section {
    padding: 1.75rem 0 1.25rem;
  }
  .hero-grid {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .recipe-box {
    padding: 1.25rem 1rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
  }
  .recipe-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .recipe-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem 0.75rem;
  }
  .recipe-quick-actions {
    flex-direction: column;
    width: 100%;
  }
  .recipe-quick-actions .btn-jump,
  .recipe-quick-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .category-chips {
    gap: 0.4rem;
  }
  .cat-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
  }
  .newsletter-section {
    padding: 2rem 1.25rem;
  }
  .newsletter-title {
    font-size: 1.6rem;
  }
  .static-page-header h1 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   RECIPE CARD & CULINARY COMPONENTS
   ========================================================================== */
.recipe-quick-actions {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
}

.btn-jump {
  background: var(--accent-color);
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(39, 92, 61, 0.2);
  transition: all var(--transition);
}

.btn-jump:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(39, 92, 61, 0.3);
}

.btn-outline {
  background: var(--bg-card);
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color) !important;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.recipe-box {
  background: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
  scroll-margin-top: 100px;
}

.recipe-header {
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.recipe-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  text-align: center;
}

.recipe-meta-item strong {
  display: block;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.recipe-meta-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {
  .recipe-columns {
    grid-template-columns: 1fr;
  }
}

.ingredients-list, .instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredients-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.ingredients-list li input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.instructions-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.instructions-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instructions-list {
  counter-reset: step-counter;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.5rem;
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.btn-print {
  background: transparent;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-print:hover {
  background: var(--accent-color);
  color: #fff;
}

/* AEO BLUF Box */
.aeo-answer-box {
  background: var(--accent-light);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Callout Boxes */
.pro-tip-box {
  background: hsl(140, 40%, 94%);
  border-left: 4px solid hsl(142, 45%, 32%);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: hsl(150, 20%, 15%);
}

body.dark-theme .pro-tip-box {
  background: hsl(150, 25%, 15%);
  color: hsl(140, 15%, 92%);
  border-left-color: hsl(142, 50%, 48%);
}

.caution-box {
  background: hsl(35, 75%, 95%);
  border-left: 4px solid hsl(35, 75%, 45%);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: hsl(30, 30%, 15%);
}

body.dark-theme .caution-box {
  background: hsl(35, 30%, 15%);
  color: hsl(35, 60%, 90%);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--bg-secondary);
  padding: 1rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.comparison-table tr:hover {
  background: var(--bg-secondary);
}

/* Ranking Items Card */
.ranking-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ranking-item-card:hover {
  box-shadow: var(--shadow-md);
}

.ranking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ranking-badge {
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

@media (max-width: 600px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

.pro-item {
  color: hsl(142, 50%, 35%);
  margin-bottom: 0.5rem;
}

.con-item {
  color: hsl(0, 65%, 45%);
  margin-bottom: 0.5rem;
}

/* Static Pages Layout */
.static-page {
  max-width: 850px;
  margin: 3rem auto 6rem;
  padding: 0 1.5rem;
}

.static-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.static-page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.static-page-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--accent-color);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
