/* ============================================================
   LA PARRILLA DEL URUGUAY — DESIGN SYSTEM
   Premium, Elegant, Rustic — Inspired by top Spanish restaurants
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* ── New identity palette (Claude Design — editorial premium) ── */
  --paper:        oklch(0.985 0.004 95);   /* warm near-white */
  --paper-2:      oklch(0.965 0.005 95);   /* light gray panel */
  --ink:          oklch(0.20 0.006 60);    /* near-black text */
  --ink-soft:     oklch(0.42 0.006 60);    /* muted body */
  --ink-faint:    oklch(0.60 0.005 60);    /* captions */
  --hair:         oklch(0.20 0.006 60 / 0.14);
  --hair-soft:    oklch(0.20 0.006 60 / 0.08);
  --noir:         oklch(0.165 0.004 60);   /* dramatic black */
  --noir-2:       oklch(0.135 0.004 60);
  --gold:         oklch(0.74 0.075 80);    /* refined gold accent */
  --gold-deep:    oklch(0.66 0.085 76);
  --gold-soft:    oklch(0.74 0.075 80 / 0.32);
  --on-noir:      oklch(0.94 0.006 90);
  --on-noir-soft: oklch(0.94 0.006 90 / 0.62);
  --ease:         cubic-bezier(.22,.61,.36,1);

  /* Legacy aliases remapped onto the new identity (keep old class/inline
     references resolving to the refined palette across every page) */
  --black: var(--ink);
  --dark: var(--noir);
  --dark-alt: var(--noir);
  --charcoal: var(--hair);
  --gray: var(--ink-soft);
  --gray-light: var(--ink-faint);
  --light-gray: var(--ink-faint);
  --cream: var(--paper-2);
  --white: var(--paper);
  --pure-white: #FFFFFF;
  --gold-light: oklch(0.80 0.07 82);
  --gold-dark: var(--gold-deep);
  --gold-glow: var(--gold-soft);
  --burgundy: oklch(0.42 0.10 20);
  --burgundy-light: oklch(0.48 0.10 20);
  --fire: var(--gold-deep);
  --fire-glow: var(--gold-soft);
  --success: #2E7D32;
  --warning: #B8935A;
  --danger: #C62828;
  --overlay: oklch(0.985 0.004 95 / 0.85);
  --overlay-heavy: oklch(0.165 0.004 60 / 0.85);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-logo: 'Cormorant Garamond', 'Georgia', serif;

  /* Font Sizes — fluid with clamp */
  --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --fs-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --fs-md: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  --fs-lg: clamp(1.15rem, 1rem + 0.75vw, 1.35rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --fs-3xl: clamp(2.5rem, 2rem + 3vw, 4rem);
  --fs-4xl: clamp(3rem, 2.5rem + 3.5vw, 5rem);
  --fs-hero: clamp(3.5rem, 3rem + 4vw, 6.5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --section-padding: clamp(4rem, 3rem + 5vw, 8rem);

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 900px;
  --container-wide: 1600px;
  --nav-height: 80px;
  --border-radius: 0px;
  --border-radius-lg: 0px;
  --border-radius-xl: 0px;

  /* Shadows */
  --shadow-sm: 0 2px 10px oklch(0.20 0.006 60 / 0.08);
  --shadow-md: 0 14px 34px -16px oklch(0.20 0.006 60 / 0.20);
  --shadow-lg: 0 30px 60px -30px oklch(0.20 0.006 60 / 0.28);
  --shadow-gold: 0 14px 30px -14px var(--gold-soft);
  --shadow-gold-lg: 0 24px 50px -22px var(--gold-soft);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-preloader: 1000;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--paper-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p {
  margin-bottom: var(--space-md);
  color: var(--gray);
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-cream { color: var(--cream); }

.font-logo {
  font-family: var(--font-logo);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.font-heading {
  font-family: var(--font-heading);
}

/* Section heading styles */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold-deep);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* centered labels (inside .text-center) get a trailing rule too */
.text-center .section-label,
.section-header .section-label {
  justify-content: center;
}
.text-center .section-label::after,
.section-header .section-label::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 300;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto var(--space-2xl);
  font-weight: 300;
  line-height: 1.85;
}

/* ── Decorative Dividers ──────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-3xl) auto;
  max-width: 300px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: var(--fs-lg);
}

.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--charcoal), transparent);
  margin: var(--space-2xl) 0;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.container-wide {
  max-width: var(--container-wide);
}

section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-dark {
  background-color: var(--cream);
}

.section-darker {
  background-color: var(--pure-white);
}

.text-center {
  text-align: center;
}

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

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

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

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

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-preloader);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-logo);
  font-size: var(--fs-2xl);
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: preloaderPulse 2s ease-in-out infinite;
  position: relative;
}

.preloader-logo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
  animation: preloaderLine 2s ease-in-out infinite;
}

.preloader-embers {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.preloader-ember {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  animation: emberFloat 3s ease-in-out infinite;
  opacity: 0;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes preloaderLine {
  0%, 100% { width: 30px; opacity: 0.5; }
  50% { width: 80px; opacity: 1; }
}

@keyframes emberFloat {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(50px) scale(0);
    opacity: 0;
  }
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: var(--z-sticky);
  transition: all var(--transition);
  padding: 0 var(--space-2xl);
  background: oklch(0.985 0.004 95 / 0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--hair-soft);
}

.navbar.scrolled {
  background: oklch(0.985 0.004 95 / 0.94);
  border-bottom: 1px solid var(--hair);
  box-shadow: 0 10px 30px -24px oklch(0.20 0.006 60 / 0.4);
}

.navbar-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-logo);
  font-size: clamp(1.05rem, 0.8rem + 1vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.navbar-logo:hover {
  color: var(--gold-deep);
}

/* Brand logo lockup in the navbar */
.navbar-logo img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 1024px) {
  .navbar-logo img { height: 38px; }
}

/* Brand logo lockup in the footer (white version on noir) */
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 1.3rem;
}

