:root {
  --font-sans: "DM Sans";
  --font-display: "Playfair Display";
  --cream: #fff7ec;
  --cream-deep: #f3e6d4;
  --paper: #fffaf3;
  --ink: #29160f;
  --muted: #75665e;
  --orange: #ed6b2c;
  --orange-bright: #ff7a30;
  --terracotta: #a73f1d;
  --terracotta-dark: #67220f;
  --brown: #2a160e;
  --line: rgba(42, 22, 14, 0.14);
  --shadow: 0 24px 70px rgba(64, 25, 9, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
a,
summary {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--orange-bright);
}

.page-shell {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.section-pad {
  padding: 144px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #ffc092;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 3.8vw, 60px);
  line-height: 1.08;
}

.section-lead {
  color: #55443a;
  font-size: 23px;
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
}

.hero-backdrop,
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(31, 12, 5, 0.96) 0%,
      rgba(43, 17, 6, 0.86) 36%,
      rgba(87, 31, 10, 0.36) 68%,
      rgba(20, 9, 5, 0.18) 100%
    ),
    radial-gradient(circle at 72% 44%, rgba(232, 87, 22, 0.22), transparent 38%),
    url("./assets/hero-night.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 8, 2, 0.35), transparent 28%),
    linear-gradient(0deg, rgba(27, 9, 3, 0.45), transparent 36%);
  content: "";
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  width: min(1520px, calc(100% - 64px));
  min-height: 144px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 247, 236, 0.22);
}

.brand {
  display: inline-flex;
  width: fit-content;
  padding: 12px 20px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 12px 32px rgba(31, 10, 2, 0.18);
}

.brand img {
  width: 268px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3.4vw, 60px);
  font-size: 17px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(37, 13, 4, 0.36);
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  border-color: var(--orange-bright);
  background: var(--terracotta);
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(400px, 0.72fr);
  align-items: end;
  gap: 80px;
  min-height: 730px;
  padding-top: 100px;
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 900px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
  font-size: clamp(58px, 5.6vw, 90px);
  line-height: 0.98;
  text-shadow: 0 10px 50px rgba(30, 8, 1, 0.3);
}

.hero h1 em {
  color: #ffa260;
  font-weight: 500;
}

.hero-lead {
  max-width: 780px;
  margin-bottom: 38px;
  color: rgba(255, 247, 236, 0.88);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 68px;
  padding: 0 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-bright), #dc521c);
  box-shadow: 0 18px 40px rgba(193, 63, 15, 0.34);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.primary-cta:hover {
  box-shadow: 0 22px 52px rgba(193, 63, 15, 0.48);
  transform: translateY(-3px);
}

.cta-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--terracotta);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 2px solid currentColor;
  color: var(--terracotta);
  font-weight: 800;
  line-height: 1.25;
}

.light-link {
  color: var(--cream);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: rgba(255, 247, 236, 0.68);
  font-size: 15px;
  font-weight: 700;
}

.hero-note span {
  color: var(--orange-bright);
  font-size: 11px;
}

.hero-review {
  align-self: end;
  margin-bottom: 28px;
  padding: 36px;
  border: 1px solid rgba(255, 222, 198, 0.3);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(99, 38, 15, 0.84),
    rgba(40, 14, 5, 0.75)
  );
  box-shadow: 0 32px 70px rgba(23, 7, 1, 0.3);
  backdrop-filter: blur(18px);
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 247, 236, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stars {
  color: #ffad66;
  letter-spacing: 0.12em;
}

.hero-review blockquote {
  margin: 32px 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 30px;
  font-style: italic;
  line-height: 1.35;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  font-family: var(--font-display), Georgia, serif;
  font-weight: 700;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person small {
  color: rgba(255, 247, 236, 0.62);
}

.trust-rail {
  position: relative;
  z-index: 4;
  background: var(--terracotta);
  color: var(--cream);
}

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

.trust-grid p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 92px;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid p > span:not(.stars) {
  color: #ffc092;
  font-size: 10px;
}

.story {
  background:
    radial-gradient(circle at 9% 10%, rgba(237, 107, 44, 0.1), transparent 21%),
    var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.82fr);
  align-items: center;
  gap: clamp(80px, 8vw, 140px);
}

