/* ═══════════════════════════════════════════
   DORMESIA — Art-Deco Cinematic Hotel
   Design: Vintage Hollywood / Film Noir
   Palette: Deep Wine + Warm Black + Pearl + Champagne Gold
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --wine: #6B1D2A;
  --wine-deep: #4A1019;
  --black: #1A1612;
  --black-soft: #2A2622;
  --smoke: #4A4645;
  --smoke-light: #7A7775;
  --pearl: #F2EDE4;
  --pearl-warm: #EAE3D6;
  --cream: #FDFAF5;
  --gold: #C9A962;
  --gold-muted: #B89A55;
  --gold-light: #D4BB7A;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-w: 1200px;
  --stripe-h: 3px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── ARCHITECTURAL STRIPE MOTIF ── */
.stripe { display: block; width: 60px; height: var(--stripe-h); background: var(--gold); margin: 16px 0; }
.stripe--center { margin: 16px auto; }
.stripe--wide { width: 100px; }
.stripe--wine { background: var(--wine); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--smoke); }
a { color: var(--wine); text-decoration: none; transition: all .3s ease; }
a:hover { color: var(--gold); }

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--black); color: var(--pearl); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--pearl); }
.section--dark p { color: var(--smoke-light); }
.section--dark .section-label { color: var(--gold); }
.section--wine { background: var(--wine); color: var(--pearl); }
.section--wine h2, .section--wine h3 { color: var(--pearl); }
.section--wine p { color: rgba(242,237,228,.8); }
.section--pearl { background: var(--pearl); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  text-decoration: none;
}
.btn--primary {
  background: var(--wine);
  color: var(--pearl);
  border-color: var(--wine);
}
.btn--primary:hover {
  background: var(--wine-deep);
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn--outline:hover {
  background: var(--wine);
  color: var(--pearl);
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-muted);
  border-color: var(--gold-muted);
}
.btn--light {
  background: transparent;
  color: var(--pearl);
  border-color: var(--pearl);
}
.btn--light:hover {
  background: var(--pearl);
  color: var(--black);
}

/* Editorial text link CTA */
.cta-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.cta-link:hover::after { width: 100%; }
.cta-link:hover { color: var(--gold); }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,22,18,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,98,.15);
  transition: all .3s ease;
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__age {
  font-size: 0.7rem;
  color: var(--smoke-light);
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 4px;
  background: rgba(26,22,18,.98);
  border-bottom: 1px solid rgba(201,169,98,.1);
  font-family: var(--sans);
}
.header--with-age .header__inner { margin-top: 24px; }
.header--with-age { height: auto; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { height: 36px; width: auto; }
.logo__text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pearl);
  letter-spacing: 0.05em;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pearl-warm);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.8rem;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pearl);
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,22,18,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--pearl);
  text-decoration: none;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url(../images/hero-bg.png) center/cover no-repeat, linear-gradient(135deg, var(--black) 0%, var(--wine-deep) 40%, var(--black-soft) 100%);
  opacity: 1;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(107,29,42,.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,98,.08) 0%, transparent 50%);
}
/* Film grain overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero__content h1 {
  color: var(--pearl);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 8px;
  font-weight: 800;
}
.hero__content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--smoke-light);
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Art-deco decorative frame around hero */
.hero__frame {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201,169,98,.15);
  pointer-events: none;
  z-index: 1;
}
.hero__frame::before,
.hero__frame::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
}
.hero__frame::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.hero__frame::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background-color: var(--black-soft);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,22,18,.6));
}
.img-placeholder--tall { aspect-ratio: 3/4; }
.img-placeholder--square { aspect-ratio: 1/1; }
.img-placeholder--wide { aspect-ratio: 21/9; }
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── STATS BAR ── */
.stats {
  background: var(--black);
  border-top: var(--stripe-h) solid var(--gold);
  border-bottom: var(--stripe-h) solid var(--gold);
  padding: 40px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats__item {}
.stats__number {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke-light);
}

/* ── ROOMS CARDS ── */
.room-card {
  border: 1px solid rgba(107,29,42,.15);
  background: var(--cream);
  transition: all .3s ease;
}
.room-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(26,22,18,.1); }
.room-card__img {
  aspect-ratio: 4/3;
  background-color: var(--smoke);
  overflow: hidden;
}
.room-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-card__body { padding: 24px; }
.room-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.room-card__desc {
  font-size: 0.9rem;
  color: var(--smoke);
  margin-bottom: 12px;
  line-height: 1.5;
}
.room-card__price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 4px;
}
.room-card__price-note {
  font-size: 0.75rem;
  color: var(--smoke-light);
  margin-bottom: 16px;
}
.room-card__features {
  list-style: none;
  margin-bottom: 16px;
}
.room-card__features li {
  font-size: 0.85rem;
  color: var(--smoke);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.room-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── AMENITY CARDS ── */
.amenity-card {
  padding: 32px 24px;
  border: 1px solid rgba(201,169,98,.2);
  background: rgba(253,250,245,.5);
  transition: all .3s ease;
}
.amenity-card:hover {
  border-color: var(--gold);
  background: var(--cream);
}
.amenity-card__icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.amenity-card h4 {
  font-family: var(--serif);
  margin-bottom: 10px;
  color: var(--black);
}
.amenity-card p {
  font-size: 0.9rem;
  color: var(--smoke);
  margin-bottom: 0;
}

/* ── PRICING TABLE ── */
.price-section {
  background: var(--pearl);
  border: 1px solid rgba(201,169,98,.2);
  padding: 40px;
  margin-bottom: 32px;
}
.price-section h3 {
  font-family: var(--serif);
  margin-bottom: 4px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(107,29,42,.08);
}
.price-row:last-child { border-bottom: none; }
.price-row__name { font-weight: 500; color: var(--black); }
.price-row__detail { font-size: 0.85rem; color: var(--smoke-light); }
.price-row__amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wine);
  white-space: nowrap;
}

