:root {
  --cream: #f7ede2;
  --cream-light: #fff9f4;
  --pink: #f3c6c6;
  --pink-deep: #e8a0a0;
  --brown: #4a3728;
  --brown-soft: #7a5c46;
  --caramel: #a85a3e;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(74, 55, 40, 0.12);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--brown);
  background: var(--cream-light);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  line-height: 1.4;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

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

.section-head .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: 0.08em;
}

.section-head .divider {
  width: 56px;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
  margin: 18px auto 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 55, 40, 0.08);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(74, 55, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--caramel));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.brand-text b {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.brand-text span {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--brown-soft);
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  position: relative;
  padding: 6px 0;
  color: var(--brown);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--caramel);
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 55, 40, 0.45), rgba(74, 55, 40, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.12);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero .en {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 30px;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
  opacity: 0.95;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  transition: 0.3s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--white);
  color: var(--brown);
}

.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--caramel);
  transform: translateY(-2px);
}

/* ---------- Intro / About strip ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  z-index: -1;
}

.intro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.intro-text h2 em {
  font-style: normal;
  color: var(--caramel);
}

.intro-text p {
  color: var(--brown-soft);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin: 24px 0 32px;
}

.feature-list li {
  padding: 9px 0;
  border-bottom: 1px dashed rgba(74, 55, 40, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  flex-shrink: 0;
}

/* ---------- Products ---------- */
.bg-cream {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(74, 55, 40, 0.18);
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.product-card .body {
  padding: 22px 24px 26px;
  text-align: center;
}

.product-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--brown-soft);
  margin-bottom: 14px;
}

.product-card .price {
  color: var(--caramel);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-card .tag {
  display: inline-block;
  background: var(--pink);
  color: var(--brown);
  font-size: 0.78rem;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-grid.reverse .story-media {
  order: 2;
}

.story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-media.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story-media.gallery img {
  aspect-ratio: 1 / 1;
}

.story-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.story-text h2 em {
  font-style: normal;
  color: var(--caramel);
}

.story-text p {
  color: var(--brown-soft);
  margin-bottom: 16px;
}

.timeline {
  list-style: none;
  margin-top: 26px;
  border-left: 3px solid var(--pink);
  padding-left: 24px;
}

.timeline li {
  position: relative;
  padding: 0 0 22px 8px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--caramel);
  border: 3px solid var(--cream-light);
}

.timeline .year {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--caramel);
  font-size: 1.05rem;
}

/* ---------- Menu ---------- */
.menu-hero {
  min-height: 40vh;
}

.menu-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 42px;
  margin-bottom: 32px;
}

.menu-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--cream);
}

.menu-card h3 .icon {
  font-size: 1.4rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(74, 55, 40, 0.12);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item .name {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-item .desc {
  display: block;
  font-size: 0.85rem;
  color: var(--brown-soft);
  font-weight: 400;
}

.menu-item .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--caramel);
  white-space: nowrap;
}

.menu-note {
  font-size: 0.85rem;
  color: var(--brown-soft);
  text-align: center;
  margin-top: 8px;
}

.menu-side {
  position: sticky;
  top: 96px;
}

.side-card {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  margin-bottom: 24px;
}

.side-card h3 {
  font-family: "Noto Serif TC", serif;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--pink);
}

.side-card ul {
  list-style: none;
}

.side-card li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.side-card li:last-child {
  border-bottom: none;
}

.side-card .sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Info / Contact ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 30px;
  text-align: center;
}

.info-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.info-card p,
.info-card a {
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--caramel), var(--brown));
  color: var(--white);
  text-align: center;
  padding: 72px 20px;
  border-radius: var(--radius);
}

.cta a[href^="mailto:"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.cta p {
  opacity: 0.95;
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}

.footer-brand b {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.footer-brand .en {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.25em;
  color: var(--pink);
  font-size: 0.9rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 340px;
}

.site-footer h3.footer-title {
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  font-size: 0.92rem;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--pink);
}

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

/* ---------- Status pill ---------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 55, 40, 0.16);
  background: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--brown-soft);
  white-space: nowrap;
}

.status-pill .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b0a99f;
  flex-shrink: 0;
}

.status-pill.is-open {
  background: #f2f8f1;
  border-color: rgba(80, 140, 90, 0.35);
  color: #3f6b47;
}

.status-pill.is-open .status-dot {
  background: #57a05f;
  box-shadow: 0 0 0 4px rgba(87, 160, 95, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(87, 160, 95, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(87, 160, 95, 0.06); }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--brown);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 56px;
  padding: 10px 0;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  animation: ticker-move 36s linear infinite;
  will-change: transform;
}

.ticker-track li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.ticker-track li .ticker-sep {
  color: var(--caramel);
}

@keyframes ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero carousel ---------- */
.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}

