/* ══════════════════════════════════════════════════
   MELISSA BERIA – SPA & BEAUTY
   Design System & Stylesheet
   ══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  --dark: #201916;
  --dark-2: #322820;
  --gold: #dac099;
  --cream: #fff8ef;
  --surface: #f5ede3;
  --highlight: #f3dfbf;
  --warm-mid: #c8a87a;
  --text-dark: #1a130e;
  --text-muted: #6b5345;
  --text-light: #e8d5bc;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Montserrat', system-ui, sans-serif;

  --container: 1240px;
  --px-mobile: 24px;
  --px-tablet: 48px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --shadow-card: 0 4px 24px rgba(32, 25, 22, .08);
  --shadow-gold: 0 8px 32px rgba(218, 192, 153, .25);

  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET & BASE ───────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-sans);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ─── CONTAINER ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px-mobile);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--px-tablet);
  }
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--highlight);
  border-color: var(--highlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Dark CTA – for light backgrounds */
.btn--dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: #2d1f1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 25, 22, .25);
}

/* Ghost text button */
.btn--text {
  background: transparent;
  color: var(--dark);
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
  letter-spacing: .06em;
}

.btn--text:hover {
  color: var(--warm-mid);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(218, 192, 153, .5);
}

.btn--ghost:hover {
  background: rgba(218, 192, 153, .1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-arrow {
  font-size: 16px;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─── SECTION HEADERS ────────────────────────────── */
.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 16px;
  display: block;
}

.section-eyebrow--gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--warm-mid);
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-header--light .section-title {
  color: var(--cream);
}

.section-header--light .section-desc {
  color: var(--text-light);
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
  /* transparent on light hero */
  background: transparent;
}

.site-header.scrolled {
  background: rgba(32, 25, 22, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(218, 192, 153, .15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: filter var(--transition), transform var(--transition);
  /* Filtro para convertir el color original a #201916 */
  filter: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(1454%) hue-rotate(328deg) brightness(96%) contrast(93%);
}

.site-header.scrolled .nav__logo-img {
  /* Al hacer scroll, vuelve a su color original */
  filter: none;
}

.site-header.scrolled .logo-sub {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--warm-mid);
}

/* When scrolled, links go light */
.site-header.scrolled .nav__links a {
  color: rgba(255, 248, 239, .75);
}

.site-header.scrolled .nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  background: var(--dark) !important;
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--dark-2) !important;
  color: var(--cream) !important;
}

.site-header.scrolled .nav__cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.site-header.scrolled .nav__cta:hover {
  background: var(--highlight) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header.scrolled .nav__toggle span {
  background: var(--cream);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 80px var(--px-mobile);
    transition: right var(--transition);
    border-left: 1px solid rgba(218, 192, 153, .1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    font-size: 14px;
  }

  .nav__cta {
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════
   HERO – light background, portrait right
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #f9f5ee;
  display: flex;
  align-items: center;
  padding-top: 65px;
  overflow: hidden;
}

/* ─── Portrait layer ───────────────────────────── */
.hero__portrait-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* Left-to-right fade so text is always readable */
.hero__portrait-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #f9f5ee 0%,
      #f9f5ee 38%,
      rgba(249, 245, 238, .85) 52%,
      rgba(249, 245, 238, .35) 70%,
      transparent 100%);
}

/* ─── Layout grid ──────────────────────────────── */
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  padding-top: 60px;
  padding-bottom: 100px;
  min-height: calc(100vh - 80px);
}

/* ─── Left: text content ───────────────────────── */
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}

.hero__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
  max-width: 400px;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.hero__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── Right: floating info card ────────────────── */
.hero__card-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 04px;
}

.hero__info-card {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(218, 192, 153, .3);
  border-radius: 20px;
  padding: 28px 35px 24px;
  width: 320px;
  box-shadow: 0 12px 48px rgba(32, 25, 22, .1),
    0 2px 8px rgba(32, 25, 22, .06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__info-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.info-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--surface);
  border-radius: 40px;
  color: var(--warm-mid);
  border: 1px solid rgba(218, 192, 153, .35);
}

.hero__info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.hero__info-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__info-phone {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .01em;
  transition: color var(--transition);
}

.hero__info-phone:hover {
  color: var(--warm-mid);
}

