:root {
  --ink: #2f2b28;
  --muted: #6d655f;
  --soft: #f7f2ec;
  --paper: #fffdf9;
  --sage: #9aa68d;
  --sage-dark: #5f6f58;
  --clay: #b78b72;
  --rose: #d7b8aa;
  --line: #e8ded4;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(72, 55, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(232, 222, 212, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 0.86rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(52px, 9vw, 116px) clamp(22px, 6vw, 88px);
  background:
    linear-gradient(120deg, rgba(247, 242, 236, 0.98), rgba(247, 242, 236, 0.84)),
    radial-gradient(circle at 85% 15%, rgba(215, 184, 170, 0.55), transparent 32%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.1;
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.button.primary:hover {
  background: #4e5d49;
}

.button.secondary {
  color: var(--sage-dark);
  border-color: var(--sage);
  background: rgba(255, 255, 255, 0.55);
}

.button.secondary.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.hero-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
}

.portrait {
  display: grid;
  min-height: 410px;
  place-items: end start;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(47, 43, 40, 0.08), rgba(47, 43, 40, 0.62)),
    url("assets/natalia-dychko.jpeg") center / cover no-repeat;
  color: var(--white);
}

.portrait-inner span,
.portrait-inner small {
  display: block;
}

.portrait-inner span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.portrait-inner small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.credentials {
  display: grid;
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
}

.credentials p {
  margin: 0;
  padding: 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(62px, 9vw, 116px) clamp(22px, 6vw, 88px);
}

.intro,
.education {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.08fr);
  gap: clamp(30px, 7vw, 98px);
  align-items: start;
}

.text-flow p {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-flow p:last-child {
  margin-bottom: 0;
}

.quote-section {
  padding: clamp(48px, 8vw, 96px) clamp(22px, 10vw, 140px);
  background: var(--sage-dark);
  color: var(--white);
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  line-height: 1.25;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.request-grid article {
  min-height: 132px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: var(--soft);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.symbol-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.symbol-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.symbol-panel strong {
  display: block;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.symbol-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.dreams {
  padding: clamp(70px, 11vw, 138px) clamp(22px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(47, 43, 40, 0.88), rgba(47, 43, 40, 0.62)),
    url("assets/natalia-dychko.jpeg") center / cover no-repeat;
  color: var(--white);
}

.dreams-inner {
  max-width: 760px;
}

.dreams .eyebrow {
  color: #e5c9ba;
}

.dreams p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

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

.process-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-weight: 850;
}

.process-grid p,
.faq-list p,
.education li {
  color: var(--muted);
}

.format-note {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 5vw, 64px);
  margin-top: 28px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.format-note h3 {
  max-width: 620px;
}

.format-note-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.format-note-copy p:last-child {
  margin-bottom: 0;
}

.education {
  background: var(--soft);
}

.education ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.education li {
  padding: 20px;
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  padding: clamp(70px, 10vw, 128px) clamp(22px, 6vw, 88px);
  background: var(--ink);
}

.contact-card {
  max-width: 900px;
  color: var(--white);
}

.contact-card .eyebrow {
  color: #e5c9ba;
}

.contact-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-note {
  margin-top: 22px;
}

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

.messenger-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

.messenger-actions a:hover {
  border-color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 6vw, 88px);
  background: #211d1a;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro,
  .split,
  .format-note,
  .education {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .request-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .portrait {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
