/* ==========================================================================
   Annapoorne Khadya - Main Stylesheet
   Elegant, warm design for homemade food business
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Warm, appetizing palette */
  --clr-cream: #faf7f2;
  --clr-cream-dark: #f5f0e8;
  --clr-warm-white: #fffdfb;
  --clr-terracotta: #c45d3e;
  --clr-terracotta-dark: #a84832;
  --clr-terracotta-light: #e8866a;
  --clr-gold: #d4a853;
  --clr-gold-light: #f0d590;
  --clr-sage: #7a8f72;
  --clr-sage-light: #a5b89e;
  --clr-ink: #2d2926;
  --clr-ink-light: #4a4541;
  --clr-muted: #6b6460;
  --clr-border: rgba(45, 41, 38, 0.1);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(45, 41, 38, 0.08);
  --shadow-lg: 0 16px 48px rgba(45, 41, 38, 0.12);
  --shadow-xl: 0 24px 64px rgba(45, 41, 38, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-ink);
  background: var(--clr-cream);
}

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

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

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--clr-muted);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--clr-ink-light);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 1px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.container--narrow {
  width: min(900px, 90%);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--clr-warm-white);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header p {
  margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-lg);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-logo {
  height: 67px;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: white;
  padding: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav a {
  padding: var(--space-xs) var(--space-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--clr-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav a:hover {
  color: var(--clr-ink);
  background: rgba(45, 41, 38, 0.04);
}

.nav a.is-active {
  color: var(--clr-terracotta);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(45, 41, 38, 0.04);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-ink);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--clr-terracotta);
  color: white;
  box-shadow: 0 4px 16px rgba(196, 93, 62, 0.3);
}

.btn-primary:hover {
  background: var(--clr-terracotta-dark);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.4);
}

.btn-secondary {
  background: var(--clr-gold);
  color: var(--clr-ink);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.btn-secondary:hover {
  background: var(--clr-gold-light);
}

.btn-outline {
  border-color: var(--clr-terracotta);
  color: var(--clr-terracotta);
  background: transparent;
}

.btn-outline:hover {
  background: var(--clr-terracotta);
  color: white;
}

.btn-ghost {
  color: var(--clr-ink);
  border-color: var(--clr-border);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--clr-ink);
  background: rgba(45, 41, 38, 0.04);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-2xl);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(196, 93, 62, 0.1) 0%, transparent 50%),
    var(--clr-cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 213, 144, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: var(--space-md);
}

.hero-content .lead {
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-visual {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-terracotta-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}

.hero-floating-card .stat {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--clr-terracotta);
}

.hero-floating-card p {
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

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

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--clr-ink);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--clr-muted);
}

/* --------------------------------------------------------------------------
   Page Hero (for inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: var(--space-xl) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 168, 83, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 93, 62, 0.1) 0%, transparent 50%),
    var(--clr-cream-dark);
  text-align: center;
}

.page-hero .container {
  max-width: 800px;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero .lead {
  margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.9375rem;
}

.card-tag {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.25rem 0.75rem;
  background: rgba(196, 93, 62, 0.1);
  color: var(--clr-terracotta);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Featured Card */
.card--featured {
  background: linear-gradient(135deg, var(--clr-terracotta) 0%, var(--clr-terracotta-dark) 100%);
  color: white;
}

.card--featured h3,
.card--featured p {
  color: white;
}

.card--featured p {
  opacity: 0.9;
}

.card--featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--clr-cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature h3 {
  margin-bottom: var(--space-xs);
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 80px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: var(--clr-terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.step h3 {
  margin-bottom: var(--space-xs);
}

/* --------------------------------------------------------------------------
   Content Grid (Two Column)
   -------------------------------------------------------------------------- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-image {
  position: relative;
}

.content-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-terracotta-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  text-align: center;
  padding: var(--space-md);
}

.image-placeholder--tall {
  aspect-ratio: 3/4;
}

.image-placeholder--square {
  aspect-ratio: 1;
}

.content-text h2 {
  margin-bottom: var(--space-md);
}

.content-text p + p {
  margin-top: var(--space-sm);
}

.content-list {
  margin-top: var(--space-md);
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--clr-border);
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--clr-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-sage);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  list-style: none;
  transition: background var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-terracotta);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--clr-cream);
}

.faq-item-content {
  padding: 0 var(--space-lg) var(--space-md);
}

.faq-item-content p {
  font-size: 0.9375rem;
}

.faq-item-content a {
  color: var(--clr-terracotta);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Team Section
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-ink);
}

.team-card h3 {
  margin-bottom: var(--space-xs);
}

.team-card p {
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Callout / CTA Boxes
   -------------------------------------------------------------------------- */
.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.callout {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.callout h3 {
  margin-bottom: var(--space-sm);
}

.callout p {
  margin-bottom: var(--space-sm);
}

.callout-meta {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: var(--space-sm) 0;
}

.callout--accent {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
}

.callout--accent h3,
.callout--accent p {
  color: var(--clr-ink);
}

.callout--primary {
  background: linear-gradient(135deg, var(--clr-terracotta) 0%, var(--clr-terracotta-dark) 100%);
}

.callout--primary h3,
.callout--primary p,
.callout--primary .callout-meta {
  color: white;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-terracotta) 0%, var(--clr-terracotta-dark) 100%);
  padding: var(--space-xl) 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--space-xs);
}

.cta-banner .btn-secondary {
  background: var(--clr-gold);
  color: var(--clr-ink);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--clr-ink);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-brand h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

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

.footer-contact p {
  margin-bottom: var(--space-sm);
}

.footer-contact strong {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-floating-card {
    bottom: auto;
    top: -16px;
    left: auto;
    right: -16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .content-grid--reverse {
    direction: ltr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: var(--space-sm);
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-stat {
    text-align: left;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .callout-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
