/* ============================================================
   SANTINO FAMILY — Global Stylesheet
   Brand: #f6f6f5 / #123331 · Font: Jost (≈ Posterama)
   ============================================================ */

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

/* ── Brand Variables ── */
:root {
  /* Brand colors */
  --brand-dark:   #123331;   /* primary dark teal */
  --brand-light:  #f6f6f5;   /* primary cream */

  /* Extended palette */
  --teal-mid:     #1d4f4c;
  --teal-light:   #2a6b66;
  --teal-pale:    #e8f0ef;
  --gold:         #c9a96e;
  --gold-light:   #e2c99a;
  --gold-dark:    #9a7440;
  --sand:         #ede8df;
  --sand-dark:    #d8d0c2;
  --warm-white:   #faf9f7;
  --text:         #1a2a28;
  --text-muted:   #6b7c79;
  --white:        #ffffff;

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

  /* Spacing & radii */
  --radius-sm:    3px;
  --radius-md:    6px;
  --radius-lg:    12px;
  --radius-xl:    40px;

  /* Transitions */
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease:         0.25s ease;

  /* Shadows */
  --shadow-sm:    0 1px 8px rgba(18, 51, 49, 0.07);
  --shadow-md:    0 6px 24px rgba(18, 51, 49, 0.10);
  --shadow-lg:    0 20px 56px rgba(18, 51, 49, 0.14);
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; font-weight: 300; }

.text-gold   { color: var(--gold); }
.text-teal   { color: var(--teal-light); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.font-serif  { font-family: var(--font-serif); }
.uppercase   { text-transform: uppercase; letter-spacing: 0.12em; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}
.section       { padding: clamp(4rem, 8vw, 9rem) 0; }
.section--dark { background: var(--brand-dark); color: var(--brand-light); }
.section--sand { background: var(--sand); }
.section--teal-pale { background: var(--teal-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: var(--brand-light);
  box-shadow: 0 1px 0 rgba(18,51,49,0.1);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* Вверху — светлый логотип (навбар прозрачный над тёмным фото) */
.nav__logo-mark img.logo-dark  { display: none; }
.nav__logo-mark img.logo-light { display: block; }

/* При скролле — тёмный логотип (кремовый фон навбара) */
.nav.scrolled .nav__logo-mark img.logo-dark  { display: block; }
.nav.scrolled .nav__logo-mark img.logo-light { display: none; }

.nav__logo-text {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  line-height: 1.3;
  transition: var(--ease);
}

.nav.scrolled .nav__logo-text { color: var(--brand-dark); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 245, 0.82);
  transition: var(--ease);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--brand-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--brand-light); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav.scrolled .nav__link { color: var(--text-muted); }
.nav.scrolled .nav__link::after { background: var(--brand-dark); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--brand-dark); }

/* Right area */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(246,246,245,0.12);
  border-radius: var(--radius-xl);
  padding: 3px;
  transition: var(--transition);
}

.nav.scrolled .lang-switch { background: var(--sand); }

.lang-btn {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 30px;
  color: rgba(246,246,245,0.55);
  transition: var(--ease);
}

.lang-btn.active {
  background: var(--brand-dark);
  color: var(--brand-light);
}

.nav.scrolled .lang-btn { color: var(--text-muted); }
.nav.scrolled .lang-btn.active {
  background: var(--brand-dark);
  color: var(--brand-light);
}

/* Book button */
.btn-book {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: var(--radius-xl);
  transition: var(--ease);
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav.scrolled .btn-book {
  background: var(--brand-dark);
  color: var(--brand-light);
}

.nav.scrolled .btn-book:hover {
  background: var(--teal-mid);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brand-light);
  border-radius: 2px;
  transition: var(--ease);
}

.nav.scrolled .nav__hamburger span { background: var(--brand-dark); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brand-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu__link {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-light);
  transition: color var(--ease);
}

.mobile-menu__link:hover { color: var(--gold-light); }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: clamp(1rem, 5vw, 4rem);
  font-size: 2rem;
  color: var(--brand-light);
  line-height: 1;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-xl);
  transition: var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--brand-dark);
  color: var(--brand-light);
}
.btn--primary:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,51,49,0.25);
}

.btn--light {
  background: var(--brand-light);
  color: var(--brand-dark);
}
.btn--light:hover {
  background: var(--gold-light);
}

.btn--outline {
  border: 1.5px solid var(--brand-dark);
  color: var(--brand-dark);
}
.btn--outline:hover {
  background: var(--brand-dark);
  color: var(--brand-light);
}

.btn--outline-light {
  border: 1.5px solid rgba(246,246,245,0.6);
  color: var(--brand-light);
}
.btn--outline-light:hover {
  background: rgba(246,246,245,0.12);
  border-color: var(--brand-light);
}

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

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  transform: scale(1.04);
  transition: transform 8s ease, opacity 0.8s ease;
}

