:root {
  --bg: #f6f0e7;
  --bg-2: #efe6d9;
  --paper: rgba(255, 255, 255, 0.72);
  --paper-2: rgba(255, 255, 255, 0.56);
  --text: #26221f;
  --muted: #6c5f55;
  --border: rgba(38, 34, 31, 0.10);
  --accent: #8a6b4f;
  --accent-2: #6f5a45;
  --shadow: 0 18px 44px rgba(20, 16, 12, 0.13);
  --shadow-soft: 0 10px 26px rgba(20, 16, 12, 0.08);
  --ring: 0 0 0 4px rgba(138, 107, 79, 0.18);

  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-serif: "Literata", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 16% 8%, rgba(138, 107, 79, 0.18), transparent 55%),
    radial-gradient(900px 520px at 84% 0%, rgba(111, 90, 69, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  font-family: var(--font-sans);
  line-height: 1.55;
}

a { color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.skip:focus {
  left: 8px;
}

.page {
  min-height: 100vh;
}

.frame {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(246, 240, 231, 0.62);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(138, 107, 79, 0.95), rgba(111, 90, 69, 0.95));
  box-shadow: 0 0 0 6px rgba(138, 107, 79, 0.12);
}

.brand__text {
  font-family: var(--font-serif);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topnav__a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
}

.topnav__a:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.lang {
  display: flex;
  gap: 6px;
}

.lang__a {
  text-decoration: none;
}

.lang__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.44);
}

.lang__a.is-active .lang__pill {
  border-color: rgba(138, 107, 79, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 54px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.hero__copy {
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero__visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--paper-2);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__device {
  position: absolute;
  right: -18px;
  bottom: 58px;
  width: min(420px, 78%);
  height: auto;
  filter: drop-shadow(0 26px 50px rgba(20, 16, 12, 0.22));
  opacity: 0.95;
  transform: rotate(-2deg);
}

.hero__card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(38, 34, 31, 0.08);
}

.hero__cardK {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero__cardV {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
}

.title {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.hero__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(38, 34, 31, 0.09);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 12px;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.quick__a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(38, 34, 31, 0.10);
  background: rgba(255, 255, 255, 0.45);
}

.quick__a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(138, 107, 79, 0.35);
  background: linear-gradient(180deg, rgba(138, 107, 79, 0.95), rgba(111, 90, 69, 0.95));
  color: #fff;
  text-decoration: none;
  font-weight: 650;
}

.btn:hover {
  filter: brightness(1.04);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.45);
}

.btn--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--ghost:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.section {
  padding: 40px 0;
}

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

.section__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-family: var(--font-serif);
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

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

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

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

.card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.card--lift {
  box-shadow: var(--shadow-soft);
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(138, 107, 79, 0.12);
  border: 1px solid rgba(138, 107, 79, 0.16);
  color: var(--accent-2);
  margin-bottom: 10px;
}

.card__title {
  margin: 0 0 6px;
  font-size: 16px;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

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

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

.steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.device {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.device__copy {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.device__media {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.device__img {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(20, 16, 12, 0.22));
}

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets__li {
  margin: 8px 0;
}

.small {
  font-size: 12px;
}

.step {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  padding: 16px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.step__n {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 800;
  color: rgba(38, 34, 31, 0.68);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(38, 34, 31, 0.10);
}

.step__t {
  margin: 0 0 6px;
  font-size: 15px;
}

.step__p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  padding: 14px 14px 10px;
  box-shadow: var(--shadow-soft);
}

.faq__q {
  cursor: pointer;
  font-weight: 650;
  color: var(--text);
}

.faq__a {
  padding-top: 10px;
}

.faq__p {
  margin: 0;
  color: var(--muted);
}

.contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.contactBox {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.contactRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(38, 34, 31, 0.12);
}

.contactRow:last-child {
  border-bottom: none;
}

.contactK {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contactV {
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 90, 69, 0.35);
}

.contactV:hover {
  border-bottom-color: rgba(111, 90, 69, 0.65);
}

.note {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(138, 107, 79, 0.10);
  border: 1px solid rgba(138, 107, 79, 0.14);
}

.note__p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.form__t {
  margin: 0 0 12px;
  font-family: var(--font-serif);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.field__l {
  font-size: 12px;
  color: var(--muted);
}

.field__i {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(38, 34, 31, 0.12);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
  font-size: 14px;
}

.field__i--ta {
  resize: vertical;
}

.field__i:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(138, 107, 79, 0.34);
}

.form__hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.link {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 90, 69, 0.35);
}

.link:hover {
  border-bottom-color: rgba(111, 90, 69, 0.65);
}

.footer {
  padding: 22px 0 40px;
}

.footer__inner {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 14px;
  align-items: start;
}

.footer__brand {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-weight: 750;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.footer__small p {
  margin: 0;
}

@media (max-width: 820px) {
  .topnav { display: none; }
  .hero { padding: 34px 0 22px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__device { right: -10px; bottom: 66px; width: min(440px, 92%); opacity: 0.92; }
  .grid { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contactGrid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .device { grid-template-columns: 1fr; }
}
