:root {
  --background: #f7f3ea;
  --surface: #ffffff;
  --surface-strong: #fff8dc;
  --text: #211f1a;
  --muted: #68645d;
  --accent: #1f7a68;
  --accent-strong: #bf4b2c;
  --gold: #f3bc3f;
  --border: #d9d1c3;
  --shadow: 0 22px 55px rgba(33, 31, 26, 0.09);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(31, 122, 104, 0.1), transparent 32%),
    linear-gradient(300deg, rgba(191, 75, 44, 0.1), transparent 36%);
}

a {
  color: inherit;
}

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

.site-header,
main,
.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.site-nav a[aria-current="page"],
.site-footer a[aria-current="page"] {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding: 62px 0 90px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 9vw, 7.3rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 860;
}

.intro {
  max-width: 670px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--text);
  border-radius: 8px;
  background: var(--text);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-art {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 220, 0.95), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(31, 122, 104, 0.08) 18px 20px);
  box-shadow: var(--shadow);
}

.hero-art img {
  width: min(74%, 330px);
  filter: drop-shadow(0 18px 24px rgba(33, 31, 26, 0.18));
}

.content-section,
.page-header {
  margin: 34px 0;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 35px rgba(33, 31, 26, 0.05);
}

.content-section p,
.content-section ul {
  max-width: 760px;
}

.content-section p:last-child,
.content-section ul:last-child {
  margin-bottom: 0;
}

.content-section a {
  color: var(--accent);
  font-weight: 750;
}

.status {
  color: var(--muted);
  font-style: italic;
}

.page-main {
  padding-bottom: 30px;
}

.page-header {
  background: var(--surface-strong);
}

.page-header .intro {
  margin-bottom: 0;
}

.text-page h2:not(:first-child) {
  margin-top: 38px;
}

.text-page h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.text-page li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.made-in {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 750;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-art {
    min-height: 260px;
  }
}

@media (max-width: 650px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .site-nav,
  .site-footer nav {
    gap: 12px 16px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .intro {
    font-size: 1.08rem;
  }
}
