@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --wine: #6c1d2a;
  --wine-deep: #42101a;
  --gold: #ba9660;
  --ink: #24211f;
  --cream: #fbf7f0;
  --paper: #f2eadc;
  --line: rgba(36, 33, 31, .16);
  --heading-font: "Poppins", "Inter", Arial, sans-serif;
  --body-font: "Inter", Arial, sans-serif;
  --radius: 2px;
  --ease: 260ms ease;
  --header-h: 84px;
  --header-h-tablet: 68px;
  --header-h-mobile: 62px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.65 var(--body-font);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: .7rem;
  z-index: 99;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: transparent;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.site-header.is-solid {
  background: rgba(251, 247, 240, .97);
  color: var(--ink);
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

.brand {
  display: grid;
  line-height: 1;
  letter-spacing: .16em;
  white-space: nowrap;
  min-width: 0;
}

.brand span {
  font: 700 1.08rem var(--heading-font);
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .19em;
  margin-top: 7px;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav a {
  padding: .5rem 0;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--wine);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .65rem 1.15rem;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--ease), background var(--ease);
}

.button:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}

.button--nav {
  min-height: 40px;
  padding-inline: .9rem;
  font-size: .66rem;
}

.button--light {
  background: #fff;
  border-color: #fff;
  color: var(--wine);
}

.button--light:hover {
  background: var(--paper);
}

.button--small {
  min-height: 38px;
  font-size: .64rem;
  padding: .5rem .8rem;
}

.menu-toggle {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 720px;
  height: 100vh;
  position: relative;
  color: #fff;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__veil {
  z-index: 1;
  background: linear-gradient(90deg, rgba(19, 12, 12, .57), rgba(19, 12, 12, .17) 65%, rgba(19, 12, 12, .08));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  padding-top: max(var(--header-h), clamp(155px, 23vh, 220px));
  padding-bottom: 110px;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--gold);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: #fff;
}

.hero__name {
  margin: 0;
  font: 700 clamp(1.45rem, 3.2vw, 2.4rem) var(--heading-font);
  letter-spacing: .22em;
}

.hero__type {
  margin: .35rem 0 2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .65rem;
}

.hero h1 {
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  margin: 0 0 2rem;
  letter-spacing: -.04em;
  line-height: 1.05;
}

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

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: max(24px, calc((100vw - 1160px) / 2));
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.hero__scroll span {
  margin-left: .5rem;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- Highlights ---------- */

.highlights {
  background: var(--wine);
  color: #fff;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlights article {
  min-height: 137px;
  display: flex;
  gap: .85rem;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.highlights article:last-child {
  border-right: 0;
}

.highlights h2 {
  font: 500 .9rem var(--body-font);
}

.icon {
  font-size: 1.45rem;
  color: #e0c18a;
}

/* ---------- Section basics ---------- */

.section {
  padding: clamp(80px, 11vw, 140px) 0;
}

.section--tint {
  background: var(--paper);
}

.section--dark {
  background: var(--wine-deep);
  color: #fff;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading--light .eyebrow {
  color: #dfbf86;
}

.section-heading--light p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.welcome h2,
.section-heading h2,
.location h2,
.booking h2,
.contact h2 {
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
  letter-spacing: -.04em;
  margin: .1rem 0 1.5rem;
}

.welcome p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 540px;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: .25rem;
}

.text-link span {
  color: var(--wine);
  margin-left: .35rem;
}

/* ---------- Welcome / Location shared layout ---------- */

.welcome,
.location {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.framed-image {
  height: min(590px, 54vw);
  position: relative;
}

.framed-image:after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.welcome__copy {
  max-width: 460px;
}

/* ---------- Rooms ---------- */

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--cream);
}

.room-card__image {
  display: block;
  height: clamp(260px, 32vw, 400px);
  overflow: hidden;
}

.room-card img,
.gallery-item img {
  transition: transform .5s ease;
}

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

.room-card__body {
  padding: 1.5rem 1.5rem 1.7rem;
}

.room-card h3 {
  font: 700 1.5rem var(--heading-font);
  margin-bottom: .6rem;
}

.room-card p {
  font-size: .9rem;
  max-width: 370px;
}

.room-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem 1rem;
  margin-top: 1rem;
}

.room-card__actions .text-link {
  margin: 0;
}

/* ---------- Amenities ---------- */

.amenities__list {
  border-top: 1px solid var(--line);
}

.amenities__list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.amenity-mark {
  color: var(--gold);
  font: 700 1rem var(--heading-font);
}

