:root {
  --orange: #f46718;
  --orange-dark: #c84d0f;
  --green: #347b35;
  --green-dark: #07503a;
  --cream: #fff5e5;
  --cream-2: #f5e7d2;
  --brown: #27160f;
  --brown-soft: #5b3a2c;
  --white: #fffdf7;
  --shadow: 0 28px 80px rgba(18, 9, 4, .42);
  --soft-shadow: 0 18px 46px rgba(42, 21, 8, .18);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--brown);
  background: #160e09 url('assets/images/kitchen-bg.png') center top / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(16, 8, 4, .78), rgba(16, 8, 4, .42) 26%, rgba(16, 8, 4, .88));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 72% 35%, rgba(247, 121, 32, .22), transparent 32%), radial-gradient(circle at 15% 20%, rgba(255, 244, 224, .16), transparent 26%);
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1460px, calc(100% - 48px));
  margin-inline: auto;
}

.serif {
  font-family: Georgia, "Times New Roman", serif;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, #8a6b56, #715340);
  border-bottom: 1px solid rgba(255, 245, 226, .25);
  backdrop-filter: blur(10px);
}

.nav,
.nav-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 230px;
  flex: 1 1 auto;
}

.brand img {
  width: min(360px, 32vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(244, 103, 24, .25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff7ea;
  font-weight: 800;
  font-size: 16px;
}

.nav-links a {
  opacity: .92;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd3ae;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 245, 226, .30);
  border-radius: 14px;
  background: rgba(255, 253, 247, .08);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff7ea;
  border-radius: 999px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -8px;
}

.menu-toggle span::after {
  top: 8px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Buttons / Badges ---------- */

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff7927, #f05c11);
  color: white;
  font-weight: 900;
  padding: 15px 23px;
  box-shadow: 0 14px 30px rgba(244, 103, 24, .28);
  white-space: nowrap;
}

.app-btn.secondary {
  background: rgba(255, 253, 247, .78);
  color: var(--brown);
  border: 1px solid rgba(52, 123, 53, .35);
  box-shadow: 0 12px 30px rgba(42, 21, 8, .14);
}

.app-store-link {
  display: flex;
  align-items: center;
}

.app-store-badge {
  height: 50px;
  width: auto;
  display: block;
}

.hero-badge {
  height: 60px;
}

.play {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--green);
  display: inline-block;
}

/* ---------- Home Page ---------- */

.hero-wrap {
  padding: 28px 0 0;
}

.hero {
  position: relative;
  min-height: 690px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 245, 226, .34);
  background: linear-gradient(90deg, rgba(255, 248, 234, .98) 0%, rgba(255, 244, 224, .96) 37%, rgba(255, 244, 224, .65) 49%, rgba(255, 244, 224, .05) 61%), linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 234, .10), rgba(255, 248, 234, .42) 41%, rgba(255, 248, 234, 0) 58%), radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .55), transparent 36%);
  pointer-events: none;
  z-index: 1;
}

.hero-scene {
  position: absolute;
  right: 0;
  top: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  filter: saturate(1.08) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 55%);
  padding: 72px 0 54px 64px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 15px;
  font-weight: 950;
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0 0 24px;
  color: #28150e;
}

.hero h1 span {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
}

.hero p {
  font-size: 21px;
  line-height: 1.42;
  margin: 0 0 30px;
  max-width: 610px;
  font-weight: 750;
  color: #3e2a20;
}

.cta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 34px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 620px;
}

.point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3f913e, #23712d);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(35, 113, 45, .25);
}

.point strong {
  display: block;
  font-size: 16px;
}

.point span:not(.check) {
  font-size: 14px;
  line-height: 1.24;
  color: #4c3428;
}

.section {
  padding: 62px 0;
}

.panel {
  background: rgba(255, 246, 229, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--soft-shadow);
  border-radius: 30px;
  padding: 44px;
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
}

.step-card img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(28, 16, 9, .18);
}

