:root {
  --forest: #313a45;
  --forest-dark: #252e38;
  --terracotta: #b25947;
  --terracotta-dark: #934536;
  --cream: #f6eee8;
  --sand: #e7d4c4;
  --gold: #d5a94e;
  --ink: #313a45;
  --muted: #665c56;
  --white: #fffdfb;
  --paper: #f4e8d6 url("img/bg1.jpg") center / cover;
  --paper-surface: rgba(248, 239, 227, 0.7);
  --shadow: 0 12px 32px rgba(63, 41, 30, 0.12);
  --radius: 9px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  margin: 0;
  background: #f4e8d6;
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background: #f4e8d6 url("img/bg1.jpg") center / cover no-repeat;
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-dark);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.65rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 1rem;
}

.skip-link {
  position: fixed;
  z-index: 50;
  left: 1rem;
  top: -5rem;
  padding: 0.7rem 1rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 0.4rem;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: var(--terracotta) url("img/bg.jpg") center / cover;
  backdrop-filter: blur(12px);
  border-bottom: 0;
  box-shadow: 0 2px 10px rgba(56, 31, 23, 0.13);
}

.bar {
  width: min(1200px, calc(100% - 3rem));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: bold;
  line-height: 1.12;
  text-decoration: none;
}

.brand img {
  width: 49px;
  height: 51px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 0.24rem;
  color: #f2e3d5;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 0.69rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.8vw, 1.65rem);
  margin-left: auto;
}

.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: bold;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover {
  color: #f4d075;
}

.languages {
  flex-shrink: 0;
  display: flex;
  border: 1px solid rgba(255, 253, 251, 0.5);
  border-radius: 99px;
  overflow: hidden;
}

.languages a {
  padding: 0.38rem 0.56rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.35;
  text-decoration: none;
}

.languages a[aria-current="true"] {
  background: var(--white);
  color: var(--terracotta);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--terracotta-dark);
  color: var(--white);
}

.header-book {
  min-height: 45px;
  background: var(--white);
  color: var(--terracotta);
}

.header-book:hover,
.header-book:focus-visible {
  background: #f4d075;
  color: var(--forest-dark);
}

main {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(67vh, 600px);
  margin: 2rem 0 0;
  border-radius: calc(var(--radius) + 5px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image,
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-carousel {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  display: none;
  opacity: 0;
}

.carousel-slide.is-active {
  display: block;
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  z-index: 4;
  right: 1.05rem;
  top: 1.05rem;
  display: flex;
  gap: 0.42rem;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 251, 0.75);
  border-radius: 50%;
  background: rgba(178, 89, 71, 0.88);
  color: var(--white);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: var(--terracotta-dark);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(49, 58, 69, 0.14), transparent 54%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 3.5rem));
  margin: clamp(1.4rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-panel h1 {
  color: var(--forest-dark);
  font-size: clamp(2.25rem, 4.4vw, 3.55rem);
}

.eyebrow {
  margin-bottom: 0.82rem;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--terracotta);
}

.hero-text {
  width: min(470px, 100%);
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.14rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-actions .text-link {
  color: var(--forest);
  font-weight: bold;
  text-decoration-color: #e5c28e;
  text-underline-offset: 5px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 5px);
  box-shadow: var(--shadow);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(49, 58, 69, 0.12), transparent 55%);
}

.page-hero > .page-panel {
  position: relative;
  z-index: 1;
  width: min(505px, calc(100% - 3.5rem));
  margin: clamp(1.5rem, 4vw, 2.7rem);
  padding: clamp(1.35rem, 3vw, 2.15rem);
  border-radius: var(--radius);
  background: rgba(244, 232, 214, 0.91);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(2.15rem, 4vw, 3.2rem);
}

.page-hero > .page-panel > p:last-of-type {
  color: var(--muted);
  font-size: 1.04rem;
}

.highlights {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1080px, calc(100% - 2rem));
  margin: 1.7rem auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-surface);
  box-shadow: var(--shadow);
}

.highlights article {
  padding: 1.35rem 1.45rem;
  border-right: 1px solid var(--sand);
}

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

.highlights strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
}

.highlights span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  padding-top: clamp(4rem, 7vw, 6rem);
  scroll-margin-top: 86px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.18rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading > p:last-child {
  color: var(--muted);
}

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

