/* ============================================
   MWD PROJECT BRIEF
   Cliente: Spark — Portuguese Food Concept
   Tipo: Restaurante / Wine Bar / Coffee Bar
   Plan: Web Premium (Demo)
   Fecha: 2026-07-06

   SKILLS USADAS:
   ✓ ui-ux-pro-max → query: "premium portuguese restaurant wine bar warm gold mustard azulejo Basel"
   ✓ Protocolo MWD Senior

   PALETA (extraída de fotos reales — DARK MODE):
   --gold:        #C4963C → Logo gold, mustard chairs, curtains
   --gold-light:  #D4A843 → Hover/accent warmth
   --gold-dark:   #A67B2E → Pressed states
   --charcoal:    #1C1917 → Logo text (original)
   --cream:       #FAF6F0 → Accent text on dark
   --deep:        #13100D → Alternate section backgrounds
   --deepest:     #0D0B09 → Body background
   --azulejo:     #2B4C7E → Portuguese tile blue accent
   --celadon:     #A8C5B8 → Embossed ceramic plates

   TIPOGRAFÍA:
   Display: Cormorant Garamond — Refined, editorial, wine-world elegant
   Body:    DM Sans — Clean, geometric, modern like the logo

   ELEMENTO FIRMA: Full dark mode with cinematic hero overlay + gold accents
   VIBE: Cinematic · Moody · Premium
============================================ */

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

/* ── Custom Properties ── */
:root {
  --gold: #C4963C;
  --gold-light: #D4A843;
  --gold-dark: #A67B2E;
  --charcoal: #1C1917;
  --cream: #FAF6F0;
  --deep: #13100D;
  --deepest: #0D0B09;
  --azulejo: #2B4C7E;
  --celadon: #A8C5B8;
  --text: #2D2926;
  --text-muted: #78716C;
  --white: #FFFFFF;
  --pt-green: #046A38;
  --pt-red: #DA291C;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --section-py: clamp(5rem, 10vw, 9rem);
  --section-px: clamp(1.25rem, 4vw, 3rem);
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  background: var(--deepest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--pt-green) 33%, var(--pt-red) 33% 66%, var(--gold) 66%) 1;
}

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

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

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

address {
  font-style: normal;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p + p {
  margin-top: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  animation: gentlePulse 4s ease-in-out infinite;
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  animation: none;
  box-shadow: 0 4px 24px rgba(196, 150, 60, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.btn--whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-1px);
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  animation: goldShimmer 3s ease-in-out infinite;
}
.section-label--light {
  color: var(--gold-light);
}
.section-label--light::after {
  background: var(--gold-light);
}

/* ── Section Utilities ── */
.section {
  padding: var(--section-py) var(--section-px);
}
.section--dark {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.85);
}
.section--dark h2 {
  color: var(--white);
}
.section--dark h3 {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem var(--section-px);
  transition: background var(--transition), padding var(--transition);
}
.nav.is-scrolled {
  background: rgba(19, 16, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 56px;
  width: auto;
  transition: opacity var(--transition);
}
.nav__logo:hover img {
  opacity: 0.8;
}
.nav__links {
  display: none;
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover {
  color: var(--white);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__cta {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--gold-dark);
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav__burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 11, 9, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu__link:hover {
  color: var(--gold);
}
.mobile-menu__cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s, background 0.2s ease;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0.375rem;
}
.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__cta:hover {
  background: var(--gold-dark);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 11, 9, 1) 0%,
    rgba(13, 11, 9, 1) 16%,
    rgba(13, 11, 9, 0.6) 25%,
    rgba(13, 11, 9, 0.25) 35%,
    rgba(13, 11, 9, 0.15) 48%,
    rgba(13, 11, 9, 0.25) 60%,
    rgba(13, 11, 9, 0.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--section-px);
  max-width: 960px;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero__line1 {
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hero__line2 {
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.06em;
  padding-left: 0.35em;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero__scroll span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   CONCEPT
   ═══════════════════════════════════════ */
.concept {
  background: var(--deep);
}
.concept__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.concept__text h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
.concept__text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.concept__image {
  border: 1px solid rgba(196, 150, 60, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  transition: transform 0.8s ease;
}
.concept__image:hover img {
  transform: scale(1.02);
}

/* ═══════════════════════════════════════
   OFFERINGS
   ═══════════════════════════════════════ */
.offerings__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.offerings__title {
  color: var(--white);
  margin-bottom: 3rem;
}
.offerings__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.offering-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 0.625rem;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.offering-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offering-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.85) 0%, rgba(13, 11, 9, 0.2) 100%);
  transition: background var(--transition);
}
.offering-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}
.offering-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.375rem;
}
.offering-card__content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.offering-card:hover .offering-card__bg {
  transform: scale(1.06);
}
.offering-card:hover .offering-card__overlay {
  background: linear-gradient(to top, rgba(13, 11, 9, 0.75) 0%, rgba(13, 11, 9, 0.1) 100%);
}
.offering-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════
   PARALLAX BREAK — SIGNATURE MOMENT
   ═══════════════════════════════════════ */
.parallax {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.parallax__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 16, 13, 0.45);
}
.parallax__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--section-px);
}
.parallax__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.4;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.parallax__quote span {
  display: block;
}
.parallax::before,
.parallax::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--pt-green) 33%, var(--pt-red) 33% 66%, var(--gold) 66%);
}
.parallax::before { top: 0; }
.parallax::after { bottom: 0; }

