:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --text: #2b2118;
  --muted: #6e6258;
  --brand: #7a3f20;
  --brand-dark: #552813;
  --accent: #e3ad55;
  --border: #eadfce;
  --shadow: 0 14px 40px rgba(74, 45, 24, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(227, 173, 85, 0.15), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a { color: var(--brand); }

a:hover { color: var(--brand-dark); }

.wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 243, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  padding: 88px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 32px;
  align-items: center;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.cup-mark {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: linear-gradient(145deg, #fff, #f7e8ce);
  box-shadow: var(--shadow);
  font-size: 7rem;
}

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

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

.button:hover {
  background: var(--brand-dark);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.button.secondary:hover {
  background: #fff;
  color: var(--brand-dark);
}

.section {
  padding: 36px 0 72px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card h2, .card h3 { margin-top: 0; }

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

.page {
  padding: 58px 0 90px;
}

.document {
  max-width: 860px;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.document h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.document h2 {
  margin-top: 2.2rem;
  padding-top: 0.4rem;
  font-size: 1.35rem;
}

.document h3 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.document ul, .document ol { padding-left: 1.3rem; }

.meta {
  margin: 16px 0 30px;
  color: var(--muted);
}

.notice {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  background: #fff5df;
}

.contact-box {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffaf3;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.small { font-size: 0.91rem; color: var(--muted); }

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero { padding-top: 58px; }

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

  .cup-mark { min-height: 190px; font-size: 5rem; }

  .document { border-radius: 20px; }
}