.step-number {
  width: 34px;
  height: 34px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: -17px auto 12px;
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 7px;
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: #5c4639;
  line-height: 1.35;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature {
  border-radius: 28px;
  background: linear-gradient(180deg, #fffaf0, #f5e2c7);
  padding: 32px;
  box-shadow: var(--soft-shadow);
  display: flex;
  gap: 24px;
  align-items: center;
}

.feature img {
  width: 44%;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.feature h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin: 0 0 10px;
}

.feature p {
  margin: 0;
  color: #5b3a2c;
  line-height: 1.5;
  font-size: 17px;
}

.sites {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.site-pill {
  padding: 16px 22px;
  border-radius: 999px;
  background: #fffaf0;
  border: 1px solid rgba(85, 55, 36, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  color: #503124;
  box-shadow: 0 8px 22px rgba(51, 29, 15, .12);
}

/* ---------- General Utility Pages ---------- */

.utility-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 60px;
}

.utility-card {
  width: min(820px, 100%);
  background: rgba(255, 246, 229, .96);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .45);
}

.utility-card img {
  width: 260px;
  max-width: 70%;
  display: block;
  margin: 0 auto 22px;
}

.utility-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  margin: 0 0 14px;
}

.utility-card p,
.utility-card li {
  font-size: 17px;
  line-height: 1.6;
  color: #493226;
}

.utility-card input {
  width: 100%;
  padding: 14px 15px;
  margin: 8px 0;
  border-radius: 12px;
  border: 1px solid rgba(54, 35, 20, .25);
  font-size: 16px;
}

.utility-card button {
  width: 100%;
  margin-top: 10px;
}

.message {
  margin-top: 14px;
  font-weight: 800;
}

.error {
  color: #b00020;
}

.success {
  color: var(--green);
}

/* ---------- FAQ Page ---------- */

.page-hero,
.faq-hero {
  padding: 76px 0 50px;
  text-align: center;
}

.page-hero .container,
.faq-hero .container {
  background: rgba(255, 246, 229, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--soft-shadow);
  border-radius: 30px;
  padding: 50px 34px;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #493226;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 650;
}

.faq-section {
  padding: 10px 0 78px;
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
  background: rgba(255, 246, 229, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--soft-shadow);
  border-radius: 30px;
  padding: 38px;
}

.faq-category {
  margin-bottom: 46px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 20px;
  color: #28150e;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 12px;
}

.faq-item {
  background: #fffaf0;
  border: 1px solid rgba(85, 55, 36, .16);
  border-radius: 16px;
  margin-bottom: 14px;
  padding: 0;
  box-shadow: 0 10px 24px rgba(51, 29, 15, .10);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 850;
  color: #28150e;
  list-style: none;
  font-size: 18px;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.35rem;
  color: var(--orange);
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: #5b3a2c;
  line-height: 1.65;
  font-size: 16px;
}

.faq-error {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.faq-error a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
}

/* ---------- Footer ---------- */

.footer {
  background: linear-gradient(180deg, #715340, #8a6b56);
  color: #fff4e4;
  padding: 36px 0;
  margin-top: 34px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-inner > div:first-child img,
.footer > .container.footer-inner > div:first-child img {
  width: 220px;
  filter: drop-shadow(0 8px 20px rgba(244, 103, 24, .22));
}

.footer-inner > div:last-child {
  text-align: center;
}

.footer .app-store-link {
  display: flex;
  justify-content: center;
}

.footer .app-store-badge {
  height: 44px;
}

.footer h4 {
  margin: 0 0 12px;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 244, 228, .78);
  margin: 0 0 8px;
}

.footer a:hover {
  color: #ffd3ae;
}

.social-title {
  margin-top: 16px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  color: rgba(255, 244, 228, .9);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  display: block;
  filter: none;
  transition: transform .2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  font-size: .9rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1050px) {
  .nav,
  .nav-inner {
    min-height: 90px;
    padding: 12px 0;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(300px, 44vw);
  }

  .header-actions {
    gap: 12px;
  }

  .nav .app-store-link,
  .nav-inner .app-store-link {
    display: flex;
  }

  .nav .app-store-badge,
  .nav-inner .app-store-badge {
    height: 44px;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, rgba(255, 248, 234, .98), rgba(255, 244, 224, .93) 52%, rgba(255, 244, 224, .72));
  }

  .hero-scene {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin-top: -20px;
  }

  .hero-content {
    width: 100%;
    padding: 44px 34px 0;
  }

  .quick-points,
  .steps,
  .feature-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    flex-direction: column;
  }

  .feature img {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(340px, calc(100vw - 32px));
    background: rgba(18, 10, 5, .98);
    border: 1px solid rgba(255, 245, 226, .22);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, .38);
    z-index: 100;
  }

  .nav-links.is-open {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 15px 14px;
    color: #fff7ea;
    border-radius: 12px;
    font-weight: 850;
    font-size: 16px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 245, 226, .10);
    color: #ffd3ae;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1460px);
  }

  .nav,
  .nav-inner {
    min-height: 82px;
  }

  .brand img {
    width: min(230px, 42vw);
  }

  .nav .app-store-badge,
  .nav-inner .app-store-badge {
    height: 38px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    width: 21px;
  }

  .app-btn {
    width: 100%;
    padding: 14px 18px;
  }

  .hero {
    border-radius: 24px;
  }

  .hero-content {
    padding: 32px 22px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .hero p,
  .hero-subtitle {
    font-size: 18px;
  }

  .quick-points,
  .steps,
  .feature-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .panel,
  .faq-container,
  .page-hero .container,
  .faq-hero .container {
    padding: 28px 18px;
  }

  .feature {
    padding: 24px;
  }

  .footer {
    text-align: center;
  }

  .footer img {
    margin: auto;
  }

  .utility-card {
    padding: 28px 22px;
  }

  .utility-card h1 {
    font-size: 34px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: min(205px, 38vw);
  }

  .nav .app-store-badge,
  .nav-inner .app-store-badge {
    height: 34px;
  }

  .header-actions {
    gap: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}


/* ---------- Showcase Page ---------- */

.showcase-hero {
  padding-bottom: 34px;
}

.showcase-section {
  padding: 10px 0 78px;
}

.showcase-container {
  display: grid;
  gap: 26px;
}

.showcase-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.showcase-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  margin: 0 0 12px;
  color: #28150e;
}