.hero__info-address {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 960px) {
  .hero__portrait {
    max-width: none;
    width: auto;
    right: 0%;
    opacity: .85;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
    align-items: flex-start;
  }

  .hero__card-col {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .hero__portrait-fade {
    background: linear-gradient(to right,
        #f9f5ee 0%,
        #f9f5ee 35%,
        rgba(249, 245, 238, .88) 55%,
        rgba(249, 245, 238, .45) 75%,
        transparent 100%);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
  }

  .hero__portrait {
    max-width: none;
    right: -55%;
    opacity: .8;
  }

  .hero__portrait-fade {
    background: linear-gradient(to right,
        #f9f5ee 0%,
        #f9f5ee 28%,
        rgba(249, 245, 238, .92) 48%,
        rgba(249, 245, 238, .5) 68%,
        transparent 100%);
  }

  .hero__title {
    font-size: clamp(38px, 10vw, 64px);
    line-height: 1.1;
  }

  .hero__info-card {
    width: 100%;
    max-width: 450px;
  }

  .hero__desc {
    display: block;
    font-size: 14px;
    margin-bottom: 28px;
  }
}

/* ══════════════════════════════════════════════════
   TAGLINE SECTION
   ══════════════════════════════════════════════════ */
.tagline-section {
  background: var(--surface);
  padding: 64px 0;
}

.tagline-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.tagline-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.tagline-text {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  max-width: 640px;
  line-height: 1.5;
}

.tagline-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(218, 192, 153, .4);
  border-radius: 40px;
  color: var(--warm-mid);
  background: rgba(218, 192, 153, .08);
  transition: all var(--transition);
}

.pill:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--dark);
}

.services-section .section-title {
  color: var(--cream);
}

.services-section .section-eyebrow {
  color: var(--gold);
}

.services-section .section-desc {
  color: var(--text-light);
}

/* ─── SERVICE BLOCKS (spa2 style) ───────────────── */
.service-block {
  background: var(--dark-2);
  border: 1px solid rgba(218, 192, 153, .25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-block:last-of-type {
  margin-bottom: 0;
}

.service-block:hover {
  border-color: rgba(218, 192, 153, .45);
  box-shadow: 0 8px 48px rgba(0, 0, 0, .35);
}

/* Image header */
.service-block__img-wrap {
  width: 100%;
  height: clamp(180px, 28vw, 340px);
  overflow: hidden;
}

.service-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  filter: brightness(.85) saturate(.88);
}

.service-block:hover .service-block__img {
  transform: scale(1.04);
}

/* Body – padding */
.service-block__body {
  padding: clamp(20px, 4vw, 36px);
}

/* Icon + Title header row */
.service-block__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(218, 192, 153, .25);
}

.service-block__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 192, 153, .12);
  border: 1px solid rgba(218, 192, 153, .25);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.service-block__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}

/* Category sub-sections */
.service-category {
  margin-bottom: 24px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-title {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(218, 192, 153, .25);
}

.category-note {
  font-size: .78em;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(232, 213, 188, .5);
}

/* Price list – spa2 class names */
.price-list {
  display: flex;
  flex-direction: column;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(218, 192, 153, .08);
  transition: background var(--transition);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item:hover {
  background: rgba(218, 192, 153, .04);
  border-radius: 6px;
  margin: 0 -6px;
  padding-left: 6px;
  padding-right: 6px;
}

.price-item--featured {
  background: rgba(218, 192, 153, .1);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border-color: rgba(218, 192, 153, .25) !important;
}

.price-item--featured .price-name {
  color: var(--highlight) !important;
}

.price-item--featured .price-value {
  color: var(--highlight) !important;
  font-size: 1rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.price-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}

.price-desc {
  font-size: 12px;
  color: rgba(232, 213, 188, .5);
  line-height: 1.45;
}

.price-value {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* 2-column auto grid for masajes */
.price-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 0 32px;
}

/* Waxing multi-column layout */
.waxing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 20px 32px;
}

.services-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-cta p {
  color: var(--text-light);
  font-size: 15px;
}

@media (max-width: 600px) {
  .price-list--grid {
    grid-template-columns: 1fr;
  }

  .waxing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .waxing-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 560px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--cream);
}

.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__quote-card {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 60%;
  background: var(--dark);
  color: var(--gold);
  padding: 20px;
  border-radius: var(--radius);
  font-family: var(--ff-serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  box-shadow: 0 8px 32px rgba(32, 25, 22, .2);
}

.about__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(218, 192, 153, .2);
  border-bottom: 1px solid rgba(218, 192, 153, .2);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__images {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .about__images {
    height: 320px;
  }

  .about__img-main {
    width: 80%;
    height: 80%;
  }

  .about__img-accent {
    width: 55%;
    height: 45%;
  }

  .about__quote-card {
    width: 80%;
    font-size: 12px;
  }

  .about__stats {
    gap: 20px;
  }

  .stat__num {
    font-size: 26px;
  }
}

/* ══════════════════════════════════════════════════
   VALUES SECTION
   ══════════════════════════════════════════════════ */
.values-section {
  padding: 100px 0;
  background: var(--dark-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(218, 192, 153, .12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}

.value-card:hover {
  background: rgba(218, 192, 153, .07);
  border-color: rgba(218, 192, 153, .3);
  transform: translateY(-3px);
}

.value-card__icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 13px;
  color: rgba(232, 213, 188, .6);
  line-height: 1.7;
}

.value-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

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

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════
   POLICIES SECTION
   ══════════════════════════════════════════════════ */
.policies-section {
  padding: 100px 0;
  background: var(--surface);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.policy-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(218, 192, 153, .2);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.policy-card:hover {
  transform: translateY(-3px);
}


.policy-card__icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(218, 192, 153, .12);
  border-radius: 12px;
}

.policy-card h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 16px;
}

.policy-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-card li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.policy-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: .7;
}

