:root {
  --forest: #284334;
  --forest-2: #3d5b46;
  --cream: #f5f0e6;
  --sand: #d8c6a4;
  --wood: #8a5d3b;
  --ink: #26312b;
  --white: #fff;
  --shadow: 0 18px 45px rgba(35, 54, 43, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, sans-serif;
  line-height: 1.65;
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  line-height: 1.12;
  color: var(--forest);
  margin: 0 0 0.65em;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
h3 {
  font-size: 1.45rem;
}
p {
  margin: 0 0 1.15rem;
}
a {
  color: inherit;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--forest);
  color: #fff;
  font-size: 0.88rem;
  padding: 0.5rem 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 240, 230);
  border-bottom: 1px solid rgba(40, 67, 52);
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--forest);
  font-size: 3.5rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  font-size: 1.35rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--wood);
}
.menu-btn {
  display: none;
  border: 0;
  background: var(--forest);
  color: #fff;
  padding: 0.65rem 0.8rem;
  border-radius: 4px;
  font-size: 1.1rem;
}
.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(27, 50, 37, 0.88), rgba(27, 50, 37, 0.25)),
    url("../../images/hero-hof.svg") center/cover;
}
.hero-content {
  color: #fff;
  padding: 7rem 0;
  max-width: 770px;
  margin-right: auto;
}
.hero h1,
.hero h2 {
  color: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: bold;
  font-size: 0.78rem;
  color: var(--sand);
  margin-bottom: 1.1rem;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 660px;
}
.btn {
  display: inline-block;
  background: var(--wood);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.82rem 1.25rem;
  border-radius: 3px;
  margin: 0.35rem 0.5rem 0.35rem 0;
}
.btn.light {
  background: var(--cream);
  color: var(--forest);
}
.section {
  padding: 90px 0;
}
.section.alt {
  background: #e9e1d2;
}
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.image-card {
  min-height: 480px;
  background: center/cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
  position: relative;
}
.image-card:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.intro-images {
  display: grid;
  gap: 1rem;
}
.intro-images .image-card {
  min-height: 302px;
}
.intro-images .image-card:after {
  display: none;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  border-left: 3px solid var(--wood);
  padding-left: 1rem;
}
.stat strong {
  display: block;
  font:
    700 1.6rem Georgia,
    serif;
  color: var(--forest);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: #fff;
  box-shadow: 0 8px 30px rgba(43, 57, 48, 0.08);
  overflow: hidden;
}
.card-img {
  display: block;
  height: 235px;
  background: center/cover;
}
.card-body {
  padding: 1.5rem;
}
.text-link {
  font-weight: bold;
  color: var(--wood);
  text-decoration: none;
}
.page-hero {
  padding: 55px 0 75px;
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 50px solid rgba(255, 255, 255, 0.04);
  transform: rotate(45deg);
  right: 5%;
  top: -110px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  border-bottom: 1px solid rgba(40, 67, 52, 0.14);
  position: relative;
}
.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wood);
  font-weight: bold;
}
.horse-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #ddd;
  box-shadow: var(--shadow);
}
.badge {
  display: inline-block;
  background: var(--sand);
  color: var(--forest);
  padding: 0.3rem 0.65rem;
  font-weight: bold;
  font-size: 0.82rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow);
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e5ded2;
}
.price-table th {
  background: var(--forest);
  color: #fff;
}
.notice {
  padding: 1.4rem;
  border-left: 4px solid var(--wood);
  background: #fff;
  margin: 2rem 0;
}
.cta {
  background: var(--wood);
  color: #fff;
  padding: 65px 0;
}
.cta h2 {
  color: #fff;
}
.cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer {
  background: #1d3026;
  color: #e9e1d2;
  padding: 60px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer a {
  color: inherit;
}
.footer h3 {
  color: #fff;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
}
.diamonds {
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%);
  /*background-size: 28px 28px;*/
  background-position:
    0 0,
    0 14px,
    14px -14px,
    -14px 0;
}
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.2rem 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
  }
  .nav-links.open {
    display: flex;
  }
  .intro,
  .two-col {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .topbar .wrap span:last-child {
    display: none;
  }
  .grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 65px 0;
  }
  .hero {
    min-height: 68vh;
  }
  .image-card {
    min-height: 350px;
  }
  .wrap {
    width: min(100% - 28px, 1160px);
  }
}
.hero {
  background-image:
    linear-gradient(90deg, rgba(27, 50, 37, 0.9), rgba(27, 50, 37, 0.12)),
    url("../../images/hof-298579.jpg");
}
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.photo-grid img:first-child {
  height: 100%;
  grid-row: span 2;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.fact {
  background: #fff;
  padding: 1.25rem;
  border-top: 4px solid var(--wood);
  box-shadow: 0 8px 25px rgba(43, 57, 48, 0.07);
}
.fact strong {
  font:
    700 1.35rem Georgia,
    serif;
  color: var(--forest);
  display: block;
}
@media (max-width: 900px) {
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-grid img:first-child {
    grid-column: span 2;
    height: 350px;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .facts,
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid img:first-child {
    grid-column: auto;
    height: 250px;
  }
}
img.card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.horse-detail-photo {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.brand {
  width: 500px;
  height: 140px;
  flex: 0 0 500px;
  background: url("../../images/grauburger-hof-logo.png") center/contain
    no-repeat;
  font-size: 0;
  line-height: 0;
}
.brand-mark {
  display: none;
}
.site-header {
  background: #fdf9f3;
}
@media (max-width: 600px) {
  .brand {
    width: 410px;
    max-width: calc(100vw - 90px);
    height: 128px;
    flex-basis: auto;
  }
}
