/* ═══════════════════════════════════════════════════════
   ALMALUNA — Main CSS
   Brand: Navy #434762 | Gray #bcbcbc | Nude #bb895c | White #fff
   Font: Montserrat 200-700
   ═══════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --navy:        #434762;
  --navy-dark:   #2e3147;
  --navy-light:  #5a5f84;
  --gray:        #bcbcbc;
  --gray-light:  #f0f0f0;
  --gray-mid:    #e5e5e5;
  --nude:        #bb895c;
  --nude-light:  #d4a97f;
  --nude-dark:   #9a6e45;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --text:        #2d2d2d;
  --text-light:  #666666;
  --text-muted:  #999999;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 8px rgba(67,71,98,0.08);
  --shadow:      0 4px 20px rgba(67,71,98,0.12);
  --shadow-lg:   0 8px 40px rgba(67,71,98,0.16);
  --shadow-xl:   0 16px 60px rgba(67,71,98,0.20);

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:       72px;
  --max-w:       1280px;
  --section-py:  96px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5 { font-weight: 300; line-height: 1.2; color: var(--navy); }

/* ─── Typography Scale ─── */
.t-xs   { font-size: 0.75rem; }
.t-sm   { font-size: 0.875rem; }
.t-base { font-size: 1rem; }
.t-lg   { font-size: 1.125rem; }
.t-xl   { font-size: 1.25rem; }
.t-2xl  { font-size: 1.5rem; }
.t-3xl  { font-size: 2rem; }
.t-4xl  { font-size: 2.5rem; }
.t-5xl  { font-size: 3.25rem; }
.t-6xl  { font-size: 4rem; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ─── Layout Utilities ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ─── Section Headers ─── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 200;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-title strong { font-weight: 600; }
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.75;
}
.section-subtitle--center { margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--nude {
  background: var(--nude);
  color: var(--white);
  border: 2px solid var(--nude);
}
.btn--nude:hover {
  background: var(--nude-dark);
  border-color: var(--nude-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--nude-outline {
  background: transparent;
  color: var(--nude);
  border: 2px solid var(--nude);
}
.btn--nude-outline:hover {
  background: var(--nude);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--sm { padding: 10px 22px; font-size: 0.75rem; }
.btn--lg { padding: 18px 44px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--icon { padding: 12px; border-radius: 50%; }
.btn svg { flex-shrink: 0; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--gray-mid);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
}
.nav__link:hover { color: var(--nude); background: rgba(187,137,92,0.06); }
.nav__chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition);
}
.nav__dropdown { position: relative; }
.nav__dropdown-toggle[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-mid);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-toggle[aria-expanded="true"] + .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__dropdown-link:hover { background: var(--gray-light); color: var(--navy); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav__ai-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--navy-light);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav__ai-link:hover { color: var(--nude); }
.nav__lang { display: flex; align-items: center; }
.nav__lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid var(--gray-mid);
}
.nav__lang-btn:hover { color: var(--navy); border-color: var(--navy); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 110;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px 40px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  padding: 16px 8px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
.nav__mobile-link:hover,
.nav__mobile-link:active { color: var(--nude); padding-left: 14px; }

.nav__mobile-links li:last-of-type .nav__mobile-link,
.nav__mobile-links li.nav__mobile-lang {
  border-bottom: 0;
}

.nav__mobile-links .btn {
  margin-top: 16px;
  padding: 14px 20px !important;
  font-size: .85rem !important;
}

.nav__mobile-lang {
  text-align: center;
  padding-top: 24px;
  margin-top: 12px;
  border-top: 1px solid #eee;
}
.nav__mobile-lang a {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 999px;
  text-decoration: none;
}
.nav__mobile-lang a:hover { color: var(--navy); border-color: var(--navy); }

/* ─── Hero ─── */
.hero {
  height: 100svh;
  display: grid;
  grid-template-columns: 45fr 55fr;
  overflow: hidden;
  position: relative;
}
.hero--full { grid-template-columns: 1fr; }
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 40px;
  padding-left: max(48px, calc((100vw - var(--max-w)) / 2 + 24px));
  padding-right: 40px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.hero__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 200;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero__title strong { font-weight: 600; display: block; }
.hero__body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 360px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: max(48px, calc((100vw - var(--max-w)) / 2 + 24px));
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-line {
  width: 32px;
  height: 1px;
  background: var(--gray);
  display: inline-block;
}
.hero__visual {
  position: relative;
  overflow: hidden;
  background: #0d0d14;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  display: none;
}
.hero--full .hero__content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 0 max(80px, calc((100vw - var(--max-w)) / 2 + 24px));
  justify-content: center;
  z-index: 2;
  color: var(--white);
}
.hero--full .hero__title,
.hero--full .hero__body { color: var(--white); }
.hero--full .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}
.hero--full .hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* ─── Marquee/Strip ─── */
.marquee {
  overflow: hidden;
  background: var(--navy);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.marquee__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nude);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Cards — Services ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-mid);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 28px; }
