/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  --cream:       #FCFAF5;
  --cream-2:     #F7F1E8;
  --cream-3:     #F0E9DC;
  --plum:        #271521;
  --plum-mid:    #45253A;
  --plum-soft:   #6E4460;
  --rose:        #C86E7C;
  --rose-deep:   #A44858;
  --rose-pale:   #F4DCDF;
  --rose-bg:     #FDF4F5;
  --sage:        #587252;
  --sage-light:  #DCE8D8;
  --sage-deep:   #3A5036;
  --gold:        #C48B4A;
  --gold-pale:   #F8F0E0;
  --muted:       #6C5F68;
  --light:       #9A8C95;
  --border:      #E6DAD2;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 10px rgba(39,21,33,.05);
  --shadow-md:   0 6px 24px rgba(39,21,33,.08);
  --shadow-lg:   0 16px 48px rgba(39,21,33,.12);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-pill: 999px;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --serif-alt:   'Playfair Display', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--plum);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
p { color: var(--muted); }
button { font-family: var(--sans); cursor: pointer; }

/* Ambient background glows */
.bg-glow {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%; filter: blur(100px); opacity: 0.4;
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-glow-1 { width: 700px; height: 700px; top: -200px; right: -180px; background: radial-gradient(#F8D8DC, transparent 70%); }
.bg-glow-2 { width: 500px; height: 500px; top: 50%; left: -150px; background: radial-gradient(#DEE8DA, transparent 70%); animation-delay: -8s; }
.bg-glow-3 { width: 500px; height: 500px; bottom: 0; right: -100px; background: radial-gradient(#F8EDD0, transparent 70%); animation-delay: -14s; }
@keyframes drift { to { transform: translate(30px, 40px) scale(1.1); } }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section { padding: 100px 0; }
.section--tinted { background: linear-gradient(160deg, #FBF8F2 0%, #F4EDE4 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 15px; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: var(--rose-pale); color: var(--rose-deep); margin-bottom: 14px;
}
.section-tag.sage { background: var(--sage-light); color: var(--sage-deep); }
.section-tag.gold { background: var(--gold-pale); color: var(--gold); }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.9rem); letter-spacing: -.02em; margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; line-height: 1.6; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-size: .95rem; font-weight: 600; border: 1px solid transparent;
  transition: all .3s var(--ease-out); outline: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  box-shadow: 0 5px 18px rgba(200,110,124,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(200,110,124,.45); }
.btn-secondary { background: var(--white); color: var(--plum); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--rose); color: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--plum); color: var(--white); }
.btn-dark:hover { background: var(--plum-mid); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(39,21,33,.25); }
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(252,250,245,.90); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,218,210,.55);
  transition: all .3s;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), #F9EAE2);
  border: 1px solid rgba(200,110,124,.25);
  display: flex; align-items: center; justify-content: center; color: var(--rose-deep);
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; line-height: 1; color: var(--plum); letter-spacing: -.01em; }
.logo-sub { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); font-weight: 700; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .25s; }
.nav-links a:hover { color: var(--plum); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-btn { display: none; background: none; border: none; font-size: 1.4rem; color: var(--plum); padding: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.hero-content { max-width: 600px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: .83rem; font-weight: 600; color: var(--plum-soft);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-eyebrow .dot { color: var(--gold); font-size: 1.1rem; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.06; letter-spacing: -.025em;
  margin-bottom: 20px; color: var(--plum);
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--rose-deep); }
.hero-desc { font-size: 1.1rem; line-height: 1.72; margin-bottom: 34px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 18px; padding-top: 24px; border-top: 1px solid var(--border); }
.avatars { display: flex; }
.avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--white); margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.trust-copy { font-size: .84rem; color: var(--muted); line-height: 1.3; }
.trust-copy strong { color: var(--plum); display: block; font-size: .9rem; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-card {
  width: 100%; max-width: 440px; height: 510px;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
}
.hero-img-card img { width: 100%; height: 100%; transition: transform .6s var(--ease-spring); }
.hero-img-card:hover img { transform: scale(1.04); }

.float-chip {
  position: absolute; background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); border: 1px solid rgba(230,218,210,.8);
  border-radius: var(--radius-md); padding: 11px 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px;
  animation: float 5s ease-in-out infinite alternate;
}
.float-chip-1 { top: 36px; left: -30px; }
.float-chip-2 { bottom: 48px; right: -22px; animation-delay: -2.5s; }
@keyframes float { to { transform: translateY(-9px); } }

.chip-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose-pale); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.chip-icon.sage-ic { background: var(--sage-light); color: var(--sage-deep); }
.chip-label { font-weight: 700; font-size: .84rem; color: var(--plum); }
.chip-sub { font-size: .72rem; color: var(--muted); }

/* ============================================================
   VALUE PILLARS
   ============================================================ */
.pillars { padding: 8px 0 80px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.pillar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: all .3s var(--ease-out);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--rose-pale); }
.pillar-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 18px;
}
.pi-1 { background: var(--rose-bg); }
.pi-2 { background: var(--sage-light); }
.pi-3 { background: var(--gold-pale); }
.pi-4 { background: #EEE7FF; }
.pillar-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 7px; }
.pillar-card p { font-size: .86rem; line-height: 1.5; }

