:root {
  --bg: #f8f2e8;
  --surface: #fffdf7;
  --text: #172026;
  --muted: #4a5359;
  --primary: #0f7b6c;
  --primary-deep: #0a5c51;
  --accent: #cc5a2b;
  --line: #ded2c3;
  --shadow: 0 14px 38px rgba(32, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 12% 8%, #fff7e8 0%, var(--bg) 36%, #efe5d7 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.55;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.aurora {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.aurora-left {
  top: -10rem;
  left: -10rem;
  background: #2db7a4;
}

.aurora-right {
  right: -8rem;
  bottom: -14rem;
  background: #f08a5a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(248, 242, 232, 0.82);
  border-bottom: 1px solid rgba(23, 32, 38, 0.08);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  aspect-ratio: 1;
  background: var(--text);
  color: #fff;
  border-radius: 0.6rem;
  font-weight: 700;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(15, 123, 108, 0.3);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 123, 108, 0.36);
}

.btn-sm {
  padding: 0.56rem 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 5.2rem 0 4rem;
}

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

h1,
h2,
h3 {
  font-family: "Literata", serif;
  letter-spacing: -0.01em;
  margin-top: 0.45rem;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  max-width: 14ch;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-kpis {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-kpis li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 32, 38, 0.06);
  border-radius: 0.85rem;
  padding: 0.7rem 1rem;
}

.section {
  padding: 4.25rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 66ch;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.price {
  color: var(--primary-deep);
  font-weight: 700;
}

.band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.5));
  border-top: 1px solid rgba(23, 32, 38, 0.08);
  border-bottom: 1px solid rgba(23, 32, 38, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.1rem;
  align-items: center;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  margin-bottom: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-left: 4px solid var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.info-card p {
  margin: 0.22rem 0;
  color: var(--muted);
}

.contact-box {
  background: linear-gradient(140deg, #fffdf9 0%, #f5efe4 100%);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
}

input,
textarea {
  border: 1px solid #cbbca8;
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(15, 123, 108, 0.4);
  border-color: var(--primary);
}

.site-footer {
  border-top: 1px solid rgba(23, 32, 38, 0.1);
  padding: 1.2rem 0 1.5rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .grid.cards,
  .split,
  .info-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    right: 4vw;
    top: 4.2rem;
    background: #fffbf4;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    min-width: 12rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    padding: 0.4rem 0.7rem;
    font: inherit;
    color: var(--text);
  }
}
