:root {
  --paper: #f6f4ee;
  --surface: #ffffff;
  --ink: #182027;
  --muted: #66717c;
  --line: #d8d4c9;
  --river: #126b7f;
  --river-dark: #0d4b59;
  --leaf: #657660;
  --clay: #a76447;
  --shadow: 0 18px 42px rgba(24, 32, 39, 0.12);
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  background: rgba(246, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
}

.brand span {
  color: var(--river);
}

.header-contact,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.header-contact,
.primary-action {
  color: #fff;
  background: var(--river);
}

.header-contact:hover,
.primary-action:hover {
  background: var(--river-dark);
}

.secondary-action {
  color: var(--river-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.secondary-action:hover {
  border-color: var(--river);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: calc(100vh - 64px);
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  min-height: 520px;
  background: #d9ded9;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 84px);
  background: linear-gradient(180deg, #fff, #f7f8f5);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

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

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px;
  gap: 14px;
}

.fact {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(24, 32, 39, 0.06);
}

.fact span,
.detail-list span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 8px;
  color: var(--river-dark);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.content-band,
.gallery-section,
.contact-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 24px;
}

.intro-grid,
.details-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.text-block p {
  margin: 0;
  color: #33414d;
  font-size: 1.08rem;
}

.text-block p + p {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #d9ded9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(24, 32, 39, 0.72);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  color: #fff;
  background: var(--river-dark);
  border-radius: var(--radius);
}

.contact-band h2,
.contact-band .eyebrow {
  color: #fff;
}

.contact-band p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
  text-align: right;
}

address a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo {
    min-height: 48vh;
  }

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

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

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

  address {
    text-align: left;
  }
}

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

  .header-contact {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-content {
    padding: 34px 20px 44px;
  }

  .quick-facts,
  .content-band,
  .gallery-section,
  .contact-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-facts,
  .gallery,
  .detail-list div {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 8px;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery {
    grid-auto-rows: 250px;
  }

  .hero-actions {
    display: grid;
  }
}