.card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 10px;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}
.card__title-link:hover { color: var(--nude); }
a.card__img { display: block; cursor: pointer; }
a.card__img img { transition: transform .35s ease; }
a.card__img:hover img { transform: scale(1.04); }
.card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.card__price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.card__price span {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ─── Product Cards (Shop/Dermastore) ─── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--nude);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-light);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 20px; }
.product-card__brand {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 6px;
}
.product-card__name {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.product-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.product-card__price-usd {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 6px;
}
.product-card__add {
  width: 100%;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.product-card__add:hover { background: var(--navy); color: var(--white); }

/* ─── Stats Bar ─── */
.stats {
  background: var(--navy);
  padding: 64px 0;
}
.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__number em { font-style: normal; color: var(--nude); }
.stat__label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── Testimonials ─── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-mid);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  font-weight: 200;
  color: var(--gray-mid);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 24px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-card__meta {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}
.testimonial-card__stars {
  color: var(--nude);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ─── Forms ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(67,71,98,0.08);
}
.form-control::placeholder { color: var(--text-muted); font-weight: 300; }
.form-control--error { border-color: #e05454; }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-error {
  font-size: 0.75rem;
  color: #e05454;
  margin-top: 6px;
}
.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── Alert / Toast ─── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.alert--success { background: #f0faf5; border: 1px solid #a3d9b8; color: #1a6637; }
.alert--error   { background: #fef2f2; border: 1px solid #f5b8b8; color: #991b1b; }
.alert--info    { background: #f0f4ff; border: 1px solid #bfcbff; color: #3b4cca; }

/* ─── Breadcrumbs ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--gray); }
.breadcrumb__current { color: var(--navy); }

/* ─── Page Header (inner pages) ─── */
.page-header {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: rgba(187,137,92,0.08);
  pointer-events: none;
}
.page-header__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.page-header__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 16px;
}
.page-header__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-header__title strong { font-weight: 600; }
.page-header__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.75;
}

/* ─── Category Filters ─── */
.filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-mid);
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(67,71,98,0.05);
}

/* ─── Cart Icon Badge ─── */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--navy);
  transition: all var(--transition);
}
.cart-btn:hover { background: var(--gray-light); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--nude);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cart-count[data-count="0"] { display: none; }