/* ── FORM ── */
.form-wrap {
  background: var(--pearl);
  border: 1px solid rgba(201,169,98,.2);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(107,29,42,.15);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color .3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.85rem;
  color: var(--smoke);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-check label a { text-decoration: underline; }
.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}
.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select { border-color: #c0392b; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(107,29,42,.1);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s;
}
.faq-item__q:hover { color: var(--wine); }
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-item__q::after { content: '−'; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item__a-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--smoke-light);
  border-top: var(--stripe-h) solid var(--gold);
}
.footer__main {
  padding: 60px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .logo__text { font-size: 1.3rem; }
.footer__brand p { font-size: 0.9rem; margin-top: 12px; color: var(--smoke-light); }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--smoke-light);
  text-decoration: none;
  transition: color .3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact p {
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.footer__contact a { color: var(--smoke-light); }
.footer__contact a:hover { color: var(--gold); }
.footer__disclaimer {
  border-top: 1px solid rgba(201,169,98,.1);
  padding: 24px 0;
  font-size: 0.78rem;
  color: var(--smoke);
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(201,169,98,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: var(--smoke); margin: 0; }
.footer__bottom a {
  font-size: 0.78rem;
  color: var(--smoke-light);
  text-decoration: underline;
}
.footer__bottom a:hover { color: var(--gold); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 2px solid var(--gold);
  z-index: 9999;
  padding: 24px;
  display: none;
  box-shadow: 0 -4px 30px rgba(0,0,0,.3);
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 300px;
}
.cookie-banner__text p {
  font-size: 0.85rem;
  color: var(--smoke-light);
  margin-bottom: 8px;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-banner__buttons .btn { padding: 10px 20px; font-size: 0.78rem; white-space: nowrap; }

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.show { display: flex; }
.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}
.cookie-modal__body {
  position: relative;
  background: var(--cream);
  max-width: 540px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1;
  border: 1px solid rgba(201,169,98,.3);
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--smoke);
  cursor: pointer;
  line-height: 1;
}
.cookie-modal__close:hover { color: var(--wine); }
.cookie-modal h3 {
  margin-bottom: 20px;
}
.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid rgba(107,29,42,.1);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-category__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}
.cookie-category__status {
  font-size: 0.8rem;
  color: var(--smoke-light);
}
.cookie-category p {
  font-size: 0.85rem;
  color: var(--smoke);
  margin: 0;
}
/* Toggle switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--smoke-light);
  transition: .3s;
}
.toggle__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  bottom: 3px;
  left: 3px;
  background: white;
  transition: .3s;
}
.toggle input:checked + .toggle__slider { background: var(--wine); }
.toggle input:checked + .toggle__slider::before { transform: translateX(20px); }
.cookie-modal__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.cookie-modal__actions .btn { flex: 1; text-align: center; }

/* ── LEGAL POPUP ── */
.legal-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}
.legal-popup.show { display: flex; }
.legal-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}
.legal-popup__body {
  position: relative;
  background: var(--cream);
  max-width: 720px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  z-index: 1;
  border: 1px solid rgba(201,169,98,.3);
}
.legal-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--smoke);
  cursor: pointer;
}
.legal-popup__close:hover { color: var(--wine); }
.legal-popup h2 { margin-bottom: 24px; font-size: 1.5rem; }
.legal-popup h3 { margin: 24px 0 12px; font-size: 1.1rem; }
.legal-popup p { font-size: 0.9rem; line-height: 1.6; }
.legal-popup ul { margin: 8px 0 16px 20px; }
.legal-popup li { font-size: 0.9rem; color: var(--smoke); margin-bottom: 6px; line-height: 1.5; }

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  padding: 140px 0 60px;
  background: var(--black);
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(107,29,42,.3) 0%, transparent 70%);
}
.page-header__content {
  position: relative;
  z-index: 1;
}
.page-header h1 { color: var(--pearl); margin-bottom: 8px; }
.page-header p { color: var(--smoke-light); font-size: 1.05rem; max-width: 600px; }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__frame { inset: 16px; }
  .section { padding: 60px 0; }
  .price-section { padding: 24px; }
  .form-wrap { padding: 24px; }
  .legal-popup__body { padding: 24px; }
  .cookie-modal__body { padding: 24px; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__frame { display: none; }
  .cookie-banner__inner { flex-direction: column; }
  .cookie-banner__buttons { flex-wrap: wrap; width: 100%; }
  .cookie-banner__buttons .btn { flex: 1; min-width: 120px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--wine);
  color: var(--pearl);
  padding: 12px 24px;
  z-index: 10002;
  font-size: 0.9rem;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-wine { color: var(--wine); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.pt-96 { padding-top: 96px; }