.room {
  overflow: hidden;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--paper-surface);
}

.room img {
  width: 100%;
  aspect-ratio: 263 / 187;
  object-fit: cover;
}

.room div {
  padding: 1.3rem 1.35rem 1.45rem;
}

.room h3 {
  margin-bottom: 0.45rem;
  font-size: 1.55rem;
}

.room p {
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.room .price {
  color: var(--terracotta);
  font-weight: bold;
}

.room a {
  color: var(--terracotta);
  font-weight: bold;
  text-underline-offset: 4px;
}

.fine-print {
  margin: 1.7rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--sand);
  border-radius: 12px;
  background: var(--paper-surface);
  color: var(--muted);
  font-size: 0.92rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.info-grid article,
.terms-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--paper-surface);
}

.info-grid h3,
.terms-grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
}

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

.amenities-grid article {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--paper-surface);
  text-align: center;
}

.amenities-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.amenities-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tourism {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.subheading {
  margin: 0 0 1.2rem;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.subheading.recommendations {
  margin-top: clamp(2.6rem, 5vw, 3.8rem);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.logo-grid a {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--paper-surface);
  color: var(--terracotta);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.logo-grid img {
  max-width: 145px;
  max-height: 58px;
  object-fit: contain;
}

.discover-video {
  padding-top: 0;
}

.discover-video iframe {
  display: block;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 0;
  border-radius: var(--radius);
}

.company-disclosure {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  padding: 1.3rem clamp(1.2rem, 3vw, 2rem);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  color: var(--muted);
  font-size: 0.94rem;
}

.company-disclosure p {
  margin: 0;
}

.company-disclosure a {
  flex-shrink: 0;
  color: var(--terracotta);
  font-weight: bold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: clamp(135px, 14vw, 182px);
  object-fit: cover;
  border-radius: 10px;
}

.room .room-button {
  width: 100%;
  color: var(--white);
  text-decoration: none;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.terms-grid ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.terms-grid li + li {
  margin-top: 0.45rem;
}

.booking-terms {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.1rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--paper-surface);
}

.booking-terms .section-heading {
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
}

.heritage-rates {
  color: #714737;
}

.heritage-rates p {
  margin: 0;
}

.rate-change {
  margin-bottom: 1.25rem !important;
  color: #76564a;
  font-weight: bold;
  text-align: center;
}

.rate-list {
  color: #704435;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.52;
  text-align: center;
}

.breakfast-box {
  width: min(100%, 715px);
  margin: 1.15rem auto 1.35rem;
  padding: 0.45rem 1rem;
  border: 4px solid #795041;
  color: #704435;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.6;
  text-align: center;
}

.booking-warning {
  margin: 1.15rem 0 0 !important;
  color: #f36561;
  font-weight: bold;
  line-height: 1.55;
}

.booking-warning a {
  color: #2c2926;
}

.heritage-links {
  margin-top: 1.25rem !important;
  color: #704435;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.heritage-links a {
  color: #704435;
  font-weight: bold;
}

.heritage-links .legal-access {
  display: block;
  margin-top: 1rem;
  color: var(--terracotta);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.sales-link {
  margin: 1.3rem 0 0;
  text-align: center;
}

.sales-link a {
  color: var(--terracotta);
  font-weight: bold;
}

.sales-link a + a {
  margin-left: 1.2rem;
}

.inline-contact {
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.services {
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 3.3rem);
  border-radius: var(--radius);
  background: var(--terracotta) url("img/bg.jpg") center / cover;
}

.services .eyebrow {
  color: #f4d075;
}

.services h2 {
  color: var(--white);
}

.services .section-heading > p:last-child {
  color: #f6ece3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
}

.service-grid h3 {
  margin-bottom: 0.7rem;
  color: var(--forest-dark);
  font-size: 1.4rem;
}

.service-grid p {
  margin: 0;
}

.location {
  display: grid;
  grid-template-columns: 0.86fr 1.2fr;
  align-items: stretch;
  gap: 1.4rem;
}

.location-copy {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--paper-surface);
  border: 1px solid var(--sand);
}

.location-copy address {
  margin: 1.3rem 0 1.3rem;
  color: var(--forest);
  font-style: normal;
}

.text-link {
  color: var(--forest);
  font-weight: bold;
  text-underline-offset: 5px;
}

.location iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: var(--radius);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--terracotta) url("img/bg.jpg") center / cover;
  color: var(--white);
}

.contact .eyebrow {
  color: #f2d6b4;
}

.contact h2 {
  color: var(--white);
}

.contact p {
  max-width: 610px;
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  min-width: min(310px, 100%);
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
  text-align: center;
}

.contact-actions .button {
  background: var(--white);
  color: var(--terracotta);
}

.contact-actions > a:not(.button) {
  color: var(--white);
  font-weight: bold;
}

.legal {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.legal details {
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 1.3rem 0;
}

.legal summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1.07rem;
  font-weight: bold;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer {
  padding: 2.8rem 1.5rem;
  background: var(--terracotta) url("img/bgFooter.jpg") center / cover;
  color: #ede7dd;
  text-align: center;
}

.site-footer img {
  width: 58px;
  height: auto;
  margin: 0 auto 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  color: #c5bba9;
  font-size: 0.86rem;
}

@media (max-width: 1020px) {
  .bar {
    flex-wrap: wrap;
    gap: 0.85rem 1.2rem;
    padding: 0.8rem 0;
  }

  .main-nav {
    order: 3;
    justify-content: center;
    width: 100%;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 253, 251, 0.3);
  }

  .languages {
    margin-left: auto;
  }

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

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

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

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

  .highlights article:nth-child(-n+2) {
    border-bottom: 1px solid var(--sand);
  }
}

@media (max-width: 760px) {
  .bar,
  main {
    width: min(100% - 1.5rem, 1200px);
  }

  .header-book {
    display: none;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand img {
    width: 42px;
    height: 44px;
  }

  .main-nav {
    gap: 1rem;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 0.75rem;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .hero::after {
    display: none;
  }

  .hero .image-carousel {
    position: relative;
    inset: auto;
    height: clamp(240px, 44vw, 300px);
    flex: none;
    overflow: hidden;
    border-radius: calc(var(--radius) + 5px);
    box-shadow: var(--shadow);
  }

  .hero-panel {
    position: relative;
    bottom: auto;
    width: min(100%, 520px);
    margin: 0.75rem 0 0;
    padding: 1.2rem 1.15rem 1.35rem;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .highlights {
    margin-top: 1rem;
    width: 100%;
  }

  .about,
    .room-grid,
    .info-grid,
    .amenities-grid,
    .logo-grid,
    .service-grid,
    .terms-grid,
  .location,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 0.75rem;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .page-hero::after {
    display: none;
  }

  .page-hero .image-carousel {
    position: relative;
    inset: auto;
    height: clamp(200px, 36vw, 230px);
    flex: none;
    overflow: hidden;
    border-radius: calc(var(--radius) + 5px);
    box-shadow: var(--shadow);
  }

  .page-hero > .page-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 390px);
    margin: 0.75rem 0 0;
    padding: 1rem 0.95rem 1.05rem;
    background: rgba(244, 232, 214, 0.94);
  }

  .page-hero h1 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.8rem, 8.2vw, 2.3rem);
  }

  .page-hero > .page-panel > p:last-of-type {
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .page-hero .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.67rem;
    letter-spacing: 0.14em;
  }

  .page-hero .button {
    min-height: 43px;
    padding: 0.58rem 1.05rem;
    font-size: 0.86rem;
  }

  .section {
    padding-top: 3.3rem;
    scroll-margin-top: 125px;
  }

  .location iframe {
    min-height: 315px;
  }

  .contact {
    flex-direction: column;
    align-items: stretch;
    margin-top: 3.3rem;
  }

  .company-disclosure {
    flex-direction: column;
  }

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

  .breakfast-box {
    border-width: 3px;
  }

  .sales-link a {
    display: block;
  }

  .sales-link a + a {
    margin: 0.85rem 0 0;
  }
}

@media (max-width: 760px) and (max-height: 520px) {
  .hero .image-carousel,
  .page-hero .image-carousel {
    height: 200px;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .languages a {
    padding: 0.36rem 0.48rem;
  }

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

  .highlights article,
  .highlights article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--sand);
  }

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