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

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
  --color-bg: #F7F3EE;
  --color-bg-warm: #EDE6DB;
  --color-text: #2C2420;
  --color-text-light: #6B5D54;
  --color-text-muted: #9A8C82;
  --color-accent: #B8654A;
  --color-accent-dark: #9A5038;
  --color-sage: #5B7B6A;
  --color-sage-light: #7A9A89;
  --color-cream: #F5F0E8;
  --color-tan: #E8DDD0;
  --color-dark: #1E1915;
  --color-white: #FAFAF7;
  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', -apple-system, sans-serif;
  --nav-height: 72px;
  --section-pad: clamp(80px, 12vw, 160px);
  --side-pad: clamp(20px, 5vw, 80px);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  max-width: 60ch;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-white);
  transition: color 0.4s ease;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav--scrolled .nav__link {
  color: var(--color-text-light);
}

.nav--scrolled .nav__link:hover {
  color: var(--color-text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--color-white);
  transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav--scrolled .nav__burger span {
  background: var(--color-text);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav__mobile a:hover {
  opacity: 1;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 25, 21, 0.15) 0%, rgba(30, 25, 21, 0.05) 40%, rgba(30, 25, 21, 0.55) 100%),
    linear-gradient(90deg, rgba(30, 25, 21, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad) clamp(48px, 8vh, 96px);
  max-width: 800px;
  color: var(--color-white);
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.7);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.85);
  max-width: 50ch;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(250, 250, 247, 0.4);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(250, 250, 247, 0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-tan);
}

.btn--outline-dark:hover {
  border-color: var(--color-text);
}

.btn--sage {
  background: var(--color-sage);
  color: var(--color-white);
}

.btn--sage:hover {
  background: var(--color-sage-light);
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.7rem;
}

/* ========================================
   SECTION COMMON
   ======================================== */

.section {
  padding: var(--section-pad) var(--side-pad);
}

.section--warm {
  background: var(--color-bg-warm);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--dark .label {
  color: rgba(250, 250, 247, 0.5);
}

.section--dark p {
  color: rgba(250, 250, 247, 0.7);
}

.section__header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__header p {
  margin-top: 16px;
  color: var(--color-text-light);
}

.section--dark .section__header p {
  color: rgba(250, 250, 247, 0.6);
}

/* ========================================
   INTRO / ABOUT
   ======================================== */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.intro__text {
  max-width: 520px;
}

.intro__text .label {
  margin-bottom: 16px;
}

.intro__text h2 {
  margin-bottom: 24px;
}

.intro__text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.intro__text p:last-of-type {
  margin-bottom: 32px;
}

.intro__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.intro__image:hover img {
  transform: scale(1.03);
}

.intro__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(44, 36, 32, 0.06);
  pointer-events: none;
}

/* ========================================
   ROOMS
   ======================================== */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

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

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 25, 21, 0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 32px);
  color: var(--color-white);
  transition: background 0.4s ease;
}

.room-card:hover .room-card__overlay {
  background: linear-gradient(0deg, rgba(30, 25, 21, 0.8) 0%, rgba(30, 25, 21, 0.1) 60%);
}

.room-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 6px;
}

.room-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.5;
}

/* ========================================
   FEATURES / AMENITIES
   ======================================== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 32px;
}

.feature {
  text-align: center;
  padding: 24px 16px;
}

.feature__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 30ch;
  margin: 0 auto;
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.review {
  text-align: center;
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 64px);
  position: relative;
}

.review + .review {
  border-top: 1px solid rgba(250, 250, 247, 0.1);
}

.review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--color-white);
}

.review__author {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
}

.review__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* ========================================
   LOCATION
   ======================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.location__map {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-tan);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

.location__info h3 {
  margin-bottom: 20px;
}

.location__info p {
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.location__distances {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.distance {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.distance__place {
  font-weight: 500;
  font-size: 0.9rem;
}

.distance__dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-tan);
  min-width: 20px;
  transform: translateY(-4px);
}

.distance__value {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.location__actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   LANGUAGES
   ======================================== */

.languages {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lang-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-tan);
  color: var(--color-text-light);
  border-radius: 2px;
}

/* ========================================
   CTA BAND
   ======================================== */

.cta-band {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) var(--side-pad);
  background: var(--color-accent);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
}

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

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-band p {
  margin: 0 auto 36px;
  opacity: 0.85;
  font-size: 1.05rem;
}

.cta-band .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-band .btn--outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-dark);
  color: rgba(250, 250, 247, 0.6);
  padding: clamp(48px, 6vw, 80px) var(--side-pad) clamp(32px, 4vw, 48px);
}

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

.footer__brand {
  max-width: 320px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.45);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.35);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  color: rgba(250, 250, 247, 0.6);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(250, 250, 247, 0.3);
}

/* ========================================
   GALLERY STRIP (horizontal scroll)
   ======================================== */

.gallery-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--side-pad);
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-strip__item {
  flex: 0 0 auto;
  width: clamp(280px, 35vw, 420px);
  aspect-ratio: 3/2;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

.gallery-strip__item:hover img {
  transform: scale(1.04);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__image {
    aspect-ratio: 16/10;
    order: -1;
  }

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

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

  .location__map {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .room-card {
    aspect-ratio: 4/3;
  }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .location__actions {
    flex-direction: column;
  }
}

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__cta {
    display: none;
  }
}
