/* ==========================================================================
   Kankan Group Rajkot — Theme
   Palette: maroon/red, marigold-orange, gold, ivory cream
   ========================================================================== */

:root {
  --maroon: #7a1e2b;
  --maroon-dark: #591420;
  --orange: #f2871f;
  --orange-light: #ffab4d;
  --gold: #d4a017;
  --gold-light: #f0cf6b;
  --ivory: #fff8ee;
  --ivory-dark: #f7ecd8;
  --ink: #2a1810;
  --ink-soft: #5a463c;
  --white: #ffffff;

  --font-display: "Yatra One", cursive;
  --font-body: "Poppins", sans-serif;
  --font-gu: "Hind Vadodara", "Noto Sans Gujarati", sans-serif;

  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(122, 30, 43, 0.15);
  --shadow-lift: 0 20px 45px rgba(122, 30, 43, 0.25);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Gujarati script gets its own font whenever visible */
[lang="gu"], .lang-gu[data-active="gu"] {
  font-family: var(--font-gu);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--maroon);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--alt {
  background: var(--ivory-dark);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--orange);
  background: rgba(242, 135, 31, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------------- */
/* Bandhani dot texture + paisley ornament utilities                    */
/* -------------------------------------------------------------------- */
.bandhani-bg {
  background-image: radial-gradient(circle, rgba(212, 160, 23, 0.18) 2px, transparent 2.4px);
  background-size: 26px 26px;
}

.paisley-corner {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.15;
  pointer-events: none;
}
.paisley-corner--tl { top: 12px; left: 12px; }
.paisley-corner--tr { top: 12px; right: 12px; transform: scaleX(-1); }
.paisley-corner--bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.paisley-corner--br { bottom: 12px; right: 12px; transform: scale(-1, -1); }

.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  width: fit-content;
  color: var(--gold);
}
.divider-motif::before,
.divider-motif::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* -------------------------------------------------------------------- */
/* Buttons                                                               */
/* -------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--maroon));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { box-shadow: var(--shadow-lift); }

.btn--ghost {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn--ghost:hover { background: var(--maroon); color: var(--white); }

/* -------------------------------------------------------------------- */
/* Header / Nav                                                         */
/* -------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(122, 30, 43, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  transition: color 0.3s ease;
}
.site-header.scrolled .brand { color: var(--maroon); }

.brand-emblem {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(122, 30, 43, 0.35));
}
.brand-emblem img { width: 100%; height: 100%; display: block; }

.footer-brand .brand-emblem { width: 56px; height: 56px; }

.brand-name .gu { font-family: var(--font-gu); display: block; font-size: 0.85rem; color: var(--gold-light); transition: color 0.3s ease; }
.site-header.scrolled .brand-name .gu { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 248, 238, 0.92);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }

.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a::after { background: var(--orange); }
.site-header.scrolled .nav-links a.active { color: var(--maroon); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-toggle {
  display: flex;
  border: 2px solid var(--gold-light);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  font-size: 0.8rem;
  transition: border-color 0.3s ease;
}
.lang-toggle button {
  padding: 7px 14px;
  color: var(--gold-light);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle button.active {
  background: var(--gold-light);
  color: var(--maroon-dark);
}
.site-header.scrolled .lang-toggle { border-color: var(--maroon); }
.site-header.scrolled .lang-toggle button { color: var(--maroon); }
.site-header.scrolled .lang-toggle button.active {
  background: var(--maroon);
  color: var(--white);
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.nav-toggle-btn span {
  height: 3px;
  background: var(--gold-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle-btn span { background: var(--maroon); }

/* Mobile dropdown always has a light background, so force dark text regardless of scroll state */
.nav-links.mobile-open a { color: var(--ink); }
.nav-links.mobile-open a.active { color: var(--maroon); }
.nav-links.mobile-open a::after { background: var(--orange); }

/* -------------------------------------------------------------------- */
/* Marquee strip                                                        */
/* -------------------------------------------------------------------- */
.marquee-strip {
  background: var(--maroon);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
body.has-marquee .site-header { top: 36px; }
body.has-marquee .hero { padding-top: 160px; }
@media (max-width: 720px) {
  body.has-marquee .site-header { top: 52px; }
}
.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}
.marquee-track span { margin: 0 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 135, 31, 0.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(212, 160, 23, 0.25), transparent 45%),
    linear-gradient(160deg, var(--maroon) 0%, var(--maroon-dark) 60%, #3d0f18 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.09) 1.5px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 22px;
}
.hero-tag::before { content: "◆"; color: var(--orange); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold-light); }

