/* =========================================
   THEOS BURGER — Nuevo Diseño
   ========================================= */

/* --- Variables --- */
:root {
  --primary: #FF6B00;
  --primary-dark: #D95A00;
  --gold: #C9963A;
  --dark: #111118;
  --dark-2: #1C1C28;
  --light: #FFF8F2;
  --light-2: #F2EBE0;
  --text-dark: #1A1A2E;
  --text-muted: #6B6B7B;
  --white: #ffffff;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

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

/* Hero entra con CSS puro — sin depender de AOS JS */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content--animate {
  animation: heroFadeUp 0.75s ease-out both;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

/* --- Top line --- */
.top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  background: rgba(255, 248, 242, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,58,0.15);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.logo-theos {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.75rem !important;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.65;
  transition: opacity 0.5s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,24,0.85) 0%,
    rgba(17,17,24,0.40) 60%,
    rgba(255,107,0,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__ornament-line {
  height: 1px;
  width: 48px;
  background: var(--gold);
  opacity: 0.8;
}

.hero__ornament-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll i { font-size: 1.2rem; }

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

/* =========================================
   BOTONES
   ========================================= */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-dark-custom {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-dark-custom:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--white);
}

/* =========================================
   SECCIÓN TÍTULOS
   ========================================= */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,107,0,0.2);
}

.section-title-new {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title-new span {
  color: var(--primary);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--light-2);
}

.section-divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* =========================================
   BURGERS DESTACADAS
   ========================================= */
.burgers-section {
  padding: 6rem 0;
  background: var(--light);
}

.burger-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.burger-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.burger-card__img-wrap {
  background: var(--dark);
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.burger-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.burger-card:hover .burger-card__img-wrap img {
  transform: scale(1.08);
}

.burger-card__body {
  padding: 1.5rem;
}

.burger-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.burger-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.burger-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.burger-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* =========================================
   SOBRE NOSOTROS
   ========================================= */
.about-section {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: 'ΘΕΟΣ';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  max-width: 100%;
  overflow: hidden;
}

.about-section .section-title-new {
  color: var(--white);
}

.about-section .section-title-new span {
  color: var(--primary);
}

.about__text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about__stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(201,150,58,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.about__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--primary), var(--gold));
  z-index: -1;
}

.about__img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* =========================================
   APP MÓVIL
   ========================================= */
.app-section {
  padding: 6rem 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.app__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.app__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.app-badge i {
  font-size: 1.75rem;
}

.app-badge__sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

.app-badge__store {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-badge--available {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.app-badge--available:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.app-badge--soon {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.07);
  cursor: default;
}

.app-badge--soon .app-badge__sub {
  color: var(--gold);
  opacity: 0.8;
}

/* Phone screenshot frame */
.app__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app__phone-frame {
  width: 240px;
  border-radius: 40px;
  padding: 10px;
  background: var(--dark);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255,107,0,0.1);
  position: relative;
}

.app__phone-frame::before {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 8px;
}

.app__screenshot {
  width: 100%;
  border-radius: 30px;
  display: block;
}

/* =========================================
   EVENTOS
   ========================================= */
.events-section {
  padding: 6rem 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.events-section::after {
  content: '⚡';
  position: absolute;
  font-size: 20rem;
  opacity: 0.02;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.events-section .section-title-new {
  color: var(--white);
}

.events-section .section-badge {
  background: rgba(201,150,58,0.15);
  color: var(--gold);
  border-color: rgba(201,150,58,0.3);
}

.events__text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.events-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.events-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.events-grid__item:hover img {
  transform: scale(1.05);
}

.events-grid__item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* =========================================
   DELIVERY
   ========================================= */
.delivery-section {
  padding: 5rem 0;
  background: var(--light);
}

.delivery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.delivery-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.delivery-card img {
  height: 48px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.delivery-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================
   UBICACIÓN Y HORARIO
   ========================================= */
.location-section {
  padding: 6rem 0;
  background: var(--light-2);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 45%;
}

.hours-table td:last-child {
  color: var(--text-muted);
}

.hours-table .closed {
  color: #C0392B;
  font-weight: 500;
}

.hours-table .today {
  background: rgba(255,107,0,0.06);
  border-radius: 6px;
}

.hours-table .today td:first-child {
  color: var(--primary);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* =========================================
   RESERVAS
   ========================================= */
.reservas-section {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.reservas-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.reservas-section .section-title-new {
  color: var(--white);
}

.reservas-section .section-title-new span {
  color: var(--primary);
}

.reservas__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.reservas__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 1.5rem;
}

.footer__logo {
  max-height: 48px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__address {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer__address i {
  color: var(--primary);
  margin-right: 0.4rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer__legal a:hover {
  color: var(--white);
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  background: var(--dark-2);
  border: 1px solid rgba(201,150,58,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.cookie-banner__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .hero { min-height: 80vh; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid__item:first-child { grid-row: span 1; }
}

@media (max-width: 767px) {
  .hero { min-height: 100svh; }
  .hero__content { text-align: center; }
  .hero__ornament { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__scroll { display: none; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .about__stat-number { font-size: 1.5rem; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .about__stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .events-grid { grid-template-columns: 1fr; }
}

/* =========================================
   MYTHOLOGY ACCENTS
   ========================================= */

/* Greek subtitle above section titles */
.greek-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  opacity: 0.78;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* Hero Greek inscription */
.hero__greek-tag {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  color: rgba(201,150,58,0.65);
  text-transform: uppercase;
  margin: 0.4rem 0 1.75rem;
}

/* Inline Greek inscription — dark sections */
.greek-inscription {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(201,150,58,0.45);
  text-transform: uppercase;
}

/* Meander-style accent bar on hero bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px, var(--primary) 6px,
    transparent 6px, transparent 10px,
    var(--primary) 10px, var(--primary) 14px,
    transparent 14px, transparent 20px
  );
  opacity: 0.4;
  z-index: 2;
}

/* Hefesto image sharpening — photo is softer than the rest */
img[alt*="Hefesto"],
img[alt*="hefesto"] {
  filter: contrast(1.18) saturate(1.12) brightness(1.03);
  image-rendering: -webkit-optimize-contrast;
}

/* ΟΛΥΜΠΟΣ watermark on reservas (::after, ::before is the radial glow) */
.reservas-section::after {
  content: 'ΟΛΥΜΠΟΣ';
  position: absolute;
  font-family: var(--font-display);
  font-size: 13rem;
  color: rgba(255,255,255,0.018);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  z-index: 0;
}
