:root {
  --bg: #f7f0e8;
  --paper: #fffaf5;
  --card: #fffdf9;
  --text: #221b18;
  --muted: #6b5b54;
  --line: #e6d8cc;
  --brand: #6a3a1e;
  --brand-2: #b4713b;
  --accent: #2f6b57;
  --shadow: 0 20px 60px rgba(34, 27, 24, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(180, 113, 59, 0.10), transparent 26%),
    linear-gradient(180deg, #f9f3ed 0%, #f5eee7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(106, 58, 30, 0.08);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.brand-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(106, 58, 30, 0.08);
  color: var(--brand);
}

.hero {
  padding: 56px 0 48px;
}

.hero-home .container {
  max-width: 1080px;
}

.hero-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(106, 58, 30, 0.10);
  background: var(--card);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-copy-center {
  text-align: center;
  max-width: 860px;
  margin: 34px auto 0;
}

.hero-copy-center h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy-center p {
  margin: 0 auto;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 760px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
}

.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(106, 58, 30, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  background: linear-gradient(135deg, var(--brand) 0%, #7e4625 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(106, 58, 30, 0.22);
}

.btn-outline {
  border: 1px solid rgba(106, 58, 30, 0.18);
  background: rgba(255, 255, 255, 0.65);
  color: var(--brand);
}

.btn:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.card,
.pricing-card,
.feature-box,
.copy-block,
.info-panel {
  background: var(--card);
  border: 1px solid rgba(106, 58, 30, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

section {
  padding: 28px 0 42px;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 860px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card,
.feature-box,
.info-panel,
.copy-block,
.pricing-card {
  padding: 26px;
}

.card h3,
.feature-box h3,
.info-panel h3,
.copy-block h3,
.pricing-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.card p,
.feature-box p,
.info-panel p,
.copy-block p,
.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(47, 107, 87, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.plan-price {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.plan-price strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.page-hero {
  padding: 58px 0 20px;
}

.page-hero .inner {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.page-hero h1 {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.band {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(106, 58, 30, 0.08);
  border-bottom: 1px solid rgba(106, 58, 30, 0.08);
}

.cta-banner {
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #6a3a1e 0%, #4b2815 100%);
  color: #fff;
  box-shadow: 0 20px 60px rgba(75, 40, 21, 0.24);
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
}

.cta-banner .btn,
.site-footer .btn-outline {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(106, 58, 30, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: end;
}

.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 600;
}

.check-list,
.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before,
.simple-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid rgba(106, 58, 30, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .brand-logo {
    height: 48px;
  }
}

@media (max-width: 640px) {
  .header-row {
    min-height: 78px;
  }

  .brand-logo {
    height: 42px;
  }

  .hero-copy-center h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy-center p,
  .page-hero p,
  .section-head p,
  .cta-banner p {
    font-size: 17px;
  }

  .card,
  .feature-box,
  .info-panel,
  .copy-block,
  .pricing-card,
  .cta-banner {
    padding: 22px;
  }
}