/* ===========================================================
   Portfino Salon & Academy — Design System
   =========================================================== */

:root {
  --maroon-900: #3d0d1c;
  --maroon-800: #4a0f21;
  --maroon-700: #661429;
  --maroon-600: #7c1f36;
  --maroon-500: #952847;
  --gold-600: #a9821c;
  --gold-500: #c9a227;
  --gold-400: #d9b94a;
  --gold-300: #e6cd7c;
  --gold-100: #f6ecc9;
  --cream-50: #fdfaf5;
  --cream-100: #f8f1e6;
  --cream-200: #f1e6d3;
  --charcoal: #241a17;
  --gray-700: #4a3f3a;
  --gray-500: #7a6d66;
  --gray-300: #cabdb2;
  --white: #ffffff;
  --success: #2e7d4f;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 10px rgba(61, 13, 28, 0.08);
  --shadow-md: 0 8px 30px rgba(61, 13, 28, 0.12);
  --shadow-lg: 0 20px 60px rgba(61, 13, 28, 0.18);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--maroon-900);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin-bottom: 16px; }
.section-lede { color: var(--gray-500); font-size: 1.05rem; max-width: 620px; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

section { padding: 96px 0; position: relative; }
.section-alt { background: var(--cream-100); }
.section-dark {
  background: linear-gradient(160deg, var(--maroon-900), var(--maroon-700));
  color: var(--cream-100);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream-50); }
.section-dark .section-lede { color: var(--gold-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--maroon-900);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--cream-50);
  border: 1.5px solid rgba(248, 241, 230, 0.55);
}
.btn-outline:hover { background: rgba(248, 241, 230, 0.12); border-color: var(--cream-50); transform: translateY(-2px); }
.btn-maroon {
  background: var(--maroon-700);
  color: var(--cream-50);
  box-shadow: var(--shadow-sm);
}
.btn-maroon:hover { background: var(--maroon-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--maroon-700);
  border: 1.5px solid var(--maroon-700);
}
.btn-ghost:hover { background: var(--maroon-700); color: var(--cream-50); }
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-wa:hover { background: #1fb958; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Rating badge ---------- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  box-shadow: var(--shadow-md);
}
.rating-badge .g-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  flex-shrink: 0;
}
.rating-badge .g-icon svg { width: 18px; height: 18px; }
.rating-badge .rb-stars { display: flex; gap: 2px; color: var(--gold-500); }
.rating-badge .rb-stars svg { width: 14px; height: 14px; }
.rating-badge .rb-text { font-size: 0.8rem; color: var(--gray-700); font-weight: 500; line-height: 1.3; }
.rating-badge .rb-text strong { color: var(--maroon-900); font-size: 0.95rem; }
.rating-badge.on-dark { background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); }
.rating-badge.on-dark .g-icon { background: rgba(255,255,255,0.9); }
.rating-badge.on-dark .rb-text { color: var(--gold-100); }
.rating-badge.on-dark .rb-text strong { color: var(--cream-50); }

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 13, 28, 0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(61, 13, 28, 0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.brand-text { line-height: 1.1; }
.brand-text .b-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--maroon-900); }
.brand-text .b-sub { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon-800); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--cream-200); }
  .nav-cta .btn-sm.hide-mobile { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 26px; padding: 8px 0;
  }
  .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--maroon-800); transition: all 0.25s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--maroon-900);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,13,28,0.55) 0%, rgba(61,13,28,0.75) 55%, rgba(36,10,20,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero .rating-badge { margin-bottom: 26px; }
.hero h1 { color: var(--cream-50); font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-300); font-style: normal; }
.hero p.lede { color: var(--gold-100); font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; color: var(--gold-100); font-size: 0.85rem; }
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--gold-400); flex-shrink: 0; }

.page-hero {
  position: relative;
  padding: 168px 0 90px;
  background: linear-gradient(160deg, var(--maroon-900), var(--maroon-700));
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(217,185,74,0.18), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream-50); font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: var(--gold-100); max-width: 600px; font-size: 1.05rem; }
.breadcrumb { font-size: 0.8rem; color: var(--gold-300); margin-bottom: 18px; letter-spacing: 0.04em; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Quick links (home) ---------- */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 800px) { .split-cta { grid-template-columns: 1fr; } }
.split-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: var(--cream-50);
  box-shadow: var(--shadow-md);
}
.split-card .sc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.split-card:hover .sc-bg { transform: scale(1.06); }
.split-card .sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,13,28,0.15), rgba(36,10,20,0.92));
}
.split-card .sc-content { position: relative; z-index: 2; }
.split-card .eyebrow { color: var(--gold-300); }
.split-card h3 { color: var(--cream-50); font-size: 1.8rem; margin-bottom: 10px; }
.split-card p { color: var(--gold-100); margin-bottom: 20px; max-width: 380px; }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 220px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 26px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 14px; }
.card-price { display: flex; align-items: center; justify-content: space-between; }
.price-tag { font-family: var(--font-display); font-weight: 700; color: var(--maroon-700); font-size: 1.05rem; }
.price-tag span { font-size: 0.72rem; color: var(--gray-500); font-family: var(--font-body); font-weight: 400; }

