/* ============================================================
   BEST DESSERT DA NANG — main.css
   Production stylesheet — mobile-first
   ============================================================ */

/* ------------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --color-cream:       #FDF6EC;
  --color-coral:       #E8604C;
  --color-sage:        #7A9E7E;
  --color-chocolate:   #3B1F0A;
  --color-warm-grey:   #9C8E83;
  --color-white:       #FFFFFF;
  --color-gold:        #D4A853;

  /* Color aliases */
  --color-text-primary:   var(--color-chocolate);
  --color-text-secondary: var(--color-warm-grey);
  --color-text-inverted:  var(--color-white);
  --color-bg-primary:     var(--color-cream);
  --color-bg-card:        var(--color-white);
  --color-border:         rgba(59, 31, 10, 0.10);
  --color-border-light:   rgba(59, 31, 10, 0.06);

  /* Coral tints */
  --color-coral-light:  #FDECEA;
  --color-coral-dark:   #C94B38;

  /* Sage tints */
  --color-sage-light:   #EDF3EE;
  --color-sage-dark:    #5B7F5F;

  /* Gold tints */
  --color-gold-light:   #FBF3E0;
  --color-gold-dark:    #B8893A;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Font sizes — fluid scale */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.25rem;   /* 20px */
  --text-xl:   1.5rem;    /* 24px */
  --text-2xl:  1.875rem;  /* 30px */
  --text-3xl:  2.25rem;   /* 36px */
  --text-4xl:  3rem;      /* 48px */
  --text-5xl:  3.75rem;   /* 60px */
  --text-6xl:  4.5rem;    /* 72px */

  /* Spacing — 4px base unit */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* Border radii */
  --radius-card:   16px;
  --radius-btn:    999px;
  --radius-image:  12px;
  --radius-badge:  6px;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     20px;

  /* Shadows */
  --shadow-card:  0 2px 24px rgba(59, 31, 10, 0.08);
  --shadow-hover: 0 8px 40px rgba(59, 31, 10, 0.15);
  --shadow-btn:   0 4px 16px rgba(232, 96, 76, 0.30);
  --shadow-gold:  0 4px 16px rgba(212, 168, 83, 0.30);
  --shadow-sm:    0 1px 4px  rgba(59, 31, 10, 0.06);
  --shadow-md:    0 4px 16px rgba(59, 31, 10, 0.10);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   200ms ease;
  --transition-slow:   300ms ease;
  --transition-slower: 400ms ease;

  /* Layout */
  --container-max:  1200px;
  --nav-height:     72px;
  --nav-height-sm:  56px;

  /* Z-index layers */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}

/* ------------------------------------------------------------
   3. MODERN CSS RESET
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

p {
  max-width: 72ch;
}

fieldset {
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Focus visible — accessibility */
:focus-visible {
  outline: 2px solid var(--color-coral);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------------------
   4. BASE TYPOGRAPHY
   ------------------------------------------------------------ */
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); }
h6 { font-size: var(--text-base); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  h4 { font-size: var(--text-xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
}

.lead {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

strong { font-weight: 600; }
em     { font-style: italic; }

small {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ------------------------------------------------------------
   5. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 480px) {
  .container { padding-inline: var(--space-6); }
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

@media (min-width: 1280px) {
  .container { padding-inline: var(--space-12); }
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
}

/* Flex */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-end    { align-items: flex-end; }
.justify-center        { justify-content: center; }
.justify-between       { justify-content: space-between; }
.justify-end           { justify-content: flex-end; }
.gap-1  { gap: var(--space-1); }
.gap-2  { gap: var(--space-2); }
.gap-3  { gap: var(--space-3); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }

/* Spacing utilities */
.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

.pt-8  { padding-top: var(--space-8); }
.pb-8  { padding-bottom: var(--space-8); }
.py-8  { padding-block: var(--space-8); }
.py-12 { padding-block: var(--space-12); }
.py-16 { padding-block: var(--space-16); }
.py-24 { padding-block: var(--space-24); }

/* Text alignment */
.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }

/* Visibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color            var(--transition-fast),
    box-shadow       var(--transition-fast),
    transform        var(--transition-fast),
    border-color     var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  -webkit-user-select: none;
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary — coral */
.btn-primary {
  background-color: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-coral-dark);
  border-color: var(--color-coral-dark);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(232, 96, 76, 0.40);
}

/* Secondary — outline */
.btn-secondary {
  background-color: transparent;
  color: var(--color-coral);
  border-color: var(--color-coral);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-coral-light);
  transform: scale(1.02);
}

/* Grab / Gold CTA */
.btn-grab {
  background-color: var(--color-gold);
  color: var(--color-chocolate);
  border-color: var(--color-gold);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-grab:hover,
.btn-grab:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(212, 168, 83, 0.45);
}

/* Ghost / text */
.btn-ghost {
  background-color: transparent;
  color: var(--color-text-secondary);
  border-color: transparent;
  padding-inline: var(--space-4);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--color-text-primary);
  background-color: var(--color-border-light);
}

