/* ============================================================
   SISSY'S SWEETS BY EM — Design System
   ============================================================ */

:root {
  --blush-50:  #FEF5F5;
  --blush-100: #FAE8E8;
  --blush-200: #F3CECC;
  --blush-300: #E8A8A8;
  --blush-400: #CC7878;
  --blush-500: #B86060;
  --mauve-100: #EDD8D8;
  --mauve-200: #D4B0B0;
  --mauve-300: #B88888;
  --cream:     #FDF8F5;
  --sand:      #F5EDE6;
  --gray-100:  #EDE9E7;
  --gray-200:  #D6D0CD;
  --gray-400:  #9E9896;
  --text:      #2A2220;
  --text-sec:  #6B6560;
  --text-lt:   #9E9894;
  --white:     #ffffff;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 1px 4px rgba(42,34,32,.07), 0 1px 2px rgba(42,34,32,.04);
  --shadow-md: 0 4px 16px rgba(42,34,32,.10), 0 2px 6px rgba(42,34,32,.05);
  --shadow-lg: 0 12px 36px rgba(42,34,32,.12), 0 4px 14px rgba(42,34,32,.07);

  --radius-sm:   6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --nav-h:  88px;
  --max-w: 1200px;
  --ease:   250ms ease;
  --ease-slow: 420ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.15; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; color: var(--text-sec); }

.eyebrow {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blush-400);
  display: block;
  margin-bottom: .75rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.section       { padding: 5rem 0; }
.section--lg   { padding: 7rem 0; }
.section--alt  { background: var(--blush-50); }
.section--sand { background: var(--sand); }
.section--dark { background: #1E1614; color: rgba(255,255,255,.8); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: .9rem; }
.section-header p  { font-size: 1.05rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-b);
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: all var(--ease);
  cursor: pointer; white-space: nowrap; border: 2px solid transparent;
}
.btn--primary     { background: var(--blush-400); color: #fff; }
.btn--primary:hover { background: var(--blush-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--secondary   { background: transparent; color: var(--blush-400); border-color: var(--blush-400); }
.btn--secondary:hover { background: var(--blush-400); color: #fff; transform: translateY(-2px); }
.btn--white       { background: #fff; color: var(--blush-400); }
.btn--white:hover { background: var(--blush-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost-white { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost-white:hover { background: #fff; color: var(--blush-400); border-color: #fff; }
.btn--sm { padding: .5rem 1.2rem; font-size: .74rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: .86rem; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled, .nav.nav--solid {
  background: rgba(253,248,245,.96);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav .container { display: flex; align-items: center; justify-content: space-between; }

.nav__logo { display: flex; flex-direction: row; align-items: center; gap: .75rem; }
.nav__logo-img {
  width: 56px; height: 56px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-main {
  font-family: var(--font-h); font-size: 1.65rem; font-weight: 700;
  letter-spacing: -.015em; color: var(--text); transition: color var(--ease);
}
.nav__logo-sub {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blush-400);
}
.nav--transparent .nav__logo-main { color: #fff; }
.nav--transparent .nav__logo-sub  { color: rgba(255,255,255,.75); }

.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--text);
  position: relative; transition: color var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--blush-400);
  transform: scaleX(0); transition: transform var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--blush-400); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav--transparent .nav__link { color: rgba(255,255,255,.9); }
.nav--transparent .nav__link:hover { color: #fff; }
.nav--transparent .nav__link::after { background: #fff; }

.nav__cta { display: none; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem; cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--text); transition: all var(--ease);
}
.nav--transparent .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); padding: 1.5rem 1.5rem 2rem;
  transform: translateY(-110%); opacity: 0; pointer-events: none;
  transition: all var(--ease); box-shadow: var(--shadow-lg); z-index: 99;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__link {
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  padding: .8rem 0; border-bottom: 1px solid var(--gray-100);
  transition: color var(--ease);
}
.mobile-menu__link:hover, .mobile-menu__link.active { color: var(--blush-400); }

@media (min-width: 1024px) {
  .nav__links, .nav__cta { display: flex; }
  .hamburger { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background-image: url('../images/cake-floral-painted-tiered.jpg');
  background-size: cover; background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    145deg,
    rgba(20,10,8,.72) 0%,
    rgba(20,10,8,.55) 60%,
    rgba(20,10,8,.50) 100%
  );
}
.hero .container {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  min-height: 100vh; padding-top: var(--nav-h);
}
.hero__content { max-width: 600px; color: #fff; padding: 3rem 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.82); margin-bottom: 1.25rem;
}
.hero__badge::before, .hero__badge::after {
  content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,.45);
}
.hero__title {
  color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.08;
  margin-bottom: 1.2rem; text-shadow: 0 2px 20px rgba(20,10,8,.3);
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__tagline {
  font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.88);
  margin-bottom: 2.2rem; line-height: 1.7; max-width: 480px;
}
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.55); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll-arrow {
  width: 14px; height: 14px;
  border-right: 1.5px solid rgba(255,255,255,.45);
  border-bottom: 1.5px solid rgba(255,255,255,.45);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blush-50) 0%, var(--cream) 50%, var(--blush-100) 100%);
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ── Feature Strip ── */
.feature-strip { background: var(--blush-400); padding: 1rem 0; }
.feature-strip .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.5rem;
}
.feature-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: #fff;
}
.feature-item__icon { font-size: 1rem; }

/* ── Cards ── */
.card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.card:hover .card__img img { transform: scale(1.06); }

.card__body { padding: 1.5rem; }
.card__cat  { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blush-400); margin-bottom: .35rem; }
.card__title { font-size: 1.15rem; margin-bottom: .45rem; }
.card__desc  { font-size: .88rem; color: var(--text-sec); }

/* ── Gallery ── */
.gallery-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .45rem 1.2rem; border-radius: var(--radius-full);
  border: 2px solid var(--gray-200); background: #fff;
  font-size: .78rem; font-weight: 600; color: var(--text-sec);
  transition: all var(--ease); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--blush-400); background: var(--blush-400); color: #fff;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: .6rem;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3,1fr); gap: .75rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4,1fr); gap: 1rem; } }

.gallery-item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; aspect-ratio: 1;
  background: var(--blush-100);
  transition: transform var(--ease), box-shadow var(--ease);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); display: block; }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,8,.72) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--ease);
  display: flex; align-items: flex-end; padding: .9rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { color: #fff; font-size: .78rem; font-weight: 600; line-height: 1.3; }

.gallery-item[data-hidden="true"] { display: none; }

/* ── Review Cards ── */
.review-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm); position: relative; transition: all var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card__quote {
  position: absolute; top: .8rem; left: 1.1rem;
  font-family: var(--font-h); font-size: 4rem; line-height: 1;
  color: var(--blush-100); pointer-events: none;
}
.review-card__stars { display: flex; gap: .1rem; margin-bottom: .9rem; }
.review-card__star  { color: #F59E0B; font-size: .85rem; }
.review-card__text  { font-size: .92rem; line-height: 1.75; color: var(--text-sec); margin-bottom: 1.25rem; }
.review-card__author { display: flex; align-items: center; gap: .65rem; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blush-200), var(--mauve-200));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--mauve-300);
}
.review-card__name { font-size: .85rem; font-weight: 700; color: var(--text); }
.review-card__meta { font-size: .72rem; color: var(--text-lt); }