/* ─── AI Advisor Chat ─── */
.ai-chat {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ai-chat__header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ai-chat__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(187,137,92,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-chat__avatar svg { color: var(--nude); }
.ai-chat__info {}
.ai-chat__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.ai-chat__status {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-chat__status::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.ai-chat__messages {
  min-height: 320px;
  max-height: 500px;
  overflow-y: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ai-message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ai-message--user { flex-direction: row-reverse; }
.ai-message__bubble {
  max-width: 75%;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}
.ai-message--bot .ai-message__bubble {
  background: var(--gray-light);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.ai-message--user .ai-message__bubble {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.ai-chat__input-area {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.ai-chat__textarea {
  flex: 1;
  resize: none;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  min-height: 48px;
  max-height: 120px;
}
.ai-chat__textarea:focus { border-color: var(--navy); }
.ai-chat__send {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.ai-chat__send:hover { background: var(--navy-dark); transform: scale(1.05); }
.ai-chat__send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.ai-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 18px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.ai-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing 1.2s infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}
.ai-recommendations {
  padding: 0 28px 28px;
  border-top: 1px solid var(--gray-mid);
}
.ai-recommendations__title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 0 14px;
}

/* ─── Booking Calendar ─── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.booking-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  padding: 32px;
  margin-bottom: 24px;
}
.booking-step__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.booking-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-step__title {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}
.time-slot {
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot:hover { border-color: var(--navy); background: rgba(67,71,98,0.04); }
.time-slot.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.time-slot:disabled { opacity: 0.35; cursor: not-allowed; }
.booking-summary {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.booking-summary__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.booking-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.booking-summary__row:last-of-type { border-bottom: none; }
.booking-summary__label { color: var(--text-muted); }

/* ─── Location Cards ─── */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.location-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}
.location-card__img img { width: 100%; height: 100%; object-fit: cover; }
.location-card__body { padding: 28px; }
.location-card__name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.location-card__address {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}
.location-card__schedule {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.location-card__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: var(--gray-light);
  cursor: pointer;
}
.gallery-item:first-child { aspect-ratio: unset; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(67,71,98,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(67,71,98,0.3); }
.gallery-item__icon {
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item__icon { opacity: 1; transform: scale(1); }

/* ─── Blog Cards ─── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-card__category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nude);
}
.blog-card__date { font-size: 0.75rem; font-weight: 300; color: var(--text-muted); }
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__read {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__read { gap: 10px; }

/* ─── Floating CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}
.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  white-space: nowrap;
}
.floating-cta__btn:hover { transform: translateX(-4px); box-shadow: var(--shadow-xl); }
.floating-cta__btn--whatsapp { background: #25d366; }
.floating-cta__btn--book { background: var(--navy); }
.floating-cta__btn--email { background: var(--nude); }
.floating-cta__label { font-size: 0.72rem; }

/* ─── Checkout / Cart ─── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-mid);
}
.cart-table td {
  padding: 20px 16px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
}
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--gray-light);
}
.cart-item__name { font-weight: 400; color: var(--navy); }
.qty-input {
  width: 60px;
  padding: 6px 10px;
  text-align: center;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 400;
}
.cart-remove {
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}
.cart-remove:hover { color: #e05454; }
.cart-total {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cart-total__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.cart-total__row:last-of-type { border-bottom: none; }
.cart-total__grand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  padding-top: 16px;
}

/* ─── Success / Error Pages ─── */
.result-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}
.result-page__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.result-page__icon--success { background: #f0faf5; color: #1a6637; }
.result-page__icon--error   { background: #fef2f2; color: #991b1b; }
.result-page__title { font-size: 2rem; font-weight: 200; color: var(--navy); margin-bottom: 16px; }
.result-page__body  { font-size: 1rem; font-weight: 300; color: var(--text-light); max-width: 480px; margin: 0 auto 36px; }
.result-page__ref   { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 32px; }

/* ─── Antes y Después ─── */
.ba-page { background: #f5f3f0; min-height: 100vh; padding-bottom: 60px; }

.ba-header { text-align: center; padding: 60px 20px 32px; }
.ba-header__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 200; color: var(--navy); margin-bottom: 8px; }
.ba-header__sub { font-size: 0.95rem; font-weight: 300; color: var(--text-light); }

/* Gallery grid — 6 cols on desktop, fewer on smaller screens */
.ba-grid { display: flex; flex-wrap: wrap; gap: 5px; max-width: 900px; margin: 0 auto; padding: 0 24px; justify-content: center; }

.ba-item { width: 25px; flex-shrink: 0; border-radius: 3px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.12); cursor: pointer; transition: transform .25s, box-shadow .25s; }
.ba-item:hover { transform: scale(4); transform-origin: center center; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 10; position: relative; }
.ba-item img { width: 100%; display: block; }

/* ─── 404 / Error ─── */
.error-page {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 64px) 24px 64px;
}
.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 200;
  color: var(--gray-mid);
  line-height: 1;
  margin-bottom: 24px;
}
.error-page__title { font-size: 1.75rem; font-weight: 300; color: var(--navy); margin-bottom: 16px; }
.error-page__body  { font-size: 1rem; color: var(--text-light); margin-bottom: 36px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ─── Divider ─── */
.divider { height: 1px; background: var(--gray-mid); margin: 0; }
.divider--nude { background: var(--nude); opacity: 0.2; }

/* ─── Image placeholder ─── */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Make sure images cover the placeholder area properly */
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Spinner ─── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(67,71,98,0.15);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Tag Pill ─── */
.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill--navy  { background: rgba(67,71,98,0.08); color: var(--navy); }
.pill--nude  { background: rgba(187,137,92,0.1); color: var(--nude-dark); }
.pill--green { background: rgba(74,222,128,0.1); color: #166534; }

/* ─── Skip Link (a11y) ─── */
.skip-link {
  position: fixed;
  top: -60px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 799;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── Focus Styles (a11y) ─── */
:focus-visible {
  outline: 2px solid var(--nude);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .hero__content { padding: calc(var(--nav-h) + 32px) 24px 32px; }
  .hero__visual { height: 42svh; }
  .hero__scroll { display: none; }
  .hero--full .hero__content { padding: 0 24px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav__links,
  .nav__ai-link,
  .nav__actions .btn,
  .nav__lang { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .section-title { font-size: 1.75rem; }
  .hero__title { font-size: 2.5rem; }
  .page-header { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .floating-cta { bottom: 20px; right: 16px; }
  .floating-cta__label { display: none; }
  .floating-cta__btn { padding: 14px; border-radius: 50%; }
  .scroll-top { display: none; }
}

@media (max-width: 480px) {
  :root { --section-py: 40px; }
  .container { padding: 0 16px; }
  .btn--lg { padding: 14px 28px; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

/* ─── Footer ─── */
.footer {
  background: #1c1c2a;
  color: #c8c8d4;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {}
.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer__tagline {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.8;
  color: #8f8fa8;
  margin-bottom: 24px;
  max-width: 230px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #9090aa;
  transition: background .2s, border-color .2s, color .2s;
}
.footer__social-link:hover {
  background: #bb895c;
  border-color: #bb895c;
  color: #fff;
}
.footer__col {}
.footer__heading {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer__list--contact { gap: 14px; }
.footer__list--contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: #8f8fa8; line-height: 1.5;
}
.footer__list--contact svg { flex-shrink: 0; color: #bb895c; margin-top: 1px; }
.footer__link {
  font-size: .82rem;
  color: #9090aa;
  text-decoration: none;
  transition: color .18s;
}
.footer__link:hover { color: #bb895c; }
.footer__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 9px 18px;
  border: 1px solid #bb895c;
  color: #bb895c !important;
  font-size: .78rem !important;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer__cta:hover { background: #bb895c !important; color: #fff !important; }
.footer__bottom {
  background: #15151f;
  padding: 18px 0;
}
.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: .72rem; color: #555568; }
.footer__legal {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 24px;
}
.footer__legal-link {
  font-size: .72rem;
  color: #555568;
  text-decoration: none;
  transition: color .18s;
}
.footer__legal-link:hover { color: #bb895c; }
@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 32px 40px; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 0 24px; }
  .footer__legal { gap: 16px; flex-wrap: wrap; }
}

/* ─── Print ─── */
@media print {
  .nav, .footer, .floating-cta, .scroll-top { display: none !important; }
  body { color: #000; }
  a { text-decoration: underline; }
}