/* Sizes */
.btn--sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

.btn--icon {
  padding: var(--space-3);
  gap: 0;
}

/* Inverted (white on dark) */
.btn--inverted {
  background-color: var(--color-white);
  color: var(--color-coral);
  border-color: var(--color-white);
}

.btn--inverted:hover,
.btn--inverted:focus-visible {
  background-color: var(--color-cream);
  transform: scale(1.02);
}

/* ------------------------------------------------------------
   7. TAGS, BADGES & CHIPS
   ------------------------------------------------------------ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-badge);
  font-size: var(--text-xs);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.tag--coral {
  background-color: var(--color-coral-light);
  color: var(--color-coral-dark);
}

.tag--sage {
  background-color: var(--color-sage-light);
  color: var(--color-sage-dark);
}

.tag--gold {
  background-color: var(--color-gold-light);
  color: var(--color-gold-dark);
}

.tag--grey {
  background-color: rgba(156, 142, 131, 0.12);
  color: var(--color-warm-grey);
}

.tag--chocolate {
  background-color: var(--color-chocolate);
  color: var(--color-white);
}

.tag--outline {
  background-color: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
}

/* Rank badge */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  flex-shrink: 0;
}

.rank-badge--gold {
  background-color: var(--color-gold);
  color: var(--color-chocolate);
  box-shadow: var(--shadow-gold);
}

.rank-badge--lg {
  width: 48px;
  height: 48px;
  font-size: var(--text-xl);
}

/* Score badge — overall score pill */
.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-btn);
  background-color: var(--color-chocolate);
  color: var(--color-white);
  font-family: var(--font-display);
}

.score-badge__value {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1;
}

.score-badge__max {
  font-size: var(--text-xs);
  opacity: 0.7;
}

/* ------------------------------------------------------------
   8. BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-block: var(--space-4);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: var(--color-border);
  margin-left: var(--space-2);
}

.breadcrumb__link {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-coral);
}

.breadcrumb__current {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ------------------------------------------------------------
   9. HEADER & NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height);
  background-color: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition:
    height        var(--transition-slow),
    box-shadow    var(--transition-slow),
    background-color var(--transition-slow);
}
.site-header .u-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: var(--nav-height-sm);
  box-shadow: var(--shadow-card);
  background-color: rgba(253, 246, 236, 0.97);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  transition: transform var(--transition-base);
}

.nav__logo:hover .nav__logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-chocolate);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: var(--text-xs);
  color: var(--color-warm-grey);
  font-weight: 400;
}

/* Nav links — center */
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

@media (min-width: 768px) {
  .nav__menu {
    display: flex;
  }
}

.nav__item {}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition:
    color            var(--transition-fast),
    background-color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-chocolate);
  background-color: var(--color-border-light);
}

.nav__link--active {
  color: var(--color-coral);
  font-weight: 600;
}

/* Nav CTA — right */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  -webkit-appearance: none;
}

.nav__hamburger:hover {
  background-color: var(--color-border-light);
}

@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-chocolate);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform  var(--transition-slow),
    opacity    var(--transition-slow),
    width      var(--transition-slow);
}

/* Hamburger open → X state */
.nav--open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav--open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
@media (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--space-6) var(--space-6) var(--space-8);
    gap: var(--space-1);
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition-slow),
      opacity   var(--transition-slow);
    border-top: 1px solid var(--color-border-light);
  }

  .nav--open .nav__menu {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-4);
    width: 100%;
    border-radius: var(--radius-md);
    font-weight: 600;
  }

  .nav__menu-footer {
    margin-top: auto;
    padding-top: var(--space-8);
    width: 100%;
    border-top: 1px solid var(--color-border-light);
  }
}