/* ── Stats Bar ── */
.stats-bar { background: var(--blush-400); padding: 2.75rem 0; }
.stats-bar .container {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center;
}
@media (min-width: 640px) { .stats-bar .container { grid-template-columns: repeat(4,1fr); } }
.stat__number { font-family: var(--font-h); font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: .3rem; }
.stat__label  { font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .04em; }

/* ── About Split ── */
.about-split { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 768px) { .about-split { grid-template-columns: 1fr 1fr; } }
.about-split--flip { direction: rtl; }
.about-split--flip > * { direction: ltr; }

.about-img {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-content .eyebrow { margin-bottom: .6rem; }
.about-content h2 { margin-bottom: 1.1rem; }
.about-content p  { margin-bottom: .9rem; }
.about-content p:last-of-type { margin-bottom: 0; }
.signature { font-family: var(--font-h); font-style: italic; font-size: 1.5rem; color: var(--blush-400); margin-top: 1.25rem; display: block; }

/* ── Process Steps ── */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step { text-align: center; padding: 1.75rem 1rem; }
.step__num {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, var(--blush-200), var(--blush-300));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--mauve-300);
}
.step h4 { margin-bottom: .4rem; }
.step p  { font-size: .88rem; }

/* ── FAQ ── */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0; font-size: .92rem; font-weight: 600; color: var(--text);
  cursor: pointer; gap: 1rem; transition: color var(--ease);
}
.faq-q:hover { color: var(--blush-400); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--blush-100); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blush-400); font-weight: 300; line-height: 1;
  transition: all var(--ease);
}
.faq-item.open .faq-icon { background: var(--blush-400); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 380ms ease; }
.faq-a-inner { padding-bottom: 1.15rem; color: var(--text-sec); font-size: .92rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Contact Cards ── */
.contact-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm); text-align: center; transition: all var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blush-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto .9rem; transition: background var(--ease);
}
.contact-card:hover .contact-card__icon { background: var(--blush-100); }
.contact-card__label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-lt); margin-bottom: .3rem; }
.contact-card__value { font-family: var(--font-h); font-size: 1rem; color: var(--text); }
.contact-card__value a:hover { color: var(--blush-400); }

