:root {
  --cream: #fff9f0;
  --cream-deep: #f4eadc;
  --terra: #a64b3c;
  --terra-dark: #81382e;
  --coffee: #432b24;
  --coffee-soft: #684b42;
  --gold: #d8a33d;
  --olive: #65704a;
  --rose: #dfa28e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(67, 43, 36, 0.14);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 48px));
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--coffee);
  color: var(--cream);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 50;
  overflow: hidden;
  background: var(--terra);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 10px 0;
  animation: marquee 26s linear infinite;
}

.marquee i {
  color: var(--gold);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(67, 43, 36, 0.08);
  background: rgba(255, 249, 240, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 250px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--coffee);
  color: var(--cream);
}

.button {
  padding: 0 26px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--terra);
  box-shadow: 0 14px 32px rgba(166, 75, 60, 0.24);
  color: var(--cream);
}

.button-primary:hover {
  background: var(--terra-dark);
  box-shadow: 0 18px 40px rgba(166, 75, 60, 0.32);
}

.button-cream {
  background: var(--cream);
  box-shadow: 0 14px 36px rgba(67, 43, 36, 0.2);
  color: var(--terra);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(67, 43, 36, 0.15);
  border-radius: 50%;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--coffee);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 121px);
  align-items: center;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 84% 20%, rgba(223, 162, 142, 0.24), transparent 27%),
    radial-gradient(circle at 5% 78%, rgba(216, 163, 61, 0.14), transparent 25%),
    var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 16% 24%, rgba(166, 75, 60, 0.22) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 62%, rgba(101, 112, 74, 0.18) 0 1px, transparent 1.5px);
  background-size: 31px 31px, 43px 43px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  gap: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  justify-content: center;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  font-size: clamp(54px, 6.1vw, 88px);
}

h2 {
  font-size: clamp(44px, 4.7vw, 68px);
}

h1 em,
h2 em {
  color: var(--terra);
  font-weight: 500;
}

.hero-text {
  max-width: 615px;
  margin-bottom: 32px;
  color: var(--coffee-soft);
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(67, 43, 36, 0.35);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.proof-seal {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px dashed var(--terra);
  border-radius: 50%;
  animation: slow-spin 18s linear infinite;
}

.proof-seal span {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  animation: reverse-spin 18s linear infinite;
}

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes reverse-spin { to { transform: rotate(-360deg); } }

.hero-proof p {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 13px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--coffee);
}

.hero-visual {
  position: relative;
  max-width: 510px;
  margin-left: auto;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 11px solid rgba(255, 255, 255, 0.76);
  border-radius: 50% 50% 30px 30px / 38% 38% 30px 30px;
  box-shadow: var(--shadow);
  background: var(--rose);
  transform: rotate(1.5deg);
}

.photo-frame > img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.photo-frame:hover > img {
  transform: scale(1.035);
}

.photo-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(67, 43, 36, 0.58));
}

.photo-caption {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--cream);
}

.photo-caption span {
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
}

