:root {
  --stone: #f4efe7;
  --stone-deep: #d8c9b5;
  --ink: #241f1a;
  --muted: #6f655b;
  --green: #385b46;
  --red: #8f2f25;
  --white: #fffaf4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--stone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, 1140px);
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.g-4 {
  gap: 1.5rem;
}

.align-items-center {
  align-items: center;
}

.col-lg-7,
.col-lg-5 {
  width: 100%;
}

.site-nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 1rem 0;
  color: var(--white);
}

.site-nav .container,
.legal-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, .58);
  background: rgba(255, 250, 244, .92);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}

.nav-links a {
  border: 1px solid rgba(255, 250, 244, .42);
  padding: .45rem .75rem;
  background: rgba(36, 31, 26, .24);
  color: var(--white);
  font-size: .85rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(255, 250, 244, .16);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 18, 15, .78) 0%, rgba(20, 18, 15, .42) 45%, rgba(20, 18, 15, .12) 100%),
    linear-gradient(0deg, rgba(20, 18, 15, .58) 0%, rgba(20, 18, 15, .04) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: clamp(3.25rem, 9vh, 6.5rem);
}

.eyebrow,
.section-kicker,
.notice-label {
  margin: 0 0 .65rem;
  color: var(--red);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcfbd;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 6rem;
  line-height: .95;
}

.lead {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 250, 244, .9);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(255, 250, 244, .5);
  background: rgba(143, 47, 37, .72);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.badge-status:hover,
.badge-status:focus {
  background: rgba(143, 47, 37, .88);
  color: var(--white);
}

.intro-band {
  padding: 5rem 0;
  background: var(--white);
}

.intro-band h2 {
  max-width: 13ch;
  color: var(--green);
  font-size: 3.25rem;
  line-height: 1.05;
}

.intro-band p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.notice-panel {
  border-left: 4px solid var(--red);
  padding: 1.35rem 0 1.35rem 1.35rem;
}

.notice-panel p {
  margin-top: .55rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.site-footer {
  background: var(--green);
  color: rgba(255, 250, 244, .88);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-size: .95rem;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 250, 244, .9);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
  text-decoration: underline;
}

.legal-page {
  background: var(--white);
}

.legal-nav {
  padding: 1rem 0;
  background: var(--green);
  color: var(--white);
}

.legal-main {
  background: var(--white);
}

.legal-hero {
  padding: 4rem 0 3rem;
  background: var(--stone);
}

.legal-hero h1 {
  max-width: 12ch;
  color: var(--green);
  font-size: 4.5rem;
}

.legal-updated {
  margin: 1rem 0 0;
  color: var(--muted);
}

.legal-content {
  padding: 3rem 0 4rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
}

.legal-block {
  border-top: 1px solid var(--stone-deep);
  padding-top: 1.35rem;
}

.legal-block h2 {
  color: var(--green);
  font-size: 1.8rem;
}

.legal-block p {
  max-width: 68rem;
  margin: .85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-block dl {
  display: grid;
  grid-template-columns: minmax(9rem, 16rem) minmax(0, 1fr);
  gap: .75rem 1.25rem;
  margin: 1rem 0 0;
}

.legal-block dt {
  color: var(--green);
  font-weight: 800;
}

.legal-block dd {
  margin: 0;
  color: var(--muted);
}

.legal-block a {
  color: var(--red);
  font-weight: 750;
}

.gite-page {
  background: var(--white);
}

.gite-hero {
  padding: 4.5rem 0;
  background: var(--stone);
}

.gite-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr);
  gap: 2rem;
  align-items: end;
}

.gite-hero h1 {
  max-width: 11ch;
  color: var(--green);
  font-size: 4.5rem;
}

