:root {
  --forest: #173c2c;
  --deep-forest: #0c231b;
  --leaf: #5e8d45;
  --moss: #a4b56f;
  --wood: #9a643b;
  --clay: #c59b63;
  --stone-blue: #425f67;
  --paper: #f7f3e8;
  --paper-warm: #eee4d0;
  --ink: #17231d;
  --muted: #5d685f;
  --line: rgba(23, 60, 44, 0.18);
  --shadow: 0 24px 70px rgba(12, 35, 27, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf0;
  background: linear-gradient(
    to bottom,
    rgba(12, 35, 27, 0.68),
    rgba(12, 35, 27, 0.08)
  );
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
}

nav a {
  text-decoration: none;
  opacity: 0.9;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf0;
  background: var(--deep-forest);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  filter: saturate(1.02) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 30, 23, 0.74) 0%, rgba(8, 30, 23, 0.34) 46%, rgba(8, 30, 23, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 30, 23, 0.78) 0%, rgba(8, 30, 23, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(108px, 15vh, 150px) clamp(18px, 6vw, 78px);
}

.domain {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.82);
}

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

h1 {
  max-width: 700px;
  font-size: clamp(4rem, 10vw, 9rem);
}

h2 {
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
}

p {
  margin: 0;
}

.hero-content p:not(.domain) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: #fffaf0;
  color: var(--deep-forest);
}

.button-secondary {
  border-color: rgba(255, 250, 240, 0.55);
  color: #fffaf0;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 240, 0.14);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 240, 0.38);
}

.hero-strip span {
  min-height: 58px;
  padding: 18px 18px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.section-copy,
.feature-copy,
.land-heading,
.contact-section > div {
  max-width: 680px;
}

.section-label {
  margin-bottom: 18px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-copy p:not(.section-label),
.feature-copy p,
.land-heading p,
.contact-section p {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.image-duo {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 180px 340px;
  gap: 18px;
}

.photo-frame,
.feature-image,
.photo-card,
.gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--deep-forest);
  box-shadow: var(--shadow);
}

.photo-frame.tall {
  grid-row: 1 / 3;
}

.photo-frame.wide {
  grid-column: 2;
  grid-row: 2;
}

.section-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(280px, 0.96fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: #e7ded0;
}

.feature-image {
  aspect-ratio: 4 / 5;
}

.quiet-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--forest);
  font-weight: 650;
}

.quiet-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.quiet-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--leaf);
}

.section-stay {
  background: var(--deep-forest);
  color: #fffaf0;
}

.stay-copy {
  margin-bottom: 42px;
}

.section-stay .section-label {
  color: var(--clay);
}

.section-stay p:not(.section-label) {
  color: rgba(255, 250, 240, 0.78);
}

.stay-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.photo-card {
  position: relative;
  min-height: 460px;
  box-shadow: none;
}

.photo-card.large {
  min-height: 620px;
}

.photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 72px 22px 20px;
  background: linear-gradient(to top, rgba(9, 26, 20, 0.78), rgba(9, 26, 20, 0));
  color: rgba(255, 250, 240, 0.9);
  font-size: 14px;
}

.section-land {
  background: var(--paper-warm);
}

.land-heading {
  margin-bottom: 42px;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-item {
  box-shadow: none;
}

.gallery-item.landscape {
  grid-column: span 2;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--paper-warm);
}

.location-copy {
  max-width: 520px;
}

.location-copy p:not(.section-label) {
  color: var(--muted);
}

.button-map {
  margin-top: 24px;
  background: var(--forest);
  color: #fffaf0;
}

.button-map:hover,
.button-map:focus-visible {
  background: var(--deep-forest);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  border: 0;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--forest);
  color: #fffaf0;
}

.contact-section .section-label {
  color: var(--clay);
}

.contact-section p {
  color: rgba(255, 250, 240, 0.76);
}

.button-contact {
  flex: 0 0 auto;
  background: #fffaf0;
  color: var(--forest);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--deep-forest);
  color: rgba(255, 250, 240, 0.72);
  font-size: 14px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    margin-bottom: 138px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: auto;
    padding-top: 10px;
  }

  .section-intro,
  .section-feature {
    grid-template-columns: 1fr;
  }

  .image-duo {
    grid-template-rows: 360px 240px;
  }

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

  .photo-card,
  .photo-card.large {
    min-height: 430px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  nav {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 138px;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .image-duo,
  .stay-grid,
  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .image-duo {
    grid-template-rows: none;
  }

  .photo-frame.tall,
  .photo-frame.wide,
  .gallery-item.landscape {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-frame {
    aspect-ratio: 4 / 5;
  }

  .photo-frame.wide,
  .gallery-item,
  .feature-image {
    aspect-ratio: 4 / 3;
  }

  .photo-card,
  .photo-card.large {
    min-height: 380px;
  }

  .masonry-gallery {
    grid-auto-rows: auto;
  }

  .gallery-item {
    height: 330px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