/* Brand logo in the preloader */
.preloader-logo-img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto 1.4rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--ink);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  color: var(--ink-faint);
  transition: color var(--transition-fast);
  background: none;
  border: none;
  padding: var(--space-xs) var(--space-sm);
}

.lang-toggle:hover {
  color: var(--ink);
}

.lang-toggle .lang-active {
  color: var(--gold-deep);
  font-weight: 500;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: var(--z-overlay);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px) translateX(4.5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* Delay for staggered animation */
.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.45s; }

@media (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar {
    padding: 0 var(--space-lg);
  }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  padding: 1.05rem 2.2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}
.cookie-banner .btn {
  white-space: nowrap;
}

/* ── Dark Sections Text Forces ────────────────────────────── */
.newsletter-section .section-title,
.newsletter-section .location-title,
.newsletter-section .location-subtitle {
  color: var(--gold);
}
.newsletter-section .text-light,
.newsletter-section .newsletter-desc {
  color: #FAFAFA !important;
}
.newsletter-section .text-gray,
.newsletter-section label,
.newsletter-section p {
  color: #CCCCCC !important;
}
.newsletter-section .form-control {
  background: rgba(255, 255, 255, 0.1);
  color: #FAFAFA;
}
.newsletter-section .form-control::placeholder {
  color: #CCCCCC;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gold-deep);
  color: var(--noir);
  border: 1px solid var(--gold-deep);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--noir);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark {
  background: var(--noir);
  color: var(--on-noir);
  border: 1px solid var(--noir);
}

.btn-dark:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--noir);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  border: 1px solid var(--danger);
}

.btn-danger:hover {
  background: #D32F2F;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.btn-lg {
  padding: 18px 44px;
  font-size: var(--fs-sm);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: var(--fs-md);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.65rem;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: var(--space-xl);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.6;
}

