:root {
  --bg: #f6f1eb;
  --bg-soft: #fbf8f4;
  --paper: #fffaf4;
  --text: #4b2f22;
  --text-soft: #6d5346;
  --accent: #b98444;
  --accent-deep: #8c5b26;
  --line: rgba(120, 78, 42, 0.14);
  --shadow: 0 16px 40px rgba(93, 63, 38, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185,132,68,0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f4 0%, #f5efe8 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)),
    repeating-linear-gradient(
      25deg,
      rgba(150, 112, 78, 0.025) 0px,
      rgba(150, 112, 78, 0.025) 2px,
      transparent 2px,
      transparent 11px
    );
}

a {
  color: var(--accent-deep);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 244, 0.82);
  border-bottom: 1px solid rgba(120, 78, 42, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand:hover { text-decoration: none; }

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffaf5, #f3e8da);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(80, 50, 25, 0.10);
  border: 1px solid rgba(120, 78, 42, 0.10);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.nav-links a {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c99653, #9a6733);
  color: white !important;
  box-shadow: 0 10px 22px rgba(129, 82, 31, 0.18);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(120, 78, 42, 0.15);
  color: var(--text);
  background: rgba(255,255,255,0.55);
}

.ghost:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.8);
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.page-hero {
  padding: 72px 0 18px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(185,132,68,0.10);
  color: var(--accent-deep);
  font-size: 0.92rem;
  margin-bottom: 20px;
  border: 1px solid rgba(185,132,68,0.15);
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 { font-size: 1.35rem; }

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-card,
.section-card {
  background: linear-gradient(180deg, rgba(255,250,244,0.92), rgba(247,239,230,0.96));
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(185,132,68,0.16), transparent 65%);
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(120,78,42,0.08);
  background: #fff;
}

.hero-note {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

section { padding: 34px 0; }

.section-card { padding: 34px; }

.intro-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.muted { color: var(--text-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(250,243,235,0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-height: 220px;
}

.feature .num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(185,132,68,0.14);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.feature p { margin: 0; color: var(--text-soft); }

.quote-box {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(185,132,68,0.08);
  border-radius: 0 18px 18px 0;
  color: var(--text);
  font-size: 1.04rem;
}

.privacy-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.privacy-list li + li { margin-top: 12px; }

.note-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(250,243,235,0.8));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.small {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.closing-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer {
  padding: 32px 0 60px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(120, 78, 42, 0.12);
  padding-top: 24px;
}

code {
  background: rgba(185,132,68,0.10);
  padding: 2px 8px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .privacy-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature { min-height: auto; }
}

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

  .nav-links { gap: 14px; }

  .hero { padding-top: 42px; }

  .section-card { padding: 24px; }

  h1 { font-size: 2.4rem; }
}