/* ------------------------------------------------------------
   10. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-cream);
  padding-block: var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(232, 96, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--color-coral);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-chocolate);
}

.hero__title em {
  font-style: italic;
  color: var(--color-coral);
}

.hero__description {
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.hero__stat {}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-chocolate);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
  width: 100%;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.hero__image-wrap:hover img {
  transform: scale(1.03);
}

.hero__badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__badge-label {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.hero__badge-value {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-chocolate);
}

/* Hero decorative blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}

.hero__blob--1 {
  width: 300px;
  height: 300px;
  background-color: rgba(232, 96, 76, 0.12);
  top: -80px;
  right: -80px;
}

.hero__blob--2 {
  width: 200px;
  height: 200px;
  background-color: rgba(212, 168, 83, 0.15);
  bottom: 0;
  left: -60px;
}

/* ------------------------------------------------------------
   11. SECTION CHROME
   ------------------------------------------------------------ */
.section {
  padding-block: var(--space-16);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-24); }
}

.section--bg-cream   { background-color: var(--color-cream); }
.section--bg-white   { background-color: var(--color-white); }
.section--bg-choc    { background-color: var(--color-chocolate); color: var(--color-white); }

.section--bg-choc h1,
.section--bg-choc h2,
.section--bg-choc h3,
.section--bg-choc h4 {
  color: var(--color-white);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.section-header--centered {
  align-items: center;
  text-align: center;
}

.section-header--split {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  max-width: 55ch;
  line-height: 1.7;
}

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-gold));
}

/* ------------------------------------------------------------
   12. DESSERT CARD COMPONENT
   ------------------------------------------------------------ */
.card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow  var(--transition-base),
    transform   var(--transition-base);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Card image — 16:9 */
.card__image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.card:hover .card__image-wrap img {
  transform: scale(1.03);
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, rgba(212, 168, 83, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Rank badge — overlaid top-left */
.card__rank {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-coral);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(232, 96, 76, 0.4);
  transition: transform var(--transition-base);
}

.card:hover .card__rank {
  transform: scale(1.1);
}

.card__rank--1,
.card__rank--gold {
  background-color: var(--color-gold);
  color: var(--color-chocolate);
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.45);
  width: 40px;
  height: 40px;
  font-size: var(--text-base);
}

/* Category tag — overlaid top-right */
.card__category {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 1;
}

/* Body */
.card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}

.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.card__venue {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-chocolate);
  transition: color var(--transition-fast);
}

.card:hover .card__title {
  color: var(--color-coral);
}

.card__description {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Score bars section */
.card__scores {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-block: var(--space-4);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

/* Card footer */
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-2);
  flex-wrap: wrap;
}

.card__price {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.card__price strong {
  color: var(--color-chocolate);
  font-weight: 600;
}

.card__actions {
  display: flex;
  gap: var(--space-2);
}

/* Featured / hero variant */
.card--featured {
  grid-column: span 2;
  flex-direction: row;
}

@media (max-width: 767px) {
  .card--featured {
    grid-column: span 1;
    flex-direction: column;
  }
}

.card--featured .card__image-wrap {
  width: 45%;
  aspect-ratio: auto;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .card--featured .card__image-wrap {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.card--featured .card__title {
  font-size: var(--text-2xl);
}

/* Compact horizontal variant */
.card--horizontal {
  flex-direction: row;
  align-items: center;
}

.card--horizontal .card__image-wrap {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: var(--radius-image) 0 0 var(--radius-image);
}

.card--horizontal .card__body {
  padding: var(--space-4);
  gap: var(--space-2);
}

/* ------------------------------------------------------------
   13. SCORE BAR COMPONENT
   ------------------------------------------------------------ */
.score-bar {
  display: grid;
  grid-template-columns: 100px 1fr 36px;
  align-items: center;
  gap: var(--space-3);
}

@media (max-width: 479px) {
  .score-bar {
    grid-template-columns: 80px 1fr 36px;
    gap: var(--space-2);
  }
}

.score-bar__label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.score-bar__track {
  height: 6px;
  background-color: rgba(156, 142, 131, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-coral), var(--color-gold));
  border-radius: 999px;
  width: 0%;
  transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Before animation fires, fill is 0 — JS sets data-score */
.score-bar__fill[data-score] {
  width: 0%;
}

.score-bar__fill.is-animated {
  width: var(--bar-width, 0%);
}

.score-bar__value {
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--color-chocolate);
  text-align: right;
}

/* Condensed variant (inside cards) */
.score-bar--sm .score-bar__track {
  height: 4px;
}

.score-bar--sm .score-bar__label {
  font-size: 11px;
}

/* ------------------------------------------------------------
   14. TOP 10 GRID LAYOUT
   ------------------------------------------------------------ */
.top10-section {}

.top10-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .top10-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .top10-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* First card spans 2 columns */
  .top10-grid .card:first-child {
    grid-column: span 2;
    flex-direction: row;
  }

  .top10-grid .card:first-child .card__image-wrap {
    width: 50%;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .top10-grid .card:first-child .card__title {
    font-size: var(--text-2xl);
  }
}

/* Numbered list view variant */
.ranked-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.ranked-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition:
    box-shadow var(--transition-base),
    transform  var(--transition-base);
}

.ranked-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.ranked-item__rank {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-coral);
  text-align: center;
  line-height: 1;
}

