:root {
  --bg: #f5efe7;
  --panel: rgba(255, 250, 245, 0.88);
  --panel-strong: #fffaf5;
  --line: rgba(61, 43, 28, 0.12);
  --text: #2f241a;
  --muted: #786657;
  --accent: #b76433;
  --accent-soft: #efd7c5;
  --shadow: 0 24px 60px rgba(54, 37, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 100, 51, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(157, 94, 56, 0.08), transparent 30%),
    var(--bg);
}

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

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

.hero,
.policy-header {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff8f2;
  background: linear-gradient(135deg, #d37b41, #8f4d27);
  box-shadow: 0 16px 36px rgba(157, 85, 44, 0.24);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

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

h1 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  margin-bottom: 14px;
}

.hero-copy,
.contact-copy,
.privacy-copy,
.policy-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.hero-actions,
.policy-actions,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.primary-link,
.secondary-link,
.mail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 600;
}

.primary-link {
  background: linear-gradient(135deg, var(--accent), #8f4d27);
  color: #fffaf5;
  box-shadow: 0 14px 30px rgba(159, 86, 43, 0.22);
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.mail-link {
  padding-left: 0;
  justify-content: flex-start;
  color: var(--accent);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.card,
.policy-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.section-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.95rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-company {
  display: grid;
  gap: 6px;
}

.footer-company p {
  margin: 0;
}

.footer-title {
  font-weight: 700;
  color: var(--text);
}

.policy-shell {
  max-width: 920px;
}

.policy-card {
  margin-top: 20px;
}

.policy-card section + section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .policy-header,
  .card,
  .policy-card {
    padding: 22px;
  }

  .brand-row {
    flex-direction: column;
  }
}