.gite-lead {
  max-width: 42rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.gite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.gite-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

.gite-summary span {
  border-left: 4px solid var(--red);
  padding: .9rem 1rem;
  background: var(--white);
  color: var(--green);
  font-weight: 850;
}

.gallery-section,
.details-section {
  padding: 4rem 0;
  background: var(--white);
}

.details-section {
  background: var(--stone);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  max-width: 14ch;
  color: var(--green);
  font-size: 3rem;
}

.gallery-section .section-heading h2 {
  max-width: none;
}

.compact-heading {
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.compact-heading h2 {
  max-width: none;
  font-size: 2.35rem;
}

.gite-gallery {
  outline: none;
}

.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: none;
  margin: 0;
  background: var(--green);
}

.gallery-slide.is-active {
  display: block;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide.is-portrait {
  background: var(--stone);
}

.gallery-slide.is-portrait img {
  object-fit: contain;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-controls button,
.gallery-dots button {
  border: 1px solid var(--stone-deep);
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.gallery-controls button {
  min-height: 2.75rem;
  padding: .7rem 1rem;
}

.gallery-controls button:hover,
.gallery-controls button:focus,
.gallery-dots button:hover,
.gallery-dots button:focus,
.gallery-dots button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.gallery-controls span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .8rem;
  overflow: visible;
}

.gallery-dots button {
  flex: 0 0 auto;
  min-width: 2.35rem;
  min-height: 2.35rem;
}

.empty-gallery {
  border-left: 4px solid var(--red);
  padding: 1rem 0 1rem 1rem;
  color: var(--muted);
}

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

.room-card {
  border-top: 1px solid var(--stone-deep);
  padding-top: 1rem;
}

.room-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.35rem;
}

.room-card p {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 2rem;
}

.amenities-grid span {
  border-left: 4px solid var(--red);
  padding: .85rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 720;
}

.equipment-block {
  margin-top: 2.5rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.equipment-grid span {
  border-top: 1px solid var(--stone-deep);
  padding: .85rem 0 0;
  color: var(--ink);
  font-weight: 720;
}

.gite-two-band {
  padding: 3.25rem 0;
  background: var(--green);
  color: var(--white);
}

.gite-two-band .section-kicker,
.gite-two-band h2,
.gite-two-band p {
  color: var(--white);
}

.gite-two-band h2 {
  font-size: 2.8rem;
}

.gite-two-band p {
  max-width: 46rem;
  margin: 1rem 0 0;
  line-height: 1.7;
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 1 1 0;
    max-width: calc(58.333% - .75rem);
  }

  .col-lg-5 {
    flex: 1 1 0;
    max-width: calc(41.667% - .75rem);
  }

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

  .legal-block:first-child,
  .legal-block:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .gite-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .room-grid,
  .amenities-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    padding-top: .85rem;
  }

  .site-nav .container,
  .legal-nav .container,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-links {
    margin-top: .85rem;
  }

  .nav-links a {
    font-size: .82rem;
  }

  .hero {
    min-height: 78vh;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(20, 18, 15, .78) 0%, rgba(20, 18, 15, .36) 68%, rgba(20, 18, 15, .18) 100%);
  }

  .hero-content {
    padding-top: 9.5rem;
    padding-bottom: 2.5rem;
  }

  h1 {
    max-width: 9ch;
    font-size: 3.15rem;
  }

  .lead {
    font-size: 1rem;
  }

  .intro-band {
    padding: 3.25rem 0;
  }

  .intro-band h2 {
    font-size: 2.15rem;
  }

  .badge-status {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gite-hero {
    padding: 3rem 0;
  }

  .gite-hero h1 {
    max-width: 10ch;
    font-size: 2.9rem;
  }

  .gite-lead {
    font-size: 1rem;
  }

  .gite-summary {
    grid-template-columns: 1fr;
  }

  .gallery-section,
  .details-section {
    padding: 3rem 0;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .gallery-section .section-heading h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .compact-heading h2 {
    font-size: 1.9rem;
  }

  .gallery-stage {
    aspect-ratio: 4 / 3;
  }

  .gallery-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: .5rem;
  }

  .gallery-controls button {
    width: auto;
    min-height: 2.5rem;
    padding: .55rem .5rem;
    font-size: .9rem;
    line-height: 1.1;
  }

  .gallery-controls span {
    min-width: 3.6rem;
    text-align: center;
    white-space: nowrap;
  }

  .gallery-dots {
    display: none;
  }

  .gite-two-band h2 {
    font-size: 2.15rem;
  }

  .notice-panel {
    padding-left: 1rem;
  }

  .legal-hero {
    padding: 2.75rem 0 2.25rem;
  }

  .legal-hero h1 {
    max-width: 11ch;
    font-size: 2.75rem;
  }

  .legal-block dl {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .legal-block dd {
    margin-bottom: .65rem;
  }
}

.section-intro,
.seo-location p,
.faq-section p {
  max-width: 68rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.seo-location,
.faq-section {
  padding: 4rem 0;
  background: var(--stone);
}

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

.highlight-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-card,
.faq-grid details {
  border-top: 1px solid var(--stone-deep);
  padding-top: 1rem;
}

.highlight-card h3,
.faq-grid summary {
  margin: 0;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 850;
}

.highlight-card p,
.faq-grid details p {
  margin-top: .65rem;
  font-size: 1rem;
}

.faq-grid summary {
  cursor: pointer;
}

.faq-grid details[open] summary {
  color: var(--red);
}

@media (max-width: 900px) {
  .highlight-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