.ranked-item__rank--1 {
  color: var(--color-gold);
}

.ranked-item__info {}

.ranked-item__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-chocolate);
}

.ranked-item__sub {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.ranked-item__score {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-chocolate);
}

/* ------------------------------------------------------------
   15. BLOG CARD COMPONENT
   ------------------------------------------------------------ */
.blog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition-base),
    transform  var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.blog-card__image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.blog-card:hover .blog-card__image-wrap img {
  transform: scale(1.03);
}

.blog-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.blog-card__date {
  font-size: var(--text-xs);
  color: var(--color-warm-grey);
  font-family: var(--font-mono);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-chocolate);
  transition: color var(--transition-fast);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-card:hover .blog-card__title {
  color: var(--color-coral);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-coral);
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.blog-card:hover .blog-card__read-more {
  gap: var(--space-3);
}

/* Blog card grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 600px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------
   16. NEWSLETTER SECTION
   ------------------------------------------------------------ */
.newsletter {
  background-color: var(--color-chocolate);
  padding: var(--space-16) var(--space-8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(232, 96, 76, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212, 168, 83, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-inline: auto;
}

.newsletter__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.newsletter__subtitle {
  font-size: var(--text-base);
  color: rgba(253, 246, 236, 0.7);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.newsletter__form {
  display: flex;
  gap: var(--space-2);
  max-width: 440px;
  margin-inline: auto;
}

@media (max-width: 479px) {
  .newsletter__form {
    flex-direction: column;
  }
}

.newsletter__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-btn);
  background-color: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  color: var(--color-white);
  font-size: var(--text-sm);
  transition:
    background-color var(--transition-fast),
    border-color     var(--transition-fast);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter__input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.50);
}

.newsletter__disclaimer {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(253, 246, 236, 0.45);
}

/* ------------------------------------------------------------
   17. SUGAR DADDY CTA SECTION
   ------------------------------------------------------------ */
.sugar-daddy {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, rgba(212, 168, 83, 0.08) 100%);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-card);
  padding: var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sugar-daddy {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
  }
}

.sugar-daddy::before {
  content: '★';
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  color: rgba(212, 168, 83, 0.08);
  line-height: 1;
  pointer-events: none;
}

.sugar-daddy__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-2);
}

.sugar-daddy__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-chocolate);
  line-height: 1.2;
}

.sugar-daddy__sub {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 50ch;
}

.sugar-daddy__action {
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background-color: var(--color-chocolate);
  color: var(--color-cream);
  padding-block: var(--space-16) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (min-width: 600px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand {}

.footer__brand-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(253, 246, 236, 0.60);
  max-width: 36ch;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(253, 246, 236, 0.70);
  font-size: var(--text-sm);
  transition:
    background-color var(--transition-fast),
    color            var(--transition-fast),
    transform        var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.45);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(253, 246, 236, 0.65);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: var(--text-sm);
  color: rgba(253, 246, 236, 0.40);
}

.footer__legal {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: rgba(253, 246, 236, 0.40);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: rgba(253, 246, 236, 0.80);
}

/* ------------------------------------------------------------
   19. TOAST NOTIFICATION
   ------------------------------------------------------------ */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  pointer-events: none;
  max-width: 340px;
  width: calc(100% - var(--space-8));
}

.toast {
  background-color: var(--color-chocolate);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  font-size: var(--text-sm);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  pointer-events: all;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition:
    opacity   var(--transition-slow),
    transform var(--transition-slow);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast.is-hiding {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.toast--success { border-left: 3px solid var(--color-sage); }
.toast--error   { border-left: 3px solid var(--color-coral); }
.toast--info    { border-left: 3px solid var(--color-gold); }

.toast__icon {
  font-size: var(--text-md);
  flex-shrink: 0;
}

.toast__message {
  flex: 1;
}

.toast__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.50);
  cursor: pointer;
  padding: 0;
  font-size: var(--text-md);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.toast__close:hover {
  color: var(--color-white);
}

/* ------------------------------------------------------------
   20. ANIMATIONS & SCROLL REVEAL
   ------------------------------------------------------------ */

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Animation utility classes */
.anim-fade-in  { animation: fadeIn  600ms ease both; }
.anim-slide-up { animation: slideUp 600ms ease both; }
.anim-scale-in { animation: scaleIn 400ms ease both; }

/* Stagger delays */
.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }
.delay-6 { animation-delay: 600ms; }

