:root {
  --paper: #f7f2ea;
  --ink: #20201d;
  --muted: #6e695f;
  --line: rgba(32, 32, 29, .14);
  --sage: #677564;
  --clay: #a85f42;
  --sea: #315f69;
  --white: #fffaf3;
  --shadow: 0 24px 70px rgba(32, 32, 29, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; letter-spacing: 0; }
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
}
.primary-nav ul { display: flex; justify-content: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { color: var(--muted); font-size: .95rem; }
.primary-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions__phone { color: var(--muted); font-size: .92rem; white-space: nowrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}
.button--small { min-height: 40px; padding-inline: 16px; font-size: .9rem; }
.button--ghost { background: transparent; color: var(--ink); }

.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 4px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); }

.section { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 88px 0; }
.section-heading { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; margin-bottom: 30px; }
.section-heading span, .eyebrow, .section__kicker {
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-heading h2, .split-copy h2, .page-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.04; }
.section-heading h2 { max-width: 760px; font-size: clamp(2rem, 5vw, 4.8rem); }

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: 38px;
  align-items: center;
}
.page-hero--compact { display: block; max-width: 900px; }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 6rem); }
.page-hero p { max-width: 680px; font-size: 1.12rem; }
.page-hero__image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; }
.page-hero--image {
  position: relative;
  width: 100%;
  min-height: 460px;
  margin: 0;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 32, 29, .76), rgba(32, 32, 29, .42));
}
.page-hero--image:not(.has-image)::before { background: linear-gradient(90deg, rgba(32, 32, 29, .94), rgba(49, 95, 105, .68)); }
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}
.page-hero--image h1 { max-width: 900px; color: var(--white); }
.page-hero--image .breadcrumbs { color: rgba(255,250,243,.76); }
.page-hero--image .breadcrumbs a { color: var(--white); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero__actions .button--ghost { border-color: rgba(255,250,243,.72); color: var(--white); }

.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.breadcrumbs a { color: var(--sea); }

.room-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.room-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.room-card__image { display: block; background: #ded6c8; aspect-ratio: 4 / 3; }
.room-card__image img { width: 100%; height: 100%; object-fit: cover; }
.room-card__body { padding: 18px; }
.room-card h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; font-weight: 500; }
.room-card ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 18px; padding: 0; }
.room-card li { padding: 6px 9px; background: rgba(103, 117, 100, .1); color: var(--sage); border-radius: 4px; font-size: .84rem; }
.room-card__actions { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; font-weight: 700; }

.experience-row, .review-grid, .post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.experience-card, .review-card, .post-card, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.experience-card img, .post-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.experience-card div, .post-card div, .review-card, .contact-card { padding: 22px; }
.experience-card h3, .experience-card h2, .post-card h2, .contact-card h2 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }

.content-body { max-width: 820px; }
.content-body > * + * { margin-top: 1.1em; }
.content-body h2, .content-body h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.1; }
.content-body img { border-radius: 8px; }

.reservation-band {
  position: sticky;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(260px, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 20px));
  margin: 0 auto 10px;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.reservation-band__copy span { display: block; color: rgba(255,250,243,.68); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.reservation-band__copy strong { display: block; line-height: 1.25; }
.reservation-band__details { min-width: 0; color: rgba(255,250,243,.72); }
.reservation-band__details span { display: block; font-size: .82rem; }
.reservation-band__details strong { display: block; color: var(--white); font-size: .98rem; line-height: 1.35; }
.reservation-band__button { min-height: 42px; border-color: #ff7048; background: #ff7048; white-space: nowrap; }

.site-footer { background: var(--ink); color: var(--white); padding: 72px 0 28px; }
.site-footer p, .site-footer a, .site-footer li { color: rgba(255,250,243,.74); }
.site-footer__inner, .site-footer__bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}
.site-footer__inner { display: grid; grid-template-columns: 1.15fr .7fr 1fr .9fr; gap: 32px; }
.site-footer h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.site-footer .menu { list-style: none; padding: 0; margin: 0; }
.footer-list li + li { margin-top: 10px; }
.site-footer .menu li + li { margin-top: 10px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,250,243,.16); color: rgba(255,250,243,.52); }
.site-footer__credits { display: inline-flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.site-footer__credits a { color: rgba(255,250,243,.74); border-bottom: 1px solid rgba(255,250,243,.26); }

@media (max-width: 900px) {
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .primary-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }
  .nav-open .primary-nav { display: block; }
  .primary-nav ul { display: grid; justify-content: stretch; }
  .header-actions__phone { display: none; }
  .menu-toggle { display: block; }
  .page-hero, .room-grid, .experience-row, .review-grid, .post-grid, .site-footer__inner, .reservation-band { grid-template-columns: 1fr; }
  .reservation-band { position: static; width: 100%; margin: 0; border-radius: 0; }
  .reservation-band__button { width: 100%; }
  .reservation-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .section-heading { grid-template-columns: 1fr; }
  .page-hero--image { min-height: 390px; padding: 72px 0; }
  .reservation-band { gap: 10px; padding: 14px 16px; }
  .reservation-band__details strong { font-size: .92rem; }
  .site-footer__bottom { flex-direction: column; }
  .site-footer__credits { justify-content: flex-start; }
  .brand__text { display: none; }
}
