:root {
  --color-primary: #f29d7a;
  --color-secondary: #fcf8f2;
  --color-ground: #3a2332;
  --color-balance: #a3b899;
  --color-card: rgba(255, 255, 255, 0.7);
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'DM Serif Display', serif;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.4rem;
  --transition-fast: 0.3s ease;
  --shadow-soft: 0 1rem 2rem rgba(58, 35, 50, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-ground);
  background: radial-gradient(circle at 10% 20%, #fff7ef 0%, var(--color-secondary) 35%, #f7f3ec 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

html{
  overflow-x: hidden;
}

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

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

main {
  overflow: hidden;
}

.top-shell {
  position: relative;
  z-index: 20;
  padding: 1rem 5%;
}

.top-shell__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(252, 248, 242, 0.8);
  border: 0.06rem solid rgba(58, 35, 50, 0.1);
  border-radius: 5rem;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(0.6rem);
}

.wordmark-link {
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.desktop-stream {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.desktop-stream a,
.mobile-stream a,
.foot-menu a {
  font-size: 0.94rem;
  border-radius: 2rem;
  padding: 0.35rem 0.7rem;
  transition: background var(--transition-fast);
}

.desktop-stream a:hover,
.mobile-stream a:hover,
.foot-menu a:hover {
  background: rgba(242, 157, 122, 0.25);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.5rem;
  border: 0;
  border-radius: 0.6rem;
  background: rgba(58, 35, 50, 0.08);
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  height: 0.13rem;
  width: 100%;
  background: var(--color-ground);
}

.mobile-panel {
  position: absolute;
  top: 5.8rem;
  left: 5%;
  right: 5%;
  background: rgba(252, 248, 242, 0.98);
  border: 0.06rem solid rgba(58, 35, 50, 0.12);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition: all var(--transition-fast);
  z-index: 19;
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-stream {
  display: grid;
  gap: 0.4rem;
}

.hero-banner {
  width: 100vw;
  min-height: 60vh;
  position: relative;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 5%;
}

.hero-banner > img,
.banner-strip > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__veil,
.banner-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(58, 35, 50, 0.72), rgba(58, 35, 50, 0.25));
}

.hero-banner__text,
.banner-strip__content {
  position: relative;
  max-width: 48rem;
  text-align: center;
  color: #fff;
  background: rgba(20, 11, 18, 0.24);
  border: 0.06rem solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  backdrop-filter: blur(0.3rem);
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.2;
}

.eyebrow-copy {
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.8rem;
}

section {
  width: min(74rem, 90%);
  margin: var(--space-xl) auto;
}

.intro-grid,
.about-grid-section,
.contact-info-section,
.harmony-grid-section,
.paired-ideas-section,
.legal-copy-grid,
.list-layout-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.intro-grid article,
.about-grid-section article,
.contact-info-section article,
.harmony-grid-section article,
.paired-ideas-section article,
.legal-copy-grid article,
.list-layout-section > div,
.focus-panel-section,
.result-section,
.products-note-section,
.timeline-detail,
.legal-hero-text {
  background: var(--color-card);
  border: 0.06rem solid rgba(58, 35, 50, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.visual-feature-grid,
.product-grid-section,
.card-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.feature-card-wave,
.product-card-entry,
.flip-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  border: 0.06rem solid rgba(58, 35, 50, 0.1);
}

.feature-card-wave img,
.about-image-section img {
  border-radius: 2.2rem 0.8rem 2.2rem 0.8rem;
}

.banner-strip {
  width: 100vw;
  min-height: 45vh;
  position: relative;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 5%;
}

.solid-action,
.ghost-action,
.product-card-entry a {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  border: 0.06rem solid var(--color-ground);
}

.solid-action {
  background: var(--color-primary);
  color: #27151f;
}

.ghost-action,
.product-card-entry a {
  background: transparent;
}

.food-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.food-chip {
  border: 0;
  border-radius: 2rem;
  padding: 0.5rem 0.9rem;
  background: rgba(163, 184, 153, 0.35);
  cursor: pointer;
}

.food-chip.active {
  background: var(--color-primary);
}

.dial-form-wrap {
  display: grid;
  gap: 0.6rem;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 0.06rem solid rgba(58, 35, 50, 0.28);
  border-radius: 0.6rem;
  padding: 0.6rem;
  background: #fff;
}

.dial-visual {
  margin-top: 1rem;
  background: rgba(163, 184, 153, 0.24);
  border-radius: 50%;
  width: min(15rem, 70vw);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.dial-knob {
  width: 35%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-ground);
  transition: transform 0.5s ease;
}

.timeline-track {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.timeline-step {
  min-width: 12rem;
  border: 0.06rem solid rgba(58, 35, 50, 0.18);
  border-radius: 0.8rem;
  background: #fff;
  padding: 0.7rem;
  cursor: pointer;
}

.flip-face {
  display: none;
  margin-top: 0.8rem;
}

.flip-card.is-open .flip-face {
  display: block;
}

.message-form-grid {
  display: grid;
  gap: 0.6rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.map-section-wrap iframe {
  width: 100%;
  min-height: 20rem;
  border: 0;
  border-radius: var(--radius-lg);
}

.price-tag {
  font-weight: 700;
}

.foot-shell {
  padding: 2rem 5%;
  border-top: 0.06rem solid rgba(58, 35, 50, 0.12);
  background: rgba(252, 248, 242, 0.8);
}

.foot-shell__inner {
  width: min(74rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.foot-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
}

.consent-pop {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: min(24rem, calc(100% - 2rem));
  background: rgba(252, 248, 242, 0.98);
  border: 0.06rem solid rgba(58, 35, 50, 0.2);
  border-radius: 1rem;
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  z-index: 30;
  display: none;
}

.consent-pop.is-visible {
  display: block;
}

.consent-pop__actions {
  display: flex;
  gap: 0.5rem;
}

.consent-approve {
  border: 0;
  border-radius: 2rem;
  background: var(--color-primary);
  padding: 0.5rem 1rem;
  cursor: pointer;
}

@media (max-width: 63.94rem) {
  .desktop-stream {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 64rem) {
  .mobile-panel {
    display: none;
  }
}

@media (max-width: 58rem) {
  .visual-feature-grid,
  .product-grid-section,
  .card-flip-grid,
  .intro-grid,
  .about-grid-section,
  .contact-info-section,
  .harmony-grid-section,
  .paired-ideas-section,
  .legal-copy-grid,
  .list-layout-section {
    grid-template-columns: 1fr;
  }

  .hero-banner__text,
  .banner-strip__content {
    text-align: left;
  }
}