.photo-caption small {
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.photo-glow {
  position: absolute;
  top: 8%;
  left: -10%;
  z-index: 3;
  width: 60%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(24px);
  transform: rotate(-18deg);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(67, 43, 36, 0.16);
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card p {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 11px;
  line-height: 1.35;
}

.floating-card strong {
  color: var(--coffee);
  font-size: 12px;
}

.floating-card-top {
  top: 16%;
  left: -70px;
}

.floating-card-bottom {
  right: -44px;
  bottom: 16%;
  animation-delay: -2s;
}

.mini-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--terra);
  color: var(--cream);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.scribble {
  position: absolute;
  z-index: 6;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  transform: rotate(-12deg);
}

.scribble-one {
  top: -25px;
  right: 22px;
}

.scribble-one::after {
  display: block;
  width: 50px;
  height: 15px;
  margin: -4px auto 0;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(166, 75, 60, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -18%;
  right: -6%;
  width: 620px;
  height: 620px;
}

.orbit-two {
  right: 6%;
  bottom: -38%;
  width: 520px;
  height: 520px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--coffee-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue i {
  position: relative;
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: rgba(67, 43, 36, 0.2);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--terra);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.categories {
  background: var(--cream-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 410px;
  margin-bottom: 6px;
  color: var(--coffee-soft);
  font-size: 17px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 440px;
  overflow: hidden;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(67, 43, 36, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(67, 43, 36, 0.05);
  background: var(--cream);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card::after {
  position: absolute;
  top: 66px;
  left: 50%;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 44% 56% 63% 37% / 50% 38% 62% 50%;
  content: "";
  background: var(--card-accent);
  transform: translateX(-50%) rotate(10deg);
  transition: border-radius 0.5s ease, transform 0.5s ease;
}

.category-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-12px) rotate(-1deg);
}

.category-card:nth-child(even):hover {
  transform: translateY(-12px) rotate(1deg);
}

.category-card:hover::after {
  border-radius: 58% 42% 38% 62% / 42% 60% 40% 58%;
  transform: translateX(-50%) rotate(-6deg) scale(1.07);
}

.card-sweets { --card-accent: rgba(216, 163, 61, 0.28); }
.card-biscuits { --card-accent: rgba(223, 162, 142, 0.34); }
.card-spices { --card-accent: rgba(166, 75, 60, 0.19); }
.card-natural { --card-accent: rgba(101, 112, 74, 0.27); }

.category-number {
  align-self: flex-end;
  color: rgba(67, 43, 36, 0.42);
  font-family: var(--serif);
  font-size: 13px;
}

.category-art {
  display: grid;
  height: 185px;
  place-items: center;
}

.category-art span {
  font-size: 76px;
  filter: drop-shadow(0 14px 14px rgba(67, 43, 36, 0.16));
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.category-card:hover .category-art span {
  transform: scale(1.1) rotate(5deg);
}

.category-tag {
  margin-bottom: 6px;
  color: var(--terra);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.category-card > p:not(.category-tag) {
  margin-bottom: 18px;
  color: var(--coffee-soft);
  font-size: 13px;
  line-height: 1.55;
}

.category-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(67, 43, 36, 0.13);
  font-size: 12px;
  font-weight: 700;
}

.availability-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 0;
  color: var(--coffee-soft);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.availability-note span {
  color: var(--gold);
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.story::after {
  position: absolute;
  top: 12%;
  right: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(166, 75, 60, 0.13);
  border-radius: 50%;
  content: "";
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 100px;
}

.story-visual {
  position: relative;
}

.story-image-wrap {
  position: relative;
  max-width: 470px;
  padding: 16px;
  border: 1px solid rgba(67, 43, 36, 0.14);
  border-radius: 220px 220px 30px 30px;
  background: var(--cream-deep);
  transform: rotate(-2deg);
}

.story-image-wrap img {
  width: 100%;
  border-radius: 205px 205px 20px 20px;
}

.stamp {
  position: absolute;
  right: -42px;
  bottom: 48px;
  display: flex;
  width: 132px;
  height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--terra), 0 12px 35px rgba(67, 43, 36, 0.25);
  background: var(--terra);
  color: var(--cream);
  transform: rotate(9deg);
}

.stamp span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.stamp b {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
}

.story-copy h2 {
  max-width: 700px;
}

.story-copy > p {
  max-width: 650px;
  color: var(--coffee-soft);
  font-size: 16px;
}

.story-copy .story-lead {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}

blockquote {
  position: relative;
  margin: 35px 0 0;
  padding: 26px 30px 24px 44px;
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: var(--cream-deep);
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

blockquote::before {
  position: absolute;
  top: 12px;
  left: 13px;
  content: "“";
  color: var(--rose);
  font-size: 46px;
  line-height: 1;
}

blockquote cite {
  display: block;
  margin-top: 11px;
  color: var(--terra);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path {
  background: var(--white);
}

.steps {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.step-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 26px;
  place-items: center;
  border: 1px solid var(--terra);
  border-radius: 50%;
  background: var(--cream);
  color: var(--terra);
  font-family: var(--serif);
  font-size: 21px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.step:hover .step-icon {
  background: var(--terra);
  color: var(--cream);
  transform: scale(1.08) rotate(8deg);
}

.step-line {
  position: absolute;
  top: 34px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  border-top: 1px dashed rgba(166, 75, 60, 0.35);
}

.step h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 13px;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--coffee);
  color: var(--cream);
}

.manifesto::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background: radial-gradient(circle at center, var(--rose), transparent 45%);
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.manifesto h2 {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(48px, 6vw, 78px);
}

.manifesto h2 em {
  color: var(--rose);
}

.manifesto-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 249, 240, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto-values i {
  color: var(--gold);
  font-style: normal;
}

.manifesto-word {
  position: absolute;
  color: rgba(255, 249, 240, 0.035);
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 280px);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.word-one {
  top: -15px;
  left: -40px;
}

.word-two {
  right: -35px;
  bottom: -52px;
}

.order {
  background:
    radial-gradient(circle at 90% 18%, rgba(216, 163, 61, 0.15), transparent 24%),
    var(--cream-deep);
}

.order-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 0.75fr;
  gap: 100px;
}

.order-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--coffee-soft);
  font-size: 17px;
}

.order-perks {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.order-perks > div {
  display: flex;
  gap: 15px;
}

.order-perks span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  font-size: 12px;
}

.order-perks p {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 13px;
  line-height: 1.45;
}

.order-perks strong {
  color: var(--coffee);
}

.order-form {
  padding: 34px;
  border: 1px solid rgba(67, 43, 36, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(67, 43, 36, 0.12);
}

.form-top span {
  font-family: var(--serif);
  font-size: 24px;
}

.form-top small {
  color: var(--olive);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-form > label,
.order-form legend {
  display: block;
  margin-bottom: 8px;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 700;
}

.order-form input[type="text"],
.order-form textarea {
  width: 100%;
  margin-bottom: 19px;
  padding: 14px 16px;
  border: 1px solid rgba(67, 43, 36, 0.18);
  border-radius: 13px;
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  color: var(--coffee);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form input[type="text"]:focus,
.order-form textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(166, 75, 60, 0.11);
}

.order-form textarea {
  resize: vertical;
}

.order-form fieldset {
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice {
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(67, 43, 36, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--coffee-soft);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.choice input:checked + span {
  border-color: var(--terra);
  background: var(--terra);
  color: var(--cream);
}

.choice input:focus-visible + span {
  outline: 3px solid rgba(166, 75, 60, 0.22);
  outline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--coffee-soft);
  font-size: 10px;
  text-align: center;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 90px;
}

.accordion details {
  border-bottom: 1px solid rgba(67, 43, 36, 0.16);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(67, 43, 36, 0.22);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.accordion details[open] summary span {
  background: var(--terra);
  color: var(--cream);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 660px;
  padding: 0 52px 24px 0;
  color: var(--coffee-soft);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--terra);
  color: var(--cream);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 249, 240, 0.13);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -190px;
  left: -120px;
}

.final-cta::after {
  right: -120px;
  bottom: -230px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-mini {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(48px, 6vw, 78px);
}

.final-cta p {
  margin: -4px auto 28px;
  color: rgba(255, 249, 240, 0.78);
}

footer {
  padding: 70px 0 24px;
  background: var(--coffee);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: 1.35fr 0.65fr 0.75fr 0.8fr;
  gap: 55px;
}

.footer-brand img {
  width: 240px;
  height: auto;
  margin-bottom: 16px;
  border-radius: 10px;
}

.footer-brand p {
  color: rgba(255, 249, 240, 0.66);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.footer-links p {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 249, 240, 0.72);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-origin {
  display: grid;
  justify-items: start;
  gap: 0;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 249, 240, 0.12);
}

.footer-origin span {
  color: rgba(255, 249, 240, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-origin strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.footer-origin i {
  color: var(--gold);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 249, 240, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 249, 240, 0.46);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(67, 43, 36, 0.24);
  background: var(--olive);
  color: var(--cream);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

.floating-whatsapp span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 17px;
}

.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  z-index: 100;
  width: min(430px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(67, 43, 36, 0.3);
  background: var(--coffee);
  color: var(--cream);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 45px;
  }

  .floating-card-top { left: -38px; }
  .floating-card-bottom { right: -20px; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .order-grid {
    gap: 60px;
  }

  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .section {
    padding: 88px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 205px;
  }

  .menu-button {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 90px 38px 40px;
    box-shadow: -20px 0 50px rgba(67, 43, 36, 0.2);
    background: var(--cream);
    font-family: var(--serif);
    font-size: 25px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 10px 0;
  }

  .nav-cta {
    margin-top: 18px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .story-grid,
  .order-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-image-wrap {
    margin-inline: auto;
  }

  .story-copy {
    text-align: center;
  }

  .story-copy .eyebrow {
    justify-content: center;
  }

  .story-copy > p {
    margin-inline: auto;
  }

  blockquote {
    text-align: left;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 52px 0;
  }

  .step:nth-child(2) .step-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .announcement {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(45px, 13.2vw, 64px);
  }

  h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    align-self: center;
  }

  .hero-proof {
    text-align: left;
  }

  .hero-visual {
    width: calc(100% - 22px);
  }

  .photo-frame {
    border-width: 7px;
  }

  .floating-card {
    min-width: 0;
    padding: 9px 11px;
  }

  .floating-card-top {
    top: 15%;
    left: -20px;
  }

  .floating-card-bottom {
    right: -18px;
    bottom: 14%;
  }

  .floating-card p {
    font-size: 9px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .mini-icon {
    width: 29px;
    height: 29px;
  }

  .photo-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .photo-caption span {
    font-size: 21px;
  }

  .photo-caption small {
    display: none;
  }

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

  .category-card {
    min-height: 410px;
  }

  .availability-note {
    align-items: flex-start;
    text-align: center;
  }

  .stamp {
    right: -5px;
    bottom: 25px;
    width: 108px;
    height: 108px;
  }

  .stamp b {
    font-size: 17px;
  }

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

  .step-line {
    top: 68px;
    left: 50%;
    width: 1px;
    height: 40px;
    border-top: 0;
    border-left: 1px dashed rgba(166, 75, 60, 0.35);
  }

  .step:nth-child(2) .step-line {
    display: block;
  }

  .manifesto {
    padding: 92px 0;
  }

  .manifesto-values {
    flex-direction: column;
    gap: 8px;
  }

  .manifesto-values i {
    display: none;
  }

  .order-form {
    padding: 25px 20px;
  }

  .form-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .faq-heading {
    text-align: center;
  }

  .faq-heading .eyebrow {
    justify-content: center;
  }

  .accordion summary {
    font-size: 17px;
  }

  .final-cta {
    padding: 92px 0;
  }

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

  .footer-origin {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 249, 240, 0.12);
    border-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .floating-whatsapp b {
    display: none;
  }

  .floating-whatsapp {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
