/* ============================================
   LA BRIGLIA — Design System
   Colors: #3c8891 (teal) + #C4572A (terracotta)
   ============================================ */

/* --- Fonts loaded via <link> in HTML for performance --- */

/* --- Variables --- */
:root {
  --brand: #3c8891;
  --brand-dark: #2d6a71;
  --brand-light: #e8f4f5;
  --brand-rgb: 60, 136, 145;
  --terracotta: #C4572A;
  --terracotta-dark: #a3461f;
  --terracotta-light: #f5e6df;
  --cream: #FDF8F3;
  --dark: #1A1A1A;
  --warm-gray: #6B5E53;
  --light-border: #E8DDD4;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { max-width: 680px; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--alt { background: var(--brand-light); }
.section--dark { background: var(--dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { margin: 0 auto; color: var(--warm-gray); font-size: 1.1rem; }
.section-header .accent-line {
  width: 60px; height: 3px; background: var(--terracotta);
  margin: 20px auto 0; border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em;
  transition: var(--transition); cursor: pointer;
}
.btn--primary {
  background: var(--brand); color: var(--white);
  box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.3);
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(var(--brand-rgb), 0.4); }
.btn--secondary { background: var(--terracotta); color: var(--white); }
.btn--secondary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn--outline:hover { background: var(--white); color: var(--dark); }
.btn--outline-dark { border: 2px solid var(--brand); color: var(--brand); }
.btn--outline-dark:hover { background: var(--brand); color: var(--white); }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: var(--transition);
}
.nav--scrolled {
  background: rgba(253, 248, 243, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm); padding: 12px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.nav__logo img { width: 44px; height: 44px; border-radius: 50%; }
.nav__logo-text {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--white); transition: var(--transition);
}
.nav--scrolled .nav__logo-text { color: var(--dark); }
.nav__links { display: flex; gap: 36px; }
.nav__link {
  color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem;
  position: relative; transition: var(--transition);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--terracotta);
  transition: var(--transition);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav--scrolled .nav__link { color: var(--dark); }
.nav--scrolled .nav__link:hover { color: var(--brand); }
.nav__cta {
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.nav__cta svg { width: 18px; height: 18px; }
.nav--scrolled .nav__cta { color: var(--brand); }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; z-index: 1001;
}
.nav__hamburger span {
  width: 100%; height: 2px; background: var(--white);
  transition: var(--transition); border-radius: 2px;
}
.nav--scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(253,248,243,0.98);
  backdrop-filter: blur(20px); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-menu--open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 1.8rem; color: var(--dark);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--brand); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero--short { min-height: 60vh; }
