:root {
  --ivory: #f5f1e8;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --emerald: #15513f;
  --emerald-dark: #0d3b2f;
  --bronze: #b58b5b;
  --bronze-soft: #d4b58e;
  --ink: #252822;
  --muted: #6e7068;
  --line: rgba(21, 81, 63, 0.2);
  --line-light: rgba(255, 255, 255, 0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1220px;
  --shadow: 0 20px 50px rgba(33, 42, 35, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 9999;
  background: var(--emerald);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}
h1 {
  font-size: clamp(3.3rem, 10vw, 7.6rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
}
em {
  font-weight: 500;
}
.lead {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.25;
  color: var(--emerald);
}
.section {
  padding: 90px 0;
}
.section-tint {
  background: #eee9dc;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-heading h2,
.section-copy h2 {
  margin-bottom: 26px;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.centered {
  text-align: center;
  margin-inline: auto;
}
.split-heading {
  display: grid;
  gap: 24px;
}
.split-heading > p {
  max-width: 420px;
  color: var(--muted);
  align-self: end;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}
.button:hover,
.button:focus-visible {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.button-light {
  color: #fff;
}
.button-light:hover,
.button-light:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--emerald);
}
.button-emerald {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.button-emerald:hover {
  background: var(--emerald-dark);
}
.button-outline {
  color: var(--emerald);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--emerald);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bronze-soft);
  padding-bottom: 6px;
}
.text-link span {
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translateX(4px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 239, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(27, 45, 37, 0.07);
}
.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--emerald);
  letter-spacing: 0.01em;
}
.brand-subtitle {
  margin-top: 6px;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 26px;
  height: 1px;
  background: var(--emerald);
  transition: 0.25s;
}
.menu-toggle span:first-child {
  top: 18px;
}
.menu-toggle span:last-child {
  top: 27px;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}
.menu-drawer {
  position: fixed;
  top: 76px;
  right: 0;
  bottom: 0;
  width: min(86vw, 430px);
  z-index: 1002;
  background: #fffdf8;
  border-left: 1px solid rgba(21, 81, 63, 0.28);
  padding: 38px 30px 80px;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(110%);
  visibility: hidden;
  transition:
    transform 0.35s ease,
    visibility 0s linear 0.35s;
  box-shadow: -24px 24px 70px rgba(13, 42, 32, 0.22);
}
.menu-drawer.open {
  transform: none;
  visibility: visible;
  transition: transform 0.35s ease;
}
.menu-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-drawer li {
  border-bottom: 1px solid rgba(21, 81, 63, 0.2);
}
.menu-drawer li a {
  display: block;
  padding: 18px 2px;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1.15;
  color: var(--ink);
  transition:
    color 0.2s,
    padding-left 0.2s,
    background 0.2s;
}
.menu-drawer li a:hover,
.menu-drawer li a:focus-visible {
  color: var(--emerald);
  padding-left: 8px;
}
.menu-drawer li a.active {
  color: var(--emerald);
  font-weight: 600;
}
.drawer-reserve {
  display: inline-block;
  margin-top: 34px;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
}
.drawer-reserve:hover,
.drawer-reserve:focus-visible {
  background: var(--emerald);
  color: #fff;
}
.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image,
.hotel-hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 43, 33, 0.78),
      rgba(12, 43, 33, 0.25) 65%,
      rgba(12, 43, 33, 0.05)
    ),
    linear-gradient(0deg, rgba(7, 25, 19, 0.46), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  color: #fff;
}
.hero-content h1 {
  max-width: 850px;
  margin-bottom: 25px;
}
.hero-content p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.scroll-note {
  position: absolute;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-note span {
  margin-left: 8px;
}
.split-layout {
  display: grid;
  gap: 48px;
}
.section-copy {
  align-self: center;
}
.section-copy > p:not(.eyebrow, .lead) {
  color: var(--muted);
  max-width: 620px;
}
.editorial-media {
  position: relative;
}
.portrait-media {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.landscape-media {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.image-caption {
  display: block;
  border-left: 1px solid var(--bronze);
  padding: 10px 0 0 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hotel-grid {
  display: grid;
  gap: 38px;
}
.hotel-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.card-image {
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: zoom-in;
}
.card-copy {
  padding: 24px 4px;
}
.card-copy h3 {
  margin-bottom: 14px;
}
.card-copy p:not(.location) {
  color: var(--muted);
}
.location,
.journal-meta,
.package-index {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.package-list {
  border-top: 1px solid var(--line);
}
.package-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.package-item > i {
  color: var(--emerald);
  font-size: 1.2rem;
  margin-top: 6px;
}
.package-item h3 {
  margin-bottom: 10px;
}
.package-item p {
  color: var(--muted);
}
.price {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--emerald);
}
.price span,
.price small {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.price strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
}
.standard-section {
  background: var(--emerald);
  color: #fff;
}
.standard-section .eyebrow {
  color: var(--bronze-soft);
}
.standard-grid {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.feature {
  background: var(--emerald);
  padding: 38px 28px;
}
.feature i {
  font-size: 1.4rem;
  color: var(--bronze-soft);
  margin-bottom: 45px;
}
.feature h3 {
  font-size: 1.75rem;
}
.feature p {
  color: rgba(255, 255, 255, 0.7);
}
.journal-grid {
  display: grid;
  gap: 40px;
}
.journal-image {
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: zoom-in;
}
.journal-card h3 {
  margin: 13px 0;
}
.journal-card > p:not(.journal-meta) {
  color: var(--muted);
}
.closing-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
}
.closing-cta h2 {
  margin-bottom: 35px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0 80px;
  background:
    linear-gradient(
      90deg,
      rgba(12, 43, 33, 0.78),
      rgba(12, 43, 33, 0.38) 65%,
      rgba(12, 43, 33, 0.18)
    ),
    url("../assets/images/hero-esmeralda-facade.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--line-light);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 25px;
}
.page-hero .eyebrow {
  color: var(--bronze-soft);
}
.page-hero > div > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}
.heritage-section {
  background: #eee9dc;
}
.heritage-timeline {
  display: grid;
  gap: 70px;
}
.heritage-item {
  display: grid;
  gap: 24px;
  position: relative;
}
.heritage-year {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--bronze);
}
.heritage-image {
  aspect-ratio: 16/10;
  object-fit: cover;
  cursor: zoom-in;
}
.heritage-item > div:last-child p {
  color: var(--muted);
}
.testimonial-grid {
  display: grid;
  gap: 24px;
}
.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
}
.stars {
  color: var(--bronze);
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}
.quote-card blockquote {
  margin: 22px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.35;
}
.quote-card > p {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.quote-card > p span {
  color: var(--muted);
  font-size: 0.74rem;
}
.journal-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.78rem;
}
.faq-section {
  border-top: 1px solid var(--line);
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion article {
  border-bottom: 1px solid var(--line);
}
.accordion button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
}
.accordion button span:last-child {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--emerald);
  transition: 0.2s;
}
.accordion button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}
.accordion-panel > p {
  overflow: hidden;
  color: var(--muted);
  margin: 0;
}
.accordion article.open .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion article.open .accordion-panel > p {
  padding-bottom: 22px;
}
.hotel-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
}
.hotel-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 36, 27, 0.72), transparent 75%),
    linear-gradient(90deg, rgba(8, 36, 27, 0.35), transparent);
}
.hotel-hero-content {
  position: relative;
  color: #fff;
  padding-bottom: 75px;
}
.hotel-hero-content h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  max-width: 1000px;
  margin-bottom: 18px;
}
.hotel-hero-content > p {
  max-width: 660px;
}
.rating {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.rating span {
  color: var(--bronze-soft);
  letter-spacing: 0.15em;
}
.rating small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.overview-grid {
  display: grid;
  gap: 44px;
}
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.amenity-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.amenity-list i {
  color: var(--bronze);
  margin-top: 4px;
}
.amenity-list span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}
.amenity-list strong {
  color: var(--ink);
  font-weight: 500;
}
.experience-layout {
  align-items: center;
}
.rooms-media {
  margin-bottom: 30px;
}
.wide-media {
  aspect-ratio: 16/8;
  object-fit: cover;
  cursor: zoom-in;
}
.room-type-grid {
  display: grid;
  border-top: 1px solid var(--line);
}
.room-type-grid article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.room-type-grid article > p {
  font-size: 0.65rem;
  color: var(--bronze);
  letter-spacing: 0.12em;
}
.room-type-grid h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.room-type-grid span {
  color: var(--muted);
}
.contact-hotel {
  background: #eee9dc;
}
.contact-hotel-grid {
  display: grid;
  gap: 42px;
}
.contact-hotel address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0;
}
.contact-hotel address a {
  color: var(--emerald);
}
.map-note {
  color: var(--muted);
  max-width: 520px;
}
.map-frame {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.45) sepia(0.08) contrast(0.93);
}
.map-frame.large iframe {
  height: 460px;
}
.contact-card-grid {
  display: grid;
  gap: 18px;
}
.contact-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-card h3 {
  margin-bottom: 20px;
}
.contact-card > p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
}
.contact-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-card i {
  color: var(--bronze);
  margin-top: 6px;
}
.contact-form-grid {
  display: grid;
  gap: 50px;
}
.contact-hours {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.contact-hours p {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.contact-hours span {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  gap: 20px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--emerald);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 11px 2px;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 300;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--emerald);
}
.contact-form .invalid {
  border-color: #9c433d;
}
.field-error {
  min-height: 17px;
  color: #9c433d;
  font-size: 0.65rem;
  text-transform: none;
  letter-spacing: 0;
}
.form-success {
  padding: 14px;
  border-left: 2px solid var(--emerald);
  background: rgba(21, 81, 63, 0.07);
  color: var(--emerald);
}
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background:
    linear-gradient(
      90deg,
      rgba(12, 43, 33, 0.8),
      rgba(12, 43, 33, 0.42) 65%,
      rgba(12, 43, 33, 0.22)
    ),
    url("../assets/images/hero-esmeralda-facade.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--line-light);
}
.legal-hero .container {
  position: relative;
  z-index: 1;
}
.legal-hero .eyebrow {
  color: var(--bronze-soft);
}
.legal-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
  color: #fff;
  margin-bottom: 15px;
}
.legal-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}
.legal-hero span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}
.legal-layout {
  display: grid;
  gap: 45px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-content: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.legal-nav strong {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--emerald);
}
.legal-nav a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 2rem;
  color: var(--emerald);
  margin: 42px 0 15px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  color: #565a53;
}
.legal-content a {
  color: var(--emerald);
  text-decoration: underline;
  text-decoration-color: var(--bronze-soft);
  text-underline-offset: 4px;
}
.legal-content code {
  background: #eee9dc;
  padding: 2px 5px;
}
.legal-table {
  border-top: 1px solid var(--line);
  margin: 25px 0;
}
.legal-table-row {
  display: grid;
  gap: 6px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.legal-table-row.header {
  display: none;
}
.age-warning {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--paper);
}
.age-warning > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--emerald);
}
.age-warning p {
  margin-bottom: 0;
}
.responsible-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.responsible-grid article {
  background: var(--paper);
  padding: 24px;
}
.responsible-grid i {
  color: var(--bronze);
  font-size: 1.2rem;
}
.responsible-grid h3 {
  font-size: 1.35rem;
  margin: 18px 0 8px;
}
.help-box {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.help-box i {
  color: var(--bronze);
  margin-top: 5px;
}
.help-box div {
  display: flex;
  flex-direction: column;
}
.help-box a {
  font-family: var(--serif);
  font-size: 1.8rem;
}
.legal-note {
  border-left: 2px solid var(--bronze);
  padding-left: 18px;
  font-size: 0.82rem;
}
.site-footer {
  padding: 75px 0 25px;
  background: #ebe6da;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  gap: 45px;
}
.footer-intro > p {
  max-width: 390px;
  color: var(--muted);
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-grid h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
}
.footer-hotel {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.footer-hotel h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: var(--emerald);
}
.footer-hotel p,
.footer-hotel a {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 28px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  color: var(--muted);
}
.footer-bottom p {
  margin: 0;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
.cookie-bar {
  position: fixed;
  z-index: 2000;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 104px;
  background: rgba(250, 247, 239, 0.985);
  border-top: 1px solid var(--line);
  padding: 22px clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -12px 38px rgba(23, 50, 39, 0.1);
  backdrop-filter: blur(14px);
}
.cookie-bar[hidden],
.cookie-preferences[hidden],
.lightbox[hidden] {
  display: none;
}
.cookie-bar p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.cookie-bar a {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 16px;
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.cookie-preferences {
  position: fixed;
  z-index: 2100;
  inset: 0;
  background: rgba(13, 42, 32, 0.34);
  display: grid;
  place-items: end center;
  padding: 20px;
}
.cookie-panel-inner {
  position: relative;
  background: var(--paper);
  width: min(100%, 620px);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cookie-panel-inner h2 {
  font-size: 2.4rem;
}
.cookie-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--emerald);
  cursor: pointer;
}
.cookie-option {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cookie-option > div {
  display: flex;
  flex-direction: column;
}
.cookie-option span {
  color: var(--muted);
  font-size: 0.74rem;
}
.cookie-option input {
  position: absolute;
  opacity: 0;
}
.switch {
  width: 44px;
  height: 24px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 20px;
  flex: 0 0 auto;
}
.switch span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #aaa;
  transition: 0.2s;
}
.cookie-option input:checked + .switch span,
.switch.fixed span {
  transform: translateX(18px);
  background: var(--emerald);
}
.cookie-panel-actions {
  margin-top: 22px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(9, 27, 21, 0.92);
  display: grid;
  place-items: center;
  padding: 50px 20px;
}
.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 84vh;
  object-fit: contain;
}
.lightbox button {
  position: fixed;
  right: 22px;
  top: 16px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 2.4rem;
  cursor: pointer;
}
[data-lightbox] {
  cursor: zoom-in;
}
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
@media (min-width: 700px) {
  .section {
    padding: 120px 0;
  }
  .split-heading {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-grid,
  .journal-grid,
  .testimonial-grid,
  .contact-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .standard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-item {
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    padding: 34px 0;
  }
  .price {
    grid-column: auto;
    min-width: 180px;
    justify-content: flex-end;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .responsible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-table-row {
    grid-template-columns: 1fr 2fr 0.7fr;
    gap: 20px;
  }
  .legal-table-row.header {
    display: grid;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bronze);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 1.3fr;
  }
  .footer-bottom {
    justify-content: space-between;
  }
  .footer-bottom p {
    white-space: nowrap;
  }
  .legal-links {
    justify-content: flex-start;
  }
  .cookie-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
  }
  .room-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .room-type-grid article {
    padding: 26px;
    border-right: 1px solid var(--line);
  }
  .room-type-grid article:last-child {
    border-right: 0;
  }
  .heritage-item {
    grid-template-columns: 80px 1.1fr 1fr;
    align-items: center;
  }
  .heritage-item.reverse {
    grid-template-columns: 80px 1fr 1.1fr;
  }
  .heritage-item.reverse .heritage-image {
    order: 3;
  }
  .heritage-item.reverse > div:last-child {
    order: 2;
  }
  .contact-hotel-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
  .contact-form-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .overview-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (min-width: 1060px) {
  .menu-toggle {
    display: none;
  }
  .menu-drawer {
    position: static;
    inset: auto;
    width: auto;
    max-width: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible;
    visibility: visible;
    transform: none;
    transition: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .menu-drawer ul {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 26px);
  }
  .menu-drawer li {
    border: 0;
  }
  .menu-drawer li a {
    padding: 9px 0;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    white-space: nowrap;
  }
  .menu-drawer li a:hover,
  .menu-drawer li a.active {
    color: var(--emerald);
    border-bottom-color: var(--bronze);
  }
  .drawer-reserve {
    display: none;
  }
  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }
  .hotel-grid {
    gap: 28px;
  }
  .standard-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature {
    min-height: 330px;
  }
  .overview-grid {
    gap: 100px;
  }
  .experience-layout {
    gap: 100px;
  }
  .legal-layout {
    grid-template-columns: 230px 1fr;
    align-items: start;
  }
  .legal-nav {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    border: 0;
    padding: 0;
  }
  .legal-nav a {
    padding: 4px 0;
  }
  .contact-card {
    min-height: 290px;
  }
}
@media (max-width: 1059px) {
  .site-header {
    background: #faf7ef;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 76px 0 0;
    background: rgba(9, 32, 24, 0.52);
    z-index: 998;
  }
  .navbar {
    position: relative;
    z-index: 1003;
  }
  .menu-toggle {
    z-index: 1004;
  }
  .menu-drawer {
    z-index: 1003;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .menu-drawer,
  .switch span {
    transition: none;
  }
}