.hero__bg-img.loaded {
  transform: scale(1);
  opacity: 0.42;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 51, 49, 0.55) 0%,
    rgba(18, 51, 49, 0.35) 50%,
    rgba(10, 28, 27, 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--brand-light);
  max-width: 860px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero__title {
  color: var(--brand-light);
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
}

.hero__title em {
  font-style: normal;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(246,246,245,0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(246,246,245,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(246,246,245,0.5), transparent);
}

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

/* ── Property Hero (inner pages) ── */
.property-hero {
  height: 78vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brand-dark);
}

.property-hero .hero__overlay {
  background: linear-gradient(
    to top,
    rgba(12, 33, 31, 0.88) 0%,
    rgba(12, 33, 31, 0.28) 55%,
    transparent 100%
  );
}

.property-hero__content {
  position: relative;
  z-index: 2;
  color: var(--brand-light);
  padding-bottom: 4rem;
  width: 100%;
}

/* ── Section Headers ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-title { margin-bottom: 1rem; }

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--brand-dark);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.divider--center { margin-left: auto; margin-right: auto; }
.divider--light  { background: rgba(246,246,245,0.25); }
.divider--gold   { background: var(--gold); }

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brand-dark);
  color: var(--brand-light);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(246,246,245,0.06);
  transition: background var(--ease);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-mid); }

.stat-item__number {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,246,245,0.45);
}

/* ── Property Cards ── */
.properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.property-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.property-card__img {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--brand-dark);
}

.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.property-card:hover .property-card__img img { transform: scale(1.07); }

.property-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-dark);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
}

.property-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.property-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--sand);
  padding-top: 1.25rem;
}

.property-card__link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--ease), color var(--ease);
}

.property-card__link:hover { gap: 0.8rem; color: var(--teal-light); }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(18,51,49,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18,51,49,0.12);
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.feature-item__title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--brand-dark);
}

.feature-item__desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18,51,49,0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--teal-pale);
  font-weight: 300;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}

.testimonial-card__author {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

/* ── Booking ── */
.booking-section {
  background: var(--brand-dark);
  color: var(--brand-light);
}

.booking-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-widget iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.5rem;
}

.gallery__item {
  overflow: hidden;
  background: var(--sand-dark);
}

.gallery__item--wide   { grid-column: span 8; }
.gallery__item--narrow { grid-column: span 4; }
.gallery__item--half   { grid-column: span 6; }

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

/* ── Rooms ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18,51,49,0.05);
  transition: var(--transition);
}

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

.room-card__img {
  height: 230px;
  overflow: hidden;
  background: var(--brand-dark);
  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__price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--brand-dark);
  color: var(--gold-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
}

.room-card__body { padding: 1.5rem; }

.room-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 1.25rem;
}

.room-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.65rem;
  background: var(--teal-pale);
  color: var(--brand-dark);
  border-radius: var(--radius-xl);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(246,246,245,0.08);
  border: 1px solid rgba(246,246,245,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(246,246,245,0.72);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(246,246,245,0.08);
}

.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,246,245,0.5);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(246,246,245,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Menu (Café) ── */
.menu-section { margin-bottom: 3rem; }

.menu-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(18,51,49,0.06);
}

.menu-item__name { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.menu-item__desc { font-size: 0.78rem; font-weight: 300; color: var(--text-muted); margin-top: 0.15rem; line-height: 1.5; }
.menu-item__price { font-size: 0.9rem; font-weight: 700; color: var(--brand-dark); white-space: nowrap; margin-left: 1.25rem; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--brand-dark);
  color: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
}

.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-mid); }

/* ── Footer ── */
.footer {
  background: var(--brand-dark);
  color: rgba(246,246,245,0.65);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(246,246,245,0.06);
  margin-bottom: 2rem;
}

.footer__brand-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.footer__social { display: flex; gap: 0.6rem; }

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(246,246,245,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(246,246,245,0.5);
  transition: var(--ease);
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer__col-title {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer__col-links li { margin-bottom: 0.55rem; }

.footer__col-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(246,246,245,0.5);
  transition: color var(--ease);
}

.footer__col-links a:hover { color: var(--brand-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(246,246,245,0.28);
}

/* ── Gem Cards (Boutique) ── */
.gem-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(246,246,245,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(246,246,245,0.08);
  transition: var(--transition);
}

.gem-card:hover {
  background: rgba(246,246,245,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar    { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide   { grid-column: span 12; }
  .gallery__item--narrow { grid-column: span 6; }
  .gallery__item--half   { grid-column: span 6; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links           { display: none; }
  .nav__hamburger       { display: flex; }
  .mobile-menu          { display: flex; }
  .btn-book.desktop-only { display: none; }

  .grid-2   { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3   { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(246,246,245,0.06); }
  .stat-item:last-child { border-bottom: none; }

  .gallery { display: flex; flex-direction: column; }
  .gallery__item img { min-height: 220px; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.5rem; }
}
