:root {
  --green: #29462f;
  --green-dark: #1f3727;
  --cream: #f5f0e2;
  --paper: #fffdf7;
  --gold: #d8c47d;
  --orange: #e75a31;
  --olive: #60733d;
  --text: #31362d;
  --muted: #686f63;
  --line: #d8d0bb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 196, 125, 0.28), transparent 31rem),
    linear-gradient(180deg, #f7f2e5 0%, #e8e1cf 100%);
}

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

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid #c9bb8e;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(31, 55, 39, 0.16);
}

.hero__image {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(31, 55, 39, 0.04), rgba(31, 55, 39, 0.32)),
    url("thomas-river-waterfall.jpg") center center / cover no-repeat;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(245, 240, 226, 0.94)),
    url("thomas-river-wide-landscape.jpg") center / cover no-repeat;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 58px;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
}

.brand p {
  margin: 0 0 5px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #9b6b18;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 680px;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #475246;
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: inset 0 -2px #a9331b;
}

.button--secondary {
  color: var(--green);
  border: 1px solid #bfc09f;
  background: #fffaf0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-top: 18px;
}

.intro article,
.notice {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(25, 45, 30, 0.07);
}

.intro article {
  padding: clamp(28px, 4vw, 46px);
}

.intro h2 {
  margin-bottom: 18px;
  font-size: clamp(33px, 4vw, 48px);
  line-height: 1.05;
}

.intro p:not(.section-label) {
  max-width: 800px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.intro p:last-child {
  margin-bottom: 0;
}

.notice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  color: #fffaf0;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}

.notice strong {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.notice span {
  color: #dce4d7;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 22px, 1180px);
    padding: 11px 0;
  }

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

  .hero {
    min-height: 0;
  }

  .hero__image {
    min-height: 310px;
  }

  .hero__content {
    padding: 32px 24px 38px;
  }

  .brand {
    margin-bottom: 34px;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .brand p {
    font-size: 20px;
  }

  .brand span {
    font-size: 9px;
    line-height: 1.45;
  }

  .lead {
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .intro {
    gap: 12px;
    margin-top: 12px;
  }

  .notice {
    padding: 28px 24px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 40px;
  }

  .brand {
    align-items: flex-start;
  }
}