.story-collage {
  position: relative;
  min-height: 720px;
}

.story-main-image,
.story-detail-image,
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.story-main-image {
  position: absolute;
  inset: 0 12% 12% 0;
  border-radius: 180px 28px 180px 28px;
  box-shadow: var(--shadow);
}

.story-detail-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  border: 12px solid var(--cream);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.story-main-image img,
.story-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.distance-stamp {
  position: absolute;
  top: 7%;
  right: 4%;
  display: grid;
  width: 166px;
  height: 166px;
  place-content: center;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 20px 44px rgba(102, 37, 11, 0.24);
  color: #fff;
  text-align: center;
  transform: rotate(6deg);
}

.distance-stamp strong,
.distance-stamp span {
  display: block;
}

.distance-stamp strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 45px;
  line-height: 1;
}

.distance-stamp span {
  max-width: 100px;
  margin: 5px auto 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.story-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.story-facts {
  display: grid;
  gap: 0;
  margin: 46px 0 34px;
}

.story-facts > div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.story-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}

.story-facts dt {
  color: var(--orange);
  font-family: var(--font-display), Georgia, serif;
  font-size: 26px;
}

.story-facts dd {
  margin: 0;
}

.story-facts strong,
.story-facts span {
  display: block;
}

.story-facts strong {
  font-size: 19px;
}

.story-facts span {
  color: var(--muted);
}

.numbers-section {
  padding: 62px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.numbers-grid > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.numbers-grid > div:last-child {
  border-right: 0;
}

.numbers-grid strong {
  color: var(--orange);
  font-family: var(--font-display), Georgia, serif;
  font-size: 64px;
  line-height: 1;
}

.numbers-grid span {
  max-width: 170px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

.accommodations {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 68px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 20px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.room-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.room-image {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.room-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(39, 14, 4, 0.46));
  content: "";
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.room-number {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.room-body {
  padding: 32px;
}

.room-body h3 {
  margin-bottom: 14px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 34px;
}

.room-body p {
  min-height: 86px;
  color: var(--muted);
}

.room-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 26px;
  margin: 0 0 26px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.room-body li {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: #5d473a;
  font-size: 13px;
  font-weight: 700;
}

.room-body a {
  display: inline-flex;
  gap: 10px;
  color: var(--terracotta);
  font-weight: 800;
}

.amenities {
  padding: 110px 0;
  background: linear-gradient(120deg, var(--terracotta-dark), var(--terracotta));
  color: var(--cream);
}

.amenities-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 110px;
}

.amenities h2 {
  margin-bottom: 0;
}

.amenities ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenities li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 800;
}

.amenities li span {
  color: #ffb57d;
  font-family: var(--font-display), Georgia, serif;
  font-size: 18px;
}

.breakfast {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(237, 107, 44, 0.1), transparent 24%),
    var(--cream);
}

.breakfast-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 100px;
}

.breakfast-copy {
  max-width: 650px;
}

.breakfast-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.breakfast-points p {
  display: grid;
  grid-template-columns: 44px 1fr;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.breakfast-points p > span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-family: var(--font-display), Georgia, serif;
}

.breakfast-points strong,
.breakfast-points small {
  display: block;
}

.breakfast-points small {
  color: var(--muted);
  line-height: 1.45;
}

.breakfast-gallery {
  position: relative;
  min-height: 690px;
}

.breakfast-gallery img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.breakfast-primary {
  inset: 0 0 13% 8%;
  width: 92%;
  height: 87%;
  border-radius: 30px 160px 30px 30px;
}

.breakfast-secondary {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 42%;
  border: 12px solid var(--cream);
  border-radius: 28px;
}

