
/* ===== COCOMARCO ULTRA PREMIUM ===== */

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

:root {
  --bg: #0a0506;
  --bg2: #110709;
  --surface: rgba(255,255,255,.03);
  --surface2: rgba(255,255,255,.06);
  --text: #faf8f8;
  --text-soft: rgba(255,248,248,.7);
  --muted: rgba(255,200,200,.5);
  --accent: #e63946;
  --accent-light: #ff6b6b;
  --accent-dark: #9d0208;
  --gold: #d4a574;
  --line: rgba(255,255,255,.08);
  --shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  --glow: 0 0 80px rgba(230,57,70,.15);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

::selection {
  background: rgba(230,57,70,.4);
  color: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== Background Atmosphere ===== */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 800px 600px at 20% 20%, rgba(230,57,70,.12), transparent 50%),
    radial-gradient(ellipse 600px 800px at 80% 30%, rgba(157,2,8,.1), transparent 50%),
    radial-gradient(ellipse 1000px 600px at 50% 80%, rgba(212,165,116,.05), transparent 50%);
  animation: atmosphereMove 30s ease-in-out infinite;
}

@keyframes atmosphereMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-2%, 1%) rotate(1deg); }
  66% { transform: translate(1%, -1%) rotate(-0.5deg); }
}

/* ===== Floating Bubbles ===== */
.bubbles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,80,80,.8), rgba(230,57,70,.4) 40%, rgba(230,57,70,.1) 70%, transparent 100%);
  box-shadow: 0 0 20px rgba(230,57,70,.3), inset 0 0 10px rgba(255,255,255,.1);
  filter: blur(0.5px);
  opacity: 0;
  animation: floatUp var(--duration, 15s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) scale(var(--scale, 1));
    opacity: 0;
  }
  5% {
    opacity: var(--opacity, 0.3);
  }
  95% {
    opacity: var(--opacity, 0.3);
  }
  100% {
    transform: translateY(-100vh) translateX(var(--drift, 20px)) scale(var(--scale, 1));
    opacity: 0;
  }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Skip & Accessibility ===== */
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 500;
}
.skip:focus { left: 16px; }

/* ===== Container ===== */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .4s var(--transition);
}

.header.scrolled {
  background: rgba(10,5,6,.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(230,57,70,.2));
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .5px;
}

.brand__meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__since {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--text-soft);
  border-radius: 100px;
  transition: all .3s var(--transition);
}

.nav a:hover {
  color: var(--text);
  background: var(--surface2);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__social {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  transition: all .3s var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.header__actions .cta {
  padding: 12px 24px;
}

.navbtn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbtn span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--transition);
}

/* ===== CTA Button ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .4s var(--transition);
  position: relative;
  overflow: hidden;
}

.cta--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 40px -10px rgba(230,57,70,.5);
}

.cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity .4s var(--transition);
}

.cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -15px rgba(230,57,70,.6);
}

.cta--primary:hover::before { opacity: 1; }

.cta--primary span { position: relative; z-index: 1; }

.cta--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.cta--ghost:hover {
  background: var(--surface2);
  border-color: rgba(255,255,255,.2);
}

.cta--xl {
  padding: 18px 36px;
  font-size: 14px;
}

/* ===== Hero ===== */
.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;
  filter: brightness(.4) saturate(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,5,6,.3) 0%, rgba(10,5,6,.1) 40%, rgba(10,5,6,.95) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10,5,6,.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--transition) .2s forwards;
}

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

.hero__location::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 140px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: .9;
  margin: 0 0 16px;
  opacity: 0;
  animation: fadeUp 1s var(--transition) .4s forwards;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-soft);
  margin: 0 0 32px;
  opacity: 0;
  animation: fadeUp .8s var(--transition) .6s forwards;
}

.hero__tagline {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeUp .8s var(--transition) .8s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--transition) 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUpScroll .8s var(--transition) 1.2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .5; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpScroll {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.section__subtitle {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ===== Intro Cards (Restaurant / Hotel / Salon) ===== */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.intro-card {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all .5s var(--transition);
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--transition);
}

.intro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230,57,70,.3);
  box-shadow: var(--glow);
}

.intro-card:hover::before { opacity: 1; }

.intro-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230,57,70,.15) 0%, rgba(230,57,70,.05) 100%);
  border: 1px solid rgba(230,57,70,.2);
  color: var(--accent-light);
}

.intro-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
}