.hero__bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,26,0.25) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(26,26,26,0.8) 100%
  );
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); max-width: 800px; padding: 0 24px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero__badge svg { width: 16px; height: 16px; }
.hero__title { margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero__subtitle {
  font-size: 1.15rem; line-height: 1.7; opacity: 0.9;
  max-width: 600px; margin: 0 auto 32px;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__hours {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; opacity: 0.8;
}
.hero__hours .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card__img { height: 240px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 28px; }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; margin-top: -48px; position: relative;
  z-index: 2; box-shadow: var(--shadow-sm);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__body h3 { margin-bottom: 8px; }
.service-card__body p { color: var(--warm-gray); font-size: 0.95rem; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 600; font-size: 0.9rem;
  margin-top: 16px; transition: var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* --- About Split --- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-split__text h2 { margin-bottom: 20px; }
.about-split__text p { color: var(--warm-gray); margin-bottom: 16px; font-size: 1.05rem; }
.about-split__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-split__img img { width: 100%; height: 500px; object-fit: cover; }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
}
.gallery-grid__item {
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-grid__item:nth-child(1) { grid-row: span 2; }
.gallery-grid__item:nth-child(4) { grid-column: span 2; }
.gallery-grid__item:nth-child(8) { grid-column: span 2; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid__item:hover img { transform: scale(1.06); }
.gallery-grid__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 60%, rgba(0,0,0,0.3));
  opacity: 0; transition: var(--transition);
}
.gallery-grid__item:hover::after { opacity: 1; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 80px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { margin-bottom: 16px; position: relative; }
.cta-banner p { margin: 0 auto 32px; opacity: 0.9; position: relative; font-size: 1.1rem; }
.cta-banner .btn { position: relative; }
.cta-info { display: flex; gap: 48px; justify-content: center; margin-top: 40px; flex-wrap: wrap; position: relative; }
.cta-info__item { text-align: center; }
.cta-info__item svg { width: 24px; height: 24px; margin-bottom: 8px; opacity: 0.8; }
.cta-info__item strong { display: block; font-size: 0.95rem; }
.cta-info__item span { font-size: 0.85rem; opacity: 0.8; }

/* --- Menu Page --- */
.menu-nav { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.menu-nav__btn {
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; border: 2px solid var(--light-border);
  color: var(--warm-gray); transition: var(--transition); cursor: pointer;
}
.menu-nav__btn--active, .menu-nav__btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.menu-category { margin-bottom: 64px; }
.menu-category__title {
  font-family: var(--font-heading); font-size: 1.6rem;
  padding-bottom: 16px; border-bottom: 2px solid var(--light-border);
  margin-bottom: 24px; color: var(--dark);
}
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid rgba(232,221,212,0.5);
  transition: var(--transition);
}
.menu-item:hover { padding-left: 8px; }
.menu-item__name { font-weight: 600; font-size: 1.05rem; }
.menu-item__desc { color: var(--warm-gray); font-size: 0.9rem; margin-top: 4px; }
.menu-item__price { font-weight: 700; color: var(--brand); font-size: 1.1rem; white-space: nowrap; }
.menu-completo {
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--cream) 100%);
  border: 2px solid var(--terracotta); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; margin: 48px 0;
}
.menu-completo__price {
  font-family: var(--font-heading); font-size: 3rem;
  color: var(--terracotta); font-weight: 700;
}
.menu-completo__label { font-size: 0.9rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.menu-completo h3 { margin: 12px 0; font-size: 1.4rem; }
.menu-completo p { margin: 0 auto; color: var(--warm-gray); }

/* --- Room Cards --- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.room-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-card__img { height: 260px; overflow: hidden; position: relative; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card__img img { transform: scale(1.05); }
.room-card__body { padding: 24px; }
.room-card__body h3 { margin-bottom: 8px; }
.room-card__body p { color: var(--warm-gray); font-size: 0.95rem; margin-bottom: 16px; }
.room-card__features { display: flex; gap: 16px; flex-wrap: wrap; }
.room-card__feature {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--warm-gray);
}
.room-card__feature svg { width: 16px; height: 16px; color: var(--brand); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { color: var(--warm-gray); font-size: 0.95rem; }
.contact-card a { color: var(--brand); font-weight: 600; transition: var(--transition); }
.contact-card a:hover { color: var(--brand-dark); }

.map-container { border-radius: var(--radius-lg); overflow: hidden; height: 400px; box-shadow: var(--shadow-md); margin-bottom: 64px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-form-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--light-border);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.95rem; transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.directions { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); }
.directions h3 { margin-bottom: 20px; }
.directions__item { display: flex; gap: 16px; margin-bottom: 20px; }
.directions__item svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.directions__item strong { display: block; margin-bottom: 4px; }
.directions__item p { color: var(--warm-gray); font-size: 0.9rem; margin: 0; }

/* --- Footer --- */
.footer { background: var(--dark); color: var(--white); padding: 80px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer__title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 20px; }
.footer__links a {
  display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem;
  padding: 4px 0; transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 12px;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--brand); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox--open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1.5rem;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* --- Scroll Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal--visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 900;
  transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* --- Back to Top --- */
.back-to-top {
  position: fixed; bottom: 96px; right: 28px;
  width: 44px; height: 44px; background: var(--brand); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 900;
  opacity: 0; pointer-events: none; transition: var(--transition);
  cursor: pointer; border: none;
}
.back-to-top--visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--brand-dark); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* --- 404 --- */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--cream); }
.error-page h1 { font-size: 8rem; color: var(--brand); line-height: 1; }
.error-page p { color: var(--warm-gray); margin: 16px auto 32px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid, .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-split { gap: 40px; }
  .contact-form-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
/* --- Room Gallery --- */
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.room-gallery__item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.room-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-gallery__item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 90vh; }
  .hero--short { min-height: 50vh; }
  .services-grid, .rooms-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__img img { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-grid__item:nth-child(1) { grid-row: span 1; }
  .gallery-grid__item:nth-child(4) { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-info { gap: 24px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .menu-nav { gap: 8px; }
  .contact-form-section { gap: 40px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .back-to-top { bottom: 84px; right: 20px; }
}

/* ============================================================
   FACTS GRID
   ============================================================ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-bottom: 4px solid #3c8891;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(60,136,145,0.15);
}
.fact-card__value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #3c8891;
  line-height: 1;
  margin-bottom: 12px;
}
.fact-card__label {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  font-weight: 500;
}
.fact-card__label small {
  display: block;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 4px;
  font-weight: 400;
}
@media (max-width: 900px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .facts-grid { grid-template-columns: 1fr 1fr; gap: 16px; } .fact-card { padding: 24px 14px; } .fact-card__value { font-size: 2rem; } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.2s;
}
.faq-question:hover { color: #3c8891; }
.faq-question[aria-expanded="true"] { color: #3c8891; }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), color 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: #3c8891;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer.is-open {
  grid-template-rows: 1fr;
}
.faq-answer > p, .faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  margin: 0;
  padding-bottom: 22px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: #4b5563;
}
.faq-answer p a { color: #3c8891; text-decoration: underline; }
.faq-answer p strong { color: #1f2937; font-weight: 600; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #e5e7eb;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__inner p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #d1d5db;
}
.cookie-banner__inner p a {
  color: #5cc8d2;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__close {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s;
}
.cookie-banner__close:hover { color: #fff; }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: space-between; }
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section { margin-bottom: 48px; }
.privacy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #3c8891;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5f4f5;
}
.privacy-section h3 { font-size: 1.05rem; font-weight: 600; color: #374151; margin: 24px 0 10px; }
.privacy-section p, .privacy-section li { font-size: 0.97rem; line-height: 1.8; color: #4b5563; }
.privacy-section ul { padding-left: 20px; margin: 12px 0; }
.privacy-section ul li { margin-bottom: 6px; }
.privacy-section a { color: #3c8891; text-decoration: underline; }
.privacy-card {
  background: #f0fafb;
  border-left: 4px solid #3c8891;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 12px 0;
}
.privacy-card p { margin: 0; line-height: 1.9; }
.privacy-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.privacy-table th, .privacy-table td { text-align: left; padding: 10px 14px; border: 1px solid #e5e7eb; }
.privacy-table th { background: #f0fafb; font-weight: 600; color: #374151; }
.privacy-table td { color: #4b5563; }
.privacy-table code { background: #f3f4f6; padding: 2px 6px; border-radius: 4px; font-size: 0.82rem; font-family: monospace; }
@media (max-width: 640px) { .privacy-table { display: block; overflow-x: auto; } }