/* ---------- Service list rows ---------- */
.service-category { margin-bottom: 64px; }
.service-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.service-cat-head .sc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-100); color: var(--maroon-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-cat-head .sc-icon svg { width: 26px; height: 26px; }
.service-cat-head h3 { font-size: 1.55rem; margin-bottom: 2px; }
.service-cat-head p { color: var(--gray-500); font-size: 0.9rem; }

.service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  gap: 20px;
  flex-wrap: wrap;
}
.service-row:hover { background: var(--cream-100); }
.service-row + .service-row { border-top: 1px solid var(--cream-200); }
.service-row .sr-name { font-weight: 600; color: var(--charcoal); font-size: 1rem; }
.service-row .sr-desc { color: var(--gray-500); font-size: 0.85rem; margin-top: 3px; }
.service-row .sr-price { font-family: var(--font-display); font-weight: 700; color: var(--maroon-700); white-space: nowrap; }
.service-panel { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 12px 12px; }

/* ---------- Stylist / team ---------- */
.team-card { text-align: center; }
.team-card .card-img { height: 300px; }
.team-card .card-body h3 { margin-bottom: 2px; }
.team-role { color: var(--gold-600); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }

/* ---------- Course cards ---------- */
.course-card { display: flex; flex-direction: column; }
.course-card .card-img { height: 190px; position: relative; }
.course-card .badge-dur {
  position: absolute; top: 14px; right: 14px;
  background: rgba(36,10,20,0.85); color: var(--gold-300);
  padding: 6px 14px; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.course-list { list-style: none; margin: 14px 0; }
.course-list li { display: flex; gap: 8px; font-size: 0.86rem; color: var(--gray-700); margin-bottom: 7px; align-items: flex-start; }
.course-list svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; margin-top: 3px; }
.course-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--cream-200); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-rows: 190px; }
.gallery-grid .g-item { grid-row: span 1; }
.gallery-grid .g-item.tall { grid-row: span 2; }
.g-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.1); }
.g-item .g-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(36,10,20,0.72); color: var(--gold-200, var(--gold-300));
  font-size: 0.7rem; padding: 4px 10px; border-radius: 999px;
  opacity: 0; transform: translateY(6px); transition: all 0.3s ease;
}
.g-item:hover .g-tag { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn {
  padding: 9px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid var(--cream-200); color: var(--gray-700); transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold-500); }
.filter-btn.active { background: var(--maroon-800); border-color: var(--maroon-800); color: var(--cream-50); }

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 14px; }
.review-stars svg { width: 15px; height: 15px; }
.review-card p.rq { color: var(--gray-700); font-size: 0.95rem; margin-bottom: 20px; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-600), var(--maroon-900));
  color: var(--gold-200, #f6ecc9);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-person .rp-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.review-person .rp-meta { font-size: 0.75rem; color: var(--gray-500); display: flex; align-items: center; gap: 5px; }
.review-person .rp-meta svg { width: 12px; height: 12px; }

.stat-row { display: flex; flex-wrap: wrap; gap: 48px; justify-content: center; }
.stat-item { text-align: center; }
.stat-item .stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-300); }
.stat-item .stat-label { font-size: 0.82rem; color: var(--gold-100); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white); border-radius: var(--radius-md); padding: 30px;
  box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start;
}
.contact-card .cc-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold-100); color: var(--maroon-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .cc-icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { color: var(--gray-500); font-size: 0.9rem; }
.contact-card .cc-actions { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--maroon-900); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-200); background: var(--cream-50);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--charcoal);
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold-500);
}
.radio-row { display: flex; gap: 12px; }
.radio-opt {
  flex: 1; border: 1.5px solid var(--cream-200); border-radius: var(--radius-sm);
  padding: 12px; text-align: center; cursor: pointer; font-size: 0.85rem; font-weight: 600;
  color: var(--gray-700); transition: all 0.2s ease;
}
.radio-opt.selected { border-color: var(--maroon-700); background: var(--gold-100); color: var(--maroon-800); }
.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 12px; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); height: 340px; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--gray-300); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { color: var(--gold-300); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer .f-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.site-footer .f-brand .b-name { color: var(--cream-50); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.site-footer p { font-size: 0.88rem; line-height: 1.7; color: var(--gray-300); }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { font-size: 0.88rem; color: var(--gray-300); transition: color 0.2s ease; }
.site-footer ul li a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: var(--gray-500);
}
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.social-row a:hover { background: var(--gold-500); color: var(--maroon-900); }
.social-row svg { width: 16px; height: 16px; }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: pulse-wa 2.4s infinite;
}
.float-wa svg { width: 28px; height: 28px; }
.float-wa:hover { animation: none; transform: scale(1.08); }
@keyframes pulse-wa {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Image fallback (branded gradient) ---------- */
.img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  padding: 10px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.divider-gold { width: 60px; height: 3px; background: var(--gold-500); border-radius: 2px; margin: 0 0 20px; }
.divider-gold.center { margin: 0 auto 20px; }
.tag-pill {
  display: inline-block; background: var(--gold-100); color: var(--maroon-700);
  font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.badge-float {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: var(--shadow-lg);
}
@media (max-width: 600px) { .badge-float { position: static; margin-top: -30px; margin-left: 20px; width: fit-content; } }

.cta-band { background: var(--gold-100); border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h3 { font-size: 1.7rem; margin-bottom: 8px; }
.cta-band p { color: var(--gray-700); }