.gallery-section {
  background: var(--brown);
  color: var(--cream);
}

.gallery-section .split-heading > p {
  color: rgba(255, 247, 236, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 310px 310px;
  gap: 20px;
}

.gallery-grid figure {
  position: relative;
  border-radius: 24px;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(34, 11, 3, 0.34));
  content: "";
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

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

.gallery-wide {
  display: none;
}

.reviews {
  background: var(--paper);
}

.reviews-heading {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto 68px;
  text-align: center;
}

.reviews-heading .eyebrow {
  justify-content: center;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.rating-summary .stars {
  font-size: 20px;
}

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

.review-card {
  position: relative;
  min-height: 360px;
  padding: 42px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--cream);
}

.review-card:nth-child(2) {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-18px);
}

.quote-mark {
  display: block;
  height: 62px;
  color: var(--orange);
  font-family: var(--font-display), Georgia, serif;
  font-size: 88px;
  line-height: 1;
}

.review-card:nth-child(2) .quote-mark {
  color: #ffc092;
}

.review-card blockquote {
  margin: 22px 0 38px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
  line-height: 1.45;
}

.review-card figcaption {
  position: absolute;
  right: 42px;
  bottom: 34px;
  left: 42px;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  color: var(--muted);
}

.review-card:nth-child(2) figcaption {
  color: rgba(255, 247, 236, 0.76);
}

.review-card figcaption strong {
  color: var(--ink);
}

.review-card:nth-child(2) figcaption strong {
  color: var(--cream);
}

.location {
  background: var(--cream);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  overflow: hidden;
  border-radius: 36px;
  background: var(--terracotta);
  box-shadow: var(--shadow);
  color: var(--cream);
}

.location-image {
  min-height: 670px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-copy {
  align-self: center;
  padding: 74px;
}

.location-copy p:not(.eyebrow) {
  color: rgba(255, 247, 236, 0.8);
  font-size: 20px;
}

.location-copy ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 38px 0 44px;
  list-style: none;
}

.location-copy li {
  padding: 15px 0 15px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 4px 50%, #ffc092 0 4px, transparent 5px);
  font-weight: 700;
}

.location-copy li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cream-cta {
  background: var(--cream);
  box-shadow: none;
  color: var(--terracotta);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 120px;
}

.faq-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 30px 54px 30px 0;
  cursor: pointer;
  font-family: var(--font-display), Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--orange);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 28px;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 50px 28px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
  text-align: center;
}

.final-cta-bg {
  background-image:
    linear-gradient(rgba(50, 17, 5, 0.83), rgba(50, 17, 5, 0.89)),
    url("./assets/pool-night.jpg");
  background-position: center;
  background-size: cover;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1040px;
  padding: 120px 0;
}

.final-cta-content .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 940px;
  font-size: clamp(48px, 5vw, 76px);
}

.final-cta p {
  max-width: 720px;
  margin-bottom: 38px;
  color: rgba(255, 247, 236, 0.78);
  font-size: 22px;
}

.final-cta small {
  margin-top: 24px;
  color: rgba(255, 247, 236, 0.62);
}

