:root {
  color-scheme: light;
  --paper: #fff9ec;
  --surface: #fffdf7;
  --surface-strong: #ffffff;
  --ink: #241d17;
  --muted: #776f66;
  --honey: #f5aa16;
  --honey-soft: #fff0c7;
  --moss: #65845f;
  --coral: #c9674f;
  --line: #e8dcc8;
  --shadow: 0 18px 48px rgb(75 53 24 / 10%);
  --content: min(1120px, calc(100% - 40px));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(232 220 200 / 78%);
  background: rgb(255 249 236 / 91%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--content);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 7px 16px rgb(74 46 10 / 16%);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--honey-soft);
}

.hero {
  position: relative;
  min-height: min(76svh, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f8ead1;
}

.hero-shot {
  position: absolute;
  top: 36px;
  right: max(3vw, calc((100vw - 1120px) / 2));
  width: min(42vw, 475px);
  height: 92%;
  object-fit: cover;
  object-position: top center;
  border: 9px solid rgb(255 253 247 / 88%);
  border-radius: 44px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero::after {
  position: absolute;
  inset: 0 36% 0 0;
  content: "";
  pointer-events: none;
  background: rgb(255 249 236 / 92%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  min-height: min(76svh, 760px);
  margin: 0 auto;
  padding: 96px 0 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--moss);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  border-radius: 3px;
  background: var(--honey);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  max-width: 610px;
  margin: 18px 0 18px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 590px;
  margin: 0;
  color: #544b42;
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

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

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 8px 20px rgb(65 46 23 / 8%);
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  border-color: var(--honey);
  background: var(--honey);
}

.button-dark {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.section {
  padding: 86px 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: rgb(255 253 247 / 62%);
}

.section-shell {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--honey-soft);
  font-size: 1.35rem;
}

.feature:nth-child(2) .feature-icon {
  color: #3e5f39;
  background: #e8f0e2;
}

.feature:nth-child(3) .feature-icon {
  color: #884838;
  background: #f9e3dc;
}

.feature:nth-child(4) .feature-icon {
  color: #5c5478;
  background: #ebe7f4;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.screen-card {
  margin: 0;
}

.screen-card img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.screen-card:nth-child(even) {
  transform: translateY(30px);
}

.privacy-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.privacy-band h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

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

.privacy-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.privacy-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--moss);
  background: rgb(255 255 255 / 48%);
}

.legal-hero {
  padding: 78px 0 40px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .section-shell {
  max-width: 860px;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1;
}

.legal-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.legal-layout {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 90px;
}

.legal-layout article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgb(75 53 24 / 6%);
}

.legal-layout h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.legal-layout h2:first-child {
  margin-top: 0;
}

.legal-layout h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-size: 1.05rem;
}

.legal-layout p,
.legal-layout li {
  color: #514940;
}

.legal-layout li + li {
  margin-top: 7px;
}

.legal-meta {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: start;
}

.contact-aside,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-aside h2,
.contact-form h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.contact-aside p,
.contact-form > p {
  color: var(--muted);
}

.contact-aside a {
  color: var(--moss);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: white;
  outline: none;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgb(245 170 22 / 16%);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 650;
}

.form-status[data-state="error"] {
  color: #a63f2d;
}

.form-status[data-state="success"] {
  color: var(--moss);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--honey);
  flex: 0 0 auto;
}

.consent-field a {
  margin-left: 4px;
  color: var(--moss);
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #2d2822;
  color: #f8f1e5;
}

.footer-shell {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-shell p {
  margin: 0;
  color: #c9c0b4;
  font-size: 0.86rem;
}

.footer-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #f8f1e5;
  font-size: 0.86rem;
  text-decoration: none;
}

[data-lang-panel][hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-keep) {
    display: none;
  }

  .hero-shot {
    right: -14vw;
    width: 62vw;
    opacity: 0.44;
  }

  .hero::after {
    inset: 0;
    background: rgb(255 249 236 / 64%);
  }

  .hero-content {
    padding-right: 20vw;
  }

  .feature-grid,
  .screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(1120px, calc(100% - 28px));
  }

  .nav-shell {
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shot {
    top: 130px;
    right: -46%;
    width: 106%;
    height: 76%;
    opacity: 0.28;
  }

  .hero-content {
    min-height: 680px;
    padding: 74px 0 64px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .screens,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 0;
  }

  .screen-card:nth-child(even) {
    transform: none;
  }

  .screens {
    width: 88%;
    margin: 0 auto;
  }

  .legal-layout article,
  .contact-aside,
  .contact-form {
    padding: 22px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