.hero p {
  color: rgba(255, 248, 238, 0.85);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lift);
}

.placeholder-media {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(242, 135, 31, 0.25), rgba(122, 30, 43, 0.35));
  border: 2px dashed rgba(212, 160, 23, 0.55);
  border-radius: var(--radius);
  color: var(--gold-light);
}
.placeholder-media svg { width: 46px; height: 46px; opacity: 0.85; }
.placeholder-media .ph-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ivory);
  max-width: 220px;
}

.hero-visual .placeholder-media {
  position: absolute;
  inset: 0;
}

/* Floating dandiya stick decor */
.float-icon {
  position: absolute;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

/* -------------------------------------------------------------------- */
/* Stats                                                                 */
/* -------------------------------------------------------------------- */
.stats-strip {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--gold-light);
}
.stat-label {
  color: rgba(255, 248, 238, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* -------------------------------------------------------------------- */
/* Cards (event highlights, team, gallery)                              */
/* -------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 30px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.card-media {
  aspect-ratio: 4/3;
  position: relative;
}
.card-media .placeholder-media {
  border-radius: 0;
  border-width: 0 0 2px 0;
}

.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: 0.95rem; }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* Spotlight banner (Dussehra) */
.spotlight {
  background: linear-gradient(120deg, var(--gold) 0%, var(--orange) 100%);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  color: var(--maroon-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.spotlight h2 { color: var(--maroon-dark); }
.spotlight .btn--primary { background: var(--maroon); }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 6px;
  left: 20px;
  line-height: 1;
}
.testimonial-quote { margin-bottom: 18px; color: var(--ink-soft); font-style: italic; }
.testimonial-name { font-weight: 700; color: var(--maroon); }
.testimonial-role { font-size: 0.85rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------- */
/* Gallery + filters + lightbox                                         */
/* -------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--maroon);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item .placeholder-media { border-radius: var(--radius); }
.gallery-item[data-hidden="true"] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 700px;
  width: 100%;
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  z-index: 3;
}

/* -------------------------------------------------------------------- */
/* Video embeds                                                         */
/* -------------------------------------------------------------------- */
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 28px;
}
.video-embed--vertical {
  aspect-ratio: 9/16;
}

/* -------------------------------------------------------------------- */
/* Forms                                                                 */
/* -------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 20px;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--maroon);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid rgba(122, 30, 43, 0.15);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-card svg { width: 28px; height: 28px; color: var(--orange); flex-shrink: 0; }
.info-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.info-card p { color: var(--ink-soft); font-size: 0.92rem; }

.map-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
}

/* -------------------------------------------------------------------- */
/* Footer                                                                */
/* -------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(160deg, var(--maroon-dark), #2a0a11);
  color: rgba(255, 248, 238, 0.85);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-brand p { margin: 16px 0; color: rgba(255,248,238,0.7); font-size: 0.92rem; max-width: 320px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--orange-light); }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 23, 0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-dark); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 238, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 248, 238, 0.55);
}

/* -------------------------------------------------------------------- */
/* Scroll reveal                                                        */
/* -------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------- */
/* Page hero (inner pages)                                              */
/* -------------------------------------------------------------------- */
.page-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(circle at 10% 30%, rgba(242, 135, 31, 0.25), transparent 45%),
    linear-gradient(160deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,248,238,0.85); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------------------- */
/* Timeline (about page)                                                */
/* -------------------------------------------------------------------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), var(--orange));
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { color: var(--ink-soft); }

/* Affiliation strip */
.affiliation-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 2px dashed rgba(212, 160, 23, 0.5);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 40px;
}
.affiliation-strip .emblem-ph {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 2px dashed var(--gold);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  text-align: center;
}

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/9; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spotlight { grid-template-columns: 1fr; text-align: center; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle-btn { display: flex; }
  .lang-toggle { transform: scale(0.9); }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* Mobile nav drawer */
.nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--ivory);
  flex-direction: column;
  padding: 24px;
  gap: 18px;
  box-shadow: var(--shadow-lift);
  border-radius: 0 0 var(--radius) var(--radius);
}
