body.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
body.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
#gallery .section-header {
    margin-bottom: 10px;
  }

#gallery .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

#gallery .photo-card img {
    aspect-ratio: 1 / 1;
  }
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  display: grid;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(520px 280px at 10% 15%, rgba(255, 236, 214, 0.9), transparent 60%),
    radial-gradient(420px 260px at 85% 20%, rgba(255, 214, 180, 0.75), transparent 58%),
    radial-gradient(460px 300px at 40% 85%, rgba(255, 239, 221, 0.85), transparent 65%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  z-index: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.subheadline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.where-media {
  margin: 0;
}

.where-photo {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 700px;
}

.section-header p {
  max-width: 62ch;
}

#what .section-header {
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

#what .section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

#faq .section-header {
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

#faq .section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cards {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.section-gallery .section-header {
  margin-bottom: 16px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.notice {
  background: rgba(196, 90, 45, 0.12);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--accent-dark);
  font-weight: 600;
  width: fit-content;
}

#faq .accordion-trigger {
  text-align: center;
}

#faq .accordion-panel {
  text-align: center;
}

@media (min-width: 1024px) {
#faq .accordion {
    justify-items: center;
    gap: 14px;
  }

#faq .accordion-item {
    width: 100%;
    max-width: 860px;
  }

#faq .accordion-item:nth-child(2) {
    max-width: 810px;
  }

#faq .accordion-item:nth-child(3) {
    max-width: 760px;
  }

#faq .accordion-item:nth-child(4) {
    max-width: 710px;
  }

#faq .accordion-item:nth-child(5) {
    max-width: 660px;
  }

#faq .accordion-item:nth-child(6) {
    max-width: 610px;
  }

#faq .accordion-item:nth-child(7) {
    max-width: 560px;
  }

#faq .accordion-item--faq-grahamai {
    max-width: 520px;
  }

#faq .accordion-item--faq-crumbs {
    max-width: 500px;
  }

#faq .accordion-trigger {
    width: 100%;
  }
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  width: min(100%, 320px);
  margin: 18px auto 0;
}

.certification-logo--anab {
  height: 52px;
  max-width: 88px;
}

.certification-logo--servsafe {
  height: 42px;
  max-width: 124px;
  border-color: rgba(0, 151, 190, 0.18);
}

.footer-company-mark--mono {
  width: 42px;
  height: 36px;
  opacity: 0.82;
}

@media (min-width: 768px) {
.hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

.cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
.hero {
    padding-top: 140px;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 60%);
  animation: heroGlow 14s ease-in-out infinite;
  pointer-events: none;
}

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.site-studio-page #studio-media-status.error {
  color: #8a2d1f;
}

.auth-status.error {
  border-color: rgba(164, 70, 30, 0.45);
  background: rgba(196, 90, 45, 0.08);
}

.owner-rules-status.error {
  color: #a4461e;
}

.leaderboard-table td.rank {
  width: 38px;
  font-weight: 700;
}

@media (max-width: 860px) {
.hero {
    padding: 98px 14px 34px;
    gap: 22px;
  }
}

@media (max-width: 700px) {
.much-obliged-handoff-copy .eyebrow {
    margin-bottom: 2px;
  }
}

@media (max-width: 900px) {
.review-purpose-cards .card {
    padding: 18px;
  }
}

.crumbs-flow-step h3,
.crumbs-rules-copy h2,
.crumbs-rules-note strong,
.crumbs-ladder .section-header h2 {
  margin: 14px 0 10px;
  font-family: "Fraunces", serif;
}

.home-page .hero {
  padding-top: 40px;
  padding-bottom: 74px;
  gap: 20px;
}

.home-page .hero::before {
  inset: -12% -4%;
  background:
    radial-gradient(600px 300px at 4% 10%, rgba(255, 236, 214, 0.95), transparent 62%),
    radial-gradient(460px 270px at 96% 16%, rgba(255, 205, 173, 0.78), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 42%);
}

.home-page .hero::after {
  inset: -30% -16%;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.34), transparent 60%),
    repeating-linear-gradient(
      -14deg,
      rgba(255, 255, 255, 0.12) 0 18px,
      rgba(255, 255, 255, 0) 18px 42px
    );
  opacity: 0.75;
  animation: none;
}

.home-page .eyebrow {
  color: var(--brand-red);
  font-weight: 800;
}

.home-page .hero h1 {
  display: block;
  width: min(100%, 640px);
  max-width: 640px;
  margin: 6px 0 0;
  line-height: 0;
}

.home-page .hero h1 picture {
  display: block;
  width: 100%;
}

.home-page .hero h1 img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-page .subheadline {
  max-width: 20ch;
  font-size: 1.16rem;
  color: #584942;
}

@media (min-width: 768px) {
.home-page .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
    align-items: start;
  }
}

@media (min-width: 901px) {
.home-page .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
    align-items: start;
    gap: 28px 42px;
  }

.home-page .hero h1 {
    order: 1;
    grid-column: 1 / -1;
    width: min(100%, 100%);
    max-width: none;
    margin: -6px 0 4px;
  }