/* Page load — hero stagger (CSS-only, no JS dependency) */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero__eyebrow  { animation: heroFadeUp 600ms ease  50ms both; }
.hero__title    { animation: heroFadeUp 600ms ease 150ms both; }
.hero__description,
.hero__subtitle { animation: heroFadeUp 600ms ease 250ms both; }
.hero__actions  { animation: heroFadeUp 600ms ease 350ms both; }
.hero__stats    { animation: heroFadeUp 600ms ease 450ms both; }
.hero__visual   { animation: heroFadeUp 700ms ease 200ms both; }

/* Scroll reveal — .reveal → .is-visible */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   400ms ease,
    transform 400ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a reveal parent */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity   400ms ease,
    transform 400ms ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay:   0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 600ms; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(156, 142, 131, 0.10) 25%,
    rgba(156, 142, 131, 0.20) 50%,
    rgba(156, 142, 131, 0.10) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ------------------------------------------------------------
   21. MISC / UTILITY
   ------------------------------------------------------------ */
.hidden { display: none !important; }

.overflow-hidden { overflow: hidden; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Aspect ratios */
.aspect-video  { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1; }
.aspect-4-3    { aspect-ratio: 4/3; }

/* Object fit */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.w-full         { width: 100%; }
.h-full         { height: 100%; }

/* Color utilities */
.text-coral     { color: var(--color-coral); }
.text-gold      { color: var(--color-gold); }
.text-sage      { color: var(--color-sage); }
.text-choc      { color: var(--color-chocolate); }
.text-muted     { color: var(--color-text-secondary); }
.text-white     { color: var(--color-white); }

.bg-cream       { background-color: var(--color-cream); }
.bg-white       { background-color: var(--color-white); }
.bg-choc        { background-color: var(--color-chocolate); }
.bg-coral       { background-color: var(--color-coral); }

/* Separator */
.sep {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-8);
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--color-coral);
  padding-left: var(--space-6);
  margin-left: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-chocolate);
  line-height: 1.5;
}

/* Image figure */
.figure {
  margin: 0;
}

.figure__img {
  width: 100%;
  border-radius: var(--radius-image);
  overflow: hidden;
}

.figure__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-image);
}

.figure__caption {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  text-align: center;
}

/* Sticky sidebar pattern */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .layout-sidebar {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.sticky-aside {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

/* Chip group */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* No results state */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  color: var(--color-text-secondary);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.empty-state__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-chocolate);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity   var(--transition-slow),
    transform var(--transition-slow);
  pointer-events: none;
  z-index: var(--z-raised);
  font-size: var(--text-base);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background-color: var(--color-coral);
}

/* Map embed */
.map-embed {
  border-radius: var(--radius-image);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Rating stars */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: var(--text-sm);
}

/* Tooltip */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-chocolate);
  color: var(--color-white);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-badge);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: var(--z-dropdown);
}

[data-tooltip]:hover::after {
  opacity: 1;
}

/* ============================================================
   COMPATIBILITY LAYER
   Bridge between HTML class names and main.css naming
   ============================================================ */

/* --- Aliases: CSS custom properties missing from tokens --- */
:root {
  --color-text:   #2A1505;
  --color-muted:  #7A6555;
  --max-width:    1200px;
  --radius-pill:  999px;
  --shadow-sm:    0 1px 4px rgba(59,31,10,.08);
  --shadow-md:    0 4px 16px rgba(59,31,10,.12);
  --shadow-lg:    0 8px 32px rgba(59,31,10,.16);
  --transition:   0.25s ease;
}

/* --- Layout utilities --- */
.u-container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.u-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* --- Button variants (HTML uses --coral, --gold, --outline) --- */
.btn--coral   { background: var(--color-coral); color: #fff; border: none; }
.btn--gold    { background: var(--color-gold); color: var(--color-chocolate); border: none; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--color-chocolate);
  color: var(--color-chocolate);
}
.btn--coral:hover, .btn--gold:hover { opacity: .92; }
.btn--outline:hover { background: var(--color-chocolate); color: #fff; }

/* --- Nav: image logo --- */
a.nav__logo, .nav__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
}
/* Footer logo image (white version) */
.footer__logo-img,
.site-footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer__logo:hover .footer__logo-img,
.site-footer__logo:hover .site-footer__logo-img {
  opacity: 1;
}

