﻿:root {
  --bg: #f7f1e8;
  --paper: #fffdf9;
  --surface: #efe5d8;
  --ink: #213234;
  --muted: #5e6c6f;
  --line: rgba(33, 50, 52, 0.14);
  --line-strong: rgba(33, 50, 52, 0.28);
  --accent: #b8623d;
  --accent-deep: #94482a;
  --forest: #294847;
  --forest-soft: #3f6664;
  --cream: #fbf6ef;
  --gold: #a78045;
  --shadow: 0 20px 60px rgba(33, 50, 52, 0.10);
  --title-font: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1120px, calc(100% - 2rem));
  --section-space: clamp(3.5rem, 6vw, 6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167, 128, 69, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(41, 72, 71, 0.12), transparent 25%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 44%, #f2f5f1 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 241, 0.88);
  border-bottom: 1px solid rgba(33, 50, 52, 0.08);
}

.site-header__inner,
.site-shell,
.site-footer__inner {
  width: var(--shell);
  margin: 0 auto;
}

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

.brand {
  text-decoration: none;
}

.brand__name {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand__tag {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--accent-deep);
  border-color: currentColor;
}

.site-shell {
  display: grid;
  gap: var(--section-space);
  padding: 1.4rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--title-font);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
}

h3 {
  font-size: 1.45rem;
  font-weight: 500;
}

p,
li {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.82fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero__panel {
  background: linear-gradient(145deg, var(--forest), var(--forest-soft));
  color: #fff;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 33, 35, 0.3);
}

.hero__panel p,
.hero__panel li {
  color: rgba(255, 255, 255, 0.88);
}

.hero__lede {
  margin-top: 1.3rem;
  max-width: 34ch;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero__list {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.hero__card {
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(33, 50, 52, 0.12);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
}

.portrait-panel {
  min-height: 320px;
  background:
    radial-gradient(circle at top, rgba(184, 98, 61, 0.24), transparent 26%),
    linear-gradient(180deg, #f7eee2 0%, #efe0cd 100%);
  border: 1px solid rgba(33, 50, 52, 0.1);
  padding: 1.4rem;
  display: flex;
  align-items: flex-end;
}

.portrait-panel__frame {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 1px solid rgba(33, 50, 52, 0.15);
  background: var(--paper);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
}

.portrait-panel__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-panel__caption {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.55;
  padding: 0.8rem;
  background: rgba(33, 50, 52, 0.72);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  transform: translateY(-1px);
}

.button {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(33, 50, 52, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(33, 50, 52, 0.3);
}

.button-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.section-card {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(33, 50, 52, 0.1);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 1.4rem;
  align-items: start;
}

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

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

.card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

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

.assessment-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.assessment-card h3 {
  margin-bottom: 0.55rem;
}

.card p + p,
.section-stack p + p {
  margin-top: 0.85rem;
}

.feature-list,
.faq-list,
.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
}

.label {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card {
  background: linear-gradient(180deg, rgba(251, 246, 239, 0.96), rgba(243, 232, 219, 0.98));
  border: 1px solid rgba(33, 50, 52, 0.12);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.price-note {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.fit-box {
  background: rgba(255, 255, 255, 0.6);
  border-left: 4px solid var(--accent);
  padding: 1rem 1rem 1rem 1.1rem;
}

.testimonial {
  display: grid;
  gap: 0.75rem;
}

.quote {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}

.quote-name {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.note-band {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}

.site-footer {
  border-top: 1px solid rgba(33, 50, 52, 0.1);
  padding: 1.6rem 0 2.5rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__inner a {
  text-decoration: none;
}

.stack-sm {
  display: grid;
  gap: 0.7rem;
}

.form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(33, 50, 52, 0.16);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-fieldset {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(33, 50, 52, 0.16);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 0.7rem;
}

.form-fieldset legend {
  padding: 0 0.35rem;
  color: var(--ink);
  font-weight: 700;
}

.form-fieldset label {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  color: var(--muted);
}

.form-fieldset input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.small {
  font-size: 0.9rem;
}

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

.divider {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
  margin: 0;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .section-split,
  .grid-3,
  .grid-2,
  .assessment-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    min-height: unset;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    align-items: start;
    flex-direction: column;
  }

  .site-nav,
  .cta-row,
  .site-footer__inner {
    width: 100%;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }
}

.translation-section {
  display: grid;
  gap: 1.4rem;
}

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

.translation-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}

.translation-card img {
  width: 112px;
  height: 142px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.translation-label {
  margin-bottom: 0.4rem;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.translation-text {
  margin-bottom: 0.55rem;
  font-family: var(--title-font);
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1.15;
}

@media (max-width: 760px) {
  .translation-grid {
    grid-template-columns: 1fr;
  }

  .translation-card {
    grid-template-columns: 96px 1fr;
  }

  .translation-card img {
    width: 96px;
    height: 122px;
  }
}