.card-price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--gold);
  font-weight: 500;
  margin-top: var(--space-md);
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}

.card-tag.popular {
  background: var(--fire-glow);
  color: var(--fire);
  border: 1px solid rgba(232, 93, 38, 0.3);
}

.card-tag.chef {
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.card-tag.new {
  background: rgba(46, 125, 50, 0.15);
  color: var(--success);
  border: 1px solid rgba(46, 125, 50, 0.3);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-gray);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-radius: var(--border-radius);
  color: var(--black);
  font-size: var(--fs-base);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A96E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--dark);
  color: var(--black);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--light-gray);
}

.form-checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--charcoal);
  border-radius: 3px;
  background: var(--dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--danger);
  margin-top: var(--space-xs);
}

.form-hint {
  font-size: var(--fs-xs);
  color: var(--gray);
  margin-top: var(--space-xs);
}

/* Password toggle */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: var(--fs-md);
  transition: color var(--transition-fast);
  padding: 4px;
}

.password-toggle:hover {
  color: var(--gold);
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid;
}

.badge-gold {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.3);
  background: var(--gold-glow);
}

.badge-pending {
  color: var(--warning);
  border-color: rgba(249, 168, 37, 0.3);
  background: rgba(249, 168, 37, 0.1);
}

.badge-success {
  color: var(--success);
  border-color: rgba(46, 125, 50, 0.3);
  background: rgba(46, 125, 50, 0.1);
}

.badge-danger {
  color: var(--danger);
  border-color: rgba(198, 40, 40, 0.3);
  background: rgba(198, 40, 40, 0.1);
}

/* ── Hero Sections ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--on-noir);
  letter-spacing: 0.01em;
  line-height: 1.04;
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--on-noir-soft);
  font-weight: 300;
  font-style: italic;
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.03em;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Mini hero for subpages */
.hero-mini {
  min-height: 45vh;
  padding-top: var(--nav-height);
}

.hero-mini .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero-mini .hero-title {
  font-size: var(--fs-3xl);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gold);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-sticky);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-float i,
.whatsapp-btn i {
  color: #fff;
  font-size: 28px;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-size: var(--fs-xs);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  border: 1px solid var(--charcoal);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--noir);
  border-top: none;
  padding: var(--space-4xl) 0 var(--space-xl);
}

/* Footer sits on noir — force readable text regardless of remapped vars */
.footer,
.footer p,
.footer .text-gray,
.footer .footer-links a,
.footer .footer-info p,
.footer .footer-contact p,
.footer .social-links a {
  color: var(--on-noir-soft);
}
.footer .text-white,
.footer h3, .footer h4 {
  color: var(--on-noir);
}
.footer .text-gold,
.footer .logo-font {
  color: var(--gold);
}
.footer a:hover,
.footer .footer-links a:hover,
.footer .social-links a:hover {
  color: var(--gold);
}
.footer .footer-bottom,
.footer .footer-bottom-flex,
.footer-bottom > div[style] {
  border-color: oklch(0.94 0.006 90 / 0.12) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .footer-logo {
  font-family: var(--font-logo);
  font-size: var(--fs-lg);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  display: block;
}

.footer-brand .footer-desc {
  color: var(--gray);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
  text-decoration: none;
  font-size: var(--fs-sm);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--gray);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

.footer-info p, .footer-contact p {
  color: var(--gray);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--charcoal);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--gray);
  font-size: var(--fs-xs);
  margin: 0;
}

.footer-bottom a {
  color: var(--gray);
  font-size: var(--fs-xs);
  text-decoration: none;
}

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

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Cookie Consent Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--charcoal);
  padding: var(--space-xl) var(--space-2xl);
  z-index: var(--z-toast);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--light-gray);
  flex: 1;
  min-width: 300px;
}

