:root {
  --burgundy: #7a2230;
  --burgundy-deep: #5c1823;
  --ink: #1a1716;
  --muted: #5c5652;
  --paper: #f3f1ee;
  --sand: #e4ddd4;
  --white: #ffffff;
  --line: rgba(26, 23, 22, 0.12);
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(122, 34, 48, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(228, 221, 212, 0.9), transparent 50%),
    linear-gradient(180deg, #f7f5f2 0%, var(--paper) 40%, #ebe7e1 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--burgundy);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(243, 241, 238, 0.92), rgba(243, 241, 238, 0.72));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 241, 238, 0.94);
}

.brand-mark img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 0;
}

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--burgundy);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--burgundy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 23, 22, 0.18) 0%, rgba(26, 23, 22, 0.28) 40%, rgba(26, 23, 22, 0.72) 100%),
    linear-gradient(90deg, rgba(92, 24, 35, 0.35), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3.5rem) clamp(2.5rem, 6vh, 4rem);
  max-width: 42rem;
  animation: rise-in 1s var(--ease) both;
}

.hero-place {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-brand {
  margin: 0;
  line-height: 0.92;
}

.hero-brand-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 6.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-brand-sub {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #f0d8dc;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

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

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact .btn-ghost {
  color: var(--ink);
  border-color: rgba(26, 23, 22, 0.28);
}

.contact .btn-ghost:hover {
  background: rgba(26, 23, 22, 0.04);
  color: var(--ink);
}

/* Intro */
.intro {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}

.intro-copy {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.intro h2,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--burgundy-deep);
}

.intro p,
.section-lead {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.section-title,
.section-lead {
  text-align: center;
}

/* Amenities */
.amenities {
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 9vw, 6rem);
}

.amenity-list {
  list-style: none;
  margin: 2.5rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  max-width: 52rem;
}

@media (min-width: 800px) {
  .amenity-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.amenity-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.amenity-icon {
  width: 3rem;
  height: 3rem;
  color: var(--burgundy);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

/* Gallery */
.gallery {
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(4rem, 9vw, 6rem);
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  min-height: 11rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item--tall img {
  min-height: 100%;
}

@media (min-width: 900px) {
  .gallery-item--tall {
    min-height: 100%;
  }

  .gallery-item--tall img {
    min-height: 28rem;
  }

  .gallery-item--wide img {
    min-height: 14rem;
  }
}

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

/* Contact */
.contact {
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 9vw, 6rem);
}

.contact-panel {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(228, 221, 212, 0.45));
  border-top: 1px solid rgba(122, 34, 48, 0.2);
  border-bottom: 1px solid rgba(122, 34, 48, 0.2);
}

.contact-details {
  margin: 2rem 0 0;
  font-style: normal;
  font-size: 1.05rem;
}

.contact-details p {
  margin: 0.55rem 0;
}

.contact-place {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--burgundy-deep);
}

.contact-details a {
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.contact-hours {
  color: var(--muted);
  font-weight: 300;
}

.contact-web a {
  color: var(--burgundy);
  letter-spacing: 0.04em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Footer */
.site-footer {
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem) 2.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.site-footer p {
  margin: 0;
}

/* Motion */
@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(0, -1.5%, 0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-content,
  .reveal,
  .gallery-item img,
  .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}
