:root {
  --bg: #f5efe2;
  --surface: rgba(255, 252, 245, 0.82);
  --ink: #1f1d1a;
  --muted: #665f56;
  --line: rgba(31, 29, 26, 0.12);
  --accent: #006a63;
  --accent-strong: #004e49;
  --sand: #d8b98f;
  --shadow: 0 24px 60px rgba(30, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 185, 143, 0.5), transparent 32%),
    linear-gradient(180deg, #f8f2e7 0%, #f2eadc 100%);
  font-family: Georgia, "Times New Roman", serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(245, 239, 226, 0.75);
  border-bottom: 1px solid var(--line);
}

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

.nav nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  margin-bottom: 18px;
  max-width: 12ch;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.app-link:hover,
.app-card a:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.btn-secondary {
  background: transparent;
}

.hero-card,
.card,
.app-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
}

.card-label {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.app-link {
  display: block;
  padding: 16px 18px;
  margin-top: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

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

.section-alt {
  background: rgba(255, 255, 255, 0.28);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 24px;
}

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

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

.card,
.app-card,
.contact-card {
  padding: 24px;
}

.card p,
.app-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.app-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .apps,
  .contact {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
  }

  h1 {
    max-width: none;
  }
}
