:root {
  --ivory: #fffaf2;
  --cream: #f5efe4;
  --stone: #d8d1c7;
  --sage: #7d8b72;
  --forest: #22382d;
  --charcoal: #2e2e2e;
  --muted: #6d7069;
  --gold: #b59b6a;
  --line: rgba(46,46,46,.14);
  --shadow: 0 28px 70px rgba(34,56,45,.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

.site-logo img{
    height:102px;
    width:auto;
    display:block;
}


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

.site-version {
  margin-left: 12px;
  opacity: 0.6;
  font-size: 0.85em;
}


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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 72px);
  background: rgba(255,250,242,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 800;
}

.brand-copy strong {
  display: block;
  line-height: 1;
  font-weight: 800;
}

.brand-copy em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: .75rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
  color: #4c504a;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  display: grid;
  place-items: end center;
  color: #fff;
  text-align: center;
}

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



.hero {
  display: grid;
  place-items: end start;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(24px, 6vw, 100px);
  padding-bottom: clamp(70px, 10vw, 118px);
  text-align: left;
}

.hero-content .subhead {
    max-width: 520px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
}

.hero .kicker { color: #e8d9ad; }

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

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .96;
}

h1 {
  font-size: clamp(3.4rem, 5.5vw, 4.1rem);
  margin-bottom: 18px;
}



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

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-lede {
  max-width: 780px;
  margin: 0 0 30px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  text-align: left;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      45deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.38) 22%,
      rgba(0,0,0,0.16) 42%,
      rgba(0,0,0,0.04) 58%,
      rgba(0,0,0,0.00) 72%
    );
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
}

.btn-secondary {
  border-color: rgba(255,255,255,.8);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-light {
  background: #fff;
  color: var(--forest);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.fact-strip div {
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child { border-right: 0; }

.fact-strip strong {
  display: block;
  font-size: 1.08rem;
}

.fact-strip span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 3px;
}

.intro-section,
.area-section,
.gallery-section,
.location-section,
.booking-section {
  padding: clamp(82px, 10vw, 145px) clamp(18px, 4vw, 72px);
}

.narrow,
.section-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.narrow p:not(.kicker),
.section-head p:not(.kicker),
.booking-section p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section p:not(.kicker) {
  font-size: 1.25rem;
  line-height: 1.8;
}

.story-block {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 720px;
  background: var(--cream);
}

.story-block.image-right {
  grid-template-columns: .95fr 1.05fr;
}

.story-block.image-right .story-image { order: 2; }
.story-block.image-right .story-copy { order: 1; }

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 95px);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.story-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.story-copy li:before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
}

.hot-tub-section {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  min-height: 700px;
  background: var(--forest);
  color: #fff;
}

.hot-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px);
}

.hot-copy .kicker { color: #d9c486; }

.hot-copy p {
  color: #e6ece5;
  font-size: 1.08rem;
}

.small-note {
  font-size: .95rem !important;
  opacity: .85;
}

.hot-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32,56,45,.20);
}

.placeholder-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(0,0,0,.25);
  color: #fff;
}

.placeholder-label strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .94;
}

.placeholder-label span {
  display: block;
  margin-top: 8px;
}

.area-section {
  background: var(--ivory);
}

#eat-drink {
  padding-top: clamp(32px, 5vw, 60px);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.area-grid article,
.experience-card {
  background: #fff;
  box-shadow: 0 10px 35px rgba(46,46,46,.08);
}

.area-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.area-grid article div {
  padding: 24px;
}

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

.nearby-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(82px, 10vw, 145px) clamp(18px, 4vw, 72px);
  background: var(--cream);
}

.nearby-copy p {
  color: var(--muted);
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.distance-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.distance-list strong {
  display: block;
}

.distance-list span {
  color: var(--muted);
}

.pub-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 520px;
  background: var(--forest);
  color: #fff;
}

.pub-card {
  padding: clamp(44px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pub-card .kicker { color: #d9c486; }

.pub-card p {
  color: #e6ece5;
}

.pub-placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(32,56,45,.70), rgba(32,56,45,.70)),
    linear-gradient(135deg, #45654f, #b59b6a);
}

.pub-placeholder strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .94;
}

.pub-placeholder span {
  display: block;
  margin-top: 10px;
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.reviews-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(82px, 10vw, 145px) clamp(18px, 4vw, 72px);
  background: var(--forest);
  color: #fff;
}

.reviews-section .section-head {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.reviews-section .kicker { color: #d9c486; }

.reviews-section .section-head h2 {
  color: #fff;
}

.reviews-section .section-head p:not(.kicker) {
  color: #dce5dc;
  font-size: 1.06rem;
}

.reviews-section .area-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}

.reviews-section .area-grid article {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.16);
}

.review-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-content {
  flex-grow: 1;
  padding: 0 !important;
}

.review-content h3 {
  min-height: 2.6em;
  margin: 0 0 18px;
  color: var(--charcoal);
}

.review-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.review-rating {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .08em;
}

blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  font-size: 1.08rem;
}

