/* SAVOY Boutique-Hotel — modern redesign */
:root {
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7b3c;
  --charcoal: #141210;
  --charcoal-soft: #1e1b17;
  --cream: #f7f3eb;
  --cream-muted: #e8e2d6;
  --text: #2a2620;
  --text-muted: #6b6358;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(20, 18, 16, 0.18);
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--gold-light); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-muted);
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover { color: var(--gold-light); }
.lang-btn.active {
  background: var(--gold);
  color: var(--charcoal);
}

.header__phone {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.header__phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--charcoal);
  padding: 1rem 4vw 1.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--cream);
  padding: 0.85rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 16, 0.45) 0%,
    rgba(20, 18, 16, 0.25) 40%,
    rgba(20, 18, 16, 0.75) 85%,
    rgba(20, 18, 16, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 4rem) 0 12rem;
  max-width: 720px;
}

.hero__eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero__tagline {
  color: var(--cream-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
}

.hero__dots {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero__dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* Booking bar */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-bottom: 4rem;
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.booking-bar__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto auto;
  gap: 1rem;
  align-items: end;
}

.booking-form__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.booking-form__field input,
.booking-form__field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-muted);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
}

.booking-form__field input:focus,
.booking-form__field select:focus {
  outline: none;
  border-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  min-height: 48px;
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header--light .section-header__title,
.section-header--light .section-header__desc {
  color: var(--cream);
}

.section-header__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header__desc {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
}

.section--dark .section-header__desc { color: var(--cream-muted); }

/* Luxury grid */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.luxury-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: default;
}

.luxury-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.luxury-card:hover .luxury-card__img { transform: scale(1.06); }

.luxury-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.9) 0%, transparent 60%);
}

.luxury-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 1;
}

.luxury-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.luxury-card__text {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--charcoal-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.12);
  transition: transform var(--transition), border-color var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.35);
}

.room-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__img { transform: scale(1.05); }

.room-card__price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius);
}

.room-card__body {
  padding: 1.5rem;
}

.room-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.room-card__desc {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
}

.about__badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.about__content .section-header__title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-muted);
}

.about__stats li {
  display: flex;
  flex-direction: column;
}

.about__stats strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about__stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact__address a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: 1rem 0 2rem;
  line-height: 1.4;
}

.contact__address a:hover { color: var(--gold); }

.contact__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.contact__list span:first-child {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__list a { color: var(--cream); }
.contact__list a:hover { color: var(--gold-light); }

.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact__social-link {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.contact__social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.contact__map {
  aspect-ratio: 4/3;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* Footer */
.footer {
  background: var(--charcoal-soft);
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo { opacity: 0.85; height: 36px; width: auto; }
.footer__copy { font-size: 0.8rem; color: var(--cream-muted); }
.footer__link { font-size: 0.8rem; color: var(--gold); }
.footer__link:hover { color: var(--gold-light); }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }
  .booking-form .btn--gold {
    grid-column: 1 / -1;
  }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header__phone { display: none; }
  .nav-toggle { display: flex; }
  .hero__content { padding-bottom: 10rem; }
  .hero__dots { bottom: 280px; }
  .booking-bar { margin-top: -60px; padding: 1.5rem; }
  .booking-form { grid-template-columns: 1fr; }
  .about__stats { flex-direction: column; gap: 1.5rem; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .luxury-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
}
