:root {
  --brand: #f1bc0b;
  --brand-hover: #d9a406;
  --brand-ink: #332700;
  --ink: #1e1a17;
  --muted: #6f675f;
  --deep: #17140f;
  --deep-soft: #242019;
  --brown: #6f3d20;
  --paper: #fffaf3;
  --paper-soft: #f6eee4;
  --cream: #f0dfcd;
  --surface: #ffffff;
  --line: rgba(30, 26, 23, 0.13);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 14px 34px rgba(32, 23, 16, 0.09);
  --shadow-lg: 0 28px 80px rgba(20, 14, 9, 0.2);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1220px;
  --header-height: 88px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.7vw, 8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.3vw, 5.3rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  letter-spacing: -0.025em;
}

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

.section {
  padding-block: clamp(92px, 11vw, 150px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.eyebrow-light {
  color: var(--brand);
}

.lead {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 12px 30px rgba(241, 188, 11, 0.22);
}

.button-primary:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  box-shadow: 0 16px 34px rgba(241, 188, 11, 0.3);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(19, 16, 12, 0.28);
  color: #fff;
  backdrop-filter: blur(14px);
}

.button-glass:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}

.button-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-lg {
  min-height: 58px;
  padding-inline: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  min-height: var(--header-height);
  padding: 8px clamp(20px, 4vw, 64px);
  color: #fff;
  transition: min-height 240ms ease, background 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header::after {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 0;
  left: clamp(20px, 4vw, 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: opacity 240ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(23, 20, 15, 0.94);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: 68px;
}

.brand img {
  width: 100%;
  height: auto;
  transform: translateY(-26px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: max(690px, 100svh);
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 54%;
  animation: hero-settle 1.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.83) 0%, rgba(11, 10, 8, 0.56) 38%, rgba(11, 10, 8, 0.08) 72%),
    linear-gradient(0deg, rgba(12, 10, 7, 0.78) 0%, rgba(12, 10, 7, 0.02) 43%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.48) 0%, transparent 23%);
}

@keyframes hero-settle {
  from { opacity: 0.35; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
  padding-top: calc(var(--header-height) + 84px);
  padding-bottom: clamp(102px, 11vh, 138px);
}

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

.hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

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

.hero-facts {
  display: grid;
  gap: 1px;
  width: 230px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(18, 15, 11, 0.36);
  list-style: none;
  backdrop-filter: blur(16px);
}

.hero-facts li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-light);
}

.hero-facts li:last-child {
  border-bottom: 0;
}

.hero-facts strong {
  color: var(--brand);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Destaque textual (sem valor numerico) nos fatos do hero. */
.hero-facts li.hero-fact-text {
  grid-template-columns: 1fr;
  gap: 3px;
}

.hero-facts li.hero-fact-text strong {
  font-size: 1.3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero-scroll span::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--brand);
  content: "";
  animation: scroll-line 1.7s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

.intro-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(241, 188, 11, 0.08), transparent 27%),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(460px, 1.17fr);
  align-items: center;
  gap: clamp(62px, 8vw, 120px);
}

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

.intro-copy .lead {
  color: var(--ink);
}

.intro-copy .text-link {
  margin-top: 20px;
}

.intro-media {
  position: relative;
  min-height: 680px;
}

.intro-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-photo-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 82%;
}

.intro-photo-float {
  bottom: 0;
  left: 0;
  width: 48%;
  height: 44%;
  border: 9px solid var(--paper);
}

.intro-seal {
  position: absolute;
  right: -28px;
  bottom: 54px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  width: 174px;
  min-height: 96px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 18px 42px rgba(56, 41, 8, 0.18);
  transform: rotate(-4deg);
}

.intro-seal img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0.12);
}

.intro-seal span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.benefits-section::before {
  position: absolute;
  top: -340px;
  left: -180px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(241, 188, 11, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(241, 188, 11, 0.025), 0 0 0 220px rgba(241, 188, 11, 0.018);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.65);
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-card {
  position: relative;
  min-height: 365px;
  padding: 42px 30px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease, transform 220ms ease;
}

.benefit-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-6px);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 68px;
  border: 1px solid rgba(241, 188, 11, 0.34);
  border-radius: 50%;
  background: rgba(241, 188, 11, 0.08);
  color: var(--brand);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
}

.benefit-number {
  position: absolute;
  top: 44px;
  right: 28px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.benefit-card h3 {
  font-size: 2rem;
  line-height: 1.06;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 64px;
}

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

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

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.stay-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stay-card figure {
  position: relative;
  height: clamp(330px, 36vw, 500px);
  margin: 0;
  overflow: hidden;
}

.stay-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 11, 8, 0.42), transparent 42%);
  content: "";
}

.stay-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stay-card:hover figure img {
  transform: scale(1.045);
}

.stay-card:nth-child(1) figure img {
  object-position: center 48%;
}

.stay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.5);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.stay-tag svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.stay-content {
  padding: clamp(28px, 4vw, 46px);
}

.stay-content h3 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.stay-content > p:not(.eyebrow) {
  color: var(--muted);
}

.stay-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 26px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.stay-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.stay-content li svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--brown);
}

.immersion-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(860px, 92svh);
  overflow: hidden;
  color: #fff;
}

.immersion-section > img,
.immersion-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.immersion-section > img {
  object-fit: cover;
  object-position: center;
}

.immersion-shade {
  background: linear-gradient(0deg, rgba(11, 9, 7, 0.83), rgba(11, 9, 7, 0.06) 64%);
}

.immersion-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.immersion-copy h2 {
  max-width: 920px;
}

.immersion-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.gallery-section {
  overflow: hidden;
  background: var(--paper);
}

.gallery-section .section-heading {
  margin-bottom: 44px;
}

.gallery-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-nav button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.gallery-nav button:hover {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}

.gallery-nav svg {
  width: 19px;
  height: 19px;
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: 100%;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2)) 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

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

.gallery-item {
  position: relative;
  flex: 0 0 clamp(280px, 28vw, 430px);
  height: clamp(370px, 41vw, 570px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.gallery-item-wide {
  flex-basis: clamp(360px, 42vw, 620px);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 10, 8, 0.5), transparent 42%);
  content: "";
  opacity: 0.65;
  transition: opacity 220ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-section {
  background: var(--cream);
}

.guest-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.guest-heading {
  position: sticky;
  top: 110px;
}

.guest-heading p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.guest-notes {
  border-top: 1px solid rgba(30, 26, 23, 0.18);
}

.guest-notes article {
  display: grid;
  grid-template-columns: 58px 0.55fr 1fr;
  align-items: start;
  gap: 28px;
  padding-block: 36px;
  border-bottom: 1px solid rgba(30, 26, 23, 0.18);
}

.guest-notes article > svg {
  width: 28px;
  height: 28px;
  color: var(--brown);
}

.guest-notes h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.08;
}

.guest-notes p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reserve-section {
  position: relative;
  padding-block: clamp(92px, 10vw, 138px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 188, 11, 0.15), transparent 31%),
    var(--deep);
  color: #fff;
}

.reserve-section::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(241, 188, 11, 0.15);
  border-radius: 50%;
  content: "";
}

.reserve-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.reserve-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.reserve-trust {
  display: grid;
  gap: 12px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.reserve-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.reserve-trust svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.reserve-frame-wrap {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 1.6vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #f6f0e9;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
}

.reserve-frame {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  border-radius: 20px;
  background: #f6f0e9;
  transition: height 260ms ease;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 110px;
}

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

.faq-heading .button {
  margin-top: 18px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 4px;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
}

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

.faq-list summary svg {
  width: 21px;
  height: 21px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 0;
  padding: 0 56px 30px 4px;
  color: var(--muted);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(410px, 0.85fr);
  min-height: 690px;
  background: var(--deep-soft);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 690px;
  border: 0;
  filter: saturate(0.72) contrast(1.03);
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 7vw, 100px);
  color: #fff;
}

.location-card h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.location-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.location-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  width: 100%;
  margin: 26px 0 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.location-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 650;
}

.location-card li svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.site-footer {
  padding: 78px 0 28px;
  background: #0d0b08;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) 0.6fr 1fr 0.55fr;
  gap: clamp(36px, 6vw, 88px);
  padding-bottom: 64px;
}

.footer-brand img {
  width: 240px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  transition: color 160ms ease;
  overflow-wrap: anywhere;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-row a:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--brand-ink);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.mobile-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 28px;
  border: 0;
  background: rgba(10, 8, 6, 0.96);
  color: #fff;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  place-items: center;
  gap: 18px;
}

.lightbox::backdrop {
  background: rgba(10, 8, 6, 0.96);
}

.lightbox figure {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 104px);
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox figcaption {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 650;
}

.lightbox button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.lightbox button:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--brand-ink);
}