.intro-card__text {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0 0 24px;
  line-height: 1.7;
}

.intro-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  transition: gap .3s var(--transition);
}

.intro-card__link:hover { gap: 12px; }

.intro-card__link svg {
  transition: transform .3s var(--transition);
}

.intro-card:hover .intro-card__link svg {
  transform: translateX(4px);
}

/* ===== Feature Grid ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .4s var(--transition);
}

.feature:hover {
  background: var(--surface2);
  border-color: rgba(230,57,70,.2);
  transform: translateY(-4px);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}

.feature__text {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

/* ===== Menu Section ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-panel {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.menu-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.menu-panel__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.menu-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.menu-list li:last-child { border-bottom: none; }

.menu-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ===== Gallery ===== */
.gallery-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0506;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .9s ease, transform .9s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ---- Per-image crop adjustments ---- */

/* Paysage — food close-ups: zoom out slightly so the dish breathes */
.gallery-slide--camembert img {
  object-position: center 40%;       /* show the plate + walnuts */
}
.gallery-slide--foiegras img {
  object-position: center 35%;       /* show both slices + salt */
}
.gallery-slide--escargots img {
  object-position: center center;    /* snails are centered, OK */
}
.gallery-slide--chai img {
  object-position: center 55%;       /* show more of the glass bottom */
}
.gallery-slide--crepes img {
  object-position: center 45%;       /* show crêpe + chantilly */
}

/* Portrait — lieux */
.gallery-slide--facade img {
  object-position: center 30%;       /* show sign "Au P'tit Coco" + chalkboard */
}
.gallery-slide--interior img {
  object-position: center 45%;       /* fresque murale + banquettes */
}
.gallery-slide--plateau img {
  object-position: center 50%;       /* center on the Pont Roman tray + pastry */
}
.gallery-slide--vitrine img {
  object-position: center 35%;       /* vitrine text centered */
}
.gallery-slide--boulangerie img {
  object-position: center 30%;       /* bread sign + lantern */
}
.gallery-slide--boutique img {
  object-position: center 25%;       /* "Oh mon Coco Joli" text + jewelry */
}

/* Progress bar autoplay */
.gallery-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 10;
  width: 0%;
  transition: none;
}

.gallery-progress.is-running {
  transition: width linear;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,5,6,.6);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s var(--transition);
  z-index: 5;
}

.gallery-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-nav--prev { left: 24px; }
.gallery-nav--next { right: 24px; }

.gallery-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--transition);
}

.gallery-dot[aria-selected="true"] {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* ===== Rooms ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all .5s var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: rgba(230,57,70,.3);
}

.room-card__gallery {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .6s var(--transition);
}

/* Cadrage spécifique par chambre */
.room-card[data-room="double"] .room-card__gallery img {
  object-position: center 25%;
}

.room-card[data-room="familiale"] .room-card__gallery img {
  object-position: center 35%;
}

.room-card[data-room="superieure"] .room-card__gallery img {
  object-position: center 30%;
}

.room-card[data-room="suite"] .room-card__gallery img {
  object-position: center 25%;
}

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

.room-card__nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: rgba(10,5,6,.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
}

.room-card__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s var(--transition);
}

.room-card__nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.room-card__counter {
  font-size: 12px;
  color: var(--text-soft);
  min-width: 40px;
  text-align: center;
}

.room-card__content {
  padding: 28px;
}

.room-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
}

.room-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-card__features li {
  padding: 6px 12px;
  background: var(--surface2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-soft);
}

.room-card__price {
  font-size: 14px;
  color: var(--text-soft);
}

.room-card__price strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-light);
  margin-left: 4px;
}

/* ===== Terrace Gallery ===== */
.terrace-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.terrace-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .4s var(--transition);
}

.terrace-gallery img:hover {
  transform: scale(1.02);
  border-color: rgba(230,57,70,.3);
}

/* ===== Info Section ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 16px;
}

.info-card__text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

.info-card a {
  color: var(--accent-light);
  transition: color .3s var(--transition);
}

.info-card a:hover { color: var(--accent); }

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  padding: 12px 20px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all .3s var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== Map ===== */
.map-section {
  padding: 80px 0;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.map-header {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.map-header__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
}

.map-header__address {
  font-size: 14px;
  color: var(--text-soft);
}

.map-frame {
  aspect-ratio: 21/9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.3) contrast(1.1);
}

