:root {
  --ink: #211f1d;
  --muted: #6f665d;
  --paper: #fbf7ef;
  --linen: #eee3d2;
  --wood: #7a4d2d;
  --green: #1f7147;
  --green-dark: #155033;
  --brass: #ba8a3a;
  --rust: #a94828;
  --white: #fffdf8;
  --shadow: 0 18px 45px rgba(33, 31, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(251, 247, 239, 0.92), rgba(251, 247, 239, 0.94)),
    repeating-linear-gradient(90deg, rgba(122, 77, 45, 0.08) 0 1px, transparent 1px 72px);
  font-family: Georgia, "Times New Roman", serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid rgba(122, 77, 45, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 48vw);
}

.brand img {
  width: 100%;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100svh - 98px);
  border-bottom: 1px solid rgba(122, 77, 45, 0.18);
}

.hero-media {
  min-height: 520px;
  background: var(--wood);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 84px);
  background:
    linear-gradient(135deg, rgba(238, 227, 210, 0.86), rgba(251, 247, 239, 0.96)),
    linear-gradient(90deg, transparent 0 93%, rgba(186, 138, 58, 0.22) 93% 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rust);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4rem, 8.6vw, 7.8rem);
  font-weight: 400;
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.feature-strip p,
.story-section p,
.visit-panel dd {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions,
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.button.inquiry,
.filter-button.is-active {
  color: var(--white);
  background: var(--green);
}

.button.secondary,
.filter-button {
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.72);
}

.is-disabled {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(122, 77, 45, 0.18);
}

.intro-band > div {
  padding: clamp(22px, 4vw, 42px);
  background: var(--green-dark);
  color: var(--white);
}

.intro-band span {
  display: block;
  color: #f0c97a;
  font-size: 1.45rem;
}

.intro-band p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.catalog-section,
.story-section,
.visit-section {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.52fr);
  gap: 26px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 26px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p {
  margin: 0;
}

.catalog-toolbar {
  max-width: 1180px;
  margin: 0 auto 22px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.listing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(122, 77, 45, 0.2);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.listing-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--linen);
}

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

.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--rust);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.listing-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.listing-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.price {
  color: var(--green-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.dimensions,
.description {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.dimensions {
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background: var(--linen);
}

.feature-strip img,
.visit-photo img {
  width: 100%;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.story-section p {
  margin: 0;
  font-size: 1.08rem;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  background: var(--green-dark);
}

.visit-panel {
  color: var(--white);
}

.visit-panel .eyebrow {
  color: #f0c97a;
}

.visit-panel dd {
  margin: 4px 0 18px;
  color: rgba(255, 253, 248, 0.78);
}

.visit-panel dt {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-panel dl {
  margin: 26px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer p {
  margin: 0;
}

.empty-state {
  max-width: 1180px;
  margin: 20px auto 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
  .hero,
  .feature-strip,
  .story-section,
  .visit-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 46svh;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .catalog-grid,
  .intro-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(250px, 80vw);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-copy {
    padding: 32px 20px 40px;
  }

  .button,
  .filter-button {
    width: 100%;
  }

  .listing-title-row {
    grid-template-columns: 1fr;
  }
}