cite {
  display: block;
  margin-top: 18px;
  color: #d2ddd2;
  font-size: .9rem;
  font-style: normal;
}

.map-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  max-width: 1180px;
  margin: 48px auto 0;
}

.map-card {
  min-height: 500px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.arrival-card {
  background: var(--forest);
  color: #fff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arrival-card p {
  color: #e6ece5;
}

.booking-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px clamp(18px, 4vw, 72px);
  background: #151913;
  color: #fff;
}

.site-footer span {
  display: block;
  color: #c6cec3;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0,0,0,.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1160px, 94vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: block;
    padding: 9px 14px;
    border: 1px solid var(--forest);
    border-radius: 999px;
    background: transparent;
    font-weight: 800;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 18px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 240px;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .fact-strip,
  .area-grid,
  .gallery-grid,
  .distance-list {
    grid-template-columns: repeat(2, 1fr);
  }


  .reviews-section .section-head {
    max-width: 760px;
  }

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

  .story-block,
  .story-block.image-right,
  .hot-tub-section,
  .nearby-section,
  .pub-section,
  .reviews-section,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .story-block.image-right .story-image,
  .story-block.image-right .story-copy {
    order: initial;
  }

  .story-image img {
    height: 520px;
  }


  .reviews-section .section-head {
    text-align: left;
  }

  .reviews-section .area-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .map-card,
  .map-card iframe {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 14px;
  }

  .brand-copy em {
    display: none;
  }

  .hero {
    min-height: 780px;
  }
  
  
  .hero-content {
  padding-bottom: clamp(180px, 18vw, 260px);
  }
  
  

  h1 {
    font-size: clamp(3.2rem, 6vw, 6rem);
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .fact-strip,
  .area-grid,
  .gallery-grid,
  .distance-list {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-image img {
    height: 360px;
  }

  .story-copy,
  .hot-copy,
  .pub-card {
    padding: 42px 20px;
  }

  .hot-tub-section,
  .pub-section {
    min-height: auto;
  }

  .gallery-grid img {
    height: 260px;
  }

  .intro-section,
  .area-section,
  .gallery-section,
  .location-section,
  .booking-section,
  .nearby-section,
  .reviews-section {
    padding: 62px 18px;
  }


  .reviews-section .section-head {
    text-align: left;
  }

  .reviews-section .area-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .map-card,
  .map-card iframe {
    min-height: 420px;
  }

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

/* =========================================================
   v0.7.1 responsive typography refinements
   Based on device checks: narrow phones and foldables needed
   smaller H1/H2/body/button type and slightly higher hero copy.
   ========================================================= */

@media (max-width: 640px) {

  .hero {
    min-height: 740px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 18px;
    padding-bottom: clamp(150px, 22vh, 220px);
  }

  h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
    line-height: .98;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.45rem);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-lede {
    max-width: 92%;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    line-height: 1.45;
    margin-bottom: 22px;
  }

  .narrow p:not(.kicker),
  .section-head p:not(.kicker),
  .booking-section p:not(.kicker),
  .story-copy p,
  .nearby-copy p,
  .area-grid p,
  .hot-copy p,
  .arrival-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .intro-section p:not(.kicker) {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .btn {
    min-height: 42px;
    padding: 10px 17px;
    font-size: .94rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .kicker {
    font-size: .68rem;
    letter-spacing: .14em;
  }

  .fact-strip strong {
    font-size: 1rem;
  }

  .fact-strip span {
    font-size: .86rem;
  }

  .review-content p {
    font-size: .98rem;
    line-height: 1.58;
  }

  .review-rating {
    font-size: 1rem;
  }
}

@media (max-width: 430px) {

  .site-logo img {
    height: 76px;
  }

  .site-header {
    min-height: 74px;
  }

  .primary-nav {
    top: 74px;
  }

  h1 {
    font-size: clamp(2.35rem, 10.6vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.4vw, 2.25rem);
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: clamp(175px, 26vh, 250px);
  }

  .btn {
    font-size: .9rem;
    padding: 9px 15px;
  }
}

@media (max-width: 380px) {

  h1 {
    font-size: clamp(2.15rem, 10.4vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8.2vw, 2.1rem);
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-bottom: clamp(190px, 29vh, 265px);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .intro-section p:not(.kicker) {
    font-size: 1.02rem;
  }

  .narrow p:not(.kicker),
  .section-head p:not(.kicker),
  .booking-section p:not(.kicker),
  .story-copy p,
  .nearby-copy p,
  .area-grid p,
  .hot-copy p,
  .arrival-card p {
    font-size: .96rem;
  }

  .btn {
    font-size: .86rem;
    padding: 9px 13px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {

  h1 {
    font-size: clamp(3rem, 5.3vw, 3.8rem);
  }

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

