/* ==========================================================================
   ZINO BARBERSHOP — STYLESHEET
   Luxury light theme: ivory background, gold accent, charcoal text.
   ========================================================================== */

:root {
  --ivory: #FAF7F1;
  --ivory-deep: #F1EBDD;
  --cream-card: #FFFFFF;
  --charcoal: #201D1A;
  --charcoal-soft: #4A4540;
  --gold: #B8935A;
  --gold-deep: #9C7A44;
  --gold-light: #E8D9BE;
  --line: #E7DFCF;
  --shadow: 0 10px 30px rgba(32, 29, 26, 0.08);
  --radius: 14px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; color: var(--charcoal-soft); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 80px 0;
}
.section--tight { padding: 56px 0; }
.section--alt { background: var(--ivory-deep); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head p { margin: 0; }

/* ---------------------------- BUTTONS ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(156, 122, 68, 0.35);
}
.btn--gold:hover { box-shadow: 0 12px 26px rgba(156, 122, 68, 0.45); }

.btn--outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: #fff; }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn--block { width: 100%; }

/* ----------------------------- HEADER ----------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-deep);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 110;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgba(32,29,26,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-toggle { display: flex; }
  /* "Book Now" is dropped from the header on mobile — booking, plus every
     other key action, lives in the fixed bottom tab bar instead. */
  .nav-cta .btn--gold { display: none; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 14px; gap: 8px; }
  .brand { gap: 8px; }
  .brand img { height: 38px; }
  .brand-name { font-size: 1rem; }
  .brand-name span { font-size: 0.55rem; letter-spacing: 0.14em; }
  .nav-cta { gap: 6px; }
  .nav-toggle { font-size: 1.4rem; }
}

/* ----------------------------- HERO ----------------------------- */
.hero {
  position: relative;
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 147, 90, 0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(184, 147, 90, 0.10), transparent 50%),
    var(--ivory);
  overflow: hidden;
  text-align: center;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before { width: 420px; height: 420px; top: -180px; left: -120px; }
.hero::after { width: 320px; height: 320px; bottom: -40px; right: 20px; }

/* Sits above the decorative rings (z-index: 0 above) so the rings pass
   visually behind the headline/buttons instead of drawing over them. */
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.hero-logo { width: 96px; margin: 0 auto 20px; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------- QUICK INFO BOX (home page) ------------------------- */
/* One row of 4 on desktop where there's room; drops to a 2x2 grid on
   narrower/mobile screens. */
.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(156, 122, 68, 0.28);
  position: relative;
  margin-top: -56px; /* overlaps the bottom of the hero, like the reference layout */
  z-index: 2;
}
.quick-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.15s ease;
}
.quick-info-item:nth-child(4n) { border-right: none; }
a.quick-info-item:hover { background: rgba(255, 255, 255, 0.1); }
.quick-info-item svg { width: 26px; height: 26px; }
.quick-info-item .qi-title { font-weight: 700; font-size: 0.98rem; }
.quick-info-item .qi-sub { font-size: 0.78rem; opacity: 0.88; }

