:root {
  --ink: #1d241f;
  --muted: #687068;
  --paper: #f7f3ec;
  --soft: #ece5da;
  --white: #ffffff;
  --deep-green: #23372c;
  --earth: #a96f50;
  --line: rgba(29, 36, 31, 0.12);
  --shadow: 0 22px 55px rgba(29, 36, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(247, 243, 236, 0.95);
  box-shadow: 0 14px 38px rgba(29, 36, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--earth);
}

.site-header:not(.scrolled):not(.nav-active) .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(169, 111, 80, 0.92);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  width: 100%;
  background:
    linear-gradient(90deg, rgba(19, 31, 24, 0.78), rgba(19, 31, 24, 0.5) 48%, rgba(19, 31, 24, 0.22)),
    linear-gradient(0deg, rgba(19, 31, 24, 0.35), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding-top: 64px;
}

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

.hero .eyebrow,
.final-cta .eyebrow {
  color: #e5bb83;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(29, 36, 31, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--earth);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.section-pad {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
}

.intro-copy,
.interior-copy p,
.highlight-card p,
.location-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.interiors {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  padding: 0 clamp(20px, 5vw, 64px) clamp(70px, 9vw, 118px);
}

.interior-photo {
  min-height: 330px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.interior-photo.feature-photo {
  min-height: 600px;
  grid-row: span 2;
}

.interior-photo img {
  height: 100%;
  object-fit: cover;
}

.interior-copy {
  display: grid;
  min-height: 280px;
  align-content: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(29, 36, 31, 0.08);
}

.interior-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.highlights {
  background: var(--white);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.highlight-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(29, 36, 31, 0.07);
}

.highlight-card img {
  height: 190px;
  object-fit: cover;
}

.highlight-card div {
  padding: 22px;
}

.highlight-card p {
  margin-top: 10px;
}

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

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
  margin-top: 42px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--soft);
  box-shadow: 0 16px 34px rgba(29, 36, 31, 0.1);
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 64px);
  background: var(--white);
}

.location-map {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.location-map iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  aspect-ratio: 1.18;
  border: 0;
}

.location-copy p:not(.eyebrow) {
  margin-top: 20px;
}

.location-copy .address {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(58px, 8vw, 90px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-green), #3f5f4b);
}

.final-cta div {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #17211d;
}

@media (max-width: 1120px) {
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .highlight-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .intro,
  .interiors,
  .location {
    grid-template-columns: 1fr;
  }

  .interior-photo.feature-photo {
    min-height: 430px;
    grid-row: auto;
  }

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

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand {
    min-width: 0;
  }

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

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 82svh;
    align-items: end;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding: 120px 0 48px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .section-pad {
    padding: 58px 18px;
  }

  .intro {
    gap: 22px;
  }

  .interiors {
    gap: 16px;
    padding: 0 18px 58px;
  }

  .interior-copy {
    padding: 26px;
  }

  .interior-photo,
  .interior-photo.feature-photo {
    min-height: 300px;
  }

  .location-map iframe {
    min-height: 320px;
    aspect-ratio: 1;
  }

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

  .button {
    width: 100%;
  }

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

  .highlight-card:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, 58vw);
  }

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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