/* --- Nav desktop links list --- */
.nav__links {
  display: none;
  align-items: center;
  gap: 8px;
  list-style: none;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}

/* --- Nav CTA wrapper --- */
.nav__cta {
  display: none;
}
@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
}

/* --- Mobile nav overlay --- */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-cream);
  border-top: 1px solid rgba(59,31,10,.08);
  padding: 12px 0 16px;
}
.nav__mobile.is-open {
  display: flex;
}
.nav__mobile .nav__link {
  padding: 12px 24px;
  display: block;
  font-size: 1rem;
}
.nav__mobile .btn {
  margin: 12px 24px 4px;
  justify-content: center;
}

/* Hamburger span lines (HTML uses <span> not .hamburger-line) */
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-chocolate);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Footer layout --- */
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav   { align-items: flex-start !important; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer__logo span { color: var(--color-coral); }

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer__nav-link:hover { color: #fff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.5);
}

.footer__socials { display: flex; gap: 16px; }

.footer__social-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer__social-link:hover { color: #fff; }

/* --- Newsletter section (HTML variant) --- */
.newsletter__inner {
  background: linear-gradient(135deg, var(--color-coral) 0%, #c94a37 100%);
  border-radius: 20px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .newsletter__inner { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.newsletter__subtitle { color: rgba(255,255,255,.84); font-size: 1rem; line-height: 1.65; }
.newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__input {
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255,255,255,.18);
  color: #fff;
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,.6); }
.newsletter__input:focus { background: rgba(255,255,255,.25); }
.newsletter__submit {
  padding: 14px 28px;
  background: #fff;
  color: var(--color-coral);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.newsletter__submit:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(59,31,10,.2); }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb__link { color: var(--color-coral); text-decoration: none; }
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__sep { color: rgba(59,31,10,.3); }

/* ============================================================
   MISSING PAGE STYLES — site-header/footer/about/contact/sugar-daddy
   ============================================================ */

/* ----------------------------------------------------------
   BREADCRUMB extras (list wrapper + current item)
   ---------------------------------------------------------- */
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}
.breadcrumb__item--current {
  color: var(--color-text, #2A1505);
  font-weight: 500;
}

/* ----------------------------------------------------------
   SITE-HEADER inner layout (about / contact / sugar-daddy pages)
   ---------------------------------------------------------- */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  gap: 16px;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-chocolate);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-header__logo:hover { color: var(--color-coral); }

.site-header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted, #7A6555);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.site-header__nav-link:hover,
.site-header__nav-link[aria-current="page"] {
  color: var(--color-chocolate);
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.site-header__hamburger:hover { background: rgba(59,31,10,.06); }
.site-header__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-chocolate);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 767px) {
  .site-header__hamburger { display: flex; }
  .site-header__nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-cream, #FDF6EC);
    border-bottom: 1px solid rgba(59,31,10,.08);
    padding: 12px 0 16px;
    flex-direction: column;
    align-items: stretch;
    z-index: 90;
  }
  .site-header__nav.nav--open { display: flex; }
  .site-header__nav-list { flex-direction: column; gap: 0; }
  .site-header__nav-link { padding: 12px 24px; border-radius: 0; }
}

/* ----------------------------------------------------------
   SITE-FOOTER inner layout
   ---------------------------------------------------------- */
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 48px 24px 32px;
  align-items: start;
}
@media (max-width: 767px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px 24px; }
}

.site-footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.site-footer__logo:hover { color: rgba(253,246,236,.8); }

.site-footer__tagline {
  font-size: 0.875rem;
  color: rgba(253,246,236,.55);
  line-height: 1.6;
}

