:root {
  --ink: #1c1b18;
  --ink-soft: #3d3a34;
  --cream: #f4efe6;
  --cream-deep: #e8e0d2;
  --paper: #faf7f1;
  --forest: #1f2d24;
  --forest-mid: #2c4033;
  --moss: #5c6e58;
  --brick: #9a6245;
  --brick-deep: #7c4b33;
  --gold: #c4a574;
  --line: rgba(28, 27, 24, 0.12);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --wide: 1280px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--forest);
  color: var(--cream);
  padding: 0.5rem 0.85rem;
  z-index: 100;
}

.skip:focus {
  top: 0.75rem;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  color: var(--cream);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav.is-scrolled,
.nav.is-open {
  background: var(--forest);
  color: var(--cream);
}

.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(244, 239, 230, 0.35);
  color: inherit;
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1140px) {
  .nav-links {
    gap: 0.85rem;
  }
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.btn:hover {
  color: #fff;
  background: var(--brick-deep);
}

.honey {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  background: var(--brick);
  color: #fff;
  transition: background 0.2s ease;
}

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

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: start start;
  padding: 8.5rem 1.5rem 4rem;
  color: var(--cream);
  background-color: var(--forest);
  background-image:
    linear-gradient(90deg, rgba(20, 28, 22, 0.72) 0%, rgba(20, 28, 22, 0.38) 34%, rgba(20, 28, 22, 0.12) 62%),
    url("../images/charlie.jpg");
  background-size: cover;
  background-position: 28% 48%;
  background-repeat: no-repeat;
}

.hero-inner {
  max-width: 38rem;
}

.kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 1.15rem;
  max-width: 32rem;
  margin: 0 0 1.6rem;
  color: rgba(244, 239, 230, 0.9);
}

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

.section {
  padding: 5.5rem 1.5rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.wrap-wide {
  max-width: var(--wide);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 40rem;
  margin-inline: auto;
}

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.85rem;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.muted {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
}

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

.caption {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

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

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.facts strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.2rem;
}

.two-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36rem;
}

.panel {
  position: relative;
  min-height: 28rem;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 2.2rem;
  overflow: hidden;
}

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

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 22, 0.05), rgba(20, 28, 22, 0.78));
}

.panel-copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.panel p {
  color: rgba(244, 239, 230, 0.92);
}

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

.gallery h2 {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-grid .portrait {
  object-position: center 35%;
}

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

.place-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

.place-grid h3 {
  font-size: 1.35rem;
}

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

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1.75rem;
}

.reviews figure {
  margin: 0;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.35;
}

.reviews blockquote {
  font-size: 1.35rem;
  max-width: none;
}

cite {
  display: block;
  margin-top: 1.1rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}

.contact {
  background: var(--forest);
  color: var(--cream);
}

.contact a {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.details {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.details li {
  margin-bottom: 0.55rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form input,
.form textarea {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(244, 239, 230, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form button {
  justify-self: start;
}

.footer {
  background: #16201a;
  color: rgba(244, 239, 230, 0.7);
  padding: 1.4rem 1.5rem;
  font-size: 0.88rem;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: var(--cream);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 16, 13, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90svh;
  object-fit: contain;
}

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

  .nav-links {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    background: var(--forest);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.4rem;
    gap: 0.9rem;
  }

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

  .split,
  .two-ways,
  .contact-grid,
  .place-grid,
  .facts,
  .reviews {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 3.5rem 1.15rem;
  }
}

@media (min-width: 960px) {
  .hero {
    background-position: 42% 52%;
  }
}

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