.amenities h3 {
  font: 700 clamp(1.7rem, 3.5vw, 3rem) var(--heading-font);
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  display: block;
}

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

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

/* ---------- Location ---------- */

.location__map {
  min-height: 440px;
  background: linear-gradient(135deg, #dfd0b8, #b89b78);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font: 700 1.15rem var(--heading-font);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location address {
  font-style: normal;
  line-height: 1.9;
  margin: 0 0 1.7rem;
}

.location__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* ---------- Booking ---------- */

.booking {
  background: var(--wine);
  color: #fff;
  text-align: center;
}

.booking__inner {
  max-width: 760px;
}

.booking .eyebrow {
  color: #e2c18a;
}

.booking h2 {
  margin-bottom: .7rem;
}

.booking p {
  font-size: 1.1rem;
  margin: 0 auto 2rem;
}

.booking small {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .7);
}

/* ---------- Contact ---------- */

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.contact h2 {
  margin-bottom: 0;
}

.contact__details {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contact__details > a:not(.button) {
  font: 700 1.2rem var(--heading-font);
}

/* ---------- Footer ---------- */

.footer {
  background: #211817;
  color: #fff;
  padding: 4rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.brand--footer {
  display: inline-grid;
}

.footer p {
  color: #d6c7be;
  font: 700 1.15rem var(--heading-font);
  margin-top: .75rem;
}

.footer h2 {
  font: 700 .68rem var(--body-font);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.footer__grid a:not(.brand) {
  display: block;
  color: #d6c7be;
  margin: .45rem 0;
  font-size: .88rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 3rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .7rem;
  color: #c7b8ae;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  background: rgba(10, 8, 7, .94);
  padding: 5vh 5vw;
  place-items: center;
}

.lightbox:not([hidden]) {
  display: grid;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox p {
  color: #fff;
  margin: .9rem 0 0;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  right: 2rem;
  top: 1.2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Reveal-on-scroll (opacity only — no transform, no layer promotion) ---------- */

.reveal {
  opacity: 0;
  transition: opacity .6s ease;
}

.reveal.is-visible {
  opacity: 1;
}

/* ---------- Tablet ---------- */

@media (max-width: 820px) {
  html {
    scroll-padding-top: var(--header-h-tablet);
  }

  .site-header {
    height: var(--header-h-tablet);
    padding: 0 20px;
    gap: .6rem;
  }

  .hero__content {
    padding-top: max(var(--header-h-tablet), clamp(120px, 20vh, 200px));
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: .55rem;
    margin-left: auto;
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 20px 1.3rem;
    background: var(--cream);
    color: var(--ink);
    box-shadow: 0 8px 13px rgba(0, 0, 0, .06);
  }

  .site-nav.is-open {
    display: grid;
    gap: .2rem;
  }

  .site-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .button--nav {
    font-size: .58rem;
    padding-inline: .65rem;
  }

  .hero {
    min-height: 660px;
  }

  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights article {
    min-height: 104px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .highlights article:nth-child(2n) {
    border-right: 0;
  }

  .welcome,
  .location {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .framed-image {
    height: 68vw;
  }

  .framed-image:after {
    inset: 12px -12px -12px 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 190px 190px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: auto;
  }

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

  .contact {
    display: grid;
    justify-items: start;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 540px) {
  html {
    scroll-padding-top: var(--header-h-mobile);
  }

  .container {
    width: min(100% - 36px, 1160px);
  }

  .site-header {
    height: var(--header-h-mobile);
    gap: .45rem;
    padding: 0 16px;
  }

  .hero__content {
    padding-top: max(var(--header-h-mobile), clamp(110px, 18vh, 190px));
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: .82rem;
  }

  .brand small {
    display: none;
  }

  .button--nav {
    min-height: 35px;
    padding-inline: .55rem;
    font-size: .55rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1;
  }

  .highlights article {
    justify-content: flex-start;
    padding-left: 18px;
    gap: .55rem;
  }

  .highlights h2 {
    font-size: .76rem;
  }

  .section {
    padding: 76px 0;
  }

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

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

  .room-card__actions .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-rows: 230px 165px 165px;
    gap: 8px;
  }

  .location__map {
    min-height: 300px;
  }

  .location__actions {
    display: grid;
    justify-items: start;
  }

  .contact__details {
    display: grid;
    gap: .6rem;
  }

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

  .footer__grid > div:first-child {
    grid-column: span 2;
  }

  .footer__bottom {
    display: grid;
    gap: 1rem;
  }

  .footer__bottom a {
    justify-self: start;
  }
}

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

  * {
    transition-duration: .01ms !important;
  }
}