/* ── Top Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 300ms, backdrop-filter 300ms, padding 300ms;
}
.nav.is-scrolled {
  background: rgba(247, 240, 223, .92);
  backdrop-filter: blur(12px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bone-2);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nav__logo em {
  font-style: italic;
  color: var(--terracotta);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  opacity: .7;
  transition: opacity 150ms;
}
.nav__link:hover { opacity: 1; }
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  opacity: .6;
  transition: opacity 150ms;
}
.nav__phone:hover { opacity: 1; }

/* Hero nav — white text */
.nav--hero .nav__logo,
.nav--hero .nav__link,
.nav--hero .nav__phone,
.nav--hero .nav__lang-btn {
  color: #fff;
}
.nav--hero .nav__logo em { color: var(--bone); }
.nav--hero.is-scrolled .nav__logo,
.nav--hero.is-scrolled .nav__link,
.nav--hero.is-scrolled .nav__phone,
.nav--hero.is-scrolled .nav__lang-btn {
  color: var(--ink);
}
.nav--hero.is-scrolled .nav__logo em { color: var(--terracotta); }
.nav--hero.is-scrolled { background: rgba(247, 240, 223, .92); }

/* Mobile nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  transition: transform 220ms, opacity 220ms;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--paper);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }
  .nav__link { font-size: 24px; letter-spacing: .04em; }
  /* Force dark text in the mobile overlay regardless of hero/scroll state */
  .nav__links.is-open .nav__link,
  .nav--hero .nav__links.is-open .nav__link {
    color: var(--ink);
  }
  .nav__links.is-open .nav__lang-btn,
  .nav--hero .nav__links.is-open .nav__lang-btn {
    color: var(--ink);
  }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 40px;
}
.footer__tagline {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 20px;
}
.footer__sub {
  font-size: 14px;
  color: rgba(241, 231, 211, .5);
  line-height: 1.6;
}
.footer__col-title {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(241,231,211,.4);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 15px;
  text-decoration: none;
  color: rgba(241,231,211,.7);
  transition: color 150ms;
}
.footer__link:hover { color: var(--bone); }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(241,231,211,.2);
  color: rgba(241,231,211,.6);
  text-decoration: none;
  transition: border-color 150ms, color 150ms;
}
.footer__social-link:hover { border-color: var(--bone); color: var(--bone); }
.footer__map {
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  height: 280px;
}
.footer__map iframe {
  width: 100%; height: 100%;
  display: block;
}
.footer__license {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(241,231,211,.25);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(241,231,211,.35);
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__map { height: 220px; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Booking strip ──────────────────────────────────────────── */
.booking-strip {
  background: rgba(28, 24, 21, .7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-strip__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}
.booking-strip__label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(241,231,211,.45);
}
.booking-strip__input {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  padding: 6px 0;
  width: 100%;
  outline: none;
  transition: border-color 200ms;
}
.booking-strip__input:focus { border-color: var(--terracotta); }
.booking-strip__input option { background: var(--ink); color: var(--bone); }
.booking-strip__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .booking-strip { flex-direction: column; align-items: stretch; }
  .booking-strip__divider { display: none; }
  .booking-strip .btn { width: 100%; justify-content: center; }
}