/* ============================================================
   QUIZ SECTION
   ============================================================ */
.quiz-section { padding: 100px 0; }
.quiz-card {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden;
}

/* progress header */
.quiz-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 34px; background: #FDFAF6;
  border-bottom: 1px solid var(--border);
}
.quiz-step-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rose-deep); }
.quiz-progress-bar { width: 160px; height: 7px; background: #E9DDD5; border-radius: var(--radius-pill); overflow: hidden; }
.quiz-progress-fill {
  height: 100%; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  width: 25%; transition: width .45s var(--ease-spring);
}

/* body */
.quiz-body { padding: 42px 38px; min-height: 400px; }
.quiz-step { display: none; animation: slideIn .35s var(--ease-out) forwards; }
.quiz-step.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }

.quiz-q { font-family: var(--serif); font-size: clamp(1.6rem,2.5vw,2rem); text-align: center; margin-bottom: 8px; }
.quiz-sub { text-align: center; font-size: .95rem; margin-bottom: 32px; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.quiz-opt {
  display: flex; align-items: flex-start; gap: 14px;
  border: 2px solid var(--border); background: var(--cream);
  border-radius: var(--radius-md); padding: 18px 20px;
  cursor: pointer; text-align: left;
  transition: all .3s var(--ease-out);
}
.quiz-opt:hover { border-color: var(--rose); background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quiz-opt.chosen { border-color: var(--rose-deep); background: #FFF8F9; box-shadow: 0 4px 16px rgba(200,110,124,.2); }
.opt-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 1px; }
.opt-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 3px; }
.opt-desc { font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* result */
.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; animation: slideIn .4s var(--ease-out) forwards; }
.result-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-pale); color: var(--gold);
  border-radius: var(--radius-pill); padding: 5px 16px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 14px;
}
.result-card {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin: 22px 0 28px; text-align: left;
}
.result-img { width: 100%; min-height: 260px; }
.result-info { padding: 26px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.result-name { font-family: var(--serif); font-size: 1.75rem; margin-bottom: 8px; }
.result-desc { font-size: .88rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.result-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.r-chip { padding: 3px 11px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: .73rem; font-weight: 600; color: var(--plum-soft); }
.result-price-row { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px dashed var(--border); padding-top: 12px; }
.result-price { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; }
.result-price-note { font-size: .78rem; color: var(--rose-deep); font-weight: 600; }
.result-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* footer nav */
.quiz-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 34px; background: #FDFAF6;
  border-top: 1px solid var(--border);
}
.quiz-hint { font-size: .8rem; color: var(--light); }

/* ============================================================
   MENU
   ============================================================ */
.menu-section { padding: 100px 0; }
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 42px; }
.tab-btn {
  padding: 9px 20px; border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 600; background: var(--white);
  color: var(--muted); border: 1px solid var(--border);
  cursor: pointer; transition: all .25s;
}
.tab-btn:hover { border-color: var(--rose); color: var(--rose-deep); }
.tab-btn.active { background: var(--plum); color: var(--white); border-color: var(--plum); }

.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.cake-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: all .35s var(--ease-out);
}
.cake-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--rose-pale); }
.cake-img { width: 100%; height: 238px; position: relative; overflow: hidden; }
.cake-img img { width: 100%; height: 100%; transition: transform .55s var(--ease-spring); }
.cake-card:hover .cake-img img { transform: scale(1.07); }
.cake-ribbon {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.93); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,110,124,.2); border-radius: var(--radius-pill);
  padding: 3px 11px; font-size: .7rem; font-weight: 700; color: var(--rose-deep); letter-spacing: .03em;
}
.cake-body { padding: 22px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cake-name { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 6px; }
.cake-desc { font-size: .84rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.cake-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.cake-tag { font-size: .68rem; padding: 2px 9px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--muted); }
.cake-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; }
.cake-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.cake-price-unit { font-family: var(--sans); font-size: .72rem; color: var(--muted); font-weight: 400; }

/* ============================================================
   CRAFT / STORY
   ============================================================ */
