:root {
  --ink: #182019;
  --muted: #6d7169;
  --paper: #f8f4eb;
  --mist: #e8eee4;
  --sage: #879778;
  --leaf: #40543e;
  --wine: #8f3f35;
  --sun: #d9a15b;
  --sea: #6f9fa6;
  --night: #111711;
  --max: 1180px;
  --soft: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 161, 91, 0.22), transparent 32rem),
    radial-gradient(circle at 86% 34%, rgba(111, 159, 166, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 42%, #eef3e9 100%);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.brand,
.nav-toggle,
.site-nav {
  pointer-events: auto;
}

.brand {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.brand-mark {
  display: none;
}

.brand strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.brand small {
  display: block;
  width: fit-content;
  padding: 7px 12px;
  color: #fff;
  background: rgba(24, 32, 25, 0.84);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  backdrop-filter: blur(12px);
}

.site-nav {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  color: transparent;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 34px rgba(42, 48, 38, 0.1);
  font-size: 0;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.site-nav a:hover {
  color: transparent;
  background: var(--leaf);
}

.site-nav .nav-cta {
  background: var(--wine);
}

.site-nav a::before {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.site-nav a:nth-child(1)::before {
  content: "01";
}

.site-nav a:nth-child(2)::before {
  content: "02";
}

.site-nav a:nth-child(3)::before {
  content: "03";
}

.site-nav a:nth-child(4)::before {
  content: "04";
}

.site-nav a:nth-child(5)::before {
  content: "GO";
  color: #fff;
}

.site-nav a:hover::after {
  content: attr(href);
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  max-width: 180px;
  padding: 8px 11px;
  color: #fff;
  background: var(--night);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 16px 38px rgba(42, 48, 38, 0.18);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100svh;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(20px, 0.34fr) minmax(320px, 0.9fr) minmax(300px, 0.72fr) minmax(20px, 0.24fr);
  grid-template-rows: 138px 1fr auto;
  gap: clamp(22px, 4vw, 64px);
  padding: 0 72px 34px 24px;
}

.hero picture {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  align-self: center;
  overflow: hidden;
  border-radius: 48% 48% 24px 24px;
  transform: rotate(1.2deg);
  box-shadow: 0 28px 90px rgba(42, 48, 38, 0.18);
}

.hero picture img {
  height: 100%;
  min-height: 64vh;
  max-height: 760px;
  object-fit: cover;
}

.hero-overlay {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  align-self: center;
  justify-self: center;
  width: min(36vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(217, 161, 91, 0.22);
  filter: blur(4px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  align-self: center;
  max-width: 820px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 7.8vw, 6.9rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(3rem, 6.4vw, 6.3rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 500;
}

.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 36px rgba(42, 48, 38, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--leaf);
}

.button.ghost {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.52);
}

.booking-strip {
  position: relative;
  z-index: 4;
  grid-column: 2 / 4;
  grid-row: 3 / 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  max-width: 980px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: 0 22px 70px rgba(42, 48, 38, 0.16);
  backdrop-filter: blur(18px);
}

.booking-strip label {
  display: grid;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(248, 244, 235, 0.66);
  border-radius: 24px;
}

.booking-strip span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-strip input,
.booking-strip select {
  min-width: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  outline: 0;
}

.trust-band {
  max-width: var(--max);
  margin: 88px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.trust-band div {
  min-height: 150px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: 999px 999px 22px 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.trust-band strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.stay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.64fr);
  gap: 28px;
}

.stay-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: end;
}

.stay-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 260px 260px 28px 28px;
}

.stay-card > div {
  padding: 12px 0 42px;
}

.tag {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: #fff;
  background: var(--wine);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stay-card p:not(.tag),
.compact-card p,
.amenities-grid p,
.experience-copy p {
  color: var(--muted);
}

dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}

dl div {
  min-width: 136px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.compact-card {
  display: grid;
  gap: 12px;
  padding: 30px 0;
}

.compact-card + .compact-card {
  margin-top: 18px;
}

.compact-card .icon,
.amenities-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.compact-card strong {
  color: var(--wine);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.experience {
  max-width: 1440px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 86px);
  align-items: center;
  padding: 80px 24px;
}

.experience-media {
  order: 2;
  transform: rotate(1.3deg);
}

.experience-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 34px 34px 240px 34px;
  box-shadow: 0 28px 80px rgba(42, 48, 38, 0.16);
}

.experience-copy {
  max-width: 640px;
  padding-left: clamp(0px, 4vw, 80px);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 11px 14px;
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.amenities-section {
  padding-top: 90px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amenities-grid div {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
}

.amenities-grid div:nth-child(2n) {
  transform: translateY(28px);
  background: rgba(232, 238, 228, 0.78);
}

.amenities-grid span {
  background: var(--sea);
}

.amenities-grid strong {
  display: block;
  font-size: 1.2rem;
}

.gallery-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 130px 24px;
}

.gallery-copy {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.08fr 0.76fr;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
}

.gallery-grid img {
  height: 540px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 24px 70px rgba(42, 48, 38, 0.14);
}

.gallery-grid img:first-child {
  height: 660px;
  border-radius: 34px 34px 999px 999px;
}

.gallery-grid img:nth-child(2) {
  order: -1;
}

.map-card {
  min-height: 460px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 34px;
  color: #fff;
  border-radius: 40px 220px 40px 40px;
  background:
    linear-gradient(150deg, rgba(17, 23, 17, 0.88), rgba(64, 84, 62, 0.6)),
    url("assets/breakfast-terrace.png") center / cover;
  box-shadow: 0 30px 90px rgba(42, 48, 38, 0.2);
}

.map-card span {
  width: fit-content;
  padding: 8px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-card strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.map-card small {
  color: rgba(255, 255, 255, 0.76);
}

.reviews-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 0 24px 120px;
}

.review {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.52);
}

.review:nth-child(2) {
  margin-top: 68px;
}

.review p {
  margin: 0 0 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1;
}

.review strong {
  color: var(--wine);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-section {
  min-height: 620px;
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 90px 24px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(17, 23, 17, 0.38), rgba(17, 23, 17, 0.58)),
    url("assets/suite-interior.png") center / cover;
  border-radius: 60px 60px 0 0;
}

.cta-section h2 {
  max-width: 900px;
}

.cta-section .eyebrow {
  margin: 0;
  color: #ffd3a4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: min(320px, calc(100vw - 48px));
    border-radius: 28px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 136px;
  }

  .hero picture,
  .hero-content,
  .booking-strip,
  .hero-overlay {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-content {
    order: 1;
    padding: 0;
  }

  .hero picture {
    order: 2;
    border-bottom-left-radius: 180px;
  }

  .hero picture img {
    min-height: 520px;
  }

  .hero-overlay {
    display: none;
  }

  .booking-strip {
    order: 3;
    grid-template-columns: 1fr 1fr;
  }

  .booking-strip .button {
    grid-column: 1 / -1;
  }

  .trust-band,
  .amenities-grid,
  .reviews-section,
  .intro-section,
  .location-section,
  .experience,
  .stay-grid,
  .stay-card {
    grid-template-columns: 1fr;
  }

  .experience-media {
    order: 0;
  }

  .amenities-grid div:nth-child(2n),
  .review:nth-child(2) {
    transform: none;
    margin-top: 0;
  }

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

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: auto;
    min-height: 360px;
    border-radius: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .brand strong {
    font-size: 2.2rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 104px 14px 24px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero picture img {
    min-height: 410px;
  }

  .booking-strip {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .section,
  .gallery-section {
    padding: 78px 14px;
  }

  .experience {
    padding: 50px 14px;
  }

  .stay-card img {
    min-height: 380px;
  }

  .trust-band {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 14px;
  }

  .trust-band div {
    min-height: 126px;
    padding: 18px;
  }

  .amenities-grid,
  .reviews-section {
    gap: 14px;
  }

  .reviews-section {
    padding: 0 14px 78px;
  }

  .map-card {
    border-radius: 32px 130px 32px 32px;
  }

  .site-footer {
    flex-direction: column;
  }
}
