@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../assets/fonts/cormorant-garamond-400-cyrillic.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../assets/fonts/cormorant-garamond-500-cyrillic.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

/* =========================================================
   TOKENS
   ========================================================= */

:root {
    --ink: #17352f;
    --ink-soft: #415a54;
    --paper: #f7f6f0;
    --cream: #efefe4;
    --sage: #dce4d8;
    --sage-deep: #cbd7c7;
    --terracotta: #b95f48;
    --white: #fff;
    --line: rgba(23, 53, 47, .17);
    --line-light: rgba(255,255,255,.2);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: Arial, Helvetica, sans-serif;

    --shell: 1440px;
    --gutter: 20px;

    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 88px;

    --transition: 180ms ease;
}

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

figure,
blockquote {
    margin: 0;
}

address {
    font-style: normal;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--ink);
    color: var(--paper);
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-200%);
    padding: 12px 16px;
    background: var(--ink);
    color: white;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 4px;
}

/* =========================================================
   ATOMS / LAYOUT
   ========================================================= */

.shell {
    width: min(100%, var(--shell));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--space-8);
}

.section--soft {
    background: var(--cream);
}

.section--sage {
    background: var(--sage);
}

.section--dark {
    background: var(--ink);
    color: var(--paper);
}

.eyebrow {
    margin-bottom: var(--space-4);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 680px;
}

.section-heading--wide {
    max-width: 880px;
    margin-bottom: var(--space-6);
}

.section-heading h2,
.final-cta h2 {
    margin-bottom: var(--space-4);
    font-family: var(--font-serif);
    font-size: clamp(44px, 13vw, 68px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: -.035em;
}

.section-lead {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.55;
}

.section--dark .section-lead {
    color: rgba(247,246,240,.72);
}

.prose {
    color: var(--ink-soft);
}

.prose p {
    margin-bottom: 1em;
}

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

.prose--large {
    font-size: 19px;
}

.split {
    display: grid;
    gap: var(--space-6);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

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

.button--light {
    background: var(--paper);
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.brand__name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
}

.brand__role {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--ink);
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
    position: fixed;
    inset: 74px 0 0;
    z-index: 90;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px var(--gutter);
    background: var(--cream);
}

.site-nav.is-open {
    display: flex;
}

.site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-size: 30px;
    text-decoration: none;
}

.site-nav__cta {
    margin-top: 24px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    background: var(--cream);
}

.hero__inner {
    display: grid;
}

.hero__copy {
    padding: 54px var(--gutter) 48px;
}

.hero h1 {
    max-width: 680px;
    margin: 0 0 28px;
    font-family: var(--font-serif);
    font-size: clamp(58px, 17vw, 92px);
    line-height: .86;
    font-weight: 400;
    letter-spacing: -.045em;
}

.hero__lead {
    max-width: 580px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 18px;
}

.hero__figure {
    min-height: 520px;
    overflow: hidden;
    background: var(--sage-deep);
}

.hero__picture,
.hero__image {
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: center 20%;
}

/* =========================================================
   FACTS
   ========================================================= */

.facts {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.facts__grid {
    padding-inline: 0;
}

.fact {
    display: grid;
    gap: 2px;
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--line);
}

.fact:last-child {
    border-bottom: 0;
}

.fact strong {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
}

.fact span {
    color: var(--ink-soft);
    font-size: 13px;
}

/* =========================================================
   START
   ========================================================= */

.choice-list {
    border-top: 1px solid var(--line);
}

.choice-list a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-size: 29px;
    line-height: 1.05;
    text-decoration: none;
}

/* =========================================================
   HELP
   ========================================================= */

.symptom-grid {
    display: grid;
    list-style: none;
    margin-bottom: var(--space-7);
    border-top: 1px solid var(--line);
}

.symptom-grid li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.direction-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.direction-card {
    padding: 26px 22px;
    background: var(--paper);
}

.direction-card h3 {
    margin-bottom: 18px;
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
}

.direction-card ul {
    padding-left: 18px;
    color: var(--ink-soft);
}

/* =========================================================
   APPROACH
   ========================================================= */

.principle-grid {
    display: grid;
    margin-top: var(--space-7);
    border-top: 1px solid var(--line);
}

.principle {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.principle__number {
    display: block;
    margin-bottom: 22px;
    color: var(--terracotta);
    font-size: 12px;
}

.principle h3 {
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
}

.principle p {
    margin: 0;
    color: var(--ink-soft);
}

/* =========================================================
   SERVICES
   ========================================================= */

.service-list {
    border-top: 1px solid var(--line-light);
}

.service-row {
    display: grid;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-light);
}

.service-row__number {
    font-size: 11px;
    opacity: .55;
}

.service-row h3 {
    margin-bottom: 8px;
    font-family: var(--font-serif);
    font-size: 31px;
    line-height: 1;
    font-weight: 500;
}

.service-row p {
    max-width: 620px;
    margin: 0;
    color: rgba(247,246,240,.68);
}

.service-row__price {
    font-size: 15px;
}

/* =========================================================
   SUPPORT
   ========================================================= */

.plan-grid {
    display: grid;
    gap: 16px;
}

.plan {
    position: relative;
    padding: 28px 22px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.plan--featured {
    background: var(--sage);
}

.plan__badge {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--terracotta);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.plan h3 {
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
}

.plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.plan__price strong {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
}

.plan__price span {
    color: var(--ink-soft);
    font-size: 13px;
}

.plan ul {
    padding-left: 18px;
    color: var(--ink-soft);
}

.plan li + li {
    margin-top: 9px;
}

.notice {
    margin-top: 24px;
    padding: 24px 22px;
    background: var(--cream);
}

.notice h3 {
    font-family: var(--font-serif);
    font-size: 30px;
}

.notice ul {
    padding-left: 18px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
    display: grid;
    gap: var(--space-6);
}

.about__figure {
    overflow: hidden;
}

.about__picture,
.about__image {
    width: 100%;
}

.about__image {
    object-fit: cover;
}

.about__copy h2 {
    margin-bottom: 8px;
    font-family: var(--font-serif);
    font-size: clamp(48px, 13vw, 72px);
    line-height: .9;
    font-weight: 400;
}

.about__role {
    margin-bottom: 28px;
    color: var(--terracotta);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