@media (max-width: 700px) {
  .quick-info { grid-template-columns: 1fr 1fr; margin-top: -40px; }
  .quick-info-item {
    padding: 22px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .quick-info-item:nth-child(2n) { border-right: none; }
  .quick-info-item:nth-child(3), .quick-info-item:nth-child(4) { border-bottom: none; }
  .quick-info-item .qi-title { font-size: 0.88rem; }
  .quick-info-item .qi-sub { font-size: 0.72rem; }
}

/* ------------------------- HIGHLIGHT CARDS ------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.card .icon-badge {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--ivory-deep));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-deep);
  font-size: 1.4rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.94rem; }

/* ----------------------------- SERVICES LIST ----------------------------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .services-list { grid-template-columns: 1fr; }
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
}
.service-row .s-name { font-weight: 600; font-size: 1rem; }
.service-row .s-note { display: block; font-size: 0.8rem; color: var(--charcoal-soft); font-weight: 400; margin-top: 2px; }
.service-row .s-price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 1.05rem;
  white-space: nowrap;
}
.service-row .s-price small { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; color: var(--charcoal-soft); display:block; }

/* ----------------------------- BARBERS ----------------------------- */
.barber-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
}
.barber-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--gold-light), var(--ivory-deep));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.barber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.barber-photo .avatar-initials {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(156,122,68,0.4);
}
.barber-info { padding: 22px 22px 26px; }
.barber-info h3 { margin-bottom: 4px; font-size: 1.15rem; }
.barber-info .role {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.barber-info p { font-size: 0.92rem; margin: 0; }

/* ----------------------------- PRODUCTS ----------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--ivory-deep), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-size: 2.4rem;
  color: var(--gold-deep);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-body p { font-size: 0.88rem; flex: 1; }
.product-price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 1.1rem;
  margin-top: 10px;
}

/* ----------------------------- ABOUT ----------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }

.story-text {
  position: relative;
  max-height: 8.6em; /* roughly 5 lines */
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.story-text::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2.4em;
  background: linear-gradient(to bottom, rgba(250,247,241,0), var(--ivory));
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.story-text.expanded {
  max-height: 3000px;
}
.story-text.expanded::after {
  opacity: 0;
  pointer-events: none;
}
/* Used when the collapsible block sits on the page-hero's slightly darker
   background, so the fade-out matches instead of showing a visible seam. */
.story-text--center::after {
  background: linear-gradient(to bottom, rgba(241,235,221,0), var(--ivory-deep));
}
.story-text--center p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.story-toggle-btn {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: none;
  padding: 0;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: underline;
  cursor: pointer;
}
.story-toggle-btn:hover { color: var(--gold); }
.about-logo-panel {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.about-logo-panel img { width: 100%; max-width: 260px; }

/* On the home page's About Us preview, the logo panel below the text is
   redundant on mobile since the hero above already shows the logo. Hide it
   there only — about.html keeps its logo panel on all screen sizes. Uses
   the combined ".about-logo-panel.home-about-logo" selector so it always
   wins over the base ".about-logo-panel" rule above, regardless of order. */
@media (max-width: 800px) {
  .about-logo-panel.home-about-logo { display: none; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

/* ----------------------------- BOOKING FORM ----------------------------- */
.booking-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 900px) { .booking-wrap { grid-template-columns: 1fr; } }

.booking-form {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-control {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.15s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
select.form-control { appearance: auto; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 560px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }

.time-slot {
  padding: 10px 4px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.time-slot:hover { border-color: var(--gold); }
.time-slot.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  border-color: transparent;
}

.booking-summary {
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.booking-summary h3 { font-size: 1.15rem; margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--charcoal-soft); }
.summary-row .value { font-weight: 600; text-align: right; }

.form-note {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin-top: 16px;
}
.form-error {
  background: #FBEAEA;
  color: #A23636;
  border: 1px solid #EFC9C9;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: none;
}
.form-error.show { display: block; }

/* ----------------------------- CONTACT / FOOTER ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ic {
  width: 40px; height: 40px;
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.contact-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-item p { margin: 0; font-size: 0.9rem; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

#site-footer {
  background: var(--charcoal);
  color: #E8E2D6;
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }

.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
/* The logo is dark line-art on a transparent background, so on the dark
   footer it needs to be flipped to white to actually show up. */
.footer-brand img { height: 44px; filter: brightness(0) invert(1); }
.footer-brand span { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: #fff; }
.footer-tagline { color: #C9C2B4; font-size: 0.9rem; margin: 0; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-col p {
  display: block;
  color: #D8D2C4;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #8C8578;
}

/* ----------------------------- WHATSAPP FLOAT ----------------------------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ----------------------------- MOBILE BOTTOM TAB BAR ----------------------------- */
/* Hidden by default (desktop); becomes the primary mobile nav below 860px,
   replacing the floating WhatsApp button (Chat tab covers that) and giving
   quick access to the 5 most important actions without opening the menu. */
.mobile-tabbar { display: none; }

@media (max-width: 860px) {
  .wa-float { display: none; }

  body { padding-bottom: 92px; }

  /* The outer <nav> is pinned at the true "bottom: 0" screen edge — the one
     anchor point mobile browsers (including Chrome, whose address bar
     resizes the layout viewport as it shows/hides on scroll) all treat
     consistently. It's transparent and click-through except for the pill
     itself, which is inset from the true edge using padding instead of a
     "bottom: 12px" offset on the fixed element — that offset was what
     caused the floating gap to visibly drift/grow while scrolling in
     Chrome. */
  .mobile-tabbar {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 150;
    padding: 0 10px calc(12px + env(safe-area-inset-bottom)) 10px;
    pointer-events: none;
  }

  .tabbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2px;
    background: var(--cream-card);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(32, 29, 26, 0.2);
    padding: 6px;
    pointer-events: auto;
  }

  .tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 2px;
    border-radius: 999px;
    color: var(--charcoal-soft);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .tab-item svg { width: 20px; height: 20px; }
  .tab-item span {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .tab-item.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    box-shadow: 0 6px 14px rgba(156, 122, 68, 0.35);
  }
}

@media (max-width: 380px) {
  .tab-item span { font-size: 0.56rem; }
  .tab-item svg { width: 18px; height: 18px; }
}

/* ----------------------------- PAGE HERO (inner pages) ----------------------------- */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* ----------------------------- MISC ----------------------------- */
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 18px auto;
  border-radius: 2px;
}
.text-center { text-align: center; }

.toast {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
