:root {
  --cream: #f4efe6;
  --paper: #fbf7f1;
  --ink: #1c2a22;
  --ink-soft: #3d4d43;
  --sage: #4e6a56;
  --sage-deep: #2f4636;
  --poppy: #c45c3e;
  --poppy-hot: #b04b30;
  --petal: #edd5c8;
  --gold: #b0894a;
  --line: rgba(28, 42, 34, 0.12);
  --shadow: 0 18px 50px rgba(47, 70, 54, 0.12);
  --radius: 22px;
  --max: 1120px;
  --header: 76px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--poppy);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--poppy);
  margin-bottom: 0.8rem;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--sage-deep);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
}

.brand-text span {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.lang-badge {
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--sage);
}

.site-footer .lang-badge,
.site-footer .muted {
  color: rgba(244, 239, 230, 0.7);
}

.nav-phone {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--poppy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--poppy-hot);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  color: var(--sage-deep);
  background: var(--paper);
}

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(196, 92, 62, 0.16), transparent 46%),
    radial-gradient(ellipse at 0% 80%, rgba(78, 106, 86, 0.16), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.lede {
  font-size: 1.15rem;
  max-width: 38rem;
}

.hero-panel {
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 28px;
  padding: 28px;
  min-height: 340px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel p,
.hero-panel li {
  color: rgba(244, 239, 230, 0.86);
}

.hero-panel h2 {
  color: var(--cream);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.hero-panel ol {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-panel li + li {
  margin-top: 0.7rem;
}

.poppy-field {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 220px;
  opacity: 0.28;
  pointer-events: none;
}

/* Sections */
section {
  padding: 72px 0;
}

.band {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 36px;
}

.grid-3,
.grid-2,
.cards {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.band .card {
  background: #fff;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--petal);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--poppy);
  font-size: 1.2rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin: 8px 0 12px;
}

.muted {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.45rem 0;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--poppy);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.strip div {
  padding: 18px 8px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.strip div:last-child {
  border-right: 0;
}

.strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.cta-banner {
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-banner p {
  color: rgba(244, 239, 230, 0.84);
  margin: 0;
}

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 0.4rem;
}

/* Forms */
form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.alert {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e7f0e6;
  color: var(--sage-deep);
  font-size: 0.95rem;
}

.alert.show {
  display: block;
}

.alert.error {
  background: #f8e4de;
  color: #7a2e1d;
}

/* Footer */
.site-footer {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 56px 0 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: var(--cream);
}

.site-footer p,
.site-footer li {
  color: rgba(244, 239, 230, 0.78);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.legal {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.6);
}

.page-hero {
  padding: 56px 0 12px;
}

.page-hero p {
  max-width: 40rem;
  font-size: 1.1rem;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .wrap,
  .header-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  section {
    padding: 52px 0;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .brand span {
    font-size: 1rem;
  }
}