.site-footer {
  padding: 78px 0 24px;
  background: #1d0e09;
  color: rgba(255, 247, 236, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-brand {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--cream);
}

.footer-brand img {
  width: 280px;
}

.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-top strong {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top a:hover {
  color: #ffb57d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 8px 22px 8px 9px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(79, 25, 6, 0.32);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}

.floating-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--terracotta);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(100% - 56px, 1100px);
  }

  .site-header {
    grid-template-columns: 270px 1fr auto;
    width: calc(100% - 44px);
  }

  .brand img {
    width: 220px;
  }

  .main-nav {
    gap: 24px;
    font-size: 15px;
  }

  .hero-content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 78px);
  }

  .story-grid,
  .breakfast-grid {
    gap: 60px;
  }

  .story-collage,
  .breakfast-gallery {
    min-height: 600px;
  }

  .room-body {
    padding: 26px;
  }

  .room-image {
    height: 310px;
  }

  .amenities-layout,
  .faq-grid {
    gap: 70px;
  }

  .location-copy {
    padding: 54px;
  }
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .section-pad {
    padding: 100px 0;
  }

  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    padding: 14px 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 100px;
  }

  .hero-review {
    width: min(560px, 100%);
    margin: 0;
  }

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

  .trust-grid p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .story-grid,
  .breakfast-grid,
  .amenities-layout,
  .location-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 720px;
  }

  .story-collage,
  .breakfast-gallery {
    min-height: 660px;
  }

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

  .numbers-grid > div {
    border-right: 0;
  }

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

  .room-grid,
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 690px;
    margin: 0 auto;
  }

  .room-body p {
    min-height: 0;
  }

  .amenities {
    padding: 90px 0;
  }

  .breakfast-copy {
    max-width: none;
  }

  .review-card:nth-child(2) {
    transform: none;
  }

  .location-image {
    min-height: 500px;
  }

  .faq-heading {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: calc(100% - 36px);
  }

  .section-pad {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(38px, 10vw, 48px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 28px);
    min-height: 112px;
  }

  .brand {
    padding: 9px 12px;
    border-radius: 13px;
  }

  .brand img {
    width: 172px;
  }

  .header-cta {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
    border-color: var(--orange);
    background: var(--orange);
    font-size: 0;
  }

  .header-cta span {
    font-size: 22px;
  }

  .hero-backdrop {
    background-image:
      linear-gradient(
        90deg,
        rgba(31, 12, 5, 0.94) 0%,
        rgba(43, 17, 6, 0.79) 70%,
        rgba(87, 31, 10, 0.48) 100%
      ),
      url("./assets/hero-night.jpg");
    background-position: 62% center;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 1;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta {
    width: 100%;
    padding: 0 20px;
    font-size: 16px;
    text-align: center;
  }

  .hero-review {
    padding: 26px;
  }

  .hero-review blockquote {
    font-size: 25px;
  }

  .review-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .trust-grid p {
    justify-content: flex-start;
    min-height: 68px;
    padding-left: 20px;
    border-right: 0;
  }

  .story-collage {
    min-height: 470px;
  }

  .story-main-image {
    inset: 0 8% 10% 0;
    border-radius: 100px 22px 100px 22px;
  }

  .story-detail-image {
    width: 50%;
    height: 40%;
    border-width: 7px;
  }

  .distance-stamp {
    width: 118px;
    height: 118px;
    border-width: 5px;
  }

  .distance-stamp strong {
    font-size: 34px;
  }

  .distance-stamp span {
    font-size: 9px;
  }

  .story-facts > div {
    grid-template-columns: 48px 1fr;
  }

  .numbers-grid > div {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .numbers-grid span {
    text-align: center;
  }

  .room-image {
    height: 280px;
  }

  .amenities-layout {
    gap: 40px;
  }

  .amenities ul {
    grid-template-columns: 1fr;
  }

  .breakfast-points {
    grid-template-columns: 1fr;
  }

  .breakfast-gallery {
    min-height: 470px;
  }

  .breakfast-primary {
    inset: 0 0 10% 0;
    width: 100%;
    height: 90%;
    border-radius: 24px 90px 24px 24px;
  }

  .breakfast-secondary {
    width: 58%;
    height: 36%;
    border-width: 7px;
  }

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

  .gallery-large {
    grid-row: auto;
  }

  .gallery-wide {
    display: none;
  }

  .review-card {
    min-height: 400px;
    padding: 32px;
  }

  .review-card figcaption {
    right: 32px;
    left: 32px;
  }

  .location-image {
    min-height: 340px;
  }

  .location-copy {
    padding: 42px 26px;
  }

  .faq-list summary {
    font-size: 23px;
  }

  .final-cta {
    min-height: 690px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 11vw, 60px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 230px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
