/* ============================================
   La Bella Nail & Spa — Shared Stylesheet
   Brand: gold + emerald on cream marble
   ============================================ */

:root {
  --gold: #b8923a;
  --gold-light: #d4af5e;
  --gold-pale: #e9d9ae;
  --emerald: #14452f;
  --emerald-dark: #0d2f20;
  --cream: #f5efe4;
  --cream-dark: #ece2d0;
  --ink: #2c2c25;
  --white: #fdfbf6;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(212,175,94,.08), transparent 50%);
  line-height: 1.7;
  font-size: 17px;
}

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

a { color: var(--emerald); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--emerald-dark);
  color: var(--gold-pale);
  font-size: .85rem;
  letter-spacing: .06em;
  text-align: center;
  padding: .45rem 1rem;
}
.topbar a { color: var(--gold-light); text-decoration: none; font-weight: 600; }

/* ---------- Header / Nav ---------- */
header.site {
  background: rgba(245,239,228,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,146,58,.35);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.25rem;
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand svg { height: 56px; width: auto; }
.brand-text { line-height: 1.15; }
.brand-text .name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
}
.brand-text .tag {
  font-size: .68rem;
  letter-spacing: .42em;
  color: var(--emerald);
  text-transform: uppercase;
}
nav.main ul { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
nav.main a {
  text-decoration: none;
  color: var(--emerald);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: all .25s;
}
nav.main a:hover, nav.main a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important;
  padding: .55rem 1.2rem !important;
  border-radius: 3px;
  border-bottom: none !important;
  box-shadow: 0 2px 10px rgba(184,146,58,.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,146,58,.5); }