.craft-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.craft-photos { position: relative; height: 480px; }
.craft-photo-main {
  position: absolute; top: 0; left: 0; width: 73%; height: 420px;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 5px solid var(--white); box-shadow: var(--shadow-lg);
}
.craft-photo-mini {
  position: absolute; bottom: 0; right: 0; width: 54%; height: 250px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 5px solid var(--white); box-shadow: var(--shadow-lg); z-index: 2;
}
.craft-photo-main img, .craft-photo-mini img { width: 100%; height: 100%; }
.craft-text h2 { font-family: var(--serif); font-size: clamp(2rem,3vw,2.8rem); margin-bottom: 18px; }
.craft-text > p { font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.craft-points { display: flex; flex-direction: column; gap: 16px; }
.craft-point { display: flex; align-items: flex-start; gap: 13px; }
.cp-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--rose-pale); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; margin-top: 2px;
}
.cp-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 2px; }
.cp-desc { font-size: .84rem; color: var(--muted); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); padding: 28px 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  justify-content: space-between; transition: all .3s var(--ease-out);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--rose-pale); }
.review-stars { color: #E2A03F; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote { font-family: var(--serif-alt); font-style: italic; font-size: 1.08rem; color: var(--plum); line-height: 1.65; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 1rem; font-weight: 700; color: var(--plum); }
.author-sub { font-size: .76rem; color: var(--rose-deep); font-weight: 600; }

.press-bar {
  margin-top: 56px; padding: 22px 28px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 18px;
}
.press-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--light); letter-spacing: .04em; }

/* ============================================================
   ORDER & CONTACT
   ============================================================ */
.order-section { padding: 100px 0; border-top: 1px solid var(--border); }
.order-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: flex-start; }

/* Studio sidebar */
.studio-side h3 { font-family: var(--serif); font-size: 2.1rem; margin-bottom: 10px; }
.studio-side > p { font-size: .95rem; margin-bottom: 28px; }
.contact-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.contact-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rose-bg); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-row strong { font-size: .88rem; color: var(--plum); display: block; }
.contact-row span { font-size: .82rem; color: var(--muted); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  padding: 14px 18px; font-size: .9rem; font-weight: 600; color: var(--plum);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--rose-deep); transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 18px;
  font-size: .84rem; color: var(--muted); line-height: 1.55;
  transition: all .3s ease;
}
.faq-item.open .faq-a { max-height: 150px; padding: 0 18px 16px; }

/* Order form */
.order-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 38px;
}
.order-form-card h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 6px; }
.order-form-card > p { font-size: .9rem; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--plum); margin-bottom: 5px; }
.form-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .9rem; color: var(--plum);
  background: var(--cream); outline: none;
  transition: all .25s;
}
.form-input:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px rgba(200,110,124,.12); }

.estimate-box {
  background: var(--rose-bg); border: 1px dashed var(--rose);
  border-radius: var(--radius-md); padding: 18px; margin: 20px 0;
}
.est-row { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: 7px; color: var(--muted); }
.est-row:last-child {
  margin: 0; border-top: 1px solid rgba(200,110,124,.2); padding-top: 7px;
  font-weight: 700; font-size: 1.05rem; color: var(--plum);
}

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(39,21,33,.55); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; max-width: 500px; width: 100%;
  box-shadow: var(--shadow-lg); text-align: center; position: relative;
  animation: scaleUp .3s var(--ease-spring);
}
@keyframes scaleUp { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; font-size: 1.3rem;
  color: var(--muted); cursor: pointer; padding: 3px; border-radius: 50%;
  transition: background .2s;
}
.modal-close:hover { background: var(--cream); }
.modal-icon {
  width: 60px; height: 60px; background: var(--sage-light); color: var(--sage-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 18px;
}
.modal-box h3 { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 8px; }
.modal-box p { font-size: .9rem; margin-bottom: 18px; }
.modal-summary {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px;
  text-align: left; font-size: .84rem; margin-bottom: 22px;
}
.modal-summary div { margin-bottom: 5px; }
.modal-summary div:last-child { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--plum); color: #EEE4E8; padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .9fr .9fr 1fr; gap: 36px; margin-bottom: 56px; }
.footer-brand h2 { font-family: var(--serif); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: #B8AAB2; font-size: .86rem; line-height: 1.6; max-width: 300px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials span { font-size: 1.1rem; cursor: pointer; }
.footer-col h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #B8AAB2; font-size: .84rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--rose-pale); padding-left: 4px; }
.news-input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--white); margin-bottom: 9px; }
.news-input::placeholder { color: #8E808A; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; font-size: .8rem; color: #8E808A; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-img-card { max-width: 400px; height: 440px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .craft-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .mobile-btn { display: block; }
  .hero-title { font-size: 2.6rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-body { padding: 28px 18px; }
  .result-card { grid-template-columns: 1fr; }
  .result-img { height: 200px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-chip-1 { left: 0; }
  .float-chip-2 { right: 0; }
}
