:root {
  --terra: #c95a3c;
  --terra-deep: #a8442a;
  --cream: #241d18;
  --paper: #161210;
  --panel: #2c241e;
  --white: #efe6dc;
  --ink: #efe6dc;
  --stone: #b6aa9c;
  --rule: #453c34;
  --forest: #0b1210;
  --forest-mid: #121a16;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--white);
  color: var(--ink);
  padding: 0.6rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

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

.btn-terra {
  background: var(--terra);
  color: var(--white);
}

.btn-terra:hover {
  background: var(--terra-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
}

.nav-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: block;
  width: 136px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand img {
  width: 136px;
  height: auto;
  margin-top: -26px;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-book {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.nav-book::after {
  display: none;
}

.nav.is-scrolled,
.nav.is-open {
  background: rgba(250, 247, 242, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule);
}

.nav.is-scrolled .nav-book,
.nav.is-open .nav-book {
  border-color: var(--terra);
  color: var(--terra);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.3rem auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(3.2px) rotate(40deg);
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-3.2px) rotate(-40deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  margin-top: -4.5rem;
  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 52%;
  animation: hero-zoom 22s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 14, 10, 0.38) 0%, rgba(18, 14, 10, 0.18) 38%, rgba(18, 14, 10, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 9.5rem;
  animation: fade-up 1.1s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  max-width: 12ch;
}

.hero-sub {
  max-width: 28rem;
  margin-top: 1.25rem;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Booking bar */

.booking-slot {
  position: relative;
  z-index: 5;
  width: min(980px, calc(100% - 2rem));
  margin: -4.25rem auto 0;
}

.booking-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  gap: 0.85rem 1rem;
  align-items: end;
  padding: 1.15rem 1.2rem;
  background: var(--panel);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.field input,
.field select {
  width: 100%;
  height: 2.85rem;
  padding: 0 0.7rem;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}

.field input:focus,
.field select:focus,
.btn:focus-visible,
.nav-links a:focus-visible,
.mail:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

.booking-submit {
  min-width: 9.5rem;
}

/* Sections */

.section {
  padding: 7.5rem 0;
}

.section-head {
  max-width: 28rem;
  margin-bottom: 2.75rem;
}

.section-head h2,
.house-copy h2,
.location-copy h2,
.book h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 400;
}

/* House */

.house {
  padding-top: 8.5rem;
}

.house-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 5rem;
  align-items: center;
}

.house-copy p {
  margin-top: 1.35rem;
  color: var(--stone);
  max-width: 38rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.4rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}

.facts dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}

.facts dd {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.house-photo {
  overflow: hidden;
}

.house-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.85s ease;
}

.house-photo:hover img {
  transform: scale(1.06);
}

/* Rooms */

.rooms {
  background: var(--cream);
}

.cards + .quiet {
  margin-bottom: 0.15rem;
}

.quiet + .cards,
.cards + .cards {
  margin-top: 2.35rem;
}

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

.card figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.85s ease;
}

.portraits {
  text-align: center;
}

.portraits .card figure {
  margin: 0 auto;
  width: min(100%, 17.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  background: var(--panel);
}

.portraits .card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.card:hover img,
.card:focus-within img {
  transform: scale(1.08);
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiet {
  margin-top: 2rem;
  font-size: 0.98rem;
  color: var(--stone);
}

/* Location */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4.5rem;
  align-items: start;
}

.location-photo {
  overflow: hidden;
}

.location-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.85s ease;
}

.location-photo:hover img {
  transform: scale(1.06);
}

.location-copy h2 {
  margin-bottom: 1.4rem;
}

.location-copy address {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--stone);
}

.accent-photo {
  margin: 2.5rem 0 0;
  max-width: 26rem;
}

.accent-photo {
  overflow: hidden;
}

.accent-photo img {
  width: 100%;
  height: auto;
  transition: transform 0.85s ease;
}

.accent-photo:hover img {
  transform: scale(1.06);
}

/* Book */

.book {
  background: var(--cream);
  text-align: center;
}

.book-inner {
  max-width: 40rem;
}

.book-lead {
  margin: 1.15rem auto 0;
  max-width: 28rem;
  color: var(--stone);
}

.mail {
  display: inline-block;
  margin-top: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--terra);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mail:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.platforms {
  margin-top: 1.5rem;
}

/* Footer */

.footer {
  background: var(--forest);
  color: #e7dfd4;
  padding: 3.4rem 0 2.8rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.35rem;
  font-size: 0.95rem;
}