.policy-card strong {
  color: var(--dark);
  font-weight: 600;
}

/* Highlighted variant (needs to be after base styles to override) */
.policy-card--highlight {
  background: var(--dark);
  border-color: rgba(218, 192, 153, .3);
}

.policy-card--highlight h3 {
  color: #f9f5ee !important;
}

.policy-card--highlight li {
  color: #f9f5ee !important;
}

.policy-card--highlight li strong {
  color: #f9f5ee !important;
}

.policy-card--highlight .policy-card__icon {
  background: rgba(249, 245, 238, .1);
  color: #f9f5ee !important;
}

.policy-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(218, 192, 153, .12);
  border: 1px solid rgba(218, 192, 153, .3);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.policy-notice__icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-notice p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-notice strong {
  color: var(--dark);
}

@media (max-width: 900px) {
  .policies-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════
   BOOKING SECTION
   ══════════════════════════════════════════════════ */
.booking-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218, 192, 153, .4), transparent);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.booking__info .section-title {
  color: var(--cream);
}

.booking__info p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(218, 192, 153, .12);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

a.contact-item:hover {
  border-color: rgba(218, 192, 153, .4);
}

.contact-item__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.contact-item span {
  font-size: 13px;
  color: var(--text-light);
}

.booking__hours {
  background: rgba(218, 192, 153, .06);
  border: 1px solid rgba(218, 192, 153, .15);
  border-radius: var(--radius);
  padding: 20px;
}

.hours__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px
}

.hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(218, 192, 153, .08);
}

.hours__row:last-child {
  border-bottom: none;
}

/* Form */
.booking-form {
  background: var(--dark-2);
  border: 1px solid rgba(218, 192, 153, .12);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(218, 192, 153, .2);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group 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 d='M1 1l5 5 5-5' stroke='%23dac099' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select option {
  background: var(--dark-2);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(218, 192, 153, .06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 213, 188, .3);
}

.form-group input[type="date"] {
  /* Prevent date input from overflowing on mobile */
  max-width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.7) sepia(1) saturate(.5) hue-rotate(10deg);
  cursor: pointer;
  /* Prevent icon from pushing field wider */
  flex-shrink: 0;
  margin-left: auto;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 2px;
}

.form-check label {
  font-size: 12px;
  color: rgba(232, 213, 188, .6);
  line-height: 1.6;
  cursor: pointer;
}

.form-check label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(218, 192, 153, .5);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .booking-layout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .booking-form {
    padding: 24px;
  }
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(218, 192, 153, .1);
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 80px var(--px-mobile);
}

.footer-logo {
  margin-bottom: 12px;
  display: block;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(232, 213, 188, .55);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(218, 192, 153, .1);
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(232, 213, 188, .55);
  transition: color var(--transition);
}

.footer-links li a:hover {
  color: var(--gold);
}

.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 13px;
  color: rgba(232, 213, 188, .55);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact a:not(.btn) {
  color: var(--gold);
}

.footer-contact a:not(.btn):hover {
  color: var(--highlight);
}

.footer-bottom {
  border-top: 1px solid rgba(218, 192, 153, .08);
  padding: 20px var(--px-mobile);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(232, 213, 188, .35);
}

.footer-bottom__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 11px;
  color: rgba(232, 213, 188, .3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-legal-links a+a::before {
  content: "|";
  margin-right: 20px;
  color: rgba(232, 213, 188, .15);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom__left {
    align-items: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════════════ */
.toast {
  /* HIDDEN by default - completely off screen */
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity 0.5s ease,
              visibility 0.5s ease;
}

.toast.toast--show {
  bottom: 2rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast__content {
  background: var(--dark-2);
  color: var(--cream);
  padding: 1rem 2rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  white-space: nowrap;
}

.toast__content svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .toast {
    left: 1.5rem;
    right: 1.5rem;
    transform: none;
    width: auto;
  }

  .toast.toast--show {
    bottom: 1.5rem;
  }

  .toast__content {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
  }
}

/* ══════════════════════════════════════════════════
   ANIMATIONS & UTILITIES
   ══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible>*:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible>*:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible>*:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible>*:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible>*:nth-child(6) { transition-delay: 0.40s; }

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: rgba(218, 192, 153, .3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(218, 192, 153, .6); }

/* ─── SELECTION ──────────────────────────────────── */
::selection {
  background: rgba(218, 192, 153, .3);
  color: var(--dark);
}

/* ─── FOCUS VISIBLE ──────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}