.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Dark Sections Text Forces ────────────────────────────── */
.newsletter-section .section-title {
  color: var(--gold);
}
.newsletter-section .text-light,
.newsletter-section .newsletter-desc {
  color: #FAFAFA !important;
}
.newsletter-section .text-gray,
.newsletter-section label {
  color: #CCCCCC !important;
}
.newsletter-section .form-control {
  background: rgba(255, 255, 255, 0.1);
  color: #FAFAFA;
}
.newsletter-section .form-control::placeholder {
  color: #CCCCCC;
}

/* ── Animations ───────────────────────────────────────────── */
/* Fade in up — triggered by Intersection Observer */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Counter animation */
.counter {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--gold);
  font-weight: 500;
}

/* Parallax */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Gold glow pulse */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px var(--gold-glow); }
  50% { box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(201,169,110,0.1); }
}

/* Ember particles for hero */
.ember-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ember {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: emberRise linear infinite;
}

@keyframes emberRise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  10% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) translateX(var(--drift, 30px)) scale(0);
  }
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: var(--fs-2xl);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--charcoal);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light-gray);
  font-size: var(--fs-sm);
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 24px;
  border-radius: var(--border-radius);
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 30px;
  color: var(--gray);
  font-size: var(--fs-sm);
}

/* ── Accordion (FAQ) ──────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--charcoal);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--gold);
}

.accordion-icon {
  color: var(--gold);
  font-size: var(--fs-lg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.accordion-body-inner {
  padding: 0 0 var(--space-lg) 0;
  color: var(--gray);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* ── Toast / Notifications ────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md) var(--space-xl);
  color: var(--white);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform var(--transition-spring);
  min-width: 300px;
  max-width: 450px;
}

.toast.visible {
  transform: translateX(0);
}

.toast.success { border-left: 3px solid var(--success); }
.toast.warning { border-left: 3px solid var(--warning); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.info { border-left: 3px solid var(--gold); }

.toast-close {
  margin-left: auto;
  color: var(--gray);
  cursor: pointer;
  font-size: var(--fs-md);
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

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

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: var(--space-xl);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-radius: var(--border-radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-spring);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-2xl);
  border-bottom: 1px solid var(--charcoal);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--white);
}

.modal-close {
  color: var(--gray);
  font-size: var(--fs-xl);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold);
}

.modal-body {
  padding: var(--space-2xl);
}

.modal-footer {
  padding: var(--space-lg) var(--space-2xl);
  border-top: 1px solid var(--charcoal);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
}

/* ── Newsletter Section ───────────────────────────────────── */
.newsletter-section {
  background: var(--dark);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-input {
  flex: 1;
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ── Special Hours Notice ─────────────────────────────────── */
.special-hours-notice {
  background: var(--gold-glow);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--gold);
  font-size: var(--fs-sm);
  margin-top: var(--space-lg);
}

.special-hours-notice .icon {
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

/* ── Utility Classes ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hidden {
  display: none !important;
}

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }
.mt-5 { margin-top: var(--space-4xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }
.pt-5 { padding-top: var(--space-4xl); }
.py-5 { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Logo wordmark + accent text helpers (used across pages) */
.logo-font {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.text-fire { color: var(--gold-deep); }
.text-black { color: var(--ink); }
.text-light { color: var(--paper); }
.text-sm { font-size: var(--fs-sm); }
.border-top { border-top: 1px solid var(--hair); }

@media (max-width: 1024px) {
  .hidden-mobile { display: none !important; }
}

/* ── Print Styles ─────────────────────────────────────────── */
@media print {
  .navbar, .whatsapp-float, .cookie-banner, .preloader, .footer {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .hero {
    min-height: auto;
    padding: 20px 0;
  }
}

/* ============================================================
   EDITORIAL / SUBPAGE COMPONENT LAYER (new identity)
   Shared helpers so every page matches the home's polish.
   ============================================================ */

/* ── Editorial type helpers ───────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold); opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 34px; height: 1px;
  background: var(--gold); opacity: 0.7;
}
.eyebrow.on-dark { color: var(--gold); }

.h-sect {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.85;
  font-weight: 300;
  max-width: 60ch;
}
.prose p { color: var(--ink-soft); line-height: 1.85; }
.prose p + p { margin-top: 1.1rem; }
em.it { font-style: italic; color: var(--gold-deep); }

.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: clamp(40px, 9vw, 120px);
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.ornament::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.ornament span {
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft);
}

/* ── tlink (text link with animated underline) ────────────── */
.tlink {
  font-family: var(--font-body); font-weight: 400; font-size: 0.74rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--ink); position: relative;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink .arw { transition: transform 0.5s var(--ease); color: var(--gold-deep); }
.tlink:hover .arw { transform: translateX(6px); }

/* ── Contact / detail blocks ──────────────────────────────── */
.cblock { padding: 1.5rem 0; border-top: 1px solid var(--hair); }
.cblock.first { border-top: none; }
.cblock .k {
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.6rem;
}
.cblock .v {
  font-family: var(--font-heading); font-weight: 300; font-size: 1.35rem;
  line-height: 1.4; color: var(--ink);
}
.cblock .v small {
  display: block; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--ink-soft); letter-spacing: 0.02em; margin-top: 0.2rem;
}

/* ── Subpage hero ─────────────────────────────────────────── */
.page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: center;
  justify-content: center; text-align: center; color: var(--on-noir);
  overflow: hidden; padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
}
.page-hero .page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero .page-hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 38%, oklch(0.135 0.004 60 / .55) 100%),
    linear-gradient(180deg, oklch(0.135 0.004 60 / .55) 0%, oklch(0.135 0.004 60 / .35) 45%, oklch(0.135 0.004 60 / .8) 100%);
}
.page-hero .page-hero-inner { position: relative; z-index: 2; max-width: 54rem; }
.page-hero .eyebrow { color: var(--gold); justify-content: center; margin-bottom: 1.4rem; }
.page-hero .eyebrow::after {
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7;
}
.page-hero h1 {
  font-family: var(--font-heading); font-weight: 300; color: var(--on-noir);
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; letter-spacing: 0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .sub {
  color: var(--on-noir-soft); max-width: 48ch; margin: 1.4rem auto 0;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.8;
}

/* ── Generic section helpers ──────────────────────────────── */
.section-soft { background: var(--paper-2); }
.section-noir { background: var(--noir); color: var(--on-noir); }
.section-head {
  text-align: center; max-width: 54rem; margin: 0 auto clamp(2.6rem, 5vw, 4rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}

/* ── Light form controls (default theme is light now) ─────── */
.form-input, .form-textarea, .form-select {
  background-color: var(--paper);
  border: 1px solid var(--hair);
  color: var(--ink);
  border-radius: 0;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-faint); }
.form-label { color: var(--ink-soft); letter-spacing: 0.18em; }
.form-select option { background: var(--paper); color: var(--ink); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23A07A3B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
}

/* ── Filter pills (cardápio + galeria) ────────────────────── */
.filter-btn {
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--ink-soft);
  padding: 0.7rem 1.6rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* ── Broader footer readability (alt footer markup variants) ─ */
.footer .footer-social a,
.footer .footer-info a,
.footer .footer-info p,
.footer .footer-desc,
.footer .footer-bottom a,
.footer .footer-bottom p {
  color: var(--on-noir-soft);
}
.footer .footer-social a:hover,
.footer .footer-info a:hover,
.footer .footer-bottom a:hover { color: var(--gold); }
.footer .footer-social a {
  border-color: oklch(0.94 0.006 90 / 0.18);
}
.footer .footer-bottom { border-top-color: oklch(0.94 0.006 90 / 0.12); }
.footer-bottom-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