.home-page .eyebrow {
    order: 2;
    grid-column: 1 / -1;
    margin-top: 0;
  }

.home-page .subheadline {
    order: 5;
    grid-column: 1 / -1;
  }
}

.home-page .section-header {
  gap: 10px;
}

.home-page .section-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.home-page .cards .card,
.home-page .accordion-item,
.home-page .photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(63, 43, 30, 0.08);
  box-shadow:
    0 18px 34px rgba(60, 41, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-page .cards .card:not([data-product-card])::before,
.home-page .accordion-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(196, 90, 45, 0.86), rgba(216, 174, 105, 0.84), rgba(95, 141, 92, 0.72));
  opacity: 0.9;
}

.home-page #how .card h3 {
  font-size: 1.4rem;
}

.home-page #pricing [data-product-card] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 241, 0.92));
}

.home-page #pricing [data-product-card] h3 {
  font-size: 1.65rem;
}

.home-page #pricing .price-line {
  font-weight: 600;
  color: #4d3d33;
}

.pricing-page .section-header h2 {
  margin-bottom: 6px;
}

.home-page #faq .accordion-trigger {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
.home-page .hero {
    padding-top: 12px;
    padding-bottom: 40px;
    gap: 12px;
  }

.home-page .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }
}

@media (max-width: 640px) {
.home-page .hero {
    padding-top: 8px;
    padding-bottom: 28px;
    gap: 10px;
    grid-template-columns: minmax(132px, 38vw) minmax(0, 1fr);
    align-items: start;
  }

.home-page .eyebrow {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0 auto;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-align: center;
  }

.home-page .hero h1 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 2px 0 0;
    font-size: clamp(1.9rem, 9.2vw, 2.75rem);
    line-height: 0.94;
  }

.home-page .subheadline {
    grid-row: 7;
    margin: 0;
    max-width: none;
    font-size: 1rem;
    line-height: 1.35;
  }

.home-page .mobile-home-section-enabled .section-header {
    gap: 8px;
  }

.home-page .mobile-home-section-enabled .section-header h2 {
    font-size: 1.65rem;
  }

.home-page .mobile-home-section-enabled .cards {
    gap: 12px;
  }
}

@media (min-width: 901px) {
.home-page .eyebrow {
    order: 1;
    grid-column: 1 / -1;
    margin: 0;
  }

.home-page .hero h1 {
    order: 2;
    grid-column: 1 / -1;
    width: min(100%, 620px);
    margin: -2px 0 6px;
  }

.home-page .subheadline {
    order: 3;
    grid-column: 1 / -1;
    max-width: 25ch;
    font-size: 1.22rem;
  }

.shop-page #main > .section-header,
  .shop-page #main > .shop-review-proof,
  .shop-page #main > .auth-shell {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
}

html.about-page-root::before {
  display: none;
}

.about-page {
  background:
    radial-gradient(circle at top, rgba(255, 224, 196, 0.68), transparent 32%),
    linear-gradient(180deg, #fffaf4 0%, #f8eee3 52%, #efe0cf 100%);
}

.about-page::before,
.about-page::after {
  display: none;
}

.about-main {
  position: relative;
  overflow: clip;
  padding-bottom: 68px;
}

.about-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.about-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.about-blob {
  position: absolute;
  border-radius: 999px;
  opacity: 0.72;
  filter: blur(5px);
  mix-blend-mode: multiply;
}

.about-blob--one {
  top: 7%;
  left: -4%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.56), rgba(255, 220, 180, 0));
}

.about-blob--two {
  top: 18%;
  right: 2%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(196, 90, 45, 0.18), rgba(196, 90, 45, 0));
}

.about-blob--three {
  bottom: 6%;
  left: 28%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(231, 185, 119, 0.2), rgba(231, 185, 119, 0));
}

.about-crumbs {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-crumbs li {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 192, 111, 0.95), rgba(196, 90, 45, 0.68));
  box-shadow: 0 0 0 5px rgba(239, 192, 111, 0.12);
  opacity: 0.55;
}

.about-crumbs li:nth-child(1) { top: 12%; left: 14%; }

.about-crumbs li:nth-child(2) { top: 20%; left: 34%; width: 7px; height: 7px; }

.about-crumbs li:nth-child(3) { top: 26%; right: 18%; width: 9px; height: 9px; }

.about-crumbs li:nth-child(4) { top: 48%; left: 10%; width: 6px; height: 6px; }

.about-crumbs li:nth-child(5) { top: 58%; right: 11%; width: 11px; height: 11px; }

.about-crumbs li:nth-child(6) { bottom: 26%; left: 18%; width: 8px; height: 8px; }

.about-crumbs li:nth-child(7) { bottom: 15%; right: 24%; width: 7px; height: 7px; }

.about-crumbs li:nth-child(8) { top: 12%; right: 36%; width: 6px; height: 6px; }

.about-hero {
  position: relative;
  padding: clamp(54px, 8vw, 96px) 0 28px;
}