.site-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__nav-link {
  font-size: 0.9rem;
  color: rgba(253,246,236,.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__nav-link:hover { color: #fff; }

.site-footer__social { display: flex; gap: 12px; }

.site-footer__social-link {
  font-size: 0.875rem;
  color: rgba(253,246,236,.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__social-link:hover { color: #fff; }

.site-footer__bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(253,246,236,.4);
}

/* ----------------------------------------------------------
   PAGE HEADER (about / contact pages)
   ---------------------------------------------------------- */
.page-header {
  padding: 48px 24px 40px;
  border-bottom: 1px solid rgba(59,31,10,.06);
}
.page-header__inner {
  max-width: 800px;
  margin-inline: auto;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-chocolate);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-header__intro {
  font-size: 1.0625rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.75;
  max-width: 65ch;
}

/* ----------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------- */
.about { padding: 40px 24px 0; }
.about__inner {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 64px;
}
.about__section-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(59,31,10,.08);
}
.about__section-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text, #2A1505);
}
.about__inline-link { color: var(--color-coral); text-decoration: underline; }
.about__inline-link:hover { color: var(--color-chocolate); }
.about__process-list {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__process-item { font-size: 1rem; line-height: 1.7; color: var(--color-text, #2A1505); }

/* Criteria definition list */
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.criteria-list__item {
  border-left: 3px solid var(--color-coral);
  padding-left: 16px;
}
.criteria-list__term {
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 4px;
}
.criteria-list__desc {
  font-size: 0.9375rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.7;
  margin: 0;
}

/* Page CTA band */
.page-cta {
  background: var(--color-chocolate);
  padding: 64px 24px;
}
.page-cta__inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.page-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.page-cta__desc {
  font-size: 1rem;
  color: rgba(253,246,236,.75);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.contact { padding: 40px 24px 64px; }
.contact__inner {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
}
.contact__reply-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.6;
}
.contact__inline-link { color: var(--color-coral); text-decoration: underline; }
.contact__inline-link:hover { color: var(--color-chocolate); }
.contact__info-col { display: flex; flex-direction: column; gap: 24px; }
.contact__info-card,
.contact__social-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(59,31,10,.07);
}
.contact__info-heading,
.contact__social-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 16px;
}
.contact__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text, #2A1505);
}
.contact__info-item p {
  font-size: 0.875rem;
  color: var(--color-muted, #7A6555);
  margin-top: 2px;
  margin-bottom: 0;
}
.contact__info-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact__social-desc {
  font-size: 0.9375rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.65;
  margin-bottom: 16px;
}
.contact__social-btn { display: inline-flex; }

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__honeypot { display: none; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 0.875rem; font-weight: 600; color: var(--color-chocolate); }
.form__required { color: var(--color-coral); margin-left: 2px; }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(59,31,10,.15);
  border-radius: 10px;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1rem;
  color: var(--color-text, #2A1505);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A6555' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(232,96,76,.12);
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(59,31,10,.35); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__actions { display: flex; }

/* Button variant */
.btn--coral-outline {
  background: transparent;
  border: 2px solid var(--color-coral);
  color: var(--color-coral);
}
.btn--coral-outline:hover { background: var(--color-coral); color: #fff; }

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — hero variant
   ---------------------------------------------------------- */
.hero.hero--sugar-daddy {
  min-height: unset;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 24px;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .hero.hero--sugar-daddy { grid-template-columns: 1fr; padding: 40px 24px; }
}
.hero--sugar-daddy .hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.hero--sugar-daddy .hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-chocolate);
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: none;
}
.hero__title-highlight { color: var(--color-coral); }
.hero--sugar-daddy .hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.7;
  max-width: 50ch;
  animation: none;
}
.hero--sugar-daddy .hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: none;
}
.hero__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(59,31,10,.16);
}
.hero__image { width: 100%; height: auto; display: block; object-fit: cover; }

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — editorial section
   ---------------------------------------------------------- */
.editorial { padding: 64px 24px; background: #fff; }
.editorial__inner { max-width: 720px; margin-inline: auto; }
.editorial__inner--wide { max-width: 900px; }
.editorial__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.editorial__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text, #2A1505);
}

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — scores section
   ---------------------------------------------------------- */
.scores { padding: 64px 24px; background: var(--color-cream, #FDF6EC); }
.scores__inner { max-width: 900px; margin-inline: auto; }
.scores__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.scores__subheading {
  font-size: 0.9375rem;
  color: var(--color-muted, #7A6555);
  margin-bottom: 36px;
}
.scores__grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 700px) {
  .scores__grid { grid-template-columns: 1fr; }
  .scores__overall { display: flex; align-items: center; gap: 16px; flex-direction: column; order: -1; }
}
.scores__bars { display: flex; flex-direction: column; gap: 20px; }

/* Override the grid layout for score-bar inside the scores section */
.scores__bars .score-bar {
  display: block;
}
.scores__bars .score-bar__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.score-bar__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text, #2A1505);
}
.scores__bars .score-bar__value {
  font-family: var(--font-mono, monospace);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-coral);
  text-align: right;
}
.scores__bars .score-bar__track {
  height: 8px;
  background: rgba(59,31,10,.1);
  border-radius: 999px;
  overflow: hidden;
}
.scores__bars .score-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-coral), var(--color-gold));
  border-radius: 999px;
  transition: width 800ms cubic-bezier(0.4,0,0.2,1);
}
.scores__overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scores__overall-caption {
  font-size: 0.875rem;
  color: var(--color-muted, #7A6555);
  text-align: center;
}

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — how to order
   ---------------------------------------------------------- */
.how-to-order { padding: 64px 24px; background: #fff; }
.how-to-order__inner { max-width: 720px; margin-inline: auto; }
.how-to-order__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.how-to-order__intro {
  font-size: 1rem;
  color: var(--color-muted, #7A6555);
  margin-bottom: 36px;
  line-height: 1.7;
}
.how-to-order__cta { margin-top: 36px; text-align: center; }

.order-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.order-steps__item { display: flex; gap: 16px; align-items: flex-start; }
.order-steps__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-mono, monospace);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.order-steps__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 4px;
}
.order-steps__desc {
  font-size: 0.9375rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — reasons
   ---------------------------------------------------------- */
.reasons { padding: 64px 24px; background: var(--color-cream, #FDF6EC); }
.reasons__inner { max-width: 800px; margin-inline: auto; }
.reasons__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.reasons__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 32px; }
.reasons__item { display: flex; gap: 16px; align-items: flex-start; }
.reasons__icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.reasons__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 6px;
}
.reasons__desc {
  font-size: 0.9375rem;
  color: var(--color-muted, #7A6555);
  line-height: 1.75;
  margin: 0;
}

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — verdict
   ---------------------------------------------------------- */
.verdict { padding: 64px 24px; background: var(--color-chocolate); }
.verdict__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.verdict__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}
.verdict__quote { border: none; padding: 0; margin: 0; }
.verdict__quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(253,246,236,.9);
  line-height: 1.6;
  margin-bottom: 16px;
}
.verdict__cite {
  font-size: 0.875rem;
  color: rgba(253,246,236,.55);
  font-style: normal;
}

/* ----------------------------------------------------------
   SUGAR DADDY PAGE — explore more
   ---------------------------------------------------------- */
.explore-more { padding: 64px 24px; background: #fff; }
.explore-more__inner { max-width: 800px; margin-inline: auto; text-align: center; }
.explore-more__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: 8px;
}
.explore-more__intro {
  font-size: 0.9375rem;
  color: var(--color-muted, #7A6555);
  margin-bottom: 32px;
}
.explore-more__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
@media (max-width: 600px) { .explore-more__links { grid-template-columns: 1fr; } }
.explore-more__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  background: var(--color-cream, #FDF6EC);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.explore-more__card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,31,10,.1); }
.explore-more__card-emoji { font-size: 1.75rem; }
.explore-more__card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-chocolate);
}
.explore-more__card-desc { font-size: 0.875rem; color: var(--color-muted, #7A6555); line-height: 1.6; }

/* ----------------------------------------------------------
   NEWSLETTER extra class aliases (sugar-daddy / other pages)
   ---------------------------------------------------------- */

/* 3-child layout: heading/desc stacked in col 1, form in col 2 */
.newsletter__inner:has(> .newsletter__heading),
.newsletter__inner:has(> .newsletter__title) {
  row-gap: 12px;
}
.newsletter__inner > .newsletter__heading,
.newsletter__inner > .newsletter__title { grid-column: 1; grid-row: 1; align-self: end; text-align: left; }
.newsletter__inner > .newsletter__desc,
.newsletter__inner > .newsletter__subtitle { grid-column: 1; grid-row: 2; align-self: start; margin-bottom: 0; text-align: left; }
.newsletter__inner > .newsletter__form { grid-column: 2; grid-row: 1 / 3; align-self: center; text-align: left; }
@media (max-width: 768px) {
  .newsletter__inner > .newsletter__heading,
  .newsletter__inner > .newsletter__title,
  .newsletter__inner > .newsletter__desc,
  .newsletter__inner > .newsletter__subtitle,
  .newsletter__inner > .newsletter__form { grid-column: auto; grid-row: auto; }
}

.newsletter__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.newsletter__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}
.newsletter__field-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .newsletter__field-group { flex-direction: column; }
  .newsletter__field-group .newsletter__input,
  .newsletter__field-group .btn { width: 100%; justify-content: center; }
}
.newsletter__label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}
.newsletter__privacy { font-size: 0.8125rem; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ----------------------------------------------------------
   BREADCRUMB container fix (when used inside page with padding)
   ---------------------------------------------------------- */
.breadcrumb { padding-inline: 24px; max-width: 1200px; margin-inline: auto; }