/* ═══════════════════════════════════════
   GALLERY — TABBED
   ═══════════════════════════════════════ */
.gallery {
  background: var(--deepest);
}
.gallery__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery__title {
  margin-bottom: 2rem;
}

/* Tab Navigation */
.gallery-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.75rem 0;
  position: relative;
  transition: color var(--transition);
  cursor: pointer;
}
.gallery-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.gallery-tab:hover {
  color: rgba(255, 255, 255, 0.7);
}
.gallery-tab.is-active {
  color: var(--white);
}
.gallery-tab.is-active::after {
  transform: scaleX(1);
}

/* Tab Panels */
.gallery-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-panel.is-active {
  display: block;
  opacity: 1;
}

/* Editorial Grid */
.gallery__grid--editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.gallery__item {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(196, 150, 60, 0.12);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery__item:not(.gallery__item--featured) {
  aspect-ratio: 4 / 3;
}
.gallery__item--featured {
  aspect-ratio: 16 / 10;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 150, 60, 0);
  transition: background 0.4s ease;
  pointer-events: none;
  border-radius: 0.5rem;
}
.gallery__item:hover {
  box-shadow: 0 8px 32px rgba(196, 150, 60, 0.15);
}
.gallery__item:hover img {
  transform: scale(1.03);
}
.gallery__item:hover::after {
  background: rgba(196, 150, 60, 0.08);
}

/* Unsplash credit badge */
.gallery__credit {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  z-index: 2;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   ABOUT — AZULEJO EDITORIAL
   ═══════════════════════════════════════ */
.about-editorial {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-editorial__image {
  position: absolute;
  inset: 0;
}
.about-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}
.about-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 11, 9, 0.95) 0%,
    rgba(13, 11, 9, 0.6) 40%,
    rgba(13, 11, 9, 0.15) 100%
  );
}
.about-editorial__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: var(--section-py) var(--section-px) calc(var(--section-py) * 0.75);
}
.about-editorial__content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-editorial__content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.about-editorial__content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact__title {
  color: var(--white);
  margin-bottom: 3rem;
}
.contact__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.contact__block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.contact__hours div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.contact__hours dt {
  color: rgba(255, 255, 255, 0.7);
}
.contact__hours dd {
  color: var(--white);
  font-weight: 500;
}
.contact__block a {
  color: var(--white);
  transition: color var(--transition);
}
.contact__block a:hover {
  color: var(--gold-light);
}
.contact__block address {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

/* Contact Map */
.contact__map {
  margin-top: 3rem;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid rgba(196, 150, 60, 0.15);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  filter: grayscale(0.6) brightness(0.75) contrast(1.1);
  transition: filter var(--transition-slow);
}
.contact__map:hover iframe {
  filter: grayscale(0) brightness(0.85) contrast(1);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: #080604;
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem var(--section-px) 2rem;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.footer__brand p,
.footer__info p {
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer__info a {
  transition: color var(--transition);
}
.footer__info a:hover {
  color: var(--gold-light);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
}
.footer__credit a {
  color: var(--gold);
  transition: color var(--transition);
}
.footer__credit a:hover {
  color: var(--gold-light);
}

/* Footer legal links */
.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__legal a:hover {
  color: var(--gold);
}
.footer__legal-sep {
  color: rgba(255,255,255,0.15);
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--deep);
  border-top: 1px solid rgba(196,150,60,0.15);
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-banner__text a:hover {
  text-decoration: underline;
}
.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deepest);
  background: var(--gold);
  border: none;
  border-radius: 0.375rem;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-banner__btn:hover {
  background: var(--gold-dark);
}
@media (max-width: 479px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

@keyframes goldShimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 150, 60, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(196, 150, 60, 0.15); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__tagline,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__scroll {
    opacity: 1;
    animation: none;
  }
  .hero__scroll span { animation: none; }
  .section-label::after { animation: none; }
  .btn--primary { animation: none; }
  .offering-card__bg,
  .concept__image img,
  .gallery__item img {
    transition: none;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    max-width: none;
    width: auto;
    margin: 0 auto;
  }

  .concept__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

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

  .gallery__grid--editorial {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery__item--featured {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
  }

  .about-editorial__content {
    max-width: 520px;
    padding: 4rem var(--section-px);
  }

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

  .contact__map iframe {
    height: 350px;
  }

  .contact__actions {
    flex-direction: row;
    align-items: center;
  }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__info {
    text-align: right;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px)
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav__cta {
    display: inline-flex;
  }
  .nav__burger {
    display: none;
  }

  .concept__inner {
    gap: 5rem;
  }
  .concept__image img {
    min-height: 450px;
  }

  .offerings__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .offering-card {
    aspect-ratio: 3 / 4;
  }

  .gallery__grid--editorial {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
  }
  .gallery__item--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }
  .gallery__item:not(.gallery__item--featured) {
    aspect-ratio: auto;
  }

  .about-editorial {
    min-height: 85vh;
    align-items: center;
  }
  .about-editorial__content {
    max-width: 560px;
    padding: 5rem 4rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — WIDE (1440px)
   ═══════════════════════════════════════ */
@media (min-width: 1440px) {
  .hero__title {
    font-size: 7rem;
  }
  .concept__text p {
    font-size: 1.125rem;
  }
  .gallery-tabs {
    gap: 2.5rem;
  }
}
