:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-alt: #efe7db;
  --text: #1f1b18;
  --muted: #6c6259;
  --line: #d8cec1;
  --accent: #b88746;
  --accent-dark: #8d6633;
  --shadow: 0 10px 30px rgba(31, 27, 24, 0.08);
  --shadow-hover: 0 14px 36px rgba(31, 27, 24, 0.12);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.92rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label,
.price-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 0.8rem;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 11ch;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.6rem;
  max-width: 22ch;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  text-wrap: pretty;
}

.section p {
  max-width: 60ch;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.2rem;
}

.hero-note,
.footer-text {
  color: var(--muted);
  font-size: 0.96rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.2rem 0 0.8rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--text);
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--surface);
}

.btn-block {
  width: 100%;
}

.hero-card,
.callout,
.feature-card,
.price-card,
.mission-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  padding: 0;
}

.hero-shot {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.window-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #faf7f2;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d3c5b3;
}

.window-body {
  padding: 1rem;
}

.mini-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mini-panel {
  min-height: 180px;
  border-radius: 14px;
  padding: 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
}

.mini-pages {
  background: #f7f1e8;
}

.mini-editor {
  background: #fcfaf6;
}

.mini-preview {
  background: #f2ede4;
}

.mini-footer-bar {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 3.5rem 0;
}

.section + .section {
  margin-top: -1px;
}

.alt {
  background: var(--surface-alt);
  border-top: 1px solid rgba(184, 135, 70, 0.12);
  border-bottom: 1px solid rgba(184, 135, 70, 0.12);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.callout,
.feature-card,
.price-card,
.mission-box {
  padding: 1.4rem;
}

.mono {
  font-family: "Courier New", Courier, monospace;
  background: #f8f4ec;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: inline-block;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.feature-card {
  padding: 1.2rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.featured {
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(184, 135, 70, 0.14);
  transform: scale(1.02);
}

.price-card ul {
  margin: 0.8rem 0 1.2rem;
  padding-left: 1.15rem;
}

.price-card li {
  margin-bottom: 0.55rem;
}

.mission {
  text-align: center;
  padding: 4rem 0;
}

.guante-wrap {
  max-width: 360px;
  margin: 1.5rem auto 1rem;
}

.guante-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
}

.mission-box {
  margin-top: 1.2rem;
  padding: 1.2rem;
}

.mission-line {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}
.mission p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.mission h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  background: #f4eee5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero-inner,
  .grid-2,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .nav {
    justify-content: flex-start;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .brand-tag {
    max-width: 28ch;
  }
}