.lightbox button svg {
  width: 22px;
  height: 22px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.js [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 185px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.66rem;
  }

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

  .benefit-card:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .intro-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }

  .intro-media {
    min-height: 580px;
  }

  .guest-notes article {
    grid-template-columns: 48px 0.7fr 1fr;
    gap: 20px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

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

  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 74px;
    padding-inline: 20px;
  }

  .site-header::after {
    right: 20px;
    left: 20px;
  }

  .brand {
    width: 180px;
    height: 58px;
  }

  .brand img {
    transform: translateY(-22px);
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 110px 34px 46px;
    visibility: hidden;
    background: rgba(16, 14, 10, 0.985);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .menu-open .main-nav {
    z-index: 98;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-open .brand,
  .menu-open .nav-toggle,
  .menu-open .header-cta {
    position: relative;
    z-index: 99;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 8vw, 3.1rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    grid-column: 3;
    min-height: 44px;
    padding-inline: 17px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 116px;
  }

  .hero-facts {
    display: flex;
    width: 100%;
  }

  .hero-facts li {
    flex: 1;
    grid-template-columns: 1fr;
    gap: 4px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .hero-facts li:last-child {
    border-right: 0;
  }

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

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

  .intro-media {
    width: min(100%, 720px);
    min-height: 640px;
    margin-inline: auto;
  }

  .intro-seal {
    right: 0;
  }

  .split-heading,
  .reserve-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .guest-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .guest-heading,
  .faq-heading {
    position: static;
  }

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

  .location-map {
    min-height: 480px;
  }

  .location-map iframe {
    min-height: 480px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.75rem, 12.7vw, 4rem);
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 84px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 14px;
  }

  .site-header::after {
    right: 14px;
    left: 14px;
  }

  .brand {
    width: 160px;
    height: 54px;
  }

  .brand img {
    transform: translateY(-20px);
  }

  .nav-toggle {
    grid-column: 2;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    object-position: 59% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 10, 8, 0.74), rgba(11, 10, 8, 0.16)),
      linear-gradient(0deg, rgba(12, 10, 7, 0.88), rgba(12, 10, 7, 0.08) 72%),
      linear-gradient(180deg, rgba(8, 7, 5, 0.5), transparent 24%);
  }

  .hero-content {
    gap: 32px;
    padding-top: 125px;
    padding-bottom: 100px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    border-radius: 17px;
  }

  .hero-facts li {
    min-height: 78px;
    padding: 11px 9px;
    text-align: center;
  }

  .hero-facts strong {
    font-size: 1.45rem;
  }

  .hero-facts span {
    font-size: 0.58rem;
  }

  .hero-scroll {
    display: none;
  }

  .intro-media {
    min-height: 480px;
  }

  .intro-photo-main {
    width: 88%;
    height: 80%;
  }

  .intro-photo-float {
    width: 58%;
    height: 42%;
    border-width: 6px;
  }

  .intro-seal {
    right: -4px;
    bottom: 38px;
    grid-template-columns: 42px 1fr;
    width: 145px;
    min-height: 78px;
    border-radius: 17px;
  }

  .intro-seal img {
    width: 42px;
    height: 42px;
  }

  .intro-seal span {
    font-size: 0.62rem;
  }

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

  .benefit-card,
  .benefit-card:first-child {
    min-height: 0;
    padding: 30px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .benefit-icon {
    margin-bottom: 36px;
  }

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

  .stay-card figure {
    height: 330px;
  }

  .stay-content {
    padding: 28px 22px 32px;
  }

  .stay-content ul {
    padding-block: 20px;
  }

  .stay-content .button {
    width: 100%;
  }

  .immersion-section {
    min-height: 670px;
  }

  .immersion-section > img {
    object-position: 55% center;
  }

  .gallery-nav {
    justify-content: flex-start;
  }

  .gallery-track {
    gap: 12px;
    padding-inline: 14px;
  }

  .gallery-item,
  .gallery-item-wide {
    flex-basis: 82vw;
    height: 460px;
  }

  .guest-notes article {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .guest-notes article p {
    grid-column: 2;
  }

  .reserve-heading {
    margin-bottom: 30px;
  }

  .reserve-frame-wrap {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 5px;
    border-radius: 20px;
  }

  .reserve-frame {
    min-height: 690px;
    border-radius: 15px;
  }

  .faq-list summary {
    padding-block: 24px;
    font-size: 1.55rem;
  }

  .faq-list details p {
    padding-right: 16px;
  }

  .location-card {
    padding: 70px 24px;
  }

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

  .location-card .button {
    width: 100%;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-grid > div:nth-child(3) {
    grid-column: 1 / -1;
  }

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

  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 70px;
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 13, 10, 0.96);
    color: #fff;
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
  }

  .menu-open .mobile-bar {
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
  }

  .mobile-bar a:last-child {
    background: var(--brand);
    color: var(--brand-ink);
  }

  .mobile-bar svg {
    width: 18px;
    height: 18px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox[open] {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 7px;
  }

  .lightbox button {
    width: 40px;
    height: 40px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

/* Durante o formulário de reserva, o launcher da Asksuite não cobre os
   controles do checkout. Ele reaparece assim que a seção sai da viewport. */
body.is-reservation-in-view #chatbotmobile {
  display: none !important;
}

/* Carrinho flutuante da seleção de acomodações. O estado e os valores vêm do
   motor embutido, mas a barra vive na página principal para ficar presa à
   viewport real do celular. */
.reserve-selection-bar {
  display: none;
}

@media (max-width: 680px) {
  body.is-reserve-active.has-room-selection .reserve-selection-bar:not([hidden]) {
    position: fixed;
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: max(10px, env(safe-area-inset-left, 0px));
    z-index: 190;
    display: grid;
    gap: 9px;
    width: min(520px, calc(100vw - 20px));
    margin-inline: auto;
    padding: 11px;
    border: 1px solid rgba(241, 188, 14, 0.62);
    border-radius: 17px;
    background: rgba(255, 252, 247, 0.97);
    box-shadow: 0 18px 50px rgba(42, 29, 19, 0.24), 0 4px 16px rgba(241, 188, 14, 0.18);
    backdrop-filter: blur(14px);
  }

  body.is-reserve-active.has-room-selection .reserve-section {
    padding-bottom: 146px;
  }

  .reserve-selection-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    padding-inline: 4px;
  }

  .reserve-selection-summary strong {
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .reserve-selection-summary span {
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 850;
  }

  .reserve-selection-actions {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
  }

  .reserve-selection-actions .button {
    min-height: 48px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 146px;
  }

  .nav-toggle span {
    display: none;
  }

  .hero-facts span {
    font-size: 0.54rem;
  }

  .gallery-item,
  .gallery-item-wide {
    flex-basis: 87vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ========================================================================== */
/* Premium editorial redesign                                                 */
/* ========================================================================== */

:root {
  --ink: #1d211b;
  --muted: #65685f;
  --deep: #121610;
  --deep-soft: #1b2119;
  --brown: #77522f;
  --paper: #f8f5ee;
  --paper-soft: #eee9df;
  --cream: #e8dfd0;
  --surface: #fffdf8;
  --line: rgba(29, 33, 27, 0.14);
  --shadow-sm: 0 18px 46px rgba(28, 30, 24, 0.08);
  --shadow-lg: 0 34px 100px rgba(17, 20, 15, 0.2);
  --container: 1280px;
  --header-height: 78px;
}

body {
  background: var(--paper);
}

main > section[id] {
  scroll-margin-top: 0;
}

.section {
  padding-block: clamp(96px, 10vw, 152px);
}

.eyebrow {
  color: #765333;
  letter-spacing: 0.18em;
}

.eyebrow-light {
  color: #ffd13d;
}

.site-header {
  grid-template-columns: minmax(190px, 235px) minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 52px);
  min-height: 78px;
  padding: 4px max(24px, calc((100vw - 1440px) / 2));
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(18, 22, 16, 0.92);
}

.brand {
  width: clamp(190px, 15vw, 232px);
  height: 64px;
}

.brand img {
  transform: translateY(-7px);
}

@media (min-width: 901px) {
  .brand img {
    transform: translateY(2px);
  }
}

.main-nav {
  gap: clamp(16px, 2vw, 34px);
}

.main-nav a {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
}

.header-cta {
  min-height: 46px;
  padding-inline: 20px;
}

/* Hero */

.hero {
  min-height: clamp(720px, 100svh, 960px);
  isolation: isolate;
}

.hero-media {
  object-position: center 52%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 13, 9, 0.88) 0%, rgba(10, 13, 9, 0.62) 38%, rgba(10, 13, 9, 0.12) 72%),
    linear-gradient(0deg, rgba(8, 11, 7, 0.86) 0%, rgba(8, 11, 7, 0.03) 48%),
    linear-gradient(180deg, rgba(8, 10, 7, 0.55) 0%, transparent 25%);
}

.hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 282px);
  align-items: end;
  gap: clamp(42px, 7vw, 112px);
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: clamp(160px, 19vh, 205px);
}

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

.hero-copy h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(5rem, 8.4vw, 8.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.79;
  text-wrap: nowrap;
}

.hero-copy h1 em {
  color: var(--brand);
  font-weight: 500;
}

.hero-copy > .hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  align-items: center;
  gap: 22px;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-text-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.hero-text-link svg {
  width: 18px;
  height: 18px;
}

.hero-note {
  position: relative;
  margin-bottom: 5px;
  padding: 30px 28px 27px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(18, 21, 15, 0.36);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-note-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 50px;
  border: 1px solid rgba(241, 188, 11, 0.5);
  border-radius: 50%;
  color: var(--brand);
}