/* dropdown */
nav.main li.has-drop { position: relative; }
nav.main li.has-drop > a::after { content: " ▾"; font-size: .7em; }
nav.main .drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(184,146,58,.35);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(44,44,37,.16);
  list-style: none;
  min-width: 190px;
  padding: .4rem 0;
  display: none;
  z-index: 200;
}
nav.main li.has-drop:hover .drop,
nav.main li.has-drop:focus-within .drop { display: block; }
nav.main .drop li { width: 100%; }
nav.main .drop a {
  display: block;
  padding: .55rem 1.2rem;
  border-bottom: none;
  text-transform: none;
  letter-spacing: .04em;
  font-size: .9rem;
}
nav.main .drop a:hover { background: rgba(212,175,94,.14); }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--emerald); cursor: pointer; }
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  nav.main .drop { position: static; transform: none; display: block; box-shadow: none; border: none; background: transparent; }
  nav.main .drop a { font-size: .82rem; color: var(--gold); }
  nav.main { display: none; width: 100%; }
  nav.main.open { display: block; }
  nav.main ul { flex-direction: column; gap: .2rem; padding: .8rem 0; }
  nav.main li { width: 100%; text-align: center; }
  nav.main a { display: block; padding: .6rem; }
  .nav-wrap { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.5rem 6rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,94,.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "✦";
  position: absolute;
  color: rgba(184,146,58,.18);
  font-size: 9rem;
}
.hero::before { top: -1.5rem; left: 4%; }
.hero::after { bottom: -2rem; right: 4%; }
.hero .kicker {
  letter-spacing: .5em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  color: var(--emerald);
  margin: .8rem 0 1rem;
  line-height: 1.12;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lede { max-width: 620px; margin: 0 auto 2.2rem; font-size: 1.12rem; color: #555148; }

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slider .slide.active { opacity: 1; }
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.on { background: var(--gold); }
.hero-actions {
  text-align: center;
  padding: 2.2rem 1.5rem 2.6rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.hero-actions p.lede { max-width: 620px; margin: 0 auto 1.6rem; font-size: 1.1rem; color: #555148; }
@media (max-width: 640px) {
  .hero-slider { aspect-ratio: 5 / 2; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  padding: .95rem 2.2rem;
  border-radius: 3px;
  transition: all .25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 3px 14px rgba(184,146,58,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,146,58,.55); }
.btn-outline {
  border: 1.5px solid var(--emerald);
  color: var(--emerald);
  margin-left: .8rem;
}
.btn-outline:hover { background: var(--emerald); color: var(--gold-pale); }

/* ---------- Sections ---------- */
section.block { max-width: 1150px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .kicker {
  letter-spacing: .45em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--emerald);
  font-weight: 600;
  margin-top: .5rem;
}
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: .7rem; margin: 1rem auto 0; color: var(--gold);
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: 70px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.8rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid rgba(184,146,58,.25);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(44,44,37,.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(44,44,37,.12); }
.card .icon { font-size: 2.3rem; margin-bottom: .8rem; }
.card h3 { font-family: var(--serif); font-size: 1.45rem; color: var(--emerald); margin-bottom: .5rem; }
.card p { font-size: .95rem; color: #5b564b; }
.card .from { display: block; margin-top: .9rem; color: var(--gold); font-weight: 600; letter-spacing: .08em; font-size: .85rem; text-transform: uppercase; }

/* ---------- Price menu ---------- */
.menu-col {
  background: var(--white);
  border: 1px solid rgba(184,146,58,.25);
  border-radius: 6px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 4px 18px rgba(44,44,37,.06);
}
.menu-col h3 {
  font-family: var(--serif);
  color: var(--emerald);
  font-size: 1.7rem;
  margin-bottom: .3rem;
  text-align: center;
}
.menu-col .sub { text-align: center; font-size: .85rem; color: #847d6e; margin-bottom: 1.4rem; font-style: italic; }
.price-row {
  display: flex; align-items: baseline; gap: .6rem;
  padding: .55rem 0;
  border-bottom: 1px dotted rgba(184,146,58,.4);
}
.price-row:last-child { border-bottom: none; }
.price-row .item { font-weight: 500; }
.price-row .dots { flex: 1; }
.price-row .price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.price-row .desc { display: block; font-size: .82rem; color: #847d6e; font-weight: 400; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.ph {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
  border: 1px solid rgba(184,146,58,.3);
  box-shadow: 0 4px 16px rgba(44,44,37,.08);
}
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ph:hover img { transform: scale(1.05); }
.ph .cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(13,47,32,.85));
  color: var(--gold-pale);
  font-size: .85rem; letter-spacing: .06em;
  padding: 1.6rem .9rem .55rem;
}

/* ---------- Reviews ---------- */
.rating-banner {
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(184,146,58,.3);
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  box-shadow: 0 6px 22px rgba(44,44,37,.08);
}
.rating-banner .score { font-family: var(--serif); font-size: 3.6rem; color: var(--emerald); font-weight: 700; line-height: 1; }
.rating-banner .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: .2em; margin: .4rem 0; }
.review-card {
  background: var(--white);
  border: 1px solid rgba(184,146,58,.25);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 1.8rem;
  box-shadow: 0 4px 16px rgba(44,44,37,.06);
}
.review-card .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .6rem; }
.review-card blockquote { font-style: italic; color: #4b463c; font-size: .98rem; }
.review-card .who { margin-top: 1rem; font-weight: 600; color: var(--emerald); font-size: .9rem; letter-spacing: .05em; }
.review-card .src { color: #847d6e; font-weight: 400; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .55rem .4rem; border-bottom: 1px dotted rgba(184,146,58,.4); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: var(--emerald); }
.hours-table td:last-child { text-align: right; color: #4b463c; }
.hours-table .today td { color: var(--gold); font-weight: 700; }

/* ---------- Info strip ---------- */
.strip {
  background: var(--emerald);
  color: var(--gold-pale);
  text-align: center;
  padding: 3.2rem 1.5rem;
}
.strip h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600; margin-bottom: .6rem; }
.strip p { max-width: 600px; margin: 0 auto 1.6rem; opacity: .9; }
.strip .btn-gold { box-shadow: 0 3px 18px rgba(0,0,0,.3); }

/* ---------- Map ---------- */
.map-frame {
  width: 100%; height: 420px; border: none; border-radius: 6px;
  box-shadow: 0 6px 24px rgba(44,44,37,.12);
}

/* ---------- Why La Bella page ---------- */
.full-banner { width: 100%; display: block; }
.banner-194 {
  aspect-ratio: 19 / 6;
  object-fit: cover;
  object-position: center;
}
.banner-194 { aspect-ratio: 19 / 4; object-fit: cover; object-position: center; }
@media (max-width: 640px) { .banner-194 { aspect-ratio: 5 / 2; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split img, .split .visual {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(44,44,37,.14);
}
.split h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: .9rem;
}
.split p { color: #4b463c; margin-bottom: .9rem; }

.checks { list-style: none; margin-top: 1.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.checks li {
  background: var(--white);
  border: 1px solid rgba(184,146,58,.3);
  border-radius: 4px;
  padding: .6rem .9rem;
  font-weight: 500;
  font-size: .92rem;
  color: var(--emerald);
}
.checks li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
@media (max-width: 560px) { .checks { grid-template-columns: 1fr; } }

.overlay-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--gold-pale);
  padding: 6rem 1.5rem;
}
.overlay-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(13,47,32,.78), rgba(13,47,32,.78));
}
.overlay-banner > * { position: relative; }
.overlay-banner h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: .8rem; }
.overlay-banner p { max-width: 640px; margin: 0 auto 1.8rem; font-size: 1.08rem; opacity: .95; }

/* brand carousel */
.brand-carousel { overflow: hidden; position: relative; padding: 1rem 0; }
.brand-track {
  display: flex;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.brand-carousel:hover .brand-track { animation-play-state: paused; }
.brand-track span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  white-space: nowrap;
  opacity: .85;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  margin-right: .7rem;
  flex-shrink: 0;
}
.review-head { display: flex; align-items: center; margin-bottom: .7rem; }
.review-head .who { margin: 0; }

/* ---------- Poster hero (Group Parties) ---------- */
.poster-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,94,.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.poster-hero img {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(44,44,37,.22);
  border: 1px solid rgba(184,146,58,.3);
}

/* perfect-for tags */
.party-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  max-width: 880px;
  margin: 0 auto;
}
.party-tags span {
  background: var(--white);
  border: 1px solid rgba(184,146,58,.35);
  border-radius: 30px;
  padding: .7rem 1.4rem;
  font-weight: 500;
  color: var(--emerald);
  box-shadow: 0 3px 12px rgba(44,44,37,.06);
  transition: transform .2s, box-shadow .2s;
}
.party-tags span:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(44,44,37,.14); color: var(--gold); }

/* ---------- Fun "How It Works" steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; }
.step-card {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 3.2rem 1.8rem 2.2rem;
  text-align: center;
  box-shadow: 0 6px 22px rgba(44,44,37,.08);
  border: 1px solid rgba(184,146,58,.25);
  border-top: 6px solid;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 0 14px 32px rgba(44,44,37,.16); }
.step-card::after {
  content: "✦";
  position: absolute;
  right: -8px; bottom: -18px;
  font-size: 5.5rem;
  opacity: .07;
}
.step-card.s1 { border-top-color: #c9a24a; }
.step-card.s2 { border-top-color: #1d6b43; }
.step-card.s3 { border-top-color: #b76e79; }
.step-num {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 58px; height: 58px;
  border-radius: 0 0 50% 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}
.s1 .step-num { background: linear-gradient(135deg, #e9cf8a, #b8923a); }
.s2 .step-num { background: linear-gradient(135deg, #2e8b57, #14452f); }
.s3 .step-num { background: linear-gradient(135deg, #d8919b, #a05260); }
.step-card .step-emoji { font-size: 2.4rem; display: block; margin-bottom: .6rem; }
.step-card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .5rem; }
.s1 h3 { color: #a8842f; }
.s2 h3 { color: #1d6b43; }
.s3 h3 { color: #a05260; }
.step-card p { font-size: .95rem; color: #5b564b; }
.step-card .step-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 30px;
}
.s1 .step-tag { background: rgba(201,162,74,.16); color: #a8842f; }
.s2 .step-tag { background: rgba(29,107,67,.12); color: #1d6b43; }
.s3 .step-tag { background: rgba(183,110,121,.14); color: #a05260; }

/* ---------- Colorful member perks row ---------- */
.perks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
@media (max-width: 1020px) { .perks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .perks { grid-template-columns: 1fr; } }
.perk {
  position: relative;
  border-radius: 16px;
  padding: 2rem 1.1rem 1.6rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44,44,37,.14);
  transition: transform .3s, box-shadow .3s;
  animation: perkUp .7s ease both;
}
.perk:nth-child(1) { animation-delay: .05s; }
.perk:nth-child(2) { animation-delay: .15s; }
.perk:nth-child(3) { animation-delay: .25s; }
.perk:nth-child(4) { animation-delay: .35s; }
.perk:nth-child(5) { animation-delay: .45s; }
@keyframes perkUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.perk:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 36px rgba(44,44,37,.24); }
.perk::before {
  content: "✦";
  position: absolute;
  top: -14px; right: -6px;
  font-size: 4.5rem;
  opacity: .12;
}
.perk .perk-icon {
  width: 64px; height: 64px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  transition: transform .3s;
}
.perk:hover .perk-icon { transform: rotate(-8deg) scale(1.15); }
.perk h3 { font-family: var(--serif); font-size: 1.18rem; line-height: 1.25; margin-bottom: .55rem; }
.perk p { font-size: .82rem; line-height: 1.55; opacity: .92; }
.perk-1 { background: linear-gradient(160deg, #d4af5e, #a8842f); }
.perk-2 { background: linear-gradient(160deg, #2e8b57, #14452f); }
.perk-3 { background: linear-gradient(160deg, #d8919b, #a05260); }
.perk-4 { background: linear-gradient(160deg, #8b6fc0, #4f3a82); }
.perk-5 { background: linear-gradient(160deg, #3aa6a0, #1c5f5a); }

/* ---------- Gift card page ---------- */
.promo-banner {
  background: linear-gradient(120deg, var(--emerald-dark), var(--emerald) 55%, #1d6b43);
  border: 2px solid var(--gold);
  border-radius: 10px;
  color: var(--gold-pale);
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(13,47,32,.3);
}
.promo-banner .promo-kicker {
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold-light);
}
.promo-banner h2 { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .6rem 0 1.6rem; }
.promo-tiers { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.promo-tier {
  background: rgba(253,251,246,.08);
  border: 1px solid rgba(212,175,94,.5);
  border-radius: 8px;
  padding: 1.6rem 2.2rem;
  min-width: 230px;
}
.promo-tier .buy { font-size: 1.15rem; font-weight: 600; }
.promo-tier .get {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: .3rem;
}
.promo-or { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold-light); }
.promo-fine { margin-top: 1.4rem; font-size: .82rem; opacity: .75; }

/* emotional section */
.emotional { text-align: center; max-width: 720px; margin: 0 auto; }
.emotional .lines { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--emerald); line-height: 1.9; font-style: italic; }
.emotional .lines strong { color: var(--gold); font-style: normal; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(184,146,58,.3);
  border-radius: 6px;
  margin-bottom: .9rem;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 3px 12px rgba(44,44,37,.05);
}
.faq summary {
  font-weight: 600;
  color: var(--emerald);
  cursor: pointer;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--gold); font-size: 1.4rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: .8rem; color: #4b463c; font-size: .96rem; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--emerald-dark);
  color: #cfc7ae;
  padding: 3.5rem 1.5rem 1.5rem;
  font-size: .92rem;
}
.foot-grid {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
footer.site h4 {
  font-family: var(--serif); color: var(--gold-light);
  font-size: 1.25rem; margin-bottom: .9rem; letter-spacing: .08em;
}
footer.site a { color: #cfc7ae; text-decoration: none; }
footer.site a:hover { color: var(--gold-light); }
footer.site ul { list-style: none; }
footer.site li { padding: .22rem 0; }
.foot-bottom {
  max-width: 1150px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(212,175,94,.25);
  padding-top: 1.2rem;
  text-align: center;
  font-size: .8rem;
  opacity: .7;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  text-align: center;
  padding: 3.8rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,94,.15), transparent 65%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--emerald);
  font-weight: 600;
}
.page-hero p { color: #555148; max-width: 580px; margin: .6rem auto 0; }

/* ---------- Bold/colorful page hero (Gallery) ---------- */
.page-hero-bold {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(29,107,67,.14), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(212,175,94,.22), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 4.5rem 1.5rem;
}
.page-hero-bold .hero-kicker {
  letter-spacing: .5em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(212,175,94,.18);
  border: 1px solid rgba(184,146,58,.4);
  border-radius: 30px;
  display: inline-block;
  padding: .35rem 1.3rem;
  margin-bottom: 1.1rem;
}
.page-hero-bold h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 2px 14px rgba(184,146,58,.25);
}
.grad-text {
  background: linear-gradient(110deg, #a8842f 0%, #e9cf8a 35%, #c9a24a 60%, #1d6b43 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.page-hero-bold .hero-sub {
  font-size: 1.18rem;
  color: #4b463c;
  max-width: 640px;
  margin: .9rem auto 0;
}
.page-hero-bold .hero-sub strong { color: var(--emerald); font-weight: 700; }
.page-hero-bold .hero-sub em { color: var(--gold); font-weight: 600; }

.note {
  background: rgba(212,175,94,.12);
  border: 1px dashed rgba(184,146,58,.5);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  font-size: .9rem;
  color: #5b564b;
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
}