.showcase-intro p:not(.eyebrow) {
  margin: 0;
  color: #5b3a2c;
  line-height: 1.55;
  font-size: 17px;
  max-width: 760px;
}

.showcase-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(255, 246, 229, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--soft-shadow);
  border-radius: 24px;
  padding: 18px;
}

.showcase-search {
  position: relative;
}

.showcase-search span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brown-soft);
}

.showcase-search input {
  width: 100%;
  border: 1px solid rgba(85, 55, 36, .18);
  border-radius: 999px;
  padding: 16px 18px 16px 48px;
  font-size: 16px;
  color: var(--brown);
  background: #fffaf0;
  outline: none;
  box-shadow: 0 8px 22px rgba(51, 29, 15, .08);
}

.showcase-search input:focus {
  border-color: rgba(52, 123, 53, .55);
  box-shadow: 0 0 0 4px rgba(52, 123, 53, .14);
}

.showcase-clear {
  cursor: pointer;
}

.active-filter {
  display: none;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: #fffaf0;
  border: 1px solid rgba(52, 123, 53, .30);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(51, 29, 15, .10);
}

.active-filter button {
  border: 0;
  background: transparent;
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  padding: 0 2px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.showcase-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffaf0, #f5e2c7);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .16s ease, box-shadow .16s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(42, 21, 8, .22);
}

.showcase-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fff5e5, #f5e7d2);
  overflow: hidden;
}

.showcase-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.showcase-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(39, 22, 15, .42));
  pointer-events: none;
}

.showcase-cover-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  color: var(--brown);
  background:
    radial-gradient(circle at 72% 34%, rgba(244, 103, 24, .20), transparent 30%),
    linear-gradient(135deg, #fff5e5, #f5e7d2);
}

.showcase-badge-row {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.showcase-badge {
  background: rgba(255, 250, 240, .94);
  color: var(--accent-color, var(--green-dark));
  border: 1px solid var(--accent-color, var(--green-dark));
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(51, 29, 15, .12);
}

.showcase-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.showcase-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
  margin: 0;
  color: #28150e;
}

.showcase-subtitle {
  margin-top: 8px;
  color: var(--accent-color, var(--orange));
  font-weight: 950;
  font-size: 15px;
}

.showcase-story {
  margin: 18px 0 0;
  color: #3e2a20;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 750;
}

.showcase-description {
  margin: 10px 0 0;
  color: #5b3a2c;
  font-size: 16px;
  line-height: 1.55;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
}

.showcase-tag {
  border: 1px solid var(--accent-color, var(--green-dark));
  background: #fffaf0;
  color: var(--accent-color, var(--green-dark));
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(51, 29, 15, .08);
  transition: all .18s ease;
}

.showcase-tag:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.showcase-contributors {
  border-top: 1px solid rgba(85, 55, 36, .16);
  margin-top: 24px;
  padding-top: 17px;
}

.showcase-contributors-label {
  color: var(--brown-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
  margin-bottom: 9px;
}

.showcase-contributors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #4c3428;
}

.showcase-contributors-list a {
  font-weight: 850;
  color: #4c3428;
}

.showcase-contributors-list a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.showcase-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
}

.showcase-actions .app-btn {
  min-height: 50px;
}