/* ── Form ── */
.form        { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row    { display: grid; gap: 1.1rem; }
@media (min-width: 540px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-field  { display: flex; flex-direction: column; gap: .4rem; }
.form-label  { font-size: .8rem; font-weight: 700; color: var(--text); letter-spacing: .03em; }
.form-label .req { color: var(--blush-400); }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: .8rem 1rem;
  border: 2px solid var(--gray-100); border-radius: var(--radius-md);
  font-family: var(--font-b); font-size: .92rem; color: var(--text); background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease); outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-lt); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blush-300); box-shadow: 0 0 0 3px rgba(232,168,168,.22);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239E9896' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 15px;
}
.form-hint { font-size: .74rem; color: var(--text-lt); }

/* ── Service Banner ── */
.service-banner { background: linear-gradient(135deg, var(--blush-300), var(--mauve-300)); padding: 4.5rem 0; text-align: center; color: #fff; }
.service-banner h2 { color: #fff; margin-bottom: .9rem; }
.service-banner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 440px; margin: 0 auto 2rem; }
.service-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.service-tag {
  padding: .4rem 1rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
  font-size: .78rem; font-weight: 600; color: #fff;
}

/* ── CTA Section ── */
.cta-section { padding: 5.5rem 0; text-align: center; background: var(--sand); }
.cta-section h2 { margin-bottom: .9rem; }
.cta-section p  { font-size: 1.05rem; max-width: 440px; margin: 0 auto 2.2rem; }
.cta-section__btns { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; }

/* ── Social Section ── */
.social-section { background: var(--blush-50); padding: 5rem 0; text-align: center; }
.social-note { font-size: 1.05rem; max-width: 460px; margin: .75rem auto 2rem; }
.social-links { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; }

/* ── Menus ── */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 3rem; }
.menu-tab {
  padding: .6rem 1.4rem; border-radius: var(--radius-full);
  border: 2px solid var(--gray-200); background: #fff;
  font-size: .82rem; font-weight: 600; color: var(--text-sec);
  transition: all var(--ease); cursor: pointer;
}
.menu-tab:hover, .menu-tab.active { border-color: var(--blush-400); background: var(--blush-400); color: #fff; }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px)  { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3,1fr); } }

.menu-item {
  background: #fff; border-radius: var(--radius-md);
  padding: 1.25rem; box-shadow: var(--shadow-sm);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
}
.menu-item__info h4 { font-size: 1rem; margin-bottom: .25rem; }
.menu-item__info p  { font-size: .82rem; color: var(--text-sec); margin: 0; }
.menu-item__price {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  color: var(--blush-400); white-space: nowrap; flex-shrink: 0;
}

.info-box {
  background: var(--blush-50); border-left: 3px solid var(--blush-300);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.1rem 1.35rem; margin-bottom: .85rem;
}
.info-box h4 { font-size: .9rem; margin-bottom: .25rem; color: var(--blush-500); }
.info-box p  { font-size: .86rem; margin: 0; }

/* ── Footer ── */
.footer { background: #1E1614; color: rgba(255,255,255,.6); padding: 4.5rem 0 2.25rem; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.75rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__name { font-family: var(--font-h); font-size: 1.4rem; color: #fff; margin-bottom: .55rem; }
.footer__desc { font-size: .85rem; line-height: 1.7; margin-bottom: 1.4rem; max-width: 270px; }
.footer__social { display: flex; gap: .45rem; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.65);
  transition: all var(--ease);
}
.footer__social-link:hover { background: var(--blush-400); color: #fff; transform: translateY(-2px); }
.footer__col-title { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__link { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer__link:hover { color: var(--blush-300); }
.footer__bottom {
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem;
  font-size: .72rem; color: rgba(255,255,255,.32);
}
.footer__bottom-left { display: flex; flex-direction: column; gap: .2rem; }
.footer__credit { font-size: .65rem; color: rgba(255,255,255,.22); letter-spacing: .03em; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.deco-line { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1rem 0; }
.deco-line::before, .deco-line::after { content: ''; flex: 1; height: 1px; background: var(--blush-200); max-width: 55px; }
.deco-line span { color: var(--blush-400); font-size: .85rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Scroll Animations ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger .fade-up:nth-child(2) { transition-delay: .1s; }
.stagger .fade-up:nth-child(3) { transition-delay: .2s; }
.stagger .fade-up:nth-child(4) { transition-delay: .3s; }
.stagger .fade-up:nth-child(5) { transition-delay: .4s; }
.stagger .fade-up:nth-child(6) { transition-delay: .5s; }

/* ── Responsive ── */
@media (min-width: 768px) {
  .section     { padding: 6rem 0; }
  .section--lg { padding: 8rem 0; }
}