.hero-note-icon svg {
  width: 21px;
  height: 21px;
}

.hero-note p {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.08;
}

.hero-note > span:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-bottom.container {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.hero-bottom .hero-scroll {
  position: static;
  flex-direction: row;
  flex: 0 0 auto;
  gap: 12px;
  transform: none;
}

.hero-bottom .hero-scroll span {
  width: 42px;
  height: 1px;
}

.hero-bottom .hero-scroll span::after {
  top: 0;
  left: -50%;
  width: 50%;
  height: 1px;
  animation-name: scroll-line-horizontal;
}

@keyframes scroll-line-horizontal {
  to { transform: translateX(300%); }
}

.hero-bottom .hero-facts {
  display: flex;
  width: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-bottom .hero-facts li {
  display: flex;
  grid-template-columns: none;
  align-items: baseline;
  gap: 9px;
  min-height: auto;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 0;
}

.hero-bottom .hero-facts li:first-child {
  padding-left: 0;
}

.hero-bottom .hero-facts li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-bottom .hero-facts strong {
  font-size: 1.65rem;
}

.hero-bottom .hero-facts span {
  max-width: 96px;
  font-size: 0.64rem;
  line-height: 1.28;
}

/* Editorial introduction */

.editorial-intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 12%, rgba(241, 188, 11, 0.08), transparent 25%),
    var(--paper);
}

.editorial-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(560px, 1.16fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
}

.editorial-copy h2 {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.6vw, 5.7rem);
  font-weight: 500;
}

.editorial-copy > .lead {
  max-width: 590px;
  margin-bottom: 34px;
}

.editorial-copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.editorial-copy-columns p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.editorial-signature {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: #564731;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.05;
}

.editorial-signature img {
  width: 48px;
  height: 42px;
  object-fit: contain;
  filter: sepia(1) saturate(0.5) brightness(0.55);
}

.editorial-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(180px, 0.68fr);
  grid-template-rows: 0.88fr 1.12fr;
  gap: 14px;
  min-height: clamp(580px, 53vw, 720px);
}

.editorial-photo {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.editorial-photo-main {
  grid-row: 1 / 3;
  border-radius: 4px 4px 4px 60px;
}

.editorial-photo-top {
  border-radius: 48px 4px 4px;
}

.editorial-photo-bottom {
  border-radius: 4px 4px 48px;
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-collage:hover .editorial-photo-main img {
  transform: scale(1.025);
}

.editorial-photo-top img {
  object-position: center;
}

.editorial-caption {
  position: absolute;
  right: -22px;
  bottom: 54px;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(60, 46, 8, 0.18);
}

/* Signature amenities */

.signature-section {
  position: relative;
  overflow: hidden;
  background: #192018;
  color: #fff;
}

.signature-section::after {
  position: absolute;
  right: -260px;
  bottom: -420px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(241, 188, 11, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgba(241, 188, 11, 0.018), 0 0 0 240px rgba(241, 188, 11, 0.012);
  content: "";
}

.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(72px, 9vw, 136px);
}

.signature-visual {
  position: relative;
  min-height: clamp(600px, 56vw, 740px);
}

.signature-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.signature-photo-main {
  top: 0;
  left: 0;
  width: 82%;
  height: 82%;
  border-radius: 4px 54px 4px 4px;
}

.signature-photo-detail {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 45%;
  border: 10px solid #192018;
  border-radius: 4px 4px 4px 44px;
}

.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-temperature {
  position: absolute;
  bottom: 50px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.signature-temperature strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 0.8;
}

.signature-temperature span {
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.signature-content h2 {
  max-width: 560px;
  font-size: clamp(3.7rem, 5.4vw, 5.8rem);
  font-weight: 500;
}

.signature-content > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.66);
}

.signature-list {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.signature-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding-block: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.signature-list article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(241, 188, 11, 0.38);
  border-radius: 50%;
  color: var(--brand);
}

.signature-list svg {
  width: 20px;
  height: 20px;
}

.signature-list h3 {
  margin-bottom: 6px;
  font-size: 1.65rem;
  line-height: 1.08;
}

.signature-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
  line-height: 1.7;
}

/* Accommodations */

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

.accommodations-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  align-items: end;
  gap: 64px;
}

.accommodations-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 6.2vw, 6.5rem);
  font-weight: 500;
}

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

.accommodation {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(410px, 0.82fr);
  min-height: 640px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.accommodation + .accommodation {
  margin-top: 72px;
}

.accommodation-flat {
  grid-template-columns: minmax(410px, 0.82fr) minmax(0, 1.18fr);
}

.accommodation-flat .accommodation-gallery {
  order: 2;
}

.accommodation-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(150px, 0.75fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 4px;
  min-height: 640px;
  background: #dbd5ca;
}

.room-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--deep);
  cursor: zoom-in;
}

.room-shot-main {
  grid-row: 1 / 4;
}

.room-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 8, 0.32), transparent 50%);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.room-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.room-shot:hover img,
.room-shot:focus-visible img {
  transform: scale(1.045);
}

.room-shot:hover::after,
.room-shot:focus-visible::after {
  opacity: 1;
}

.room-photo-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(13, 16, 11, 0.64);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(13px);
}

.room-photo-count svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.accommodation-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
  overflow: hidden;
}

.accommodation-index {
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgba(29, 33, 27, 0.055);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1;
}

.accommodation-copy h3 {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(3.7rem, 5.4vw, 5.6rem);
  font-weight: 500;
}

.accommodation-lead {
  position: relative;
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.accommodation-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.accommodation-features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  min-width: 0;
  padding: 19px 14px 19px 0;
  border-bottom: 1px solid var(--line);
}

.accommodation-features li:nth-child(even) {
  padding-right: 0;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.accommodation-features svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #77522f;
}

.accommodation-features span {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.accommodation-features strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.73rem;
}

/* Full-bleed interlude */

.immersion-section {
  min-height: min(860px, 92svh);
}

.immersion-shade {
  background:
    linear-gradient(90deg, rgba(10, 13, 9, 0.5), transparent 65%),
    linear-gradient(0deg, rgba(9, 11, 8, 0.86), rgba(9, 11, 8, 0.03) 66%);
}

.immersion-copy h2 {
  max-width: 1020px;
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 500;
}

.immersion-copy > p:last-child {
  font-size: 1rem;
}

/* Visual journal */

.gallery-section {
  overflow: clip;
  background: var(--paper);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.gallery-heading h2 {
  margin-bottom: 0;
  font-size: clamp(4rem, 6.5vw, 6.7rem);
  font-weight: 500;
}

.gallery-heading h2 em {
  color: #7a5837;
  font-weight: 500;
}

.gallery-heading > p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.87rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.gallery-filters button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}

.journal-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 17vw, 245px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.journal-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--deep);
  cursor: zoom-in;
}

.journal-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.journal-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 11, 8, 0.72), transparent 54%);
  content: "";
  opacity: 0.76;
  transition: opacity 260ms ease;
}

.journal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.journal-item:hover img,
.journal-item:focus-visible img {
  transform: scale(1.05);
}

.journal-item:hover::after,
.journal-item:focus-visible::after {
  opacity: 1;
}

.journal-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.05;
  text-align: left;
}

.journal-caption small {
  display: block;
  margin-bottom: 6px;
  color: #ffd13d;
  font-family: "Manrope", sans-serif;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journal-item.is-filtered-out {
  display: none;
}

/* Guest experience */

.guest-section {
  overflow: hidden;
  background: var(--cream);
}

.guest-grid {
  grid-template-columns: minmax(480px, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(68px, 9vw, 134px);
}

.guest-visual {
  position: relative;
  min-height: clamp(580px, 55vw, 720px);
}

.guest-visual > img {
  width: 88%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 4px 60px 4px 4px;
  box-shadow: var(--shadow-lg);
}

.guest-visual-note {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(320px, 58%);
  padding: 30px;
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 24px 60px rgba(62, 48, 14, 0.2);
}

.guest-visual-note svg {
  width: 24px;
  height: 24px;
  margin-bottom: 35px;
}

.guest-visual-note p {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.06;
}

.guest-content .guest-heading {
  position: static;
}

.guest-heading h2 {
  max-width: 600px;
  font-size: clamp(3.7rem, 5.5vw, 5.8rem);
  font-weight: 500;
}

.guest-heading > p:last-child {
  max-width: 560px;
}

.guest-notes {
  margin-top: 38px;
}

.guest-notes article {
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-block: 24px;
}

.guest-notes article > span {
  color: #77522f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.guest-notes h3 {
  margin-bottom: 5px;
  font-size: 1.55rem;
}

/* Booking, FAQ, map and footer */

.reserve-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 188, 11, 0.13), transparent 29%),
    #121610;
}

.reserve-heading h2 {
  font-size: clamp(3.7rem, 5.6vw, 5.9rem);
  font-weight: 500;
}

.reserve-frame-wrap {
  border-radius: 18px;
  background: #f7f3eb;
}

.reserve-frame {
  border-radius: 12px;
  background: #f7f3eb;
}