.about-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.about-hero-subtitle {
  max-width: 56ch;
  font-size: clamp(1.04rem, 2vw, 1.18rem);
  line-height: 1.78;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-hero-notes span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(42, 35, 32, 0.08);
  background: rgba(255, 252, 248, 0.84);
  box-shadow:
    0 10px 24px rgba(90, 58, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  color: #6a5649;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-hero-stage {
  position: relative;
  min-height: 460px;
}

.about-hero-photo {
  position: relative;
  margin: 0;
  width: min(100%, 430px);
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(42, 35, 32, 0.09);
  box-shadow:
    0 34px 74px rgba(48, 28, 15, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.about-hero-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-stage-card {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 22px 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(42, 35, 32, 0.1);
  background: rgba(255, 250, 243, 0.9);
  box-shadow:
    0 24px 52px rgba(90, 58, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.about-stage-card--story {
  left: 0;
  top: 22px;
  width: min(100%, 280px);
  transform: rotate(-6deg);
}

.about-stage-card--support {
  right: 0;
  bottom: 28px;
  width: min(100%, 220px);
  transform: rotate(7deg);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.94), rgba(255, 237, 217, 0.9));
}

.about-stage-card strong {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.about-stage-label,
.about-stage-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(196, 90, 45, 0.1);
  color: #8a4026;
}

.about-ribbon {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.about-ribbon-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(42, 35, 32, 0.08);
  background: rgba(255, 252, 248, 0.82);
  box-shadow:
    0 18px 38px rgba(90, 58, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.about-ribbon-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a4026;
}

.about-feature,
.about-support-panel,
.about-legal-card,
.about-contact-panel-card,
.about-contact-copy {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(42, 35, 32, 0.1);
  background: rgba(255, 250, 243, 0.9);
  box-shadow:
    0 24px 50px rgba(90, 58, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-feature::before,
.about-support-panel::before,
.about-legal-card::before,
.about-contact-panel-card::before,
.about-contact-copy::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.about-feature {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  margin-top: 18px;
}

.about-feature-copy h3,
.about-support-panel h3,
.about-contact-copy h3,
.about-contact-panel-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.about-feature-copy p + p,
.about-support-panel p + p {
  margin-top: 14px;
}

.about-feature-copy p,
.about-support-panel p,
.about-legal-card p,
.about-contact-copy p,
.about-contact-panel-card p,
.about-feature-copy li,
.about-legal-card li,
.about-contact-copy li {
  max-width: 68ch;
}

.about-feature-copy,
.about-support-panel,
.about-legal-card,
.about-contact-copy,
.about-contact-panel-card {
  line-height: 1.7;
}

.about-feature-media {
  margin: 0;
}

.about-feature-media .where-photo {
  border-radius: 24px;
  box-shadow:
    0 20px 44px rgba(46, 28, 16, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.about-support-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.about-support-panel {
  padding: clamp(22px, 3vw, 32px);
}

.about-support-panel--service {
  background:
    radial-gradient(circle at top right, rgba(255, 223, 181, 0.42), transparent 34%),
    rgba(255, 250, 243, 0.92);
}

.about-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efbf69, #c45a2d);
  transform: translateY(-50%);
}

.about-legal {
  padding-top: 22px;
}

.about-legal-header {
  margin-bottom: 24px;
}

.about-legal-grid {
  display: grid;
  gap: 18px;
}

.about-legal-card {
  padding: clamp(22px, 3vw, 32px);
}

.about-legal-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.about-contact {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.about-contact-copy,
.about-contact-panel-card {
  padding: clamp(22px, 3vw, 34px);
}

.about-contact-copy ul {
  margin: 18px 0;
}

.about-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 920px) {
.about-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 440px);
  }

.about-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.about-feature {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

.about-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.about-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.about-legal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 919px) {
.about-hero-stage {
    min-height: 360px;
  }

.about-hero-photo {
    width: min(100%, 360px);
  }

.about-stage-card--story {
    width: min(100%, 250px);
  }

.about-stage-card--support {
    width: min(100%, 200px);
  }
}

@media (max-width: 700px) {
.about-shell {
    padding: 0 16px;
  }

.about-hero {
    padding-top: 40px;
  }

.about-hero-copy h1 {
    max-width: 11ch;
  }

.about-hero-stage {
    min-height: 300px;
  }

.about-hero-photo {
    width: min(100%, 100%);
    max-width: 300px;
    margin: 0 auto;
  }

.about-stage-card {
    padding: 18px 18px 20px;
  }

.about-stage-card--story {
    left: 0;
    top: 4px;
    transform: rotate(-4deg);
  }

.about-stage-card--support {
    right: 0;
    bottom: 8px;
    transform: rotate(5deg);
  }

.about-feature,
  .about-support-panel,
  .about-legal-card,
  .about-contact-copy,
  .about-contact-panel-card {
    border-radius: 24px;
  }

.about-hero-notes span,
  .about-ribbon-item {
    font-size: 0.88rem;
  }

.about-feature,
  .about-support-panel,
  .about-legal-card,
  .about-contact-copy,
  .about-contact-panel-card {
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
.about-blob,
  .about-stage-card--story,
  .about-stage-card--support {
    animation: none;
    transform: none;
  }
}
