@charset "UTF-8";

:root {
  --ink: #17211b;
  --muted: #607064;
  --paper: #fbf7ef;
  --cream: #f2eadb;
  --green: #2f5e45;
  --green-dark: #163626;
  --clay: #a34632;
  --gold: #d8a12c;
  --line: rgba(23, 33, 27, 0.14);
  --shadow: 0 18px 45px rgba(22, 54, 38, 0.16);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(22, 54, 38, 0.1);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.menu-toggle.is-open {
  color: var(--clay);
}

.main-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.96rem;
}

.main-nav a {
  position: relative;
  z-index: 1;
  padding: 6px 0;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--clay);
}

.nav-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  transform: translate(0, 30px);
  transition: transform 0.28s ease, width 0.28s ease;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: clamp(610px, 82vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 32, 23, 0.88), rgba(15, 32, 23, 0.44) 54%, rgba(15, 32, 23, 0.18));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 54px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c55e;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--green-dark);
  background: var(--gold);
  border-color: var(--gold);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 44px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

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

.hero-facts dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--green);
}

.contact-strip a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-strip a:last-child {
  border-right: 0;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.about-grid,
.floor-grid,
.contact-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.copy-block,
.highlight-box,
.info-card,
.food-card,
.room-card,
.price-card,
.food-offer,
.related-section article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff !important;
  background: var(--green-dark);
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(22, 54, 38, 0.26);
}

.floating-top:hover {
  background: var(--clay);
}

.copy-block,
.highlight-box,
.info-card,
.food-offer,
.related-section article {
  padding: clamp(22px, 3vw, 34px);
}

.copy-block p:first-child {
  margin-top: 0;
}

.copy-block p:last-child,
.highlight-box p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.highlight-box {
  color: #fff;
  background: var(--green-dark);
}

.highlight-box h3 {
  color: #f5cf6e;
}

.info-card h3,
.food-offer h3,
.related-section h3 {
  margin-bottom: 16px;
  color: var(--clay);
}

.info-card ul,
.amenities ul {
  padding-left: 20px;
  margin: 0;
}

.amenities ul {
  padding-left: 0;
  list-style: none;
}

.info-card li,
.amenities li {
  margin: 7px 0;
}

.amenities li {
  position: relative;
  min-height: 26px;
  padding-left: 30px;
  break-inside: avoid;
}

.amenities li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(47, 94, 69, 0.16);
  content: attr(data-icon);
  font-size: 0.68rem;
  line-height: 1;
}

.floor-grid {
  margin-top: 24px;
}

.amenities {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.amenities h3 {
  margin-bottom: 20px;
  color: var(--green);
}

.amenities ul {
  columns: 2 300px;
  column-gap: 38px;
}

.food-section,
.prices-section {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background: #fff;
}

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.food-card {
  overflow: hidden;
}

.food-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.food-card div {
  padding: 24px;
}

.food-card h3 {
  margin-bottom: 12px;
  color: var(--green);
  text-transform: uppercase;
}

.food-card p {
  margin: 8px 0 0;
  font-weight: 700;
}

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

.room-card {
  overflow: hidden;
}

.room-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  background: #d8d0c2;
}

.room-body {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.room-body h3 {
  font-size: 1.28rem;
}

.room-body a,
.contact-details a,
.related-section a,
.related-section span {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  color: #fff;
  background: var(--green);
}

.price-card h3 {
  color: var(--clay);
}

.price-card h4 {
  margin: 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.08;
}

.price-card.featured h3,
.price-card.featured h4 {
  color: #f5cf6e;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.price-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.price-card.featured span {
  color: rgba(255, 255, 255, 0.8);
}

.food-offer {
  margin-top: 24px;
}

.stay-offer {
  margin-top: 0;
}

.food-offer > h3 {
  margin-bottom: 18px;
}

.map {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details .info-card {
  box-shadow: none;
}

.contact-details a {
  display: block;
  margin-top: 8px;
}

.related-section {
  padding-top: 20px;
}

.related-section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.related-section a,
.related-section span {
  display: block;
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 18px;
  color: #fff;
  background: var(--green-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer span {
  color: #f5cf6e;
  font-weight: 800;
  text-decoration: none;
}

.photo-credit {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  text-align: center;
}

.photo-credit a {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .main-nav {
    display: none !important;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(23, 33, 27, 0.1);
  }

  .main-nav a:last-of-type {
    border-bottom: 0;
  }

  .nav-marker {
    display: none;
  }

  .contact-strip,
  .about-grid,
  .floor-grid,
  .food-grid,
  .rooms-grid,
  .contact-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .room-card iframe {
    height: 320px;
  }

  .map {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }

  .main-nav {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

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

  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-strip a {
    min-height: 58px;
    font-size: 0.95rem;
  }

  .section {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .food-section,
  .prices-section {
    padding-inline: 14px;
  }

  .amenities ul {
    columns: 1;
  }

  .room-body {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .room-card iframe {
    height: 260px;
  }

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