.faq-heading h2 {
  font-size: clamp(3.7rem, 5.3vw, 5.7rem);
  font-weight: 500;
}

.faq-list summary {
  padding-block: 31px;
}

.location-section {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  background: #192018;
}

.location-card h2 {
  font-weight: 500;
}

.site-footer {
  background: #0b0e0a;
}

.footer-brand img {
  filter: saturate(0.92);
}

.social-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.social-row a {
  display: inline-flex;
  justify-content: flex-start;
  gap: 9px;
  width: auto;
  height: auto;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.social-row a:hover {
  background: transparent;
  color: var(--brand);
}

.social-row svg {
  width: 17px;
  height: 17px;
}

/* Laptop: 1024–1440px and short screens */

@media (max-width: 1440px) {
  .site-header {
    padding-inline: 30px;
  }

  .hero-content {
    padding-bottom: 162px;
  }

  .hero-copy h1 {
    font-size: clamp(5rem, 8vw, 7.2rem);
  }

  .editorial-intro-grid,
  .signature-grid,
  .guest-grid {
    gap: clamp(58px, 6vw, 90px);
  }

  .accommodation-copy {
    padding: 42px;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .site-header {
    min-height: 76px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 128px;
    padding-bottom: 130px;
  }

  .hero-copy h1 {
    max-width: 660px;
    margin-bottom: 18px;
    font-size: clamp(4.5rem, 7.2vw, 6.2rem);
  }

  .hero-copy > .hero-lead {
    max-width: 570px;
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-note {
    display: none;
  }

  .hero-bottom.container {
    bottom: 19px;
  }

  .immersion-section {
    min-height: 690px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.63rem;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .editorial-intro-grid {
    grid-template-columns: minmax(330px, 0.84fr) minmax(500px, 1.16fr);
  }

  .signature-grid {
    grid-template-columns: minmax(470px, 1fr) minmax(340px, 0.9fr);
  }

  .accommodation {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  }

  .accommodation-flat {
    grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  }
}

@media (max-width: 1100px) {
  .editorial-intro-grid,
  .signature-grid,
  .guest-grid {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    max-width: 760px;
  }

  .editorial-collage {
    min-height: 650px;
  }

  .signature-visual {
    width: min(100%, 760px);
  }

  .signature-content {
    max-width: 760px;
  }

  .accommodation,
  .accommodation-flat {
    grid-template-columns: 1fr;
  }

  .accommodation-flat .accommodation-gallery {
    order: 0;
  }

  .accommodation-gallery {
    min-height: 580px;
  }

  .accommodation-copy {
    min-height: 520px;
    padding: 58px;
  }

  .guest-visual {
    width: min(100%, 760px);
  }

  .guest-content {
    max-width: 760px;
  }
}

/* Tablet and mobile navigation */

@media (max-width: 900px) {
  .section {
    padding-block: clamp(82px, 13vw, 112px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 5px 22px;
  }

  .site-header::after {
    right: 22px;
    left: 22px;
  }

  .brand {
    z-index: 3;
    width: 184px;
    height: 62px;
  }

  .nav-toggle {
    z-index: 3;
    display: inline-flex;
    justify-self: end;
    min-height: 44px;
    padding: 8px 0 8px 14px;
    cursor: pointer;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 116px 9vw 80px;
    transform: translateY(-104%);
    background:
      radial-gradient(circle at 90% 12%, rgba(241, 188, 11, 0.13), transparent 28%),
      rgba(15, 19, 13, 0.99);
    opacity: 0;
    visibility: hidden;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, visibility 240ms ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.3rem, 8vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: none;
  }

  .main-nav a::after,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 205px;
  }

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

  .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(4.4rem, 13vw, 7rem);
  }

  .hero-note {
    display: none;
  }

  .hero-bottom .hero-scroll {
    display: none;
  }

  .hero-bottom .hero-facts {
    width: 100%;
    justify-content: space-between;
  }

  .editorial-intro-grid,
  .signature-grid,
  .guest-grid {
    gap: 68px;
  }

  .accommodations-heading,
  .gallery-heading,
  .reserve-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .accommodations-heading > p,
  .gallery-heading > p {
    max-width: 620px;
  }

  .journal-grid {
    grid-auto-rows: clamp(190px, 28vw, 245px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journal-item-wide[data-gallery-category="flats"] {
    grid-column: span 1;
  }

  .guest-visual {
    min-height: 620px;
  }

  .reserve-heading {
    align-items: start;
  }

  .reserve-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-heading {
    position: static;
    max-width: 680px;
  }

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

  .location-map iframe {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  :root {
    --radius: 18px;
    --radius-lg: 26px;
  }

  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.67rem;
  }

  .button-lg {
    min-height: 54px;
    padding-inline: 22px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .site-header::after {
    right: 16px;
    left: 16px;
  }

  .brand {
    width: 168px;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 7, 0.83), rgba(8, 11, 7, 0.34)),
      linear-gradient(0deg, rgba(8, 11, 7, 0.92), transparent 56%),
      linear-gradient(180deg, rgba(8, 11, 7, 0.56), transparent 28%);
  }

  .hero-content {
    align-items: start;
    padding-top: 136px;
    padding-bottom: 180px;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(4rem, 20vw, 5.35rem);
    line-height: 0.82;
  }

  .hero-copy > .hero-lead {
    max-width: 510px;
    margin-bottom: 27px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .hero-text-link {
    min-height: 44px;
  }

  .hero-bottom.container {
    bottom: 28px;
  }

  .hero-bottom .hero-facts li {
    flex-direction: column;
    gap: 2px;
    width: 33.333%;
    padding-inline: 12px;
  }

  .hero-bottom .hero-facts li:first-child {
    padding-left: 0;
  }

  .hero-bottom .hero-facts li:last-child {
    padding-right: 0;
  }

  .hero-bottom .hero-facts strong {
    font-size: 1.45rem;
  }

  .hero-bottom .hero-facts span {
    font-size: 0.55rem;
  }

  .editorial-copy h2,
  .signature-content h2,
  .accommodations-heading h2,
  .gallery-heading h2,
  .guest-heading h2,
  .reserve-heading h2,
  .faq-heading h2 {
    font-size: clamp(3.15rem, 15vw, 4.35rem);
    line-height: 0.92;
  }

  .editorial-copy-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .editorial-collage {
    grid-template-columns: minmax(0, 1.38fr) minmax(100px, 0.62fr);
    gap: 7px;
    min-height: 470px;
  }

  .editorial-photo-main {
    border-radius: 3px 3px 3px 34px;
  }

  .editorial-photo-top {
    border-radius: 28px 3px 3px;
  }

  .editorial-photo-bottom {
    border-radius: 3px 3px 28px;
  }

  .editorial-caption {
    right: -8px;
    bottom: 25px;
    width: 78px;
    height: 78px;
    font-size: 0.52rem;
  }

  .signature-grid,
  .editorial-intro-grid,
  .guest-grid {
    gap: 50px;
  }

  .signature-visual {
    min-height: 480px;
  }

  .signature-photo-main {
    width: 88%;
    height: 84%;
    border-radius: 3px 38px 3px 3px;
  }

  .signature-photo-detail {
    width: 52%;
    height: 39%;
    border-width: 6px;
  }

  .signature-temperature {
    bottom: 22px;
    left: 10px;
    padding: 13px 15px;
  }

  .signature-temperature strong {
    font-size: 2rem;
  }

  .signature-list {
    margin-top: 30px;
  }

  .signature-list article {
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding-block: 22px;
  }

  .signature-list article > span {
    width: 42px;
    height: 42px;
  }

  .accommodations-heading {
    margin-bottom: 42px;
  }

  .accommodation,
  .accommodation + .accommodation {
    min-height: 0;
    margin-top: 28px;
  }

  .accommodation + .accommodation {
    margin-top: 48px;
  }

  .accommodation-gallery {
    grid-template-columns: minmax(0, 1.65fr) minmax(90px, 0.65fr);
    min-height: 420px;
  }

  .accommodation-copy {
    min-height: 0;
    padding: 38px 25px 34px;
  }

  .accommodation-index {
    top: 12px;
    right: 14px;
    font-size: 5.4rem;
  }

  .accommodation-copy h3 {
    font-size: clamp(3.2rem, 14vw, 4.2rem);
  }

  .accommodation-features {
    grid-template-columns: 1fr;
  }

  .accommodation-features li,
  .accommodation-features li:nth-child(even) {
    padding: 15px 0;
    border-left: 0;
  }

  .immersion-section {
    min-height: max(580px, 74svh);
  }

  .immersion-section > img {
    object-position: 56% center;
  }

  .immersion-copy {
    padding-bottom: 64px;
  }

  .immersion-copy h2 {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
    line-height: 0.9;
  }

  .gallery-heading {
    margin-bottom: 28px;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding: 2px 16px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Esmaece a borda direita pra sinalizar que tem mais filtro pra arrastar
       (ex.: "Flats") — sem isso, o corte seco em cima do último botão visível
       parece o fim da lista, não um convite pra rolar. */
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 36px), transparent 100%);
    mask-image: linear-gradient(to right, #000 calc(100% - 36px), transparent 100%);
  }

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

  .gallery-filters button {
    flex: 0 0 auto;
  }

  .journal-grid {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .journal-grid::-webkit-scrollbar {
    display: none;
  }

  .journal-item,
  .journal-item-featured,
  .journal-item-wide,
  .journal-item-tall {
    flex: 0 0 min(82vw, 360px);
    width: min(82vw, 360px);
    height: 430px;
    scroll-snap-align: start;
  }

  .journal-caption {
    right: 13px;
    bottom: 13px;
    left: 13px;
    font-size: 1.2rem;
  }

  .guest-visual {
    min-height: 480px;
  }

  .guest-visual > img {
    width: 92%;
    min-height: inherit;
    border-radius: 3px 38px 3px 3px;
  }

  .guest-visual-note {
    bottom: 24px;
    width: min(270px, 72%);
    padding: 22px;
  }

  .guest-visual-note svg {
    margin-bottom: 24px;
  }

  .guest-visual-note p {
    font-size: 1.42rem;
  }

  .reserve-section {
    padding-block: 78px;
  }

  .reserve-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reserve-frame-wrap {
    width: calc(100% + 16px);
    margin-left: -8px;
    padding: 5px;
    border-radius: 14px;
  }

  .reserve-frame {
    min-height: 740px;
    border-radius: 10px;
  }

  .faq-list summary {
    gap: 14px;
    padding-block: 24px;
    font-size: 1.45rem;
  }

  .faq-list details p {
    padding: 0 36px 25px 0;
    font-size: 0.88rem;
  }

  .location-map iframe {
    min-height: 360px;
  }

  .location-card {
    padding: 68px 24px 76px;
  }

  .location-card h2 {
    font-size: clamp(3.5rem, 16vw, 4.8rem);
  }

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

  .site-footer {
    padding-top: 66px;
  }

  .footer-grid {
    gap: 34px;
  }

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

  .mobile-bar {
    z-index: 130;
  }

  .js .mobile-bar {
    transform: translateY(calc(100% + 12px));
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 220ms ease;
  }

  .js .mobile-bar.is-ready {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 420px) {
  .nav-toggle span {
    display: inline;
  }

  .hero-copy h1 {
    font-size: clamp(3.65rem, 20vw, 4.65rem);
  }

  .hero-copy > .hero-lead {
    font-size: 0.9rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-bottom .hero-facts li {
    padding-inline: 9px;
  }

  .hero-bottom .hero-facts span {
    font-size: 0.51rem;
  }

  .editorial-collage {
    min-height: 410px;
  }

  .signature-visual {
    min-height: 430px;
  }

  .accommodation-gallery {
    min-height: 370px;
  }

  .room-photo-count {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
  }

  .journal-item,
  .journal-item-featured,
  .journal-item-wide,
  .journal-item-tall {
    height: 390px;
  }

  .guest-visual {
    min-height: 420px;
  }
}

/* ========================================================================== */
/* Typography and responsive reading pass                                     */
/* ========================================================================== */

body {
  line-height: 1.68;
}

p,
li,
figcaption,
summary {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy h1 {
  line-height: 0.86;
}

.hero-copy > .hero-lead {
  max-width: 62ch;
  line-height: 1.68;
}

.main-nav a {
  font-size: 0.72rem;
}

.hero-bottom .hero-facts span {
  font-size: 0.7rem;
  line-height: 1.4;
}

.hero-note > span:last-child,
.editorial-caption,
.signature-temperature span,
.room-photo-count {
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.editorial-copy-columns p,
.signature-list p,
.accommodations-heading > p,
.gallery-heading > p,
.guest-heading > p:last-child,
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.72;
}

.signature-list p {
  font-size: 0.86rem;
}

.accommodation-lead {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.7;
}

.accommodation-features span {
  font-size: 0.8rem;
  line-height: 1.55;
}

.accommodation-features strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.gallery-filters button,
.journal-caption small,
.guest-notes article > span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.journal-caption {
  line-height: 1.12;
}

.faq-list summary {
  line-height: 1.24;
}

.faq-list details p {
  max-width: 68ch;
  font-size: 0.96rem;
  line-height: 1.72;
}

.location-card > p:not(.eyebrow) {
  max-width: 56ch;
  font-size: 0.96rem;
  line-height: 1.7;
}

.location-card li,
.footer-grid > div:not(.footer-brand) > a,
.social-row a {
  font-size: 0.82rem;
  line-height: 1.55;
}

@media (max-width: 1240px) {
  .main-nav a {
    font-size: 0.68rem;
  }
}

@media (min-width: 1600px) {
  .hero-copy > .hero-lead,
  .lead {
    font-size: 1.2rem;
  }

  .editorial-copy-columns p,
  .signature-list p,
  .accommodations-heading > p,
  .gallery-heading > p,
  .guest-heading > p:last-child {
    font-size: 0.96rem;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
    line-height: 1.68;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 17vw, 4.45rem);
    line-height: 0.9;
  }

  .hero-copy > .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .editorial-copy h2,
  .signature-content h2,
  .accommodations-heading h2,
  .gallery-heading h2,
  .guest-heading h2,
  .reserve-heading h2,
  .faq-heading h2,
  .location-card h2 {
    font-size: clamp(2.8rem, 12.4vw, 3.7rem);
    line-height: 0.98;
  }

  .immersion-copy h2 {
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: 0.96;
  }

  .accommodation-copy h3 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

  .lead,
  .editorial-copy > .lead {
    font-size: 1.06rem;
    line-height: 1.68;
  }

  .editorial-copy-columns p,
  .signature-list p,
  .accommodations-heading > p,
  .gallery-heading > p,
  .guest-heading > p:last-child,
  .footer-brand p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .accommodation-lead,
  .immersion-copy > p:last-child {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .accommodation-features span {
    font-size: 0.86rem;
  }

  .accommodation-features strong {
    font-size: 0.88rem;
  }

  .hero-bottom .hero-facts span {
    max-width: 100px;
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .hero-bottom .hero-facts strong {
    font-size: 1.55rem;
    line-height: 1;
  }

  .editorial-caption {
    font-size: 0.62rem;
  }

  .signature-temperature span,
  .room-photo-count,
  .journal-caption small,
  .gallery-filters button {
    font-size: 0.72rem;
  }

  .journal-caption {
    font-size: 1.35rem;
    line-height: 1.12;
  }

  .guest-visual-note p {
    font-size: 1.5rem;
    line-height: 1.14;
  }

  .guest-notes h3 {
    font-size: 1.65rem;
    line-height: 1.14;
  }

  .guest-notes p,
  .faq-list details p,
  .location-card > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.68;
  }

  .faq-list summary {
    font-size: clamp(1.2rem, 5.6vw, 1.42rem);
    line-height: 1.32;
  }

  .location-card li,
  .footer-grid > div:not(.footer-brand) > a,
  .social-row a {
    font-size: 0.9rem;
  }

  .mobile-bar a {
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 17vw, 3.85rem);
  }

  .editorial-copy h2,
  .signature-content h2,
  .accommodations-heading h2,
  .gallery-heading h2,
  .guest-heading h2,
  .reserve-heading h2,
  .faq-heading h2,
  .location-card h2 {
    font-size: clamp(2.6rem, 12vw, 3rem);
  }

  .hero-bottom .hero-facts li {
    padding-inline: 7px;
  }

  .hero-bottom .hero-facts span {
    font-size: 0.66rem;
  }

  .hero-actions .button,
  .mobile-bar a {
    letter-spacing: 0;
  }
}

/* Casos-limite de reflow e legibilidade em telas estreitas. */
.footer-bottom {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-grid h2 {
  font-size: 0.78rem;
}

.reserve-trust li {
  font-size: 0.84rem;
  line-height: 1.45;
}

.room-photo-count,
.gallery-filters button,
.journal-caption small,
.signature-temperature span {
  font-size: 0.78rem;
}

@media (min-width: 901px) and (max-width: 1240px) {
  .site-header {
    gap: 14px;
  }

  .main-nav {
    gap: clamp(10px, 1.3vw, 16px);
  }

  .main-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.055em;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero-content,
  .hero-copy,
  .hero-actions,
  .hero-bottom,
  .hero-bottom .hero-facts,
  .hero-bottom .hero-facts li {
    min-width: 0;
    max-width: 100%;
  }

  .main-nav a {
    font-size: clamp(2.3rem, 8vw, 4rem);
    letter-spacing: -0.02em;
  }

  .hero-copy h1 {
    max-width: 100%;
    text-wrap: balance;
  }

  .hero-copy > .hero-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions .button,
  .hero-text-link {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions .button {
    text-align: center;
  }

  .hero-bottom .hero-facts span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .nav-toggle span {
    font-size: 0.78rem;
  }
}

@media (max-width: 680px) {
  .hero-copy h1 {
    font-size: clamp(3.35rem, 16.2vw, 4.25rem);
    line-height: 0.92;
  }

  .editorial-caption,
  .hero-note > span:last-child {
    font-size: 0.75rem;
  }

  .hero-bottom .hero-facts span {
    font-size: 0.78rem;
  }

  .accommodation-features span,
  .signature-list p,
  .reserve-trust li,
  .location-card li {
    font-size: 0.94rem;
  }

  .accommodation-features strong {
    font-size: 0.96rem;
  }

  .footer-grid h2,
  .room-photo-count,
  .gallery-filters button,
  .journal-caption small,
  .signature-temperature span {
    font-size: 0.78rem;
  }

  .mobile-bar a {
    font-size: 0.86rem;
  }

  .footer-bottom {
    font-size: 0.82rem;
  }

  .faq-list summary {
    padding-right: 42px;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: clamp(3.15rem, 16vw, 3.65rem);
  }

  .hero-bottom .hero-facts span {
    font-size: 0.74rem;
  }

  .hero-bottom .hero-facts strong {
    font-size: 1.45rem;
  }
}

/* ========================================================================== */
/* Premium card refinement                                                    */
/* ========================================================================== */

:root {
  --card-surface: #fffdf8;
  --card-surface-soft: #f7f1e8;
  --card-line: rgba(42, 36, 29, 0.12);
  --card-line-light: rgba(255, 255, 255, 0.74);
  --card-shadow: 0 30px 74px rgba(34, 27, 20, 0.1), 0 3px 12px rgba(34, 27, 20, 0.04);
  --card-shadow-hover: 0 38px 92px rgba(34, 27, 20, 0.15), 0 8px 22px rgba(34, 27, 20, 0.06);
  --card-radius: 32px;
  --card-radius-md: 20px;
}

/* Hero editorial card */
.hero-note {
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(34, 38, 29, 0.68), rgba(13, 16, 12, 0.38)),
    rgba(18, 21, 15, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.12);
}

.hero-note::after {
  position: absolute;
  top: -80px;
  right: -76px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(241, 188, 11, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(241, 188, 11, 0.025);
  content: "";
}

.hero-note-icon {
  border-color: rgba(241, 188, 11, 0.6);
  background: rgba(241, 188, 11, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

/* Amenity cards on the dark section */
.signature-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.signature-list article {
  position: relative;
  align-items: center;
  padding: 21px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--card-radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.signature-list article::after {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: var(--brand);
  content: "";
  opacity: 0.62;
}

.signature-list article > span {
  border-color: rgba(241, 188, 11, 0.48);
  background: rgba(241, 188, 11, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.signature-temperature {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  background: linear-gradient(145deg, #f6c92d, var(--brand));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.42);
}

/* Main accommodation cards */
.accommodation {
  position: relative;
  isolation: isolate;
  border-color: var(--card-line);
  border-radius: var(--card-radius);
  background: var(--card-surface);
  box-shadow: var(--card-shadow), inset 0 1px var(--card-line-light);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 300ms ease;
}

.accommodation::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  z-index: 4;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 188, 11, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.accommodation-copy {
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 188, 11, 0.08), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(251, 247, 239, 0.78));
}

.accommodation-index {
  color: rgba(119, 82, 47, 0.07);
}

.accommodation-gallery {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.room-shot {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.room-photo-count {
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, rgba(18, 21, 15, 0.82), rgba(18, 21, 15, 0.62));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.12);
}

.accommodation-features {
  gap: 10px;
  border-top: 0;
}

.accommodation-features li,
.accommodation-features li:nth-child(even) {
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(42, 36, 29, 0.1);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.accommodation-features svg {
  width: 36px;
  height: 36px;
  margin-top: 0;
  padding: 9px;
  border: 1px solid rgba(119, 82, 47, 0.14);
  border-radius: 50%;
  background: rgba(241, 188, 11, 0.11);
}

.accommodation-copy .button-dark {
  box-shadow: 0 14px 30px rgba(29, 33, 27, 0.15);
}

/* Image journal cards */
.journal-grid {
  gap: 14px;
}

.journal-item {
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(30, 25, 19, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.journal-caption {
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 14px 16px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(14, 17, 12, 0.72), rgba(14, 17, 12, 0.42));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

/* Guest experience cards */
.guest-visual-note {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px 24px 4px 24px;
  background: linear-gradient(145deg, #f6c92d, var(--brand));
  box-shadow: 0 28px 70px rgba(62, 48, 14, 0.24), inset 0 1px rgba(255, 255, 255, 0.42);
}

.guest-notes {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.guest-notes article {
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--card-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(247, 240, 231, 0.76));
  box-shadow: 0 12px 30px rgba(39, 31, 23, 0.055), inset 0 1px rgba(255, 255, 255, 0.8);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.guest-notes article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(119, 82, 47, 0.18);
  border-radius: 50%;
  background: rgba(241, 188, 11, 0.12);
}

/* Direct-booking confidence chips */
.reserve-trust {
  gap: 9px;
}

.reserve-trust li {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.reserve-frame-wrap {
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 42px 108px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.8);
}

/* FAQ cards */
.faq-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--card-line);
  border-radius: 19px;
  background: rgba(255, 253, 248, 0.64);
  box-shadow: 0 10px 28px rgba(39, 31, 23, 0.04), inset 0 1px rgba(255, 255, 255, 0.74);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.faq-list summary {
  padding: 24px 26px;
  transition: color 180ms ease, background 180ms ease;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(42, 36, 29, 0.12);
  border-radius: 50%;
  background: rgba(241, 188, 11, 0.09);
  color: #62451f;
}

.faq-list details p {
  padding: 0 78px 25px 26px;
}

.faq-list details[open] {
  border-color: rgba(119, 82, 47, 0.22);
  background: var(--card-surface);
  box-shadow: 0 22px 52px rgba(39, 31, 23, 0.085), inset 3px 0 var(--brand), inset 0 1px rgba(255, 255, 255, 0.8);
}

.faq-list details[open] summary {
  color: #573d21;
}

.faq-list summary:focus-visible {
  border-radius: 17px;
  outline-offset: -4px;
}

/* Framed location card */
.location-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 188, 11, 0.09), transparent 35%),
    #192018;
}

.location-card::before {
  position: absolute;
  inset: clamp(22px, 3.2vw, 48px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 24px 70px rgba(0, 0, 0, 0.12);
  content: "";
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.location-card ul {
  gap: 10px;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}

.location-card li {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.location-card .button-primary {
  box-shadow: 0 16px 38px rgba(241, 188, 11, 0.18), inset 0 1px rgba(255, 255, 255, 0.32);
}

@media (hover: hover) and (pointer: fine) {
  .signature-list article:hover {
    transform: translateX(4px);
    border-color: rgba(241, 188, 11, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(241, 188, 11, 0.035));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05);
  }

  .accommodation:hover {
    transform: translateY(-5px);
    border-color: rgba(119, 82, 47, 0.2);
    box-shadow: var(--card-shadow-hover), inset 0 1px var(--card-line-light);
  }

  .accommodation-features li:hover {
    transform: translateY(-2px);
    border-color: rgba(119, 82, 47, 0.2);
    background: var(--card-surface);
  }

  .journal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(30, 25, 19, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .guest-notes article:hover {
    transform: translateX(4px);
    border-color: rgba(119, 82, 47, 0.2);
    box-shadow: 0 18px 40px rgba(39, 31, 23, 0.085), inset 0 1px rgba(255, 255, 255, 0.82);
  }

  .faq-list details:not([open]):hover {
    border-color: rgba(119, 82, 47, 0.2);
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 16px 38px rgba(39, 31, 23, 0.065), inset 0 1px rgba(255, 255, 255, 0.8);
  }

  .reserve-trust li:hover,
  .location-card li:hover {
    border-color: rgba(241, 188, 11, 0.3);
    background: rgba(241, 188, 11, 0.065);
  }
}

@media (max-width: 1100px) {
  .accommodation {
    border-radius: 28px;
  }
}

@media (max-width: 680px) {
  :root {
    --card-radius: 24px;
    --card-radius-md: 17px;
  }

  .signature-list {
    gap: 10px;
  }

  .signature-list article {
    gap: 14px;
    padding: 18px 16px;
  }

  .signature-list article::after {
    top: 16px;
    bottom: 16px;
  }

  .accommodation {
    border-radius: var(--card-radius);
    box-shadow: 0 22px 54px rgba(34, 27, 20, 0.1), 0 3px 10px rgba(34, 27, 20, 0.04);
  }

  .accommodation-features {
    gap: 8px;
  }

  .accommodation-features li,
  .accommodation-features li:nth-child(even) {
    min-height: 0;
    padding: 13px;
    border-radius: 14px;
  }

  .journal-grid {
    gap: 12px;
  }

  .journal-item,
  .journal-item-featured,
  .journal-item-wide,
  .journal-item-tall {
    border-radius: 18px;
  }

  .journal-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px 14px;
    border-radius: 13px;
  }

  .guest-visual-note {
    border-radius: 19px 19px 4px 19px;
  }

  .guest-notes {
    gap: 9px;
  }

  .guest-notes article {
    gap: 14px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .reserve-trust li {
    justify-content: flex-start;
    border-radius: 15px;
  }

  .reserve-frame-wrap {
    border-radius: 18px;
  }

  .faq-list {
    gap: 9px;
  }

  .faq-list details {
    border-radius: 16px;
  }

  .faq-list summary {
    gap: 12px;
    padding: 20px 16px;
  }

  .faq-list summary svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .faq-list details p {
    padding: 0 16px 20px;
  }

  .location-card::before {
    inset: 10px;
    border-radius: 24px;
  }

  .location-card ul {
    gap: 8px;
  }

  .location-card li {
    min-height: 50px;
    border-radius: 12px;
  }
}

/* Restraint pass: fewer nested boxes, lighter editorial surfaces. */
.hero-note {
  border-radius: 24px;
}

.accommodation-features li,
.accommodation-features li:nth-child(even) {
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.66);
  box-shadow: none;
}

.journal-item {
  border-radius: 20px;
}

.journal-caption {
  right: 20px;
  bottom: 18px;
  left: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  backdrop-filter: none;
}

.journal-item:focus-visible {
  outline-offset: -4px;
}

.faq-list details {
  border-radius: 20px;
}

.location-card li {
  padding-inline: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .accommodation:hover {
    transform: translateY(-2px);
  }

  .accommodation-features li:hover {
    transform: none;
    background: rgba(255, 253, 248, 0.92);
  }

  .location-card li:hover {
    border-color: rgba(241, 188, 11, 0.32);
    background: transparent;
    color: #fff;
  }
}

@media (min-width: 1101px) and (max-width: 1240px) {
  .accommodation-features {
    grid-template-columns: 1fr;
  }

  .accommodation-features li,
  .accommodation-features li:nth-child(even) {
    min-height: 0;
  }
}

@media (max-width: 1100px) {
  .accommodation {
    border-radius: 24px;
  }
}

@media (max-width: 680px) {
  .accommodation-features li,
  .accommodation-features li:nth-child(even),
  .location-card li {
    border-radius: 12px;
  }

  .journal-item,
  .journal-item-featured,
  .journal-item-wide,
  .journal-item-tall {
    border-radius: 16px;
  }

  .journal-caption {
    right: 16px;
    bottom: 15px;
    left: 16px;
    padding: 0;
  }

  .location-card li {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }
}

/* ========================================================================== */
/* Hero photo carousel + Villa custom icon system                             */
/* ========================================================================== */

.villa-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.villa-card-icon {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

.hero-note-icon .villa-card-icon {
  width: 23px;
  height: 23px;
}

.guest-notes article > span .villa-card-icon {
  width: 21px;
  height: 21px;
}

.reserve-trust .villa-card-icon,
.location-card li .villa-card-icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.hero-media-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #11150f;
  pointer-events: none;
}

.hero-media.hero-slide {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.018);
  animation: none;
  object-position: var(--hero-position, center 54%);
  transition:
    opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 3000ms ease-out,
    visibility 0s linear 1200ms;
}

.hero-media.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.hero-slide:nth-child(1) {
  --hero-position: center 54%;
}

.hero-slide:nth-child(2) {
  --hero-position: center 50%;
}

.hero-slide:nth-child(3) {
  --hero-position: center 53%;
}

.hero-slide:nth-child(4) {
  --hero-position: center 46%;
}

.hero-shade {
  z-index: 1;
}

@media (max-width: 680px) {
  .hero-bottom .hero-facts li {
    align-items: flex-start;
  }

  .hero-slide:nth-child(1) {
    --hero-position: 58% center;
  }

  .hero-slide:nth-child(2) {
    --hero-position: 54% center;
  }

  .hero-slide:nth-child(3) {
    --hero-position: 52% center;
  }

  .hero-slide:nth-child(4) {
    --hero-position: 58% center;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-media.hero-slide {
    transform: none !important;
  }
}

/* ========================================================================== */
/* Final text composition and responsive alignment                            */
/* ========================================================================== */

.editorial-copy,
.signature-content,
.guest-content,
.accommodation-copy,
.accommodations-heading > *,
.gallery-heading > *,
.reserve-heading > *,
.faq-heading,
.location-card {
  min-width: 0;
}

.editorial-copy h2,
.signature-content h2,
.accommodations-heading h2,
.gallery-heading h2,
.guest-heading h2,
.reserve-heading h2,
.faq-heading h2,
.location-card h2,
.immersion-copy h2,
.accommodation-copy h3 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
}

.editorial-copy > .lead,
.signature-content > p:not(.eyebrow),
.accommodations-heading > p,
.gallery-heading > p,
.guest-heading > p:last-child,
.accommodation-lead,
.immersion-copy > p:last-child,
.faq-heading > p,
.location-card > p:not(.eyebrow) {
  text-wrap: pretty;
}

@media (min-width: 1101px) {
  .editorial-intro-grid {
    grid-template-columns: minmax(500px, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(58px, 5.6vw, 88px);
  }

  .editorial-copy h2 {
    max-width: 560px;
    font-size: clamp(3.7rem, 4.45vw, 4.8rem);
    line-height: 0.96;
  }

  .editorial-copy > .lead {
    max-width: 52ch;
  }

  .editorial-copy-columns {
    gap: clamp(22px, 2.4vw, 34px);
  }

  .signature-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
    gap: clamp(58px, 6vw, 92px);
  }

  .signature-content h2 {
    max-width: 520px;
    font-size: clamp(3.7rem, 4.35vw, 4.75rem);
    line-height: 0.96;
  }

  .signature-content > p:not(.eyebrow) {
    max-width: 49ch;
  }

  .accommodations-heading,
  .gallery-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    align-items: end;
    gap: clamp(40px, 4.5vw, 58px);
  }

  .accommodations-heading h2,
  .gallery-heading h2 {
    max-width: 820px;
    font-size: clamp(4rem, 5vw, 5.6rem);
    line-height: 0.94;
  }

  .accommodations-heading > p,
  .gallery-heading > p {
    max-width: 38ch;
    margin-bottom: 6px;
  }

  .accommodation,
  .accommodation-flat {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.9fr);
  }

  .accommodation-flat {
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1fr);
  }

  .accommodation-copy {
    padding: clamp(38px, 3.4vw, 48px);
  }

  .accommodation-copy h3 {
    font-size: clamp(3.25rem, 3.75vw, 3.85rem);
    line-height: 0.98;
  }

  .accommodation-lead {
    max-width: 46ch;
  }

  .accommodation-features li,
  .accommodation-features li:nth-child(even) {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .accommodation-features svg {
    width: 32px;
    height: 32px;
  }

  .guest-grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.94fr);
    gap: clamp(58px, 6vw, 90px);
  }

  .guest-heading h2 {
    max-width: 520px;
    font-size: clamp(3.7rem, 4.35vw, 4.75rem);
    line-height: 0.96;
  }

  .guest-heading > p:last-child {
    max-width: 50ch;
  }

  .reserve-heading {
    grid-template-columns: minmax(0, 1fr) minmax(250px, auto);
    gap: clamp(42px, 5vw, 70px);
  }

  .reserve-heading h2 {
    max-width: 760px;
    font-size: clamp(3.8rem, 4.6vw, 5rem);
    line-height: 0.96;
  }

  .faq-grid {
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(62px, 7vw, 108px);
  }

  .faq-heading h2 {
    max-width: 100%;
    font-size: clamp(3.65rem, 4.3vw, 4.8rem);
    line-height: 0.96;
  }

  .location-section {
    grid-template-columns: minmax(0, 1.18fr) minmax(460px, 0.82fr);
  }

  .location-card h2 {
    max-width: 100%;
    font-size: clamp(3.65rem, 4.35vw, 4.8rem);
    line-height: 0.96;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .editorial-copy,
  .signature-content,
  .guest-content {
    max-width: 780px;
  }

  .editorial-copy h2,
  .signature-content h2,
  .accommodations-heading h2,
  .gallery-heading h2,
  .guest-heading h2,
  .reserve-heading h2,
  .faq-heading h2,
  .location-card h2 {
    max-width: 15ch;
    font-size: clamp(3.2rem, 5.8vw, 4rem);
    line-height: 0.98;
  }

  .accommodations-heading,
  .gallery-heading,
  .reserve-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .accommodations-heading > p,
  .gallery-heading > p {
    max-width: 58ch;
    margin-bottom: 0;
  }

  .accommodation-copy {
    min-height: 0;
    padding: clamp(44px, 7vw, 64px);
  }

  .accommodation-copy h3 {
    font-size: clamp(3.15rem, 7vw, 4rem);
  }

  .accommodation-lead {
    max-width: 54ch;
  }

  .guest-heading h2,
  .reserve-heading h2 {
    max-width: 680px;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .section,
  .reserve-section {
    padding-block: clamp(104px, 8vw, 118px);
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: clamp(74px, 20vw, 92px);
  }

  .editorial-intro-grid,
  .signature-grid,
  .guest-grid {
    gap: clamp(48px, 14vw, 62px);
  }

  .editorial-copy h2,
  .signature-content h2,
  .accommodations-heading h2,
  .gallery-heading h2,
  .guest-heading h2,
  .reserve-heading h2,
  .faq-heading h2,
  .location-card h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.5rem, 10.8vw, 3.2rem);
    line-height: 1;
  }

  .editorial-copy > .lead,
  .signature-content > p:not(.eyebrow),
  .accommodations-heading > p,
  .gallery-heading > p,
  .guest-heading > p:last-child,
  .accommodation-lead,
  .immersion-copy > p:last-child,
  .faq-heading > p {
    max-width: 38ch;
  }

  .editorial-copy-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .editorial-copy-columns p {
    max-width: 38ch;
  }

  .accommodations-heading,
  .gallery-heading,
  .reserve-heading,
  .faq-grid {
    gap: 18px;
  }

  .accommodation-copy {
    padding: 34px 24px 32px;
  }

  .accommodation-copy h3 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .accommodation-lead {
    margin-bottom: 22px;
  }

  .accommodation-features li,
  .accommodation-features li:nth-child(even) {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
  }

  .accommodation-features svg {
    width: 32px;
    height: 32px;
  }

  .immersion-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .guest-visual-note p {
    text-wrap: balance;
  }

}

@media (max-width: 360px) {
  .editorial-copy h2,
  .signature-content h2,
  .accommodations-heading h2,
  .gallery-heading h2,
  .guest-heading h2,
  .reserve-heading h2,
  .faq-heading h2,
  .location-card h2 {
    font-size: clamp(2.35rem, 11.8vw, 2.7rem);
  }

  .accommodation-copy {
    padding-inline: 21px;
  }
}

/* ========================================================================== */
/* Generated card icon family                                                 */
/* ========================================================================== */

.villa-generated-icon {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 9px rgba(18, 22, 16, 0.1));
}

.signature-list article {
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
}

.signature-list article > span {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.signature-list .villa-generated-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.22));
}

.accommodation-features li,
.accommodation-features li:nth-child(even) {
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.accommodation-features .villa-generated-icon {
  width: 48px;
  height: 48px;
}

.accommodation-features svg.villa-generated-icon {
  padding: 4px;
  border: 0;
  background: transparent;
  color: #77522f;
}

.guest-visual-note > .villa-generated-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  filter: drop-shadow(0 6px 10px rgba(18, 22, 16, 0.14));
}

.guest-notes article {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
}

.guest-notes article > span {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.guest-notes article > span .villa-generated-icon {
  width: 54px;
  height: 54px;
}

@media (max-width: 680px) {
  .signature-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .signature-list article > span,
  .signature-list .villa-generated-icon {
    width: 52px;
    height: 52px;
  }

  .accommodation-features li,
  .accommodation-features li:nth-child(even) {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
  }

  .accommodation-features .villa-generated-icon {
    width: 44px;
    height: 44px;
  }

  .guest-notes article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .guest-notes article > span,
  .guest-notes article > span .villa-generated-icon {
    width: 50px;
    height: 50px;
  }
}

/* Scroll reveal motion system */
html {
  overflow-x: clip;
}

html.js.reveal-ready [data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay),
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

html.js.reveal-ready [data-reveal="left"] {
  transform: translate3d(-34px, 0, 0);
}

html.js.reveal-ready [data-reveal="right"] {
  transform: translate3d(34px, 0, 0);
}

html.js.reveal-ready [data-reveal="scale"] {
  transform: translate3d(0, 18px, 0) scale(0.975);
  transform-origin: 50% 20%;
}

html.js.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 680px) {
  html.js.reveal-ready [data-reveal],
  html.js.reveal-ready [data-reveal="left"],
  html.js.reveal-ready [data-reveal="right"] {
    transform: translate3d(0, 22px, 0);
    transition-duration: 600ms, 720ms;
  }

  html.js.reveal-ready [data-reveal="scale"] {
    transform: translate3d(0, 14px, 0) scale(0.985);
  }

  html.js.reveal-ready [data-reveal].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js.reveal-ready [data-reveal],
  html.js.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Keep the hero statement together at every supported viewport width. */
.hero-copy {
  max-width: none;
}

.hero-copy h1 {
  max-width: none;
  font-size: 5.5rem;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  .hero-copy h1 {
    font-size: 5rem;
  }
}

@media (max-width: 1240px) {
  .hero-copy h1 {
    font-size: 4rem;
  }
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 4.25rem;
  }
}

@media (max-width: 680px) {
  .hero-copy h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 1.9rem;
  }
}

/* Mobile hero: move the brand into the composition and center the content. */
.hero-mobile-brand {
  display: none;
}

@media (max-width: 680px) {
  .site-header {
    transition: transform 240ms ease, opacity 180ms ease;
  }

  .site-header.is-hidden-on-mobile-hero {
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  html.js .hero-mobile-brand {
    display: grid;
    place-items: start start;
    width: min(300px, 82vw);
    height: clamp(64px, 20vw, 76px);
    margin: 0 0 20px;
    overflow: hidden;
    line-height: 0;
  }

  .hero-mobile-brand img {
    width: 100%;
    height: auto;
    transform: translateY(-29%);
  }

  .hero-content {
    align-items: center;
    justify-items: center;
    padding-top: clamp(48px, 8svh, 72px);
    padding-bottom: 180px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-copy .eyebrow {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-copy h1,
  .hero-copy > .hero-lead {
    margin-inline: auto;
  }

  .hero-copy > .hero-lead {
    max-width: 32rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-actions .button {
    width: min(100%, 360px);
  }

  .hero-text-link {
    align-self: center;
    justify-content: center;
  }

  .hero-bottom .hero-facts li {
    align-items: center;
    text-align: center;
  }
}

/* Mobile accommodation disclosure: icons first, full copy on request. */
.accommodation-details-toggle {
  display: none;
}

@media (max-width: 680px) {
  html.js .accommodation-features:not(.is-expanded) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  html.js .accommodation-features:not(.is-expanded) li,
  html.js .accommodation-features:not(.is-expanded) li:nth-child(even) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    gap: 0;
    min-height: 68px;
    padding: 10px 4px;
    border: 1px solid rgba(42, 36, 29, 0.1);
  }

  html.js .accommodation-features:not(.is-expanded) .villa-generated-icon {
    width: 44px;
    height: 44px;
  }

  html.js .accommodation-features:not(.is-expanded) span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  html.js .accommodation-features.is-expanded {
    margin-bottom: 16px;
  }

  html.js .accommodation-details-toggle {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    gap: 7px;
    margin: 0 auto 24px;
    padding: 7px 2px;
    border: 0;
    border-bottom: 1px solid rgba(119, 82, 47, 0.36);
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    cursor: pointer;
  }

  .accommodation-details-toggle svg {
    width: 16px;
    height: 16px;
    color: #77522f;
    transition: transform 180ms ease;
  }

  .accommodation-details-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }
}

/* Mobile quick actions as two independent floating buttons. */
@media (max-width: 680px) {
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bar {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: auto;
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .js .mobile-bar {
    transform: translateY(calc(100% + 32px + env(safe-area-inset-bottom, 0px)));
  }

  .js .mobile-bar.is-ready {
    transform: translateY(0);
  }

  .mobile-bar a {
    position: relative;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 12px 30px rgba(15, 18, 13, 0.24);
  }

  .mobile-bar a:first-child {
    background: #1f7a4d;
  }

  .mobile-bar a:last-child {
    background: var(--brand);
    color: var(--brand-ink);
  }

  .mobile-bar svg {
    width: 23px;
    height: 23px;
  }

  .mobile-bar-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }
}

/* Focus the mobile viewport on the embedded booking flow. */
@media (max-width: 680px) {
  body.is-reserve-active {
    padding-bottom: 0;
  }

  html.js body.is-reserve-active .site-header {
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  html.js body.is-reserve-active .mobile-bar,
  html.js body.is-reserve-active .mobile-bar.is-ready {
    transform: translateY(calc(100% + 32px + env(safe-area-inset-bottom, 0px)));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .reserve-section {
    min-height: 100svh;
    padding-block: 8px;
    scroll-margin-top: 0;
  }

  .reserve-section > .container {
    width: 100%;
  }

  .reserve-heading {
    display: none;
  }

  .reserve-frame-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #f6f0e9;
    box-shadow: none;
  }

  .reserve-frame {
    height: 520px;
    min-height: 0;
    border-radius: 0;
    transition: height 180ms ease;
  }
}

/* Mobile gallery preview: use the image area instead of reserving side columns. */
@media (max-width: 680px) {
  .lightbox {
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    padding:
      max(64px, calc(env(safe-area-inset-top, 0px) + 52px))
      10px
      max(20px, calc(env(safe-area-inset-bottom, 0px) + 14px));
    overflow: hidden;
  }

  .lightbox[open] {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
  }

  .lightbox figure {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: calc(100vw - 20px);
    height: auto;
    max-height: calc(100dvh - 104px);
    overflow: visible;
  }

  .lightbox figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100dvh - 164px);
    border-radius: 10px;
    object-fit: contain;
  }

  .lightbox figcaption {
    position: static;
    width: min(100%, 42ch);
    min-height: 36px;
    margin: 0 auto;
    padding-inline: 8px;
    transform: none;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
    text-wrap: balance;
  }

  .lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(10, 8, 6, 0.72);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
  }

  .lightbox-prev {
    left: max(8px, env(safe-area-inset-left, 0px));
  }

  .lightbox-next {
    right: max(8px, env(safe-area-inset-right, 0px));
  }

  .lightbox-close {
    top: max(12px, calc(env(safe-area-inset-top, 0px) + 8px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(10, 8, 6, 0.72);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
  }
}