.showcase-empty,
.showcase-error {
  display: none;
  background: rgba(255, 246, 229, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--soft-shadow);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  color: #5b3a2c;
  font-weight: 850;
}

.showcase-error {
  color: #b00020;
  background: #fff7ed;
}

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

  .showcase-intro {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .showcase-tools,
  .showcase-actions {
    grid-template-columns: 1fr;
  }

  .showcase-card-body {
    padding: 22px;
  }
}

/* ---------- Showcase Cleanup Overrides ---------- */

.showcase-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.showcase-hero {
  padding-bottom: 24px;
}

.showcase-section {
  padding: 0 0 70px;
}

.showcase-container {
  gap: 22px;
}

.showcase-actions {
  grid-template-columns: 1fr;
}

.showcase-actions .app-btn.secondary {
  display: none;
}
.showcase-summary {
  margin: 18px 0 0;
  color: #3e2a20;
  font-size: 17px;
  line-height: 1.5;
}
.showcase-actions .app-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.showcase-details {
  margin-top: 14px;
  color: #5b3a2c;
}

.showcase-details summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--green-dark);
  list-style: none;
}

.showcase-details summary::after {
  content: " ▼";
  color: var(--orange);
}

.showcase-details[open] summary::after {
  content: " ▲";
}

.showcase-details p {
  margin: 10px 0 0;
  line-height: 1.55;
}



/* ---------- Showcase Plan Preview ---------- */

.preview-open {
  overflow: hidden;
}

.showcase-preview-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  background: rgba(255, 250, 240, .72);
  color: var(--accent-color, var(--orange));
  border: 1px solid var(--accent-color, var(--orange));
  box-shadow: 0 8px 18px rgba(51, 29, 15, .08);
  font-weight: 950;
  padding: 15px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.showcase-preview-btn:hover {
  background: rgba(255, 250, 240, .95);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(51, 29, 15, .12);
}

.showcase-preview-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(244, 103, 24, .18), 0 12px 24px rgba(51, 29, 15, .12);
}


.plan-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(22, 14, 9, .58);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .22s ease;
}

.plan-preview-backdrop.is-open {
  opacity: 1;
}

.plan-preview-sheet {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(720px, calc(100% - 64px));
  max-height: min(82vh, 760px);
  transform: translate(-50%, calc(100% + 36px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background: linear-gradient(180deg, #fffaf0, #f5e2c7);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(18, 9, 4, .48);
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.plan-preview-sheet.is-open {
  transform: translate(-50%, 0);
}

.plan-preview-handle {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(91, 58, 44, .28);
  margin: 12px auto 4px;
}

.plan-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px 20px;
  border-bottom: 1px solid rgba(85, 55, 36, .14);
}

.plan-preview-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}

.plan-preview-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  margin: 0;
  color: #28150e;
}

.plan-preview-subtitle {
  margin: 8px 0 0;
  color: var(--orange-dark);
  font-weight: 900;
  line-height: 1.35;
}

.plan-preview-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(85, 55, 36, .16);
  border-radius: 999px;
  background: rgba(255, 253, 247, .72);
  color: var(--brown);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(51, 29, 15, .10);
}

.plan-preview-content {
  overflow: auto;
  padding: 10px 28px 22px;
}

.plan-preview-menu {
  display: grid;
}

.plan-preview-day {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(85, 55, 36, .14);
}

.plan-preview-day:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plan-preview-day h3 {
  margin: 0;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.plan-preview-recipes {
  display: grid;
  gap: 8px;
}

.plan-preview-recipe {
  font-family: Georgia, "Times New Roman", serif;
  color: #28150e;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.12;
  font-weight: 800;
}

.plan-preview-loading,
.plan-preview-empty {
  padding: 30px 0;
  color: #5b3a2c;
  font-weight: 850;
  line-height: 1.55;
  text-align: center;
}

.plan-preview-footer {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 14px;
  padding: 18px 28px 24px;
  background: rgba(255, 250, 240, .78);
  border-top: 1px solid rgba(85, 55, 36, .14);
}

.plan-preview-footer .app-btn {
  width: 100%;
}

@media (min-width: 681px) and (max-width: 1180px) {
  .plan-preview-sheet {
    width: min(720px, calc(100% - 88px));
  }
}

@media (max-width: 680px) {
  .showcase-preview-btn {
    width: 100%;
  }

  .plan-preview-sheet {
    bottom: 0;
    width: 100%;
    max-height: 86vh;
    border-radius: 26px 26px 0 0;
  }

  .plan-preview-header,
  .plan-preview-content,
  .plan-preview-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

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