.footer-meta span + span::before,
.footer-meta a::before {
  content: "·";
  margin-right: 0.55rem;
  color: rgba(231, 223, 212, 0.5);
}

.footer-meta a {
  color: #f0c2b0;
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.copyright {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: rgba(231, 223, 212, 0.62);
}

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

  .house-grid,
  .location-grid {
    gap: 2.25rem;
  }

  .section {
    padding: 5rem 0;
  }

  .house {
    padding-top: 6.5rem;
  }

  .location-photo img {
    aspect-ratio: 3 / 2;
  }

  .accent-photo {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.5rem 1.25rem 1.4rem;
    background: rgba(250, 247, 242, 0.98);
    color: var(--ink);
    box-shadow: 0 16px 30px rgba(28, 24, 20, 0.08);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
  }

  .booking-submit {
    grid-column: 1 / -1;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .hero-inner {
    padding: 7.5rem 0 8rem;
  }

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

  .wrap {
    width: min(1120px, calc(100% - 1.75rem));
  }
}

@media (max-width: 520px) {
  .booking-bar {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card img,
  .nav-links a::after,
  .nav-toggle span {
    transition: none;
  }

  .card:hover img,
  .btn:hover {
    transform: none;
  }
}


.book-frame-wrap {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.book-frame {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
  background: var(--white);
}

.book-inner .btn {
  display: inline-block;
  margin-top: 0.5rem;
}


.gallery-label {
  margin: 2.5rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-grid.views {
  grid-template-columns: 1fr 1fr;
}

.gallery-grid .wide {
  grid-column: 1 / -1;
}

.gallery-grid figure {
  margin: 0;
  background: var(--panel);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-page .gallery-grid img,
.gallery-page .gallery-grid figure:hover img {
  transform: none;
  transition: none;
}


.gallery-grid figcaption {
  padding: 0.65rem 0.2rem 0;
  font-size: 0.95rem;
  color: var(--stone);
}

@media (max-width: 700px) {
  .gallery-grid,
  .gallery-grid.views {
    grid-template-columns: 1fr;
  }
}


.press-banner {
  display: block;
  text-align: center;
  padding: 1.15rem 1.5rem;
  background: var(--forest);
  color: #f6efe6;
  text-decoration: none;
}

.press-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.press-line i {
  font-style: italic;
  font-weight: 500;
}

.press-banner {
  transition: background 0.4s ease, color 0.4s ease;
}

.press-banner:hover {
  color: #fff8f0;
  background: #1c342b;
}


.story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  gap: 2.5rem;
}

.story-copy {
  max-width: 40rem;
}

.story-copy p {
  color: var(--stone);
}

.story-ig {
  color: var(--terra);
  text-underline-offset: 0.2em;
}

.story-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.story-photos .wide {
  grid-column: 1 / -1;
}

.story-photos figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.story-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  transition: transform 0.85s ease;
}

.story-photos figure:hover img {
  transform: scale(1.07);
}

.story-photos .wide {
  grid-column: auto;
}


@media (max-width: 700px) {
  .story-photos {
    grid-template-columns: 1fr 1fr;
  }
}


.card > a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.card > a:hover img,
.card > a:focus-visible img {
  transform: scale(1.08);
}


.card-more {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
}

.gallery-page {
  padding-top: 7.5rem;
}

.gallery-page,
.gallery-page .reveal,
.gallery-page .gallery-block {
  opacity: 1 !important;
  transform: none !important;
}

.gallery-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 0;
}

.gallery-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.75rem 0 3rem;
  font-size: 0.95rem;
}

.gallery-jump a {
  color: var(--terra);
  text-underline-offset: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-block {
  padding: 0 0 3.5rem;
  scroll-margin-top: 6rem;
}

.gallery-block h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  color: var(--terra);
}


.story-page {
  padding-top: 7.5rem;
}

.story-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 0;
}


.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.card:nth-child(2).reveal { transition-delay: 0.08s; }
.card:nth-child(3).reveal { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-inner,
  .hero-media img,
  .card img,
  .house-photo img,
  .location-photo img,
  .accent-photo img,
  .gallery-grid img,
  .story-photos img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


.faq {
  background: var(--paper);
}

.faq-inner {
  max-width: 42rem;
}

.faq-lead {
  margin: 1rem 0 2rem;
  color: var(--stone);
}

.faq-lead a {
  color: var(--terra);
}

.faq-list details {
  border-bottom: 1px solid var(--rule);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.8rem 1.15rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1rem;
  color: var(--terra);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.35s ease;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 0 1.2rem;
  color: var(--stone);
}
