:root {
  --gold: #c89b2b;
  --gold-light: #f5e5a9;
  --ink: #241c12;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(49, 35, 14, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, #fff8e9 100%);
  line-height: 1.65;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(36, 28, 18, 0.96);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(0,0,0,.16);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-menu a {
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 8px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(255,255,255,.12);
  outline: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-button span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
}
.mobile-menu.open { display: grid; }

.hero {
  background:
    radial-gradient(circle at 78% 25%, rgba(255,225,119,.33), transparent 27%),
    linear-gradient(125deg, #2d2418 0%, #5a3f14 55%, #a8781a 100%);
  color: #fff;
  padding: clamp(54px, 8vw, 96px) 0;
}
.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font: 700 .78rem/1.3 Arial, sans-serif;
}
h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: .98;
}
.hero p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}
.hero-image {
  width: min(100%, 330px);
  justify-self: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 22px 50px rgba(0,0,0,.33);
}

main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.lead-card,
.content-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(200,155,43,.25);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 28px;
}
.lead-card strong { color: #6d4a08; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin: 0 0 14px;
  color: #5f410b;
}
.mission {
  border-left: 5px solid var(--gold);
  padding: 14px 18px;
  background: #fff8df;
  font-size: 1.25rem;
  font-style: italic;
  margin: 18px 0 0;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.value {
  text-align: center;
  padding: 18px 10px;
  background: #fff8df;
  border-radius: 12px;
  font-weight: 700;
}

.contact {
  text-align: center;
  background: #2d2418;
  color: #fff;
  border-radius: 18px;
  padding: 30px 24px;
}
.contact a { color: var(--gold-light); }

.site-footer {
  text-align: center;
  padding: 24px 16px 34px;
  color: #6c5a3f;
}

.simple-page h1 { color: #5f410b; font-size: clamp(2.2rem, 5vw, 4rem); }
.back-link { display: inline-block; margin-top: 20px; color: #6d4a08; font-weight: 700; }

@media (max-width: 760px) {
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-image { width: 210px; }
  .values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .nav-wrap { width: min(100% - 20px, 1120px); }
  .mobile-menu { width: min(100% - 20px, 1120px); }
  main, .hero-inner { width: min(100% - 22px, 1120px); }
  .values { grid-template-columns: 1fr; }
}
