:root {
  --cream: #f6f0e7;
  --sand: #e5d8c7;
  --stone: #b8aa96;
  --clay: #9a6b43;
  --olive: #69745f;
  --moss: #3f5147;
  --ink: #2d312c;
  --muted: #6f716b;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(45, 49, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: static;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(63, 81, 71, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 250, 207, 0.92) 0%, rgba(255, 250, 207, 0) 30%),
    linear-gradient(110deg, #b9852d 0%, #e4bd59 22%, #fff4bd 48%, #e5bd58 72%, #bf8a31 100%);
  min-height: clamp(170px, 18vw, 250px);
}

.brand-logo {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 30px 18px 34px;
  color: #2d312c;
  text-align: center;
}

.brand-icon {
  width: clamp(66px, 7vw, 96px);
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: clamp(1.05rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 52px);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  color: var(--ink);
  background: #f4e6d0;
  box-shadow: 0 10px 28px rgba(45, 49, 44, 0.08);
}

nav a {
  padding: 10px 18px;
  border: 1px solid rgba(63, 81, 71, 0.16);
  border-radius: 999px;
  background: rgba(246, 240, 231, 0.72);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

nav a:hover {
  transform: translateY(-1px);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(45, 49, 44, 0.12);
}

.nav-book {
  border-color: rgba(143, 95, 19, 0.35);
  background: linear-gradient(110deg, #b88727 0%, #f3d878 52%, #b88727 100%);
  color: #2d250f;
  box-shadow: 0 8px 22px rgba(154, 104, 22, 0.22);
}

.hero {
  padding: clamp(28px, 4vw, 52px) clamp(18px, 5vw, 78px);
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background: var(--white);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.teaser-slider {
  position: relative;
  width: min(100%, 340px);
  height: clamp(300px, 45vh, 430px);
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.teaser-slider::after {
  content: "A peek inside";
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(45, 49, 44, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.teaser-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: teaserSlide 20s infinite;
}

.teaser-slider img:nth-child(2) {
  animation-delay: 5s;
}

.teaser-slider img:nth-child(3) {
  animation-delay: 10s;
}

.teaser-slider img:nth-child(4) {
  animation-delay: 15s;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

@keyframes teaserSlide {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  6%,
  24% {
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

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

.hero-eyebrow {
  margin-bottom: 6px;
  color: #c9a35a;
  font-size: clamp(1.65rem, 3.6vw, 3.2rem);
  letter-spacing: 0.12em;
}

.hero-location {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

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

h3 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.hero-content p:not(.eyebrow),
.intro-section p,
.panel-copy p,
.booking-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-email-button {
  flex-direction: column;
  min-width: 180px;
  line-height: 1.12;
  text-align: center;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--moss);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(63, 81, 71, 0.22);
}

.secondary {
  background: rgba(105, 116, 95, 0.12);
  color: var(--moss);
}

.tertiary {
  border: 1px solid rgba(63, 81, 71, 0.18);
  background: var(--white);
  color: var(--ink);
}

section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 52px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--cream);
}

.intro-panel {
  padding-top: clamp(30px, 5vw, 52px);
  border-top: 1px solid rgba(184, 135, 39, 0.22);
}

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

.location-panel {
  padding-top: clamp(30px, 5vw, 52px);
  border-top: 1px solid rgba(184, 135, 39, 0.22);
}

.location-section .section-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nearby-title {
  color: var(--ink);
}

.nearby-heading {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.location-section .section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.location-map {
  max-width: 1100px;
  margin: 30px auto 0;
}

.location-map img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-map figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: #f4e6d0;
}

.quick-info article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  background: #f4e6d0;
  border: 1px solid rgba(63, 81, 71, 0.12);
}

.quick-info span {
  color: var(--stone);
  font-weight: 900;
}

.quick-info h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.quick-info p {
  color: var(--muted);
}

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

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

.spaces-section .section-heading .eyebrow {
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  letter-spacing: 0.1em;
}

.inside-heading {
  margin-top: clamp(36px, 6vw, 72px);
}

.space-panels {
  display: grid;
  gap: clamp(44px, 7vw, 86px);
}

.space-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  padding-top: clamp(30px, 5vw, 52px);
  border-top: 1px solid rgba(184, 135, 39, 0.22);
}

.panel-copy {
  position: sticky;
  top: 118px;
}

.panel-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.panel-copy li {
  padding: 12px 14px;
  background: var(--cream);
  border-left: 4px solid var(--olive);
  border-radius: 6px;
  color: var(--moss);
  font-weight: 700;
}

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

.photo-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(45, 49, 44, 0.08);
}

.photo-grid .feature-photo {
  grid-column: 1 / -1;
  height: min(56vw, 560px);
}

.rates-panel {
  align-items: stretch;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.rates-intro {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto 4px;
  text-align: center;
}

.rates-title {
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.rates-intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.rate-card,
.rate-note {
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid rgba(63, 81, 71, 0.14);
  box-shadow: 0 10px 24px rgba(45, 49, 44, 0.08);
  text-align: center;
}

.rate-card span {
  display: block;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-card strong {
  display: block;
  margin: 18px 0 4px;
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 1;
}

.rate-card p,
.rate-note p {
  margin: 0;
  color: var(--muted);
}

.rate-note {
  grid-column: 1 / -1;
  min-height: auto;
  background: var(--moss);
  color: var(--white);
  text-align: center;
}

.rate-note h4 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
}

.rate-note p {
  color: rgba(255, 253, 249, 0.78);
}

.features-section {
  background:
    linear-gradient(rgba(63, 81, 71, 0.9), rgba(63, 81, 71, 0.9)),
    url("assets/exterior.jpeg") center / cover;
  color: var(--white);
}

.features-section .eyebrow {
  color: var(--sand);
}

.features-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.feature-list p {
  margin: 0;
  padding: 16px;
  min-height: 76px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.12);
  border: 1px solid rgba(255, 253, 249, 0.18);
  font-weight: 750;
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  background: var(--sand);
  text-align: center;
}

.booking-section h2 {
  max-width: 740px;
}

.booking-section .eyebrow {
  font-size: clamp(1.15rem, 2.3vw, 1.8rem);
  letter-spacing: 0.12em;
}

.contact-links,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-links {
  margin-top: 18px;
}

.contact-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.48);
  color: var(--moss);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  background: var(--ink);
  color: rgba(255, 253, 249, 0.78);
}

footer p {
  margin: 0;
}

.footer-home-tab {
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.1);
  color: var(--white);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.footer-home-tab:hover {
  transform: translateY(-1px);
  background: rgba(255, 253, 249, 0.18);
}

@media (max-width: 980px) {
  .hero,
  .intro-section,
  .space-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
    justify-content: flex-start;
  }

  .teaser-slider {
    width: min(100%, 420px);
    height: 340px;
  }

  .panel-copy {
    position: static;
  }

  .quick-info,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

  nav {
    justify-content: center;
  }

  .hero-media {
    min-height: auto;
  }

  .teaser-slider {
    width: 100%;
    height: 300px;
  }

  .quick-info,
  .feature-list,
  .rates-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .rate-note {
    grid-column: auto;
  }

  .photo-grid img,
  .photo-grid .feature-photo {
    height: 300px;
  }

  .booking-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .contact-links,
  .booking-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .contact-links a {
    text-align: center;
  }

  .footer-home-tab {
    text-align: center;
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