.hero-carousel .hero-slide.active {
  opacity: 1;
}

.hero-carousel::before {
  z-index: 1;
}

.hero-carousel .hero-inner {
  z-index: 2;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}

.hero-dots button {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hero-dots button::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.3s;
}

.hero-dots button.active::after {
  background: var(--white);
  transform: scale(1.25);
}

/* ---------- Notes wall ---------- */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.note-card {
  background: #fff3c9;
  color: var(--brown);
  border-radius: 6px;
  padding: 22px 20px 14px;
  box-shadow: 0 10px 24px rgba(74, 55, 40, 0.14);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s;
  position: relative;
}

.note-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 90px;
  height: 20px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(74, 55, 40, 0.12);
}

.note-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.note-card:nth-child(3n + 2) {
  background: #ffe1d8;
}

.note-card:nth-child(3n + 3) {
  background: #e4f2e3;
}

.note-text {
  font-size: 0.94rem;
  line-height: 1.8;
}

.note-by {
  margin-top: 14px;
  text-align: right;
  font-size: 0.82rem;
  color: var(--brown-soft);
  font-weight: 700;
}

.note-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  gap: 14px;
}

.note-form label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.note-form input,
.note-form textarea {
  width: 100%;
  border: 1px solid rgba(74, 55, 40, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--cream-light);
}

.note-form input:focus,
.note-form textarea:focus {
  outline: 2px solid var(--caramel);
  outline-offset: 1px;
}

.note-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---------- Quiz ---------- */
.quiz-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
  text-align: center;
}

.quiz-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.quiz-card p {
  color: var(--brown-soft);
  margin-bottom: 22px;
}

.quiz-progress {
  font-size: 0.85rem !important;
  letter-spacing: 0.15em;
  color: var(--caramel) !important;
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.quiz-option {
  border: 1px solid rgba(74, 55, 40, 0.18);
  background: var(--cream-light);
  color: var(--brown);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.25s;
}

.quiz-option:hover {
  background: var(--pink);
  border-color: var(--pink-deep);
  transform: translateY(-2px);
}

.quiz-result .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--caramel);
  display: block;
  margin-bottom: 6px;
}

.quiz-result a.quiz-link {
  display: inline-block;
  margin: 6px 0 20px;
  color: var(--caramel);
  font-weight: 700;
  border-bottom: 1px dashed var(--caramel);
}

/* ---------- Stats wall ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 24px;
  text-align: center;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--caramel);
  line-height: 1.1;
}

.stat-label {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--brown-soft);
}

.stat-sub {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--brown-soft);
  opacity: 0.8;
}

/* ---------- Press wall ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  border-top: 4px solid var(--pink);
}

.press-card .en {
  font-family: "Cormorant Garamond", serif;
  color: var(--caramel);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.press-card h3 {
  font-size: 1.15rem;
  margin: 8px 0 10px;
  letter-spacing: 0.05em;
}

.press-card p {
  font-size: 0.92rem;
  color: var(--brown-soft);
}

.press-card .press-src {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--caramel);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
}

.faq-q .faq-arrow {
  font-size: 1.3rem;
  color: var(--caramel);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .intro,
  .story-grid,
  .contact-grid,
  .menu-wrap {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .press-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid.reverse .story-media {
    order: 0;
  }

  .product-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .menu-side {
    position: static;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 78vw);
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 28px;
    box-shadow: -10px 0 40px rgba(74, 55, 40, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .info-grid,
  .footer-grid,
  .notes-grid,
  .stats-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .status-text {
    display: none;
  }

  .status-pill {
    padding: 7px 10px;
  }

  .quiz-card {
    padding: 34px 22px;
  }

  .section {
    padding: 64px 0;
  }

  .menu-card {
    padding: 28px 24px;
  }
}