/* ===== CTA Band ===== */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(230,57,70,.1) 0%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin: 0 0 12px;
}

.cta-band__text {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 32px;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.3);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.footer__tagline {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-soft);
  transition: color .3s var(--transition);
}

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

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color .3s var(--transition);
}

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

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.modal.is-open { display: block; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  width: min(700px, calc(100% - 48px));
  margin: 10vh auto 0;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modal__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: all .3s var(--transition);
}

.modal__close:hover {
  background: var(--surface2);
}

.modal__body {
  padding: 24px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Phone Reveal Overlay ===== */
.phone-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 5, 6, .92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--transition), visibility .5s var(--transition);
  cursor: pointer;
}

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

.phone-overlay__label {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: phoneRevealIn .6s .2s var(--transition) forwards;
}

.phone-overlay__number {
  font-family: var(--font-display);
  font-size: clamp(42px, 10vw, 96px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 0 60px rgba(230, 57, 70, .5), 0 0 120px rgba(230, 57, 70, .2);
  opacity: 0;
  transform: scale(.7);
  animation: phoneNumberPop .7s .35s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.phone-overlay__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 10px 40px -10px rgba(230, 57, 70, .6);
  opacity: 0;
  transform: translateY(20px);
  animation: phoneRevealIn .6s .55s var(--transition) forwards;
  transition: transform .3s, box-shadow .3s;
}

.phone-overlay__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px -15px rgba(230, 57, 70, .7);
}

.phone-overlay__cta svg {
  width: 20px;
  height: 20px;
}

.phone-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
  font-size: 20px;
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.phone-overlay__close:hover {
  background: var(--surface);
  transform: rotate(90deg);
}

.phone-overlay__hint {
  position: absolute;
  bottom: 40px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  opacity: 0;
  animation: phoneRevealIn .6s .75s var(--transition) forwards;
}

@keyframes phoneRevealIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phoneNumberPop {
  to { opacity: 1; transform: scale(1); }
}

/* Confetti */
.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 301;
  pointer-events: none;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .intro-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .intro-cards { grid-template-columns: 1fr; margin-top: -60px; }
  .features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .terrace-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 80px 0; }

  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: rgba(10,5,6,.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
  }

  .nav.is-open { display: flex; }
  .nav a { padding: 16px; text-align: center; }
  .navbtn { display: flex; }
  .header__actions { display: none; }

  .hero__content { padding: 100px 16px 60px; }
  .gallery-viewport { aspect-ratio: 4 / 3; }
  .terrace-gallery { grid-template-columns: 1fr; }
  .gallery-nav { width: 44px; height: 44px; font-size: 20px; }
  .gallery-nav--prev { left: 12px; }
  .gallery-nav--next { right: 12px; }
  .gallery-dots { bottom: 16px; gap: 8px; }

  .info-grid { grid-template-columns: 1fr; }

  .notices-row { flex-direction: column; }
  .badge-row { flex-direction: column; }
  .review-links__grid { flex-direction: column; }
}

/* ===== Notices ===== */
.notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}

.notice--highlight {
  background: linear-gradient(135deg, rgba(230,57,70,.15) 0%, rgba(157,2,8,.1) 100%);
  border: 1px solid rgba(230,57,70,.3);
  color: var(--text);
  margin-bottom: 40px;
  text-align: center;
  justify-content: center;
}

.notice--info {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.notice--info svg {
  flex-shrink: 0;
  color: var(--gold);
}

.notices-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.notices-row .notice {
  flex: 1;
}

/* ===== Partnership Card ===== */
.partnership-card {
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, transparent 100%);
  border: 1px solid rgba(212,165,116,.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.partnership-card__label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212,165,116,.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.partnership-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--text);
}

.partnership-card__text {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Badge ===== */
.badge-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.badge--gold {
  background: linear-gradient(135deg, rgba(212,165,116,.15) 0%, rgba(212,165,116,.05) 100%);
  border: 1px solid rgba(212,165,116,.3);
  color: var(--gold);
}

.badge--gold svg {
  color: var(--gold);
}

/* ===== Review Links ===== */
.review-links {
  margin-top: 48px;
  text-align: center;
}

.review-links__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--text);
}

.review-links__grid {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .3s var(--transition);
}

.review-link:hover {
  background: var(--surface2);
  border-color: rgba(230,57,70,.3);
  transform: translateY(-2px);
}

.review-link svg {
  color: var(--accent-light);
}
