:root {
  --paper: #fff8f1;
  --cream: #fffdf7;
  --mint: #b8ead1;
  --mint-dark: #2d806d;
  --coral: #ef8799;
  --coral-dark: #c9576f;
  --brown: #4b3831;
  --muted: #746b66;
  --line: #ead9cf;
  --shadow: 0 16px 40px rgba(75, 56, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--coral-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-button {
  min-width: 38px;
  min-height: 30px;
  padding: 4px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.lang-button.is-active {
  background: var(--mint-dark);
  color: white;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  align-items: center;
  gap: 44px;
  min-height: 560px;
  padding: 72px 0 48px;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
}

.hero p {
  max-width: 680px;
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--mint-dark);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
  background: #226d5d;
}

.button.secondary {
  background: var(--coral);
}

.button.secondary:hover {
  background: var(--coral-dark);
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: min(100%, 300px);
  height: auto;
}

.section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
}

.section h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
}

.panel,
.grid article,
.legal,
.contact {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel {
  align-self: start;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price {
  margin: 8px 0;
  color: var(--mint-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.checklist,
.contact ul {
  padding-left: 20px;
}

.checklist li,
.contact li {
  margin: 8px 0;
}

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

.grid article {
  padding: 22px;
}

.legal,
.contact {
  padding: 30px;
}

.legal h3 {
  margin-top: 24px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 780px) {
  .site-header,
  .header-actions,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .two-column,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }
}
