:root {
    color-scheme: light;
    --bg: #f7f8f6;
    --surface: #ffffff;
    --text: #1c2321;
    --muted: #5d6862;
    --line: #dbe1dd;
    --accent: #0b766f;
    --accent-strong: #084f4b;
    --accent-soft: #e4f4f1;
    --warm: #c85d3e;
    --tagline: #a84f3a;
    --shadow: 0 18px 45px rgba(28, 35, 33, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

a {
    color: var(--accent);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--accent-strong);
}

a:focus-visible {
    outline: 3px solid rgba(11, 118, 111, 0.25);
    outline-offset: 4px;
    border-radius: 4px;
}

.container {
    width: min(100% - 32px, 920px);
    margin: 0 auto;
}

.site-header {
    padding: 30px 0 22px;
    background:
        linear-gradient(135deg, rgba(11, 118, 111, 0.12), transparent 42%),
        linear-gradient(315deg, rgba(200, 93, 62, 0.12), transparent 45%),
        var(--surface);
    border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-label {
    margin: 0 0 10px;
    color: var(--warm);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-jump-link {
    color: var(--warm);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 8px;
    font-size: clamp(2.55rem, 8vw, 5.65rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.tagline {
    margin-bottom: 22px;
    color: var(--tagline);
    font-size: clamp(1.35rem, 4vw, 2.45rem);
    font-weight: 650;
    line-height: 1.12;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.intro {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.section {
    padding: 56px 0;
}

.links-section {
    background: var(--bg);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.link-list,
.suggest-list {
    padding-left: 0;
    list-style: none;
}

.link-list {
    display: grid;
    gap: 12px;
    margin: 0;
    counter-reset: featured-links 12;
}

.link-list li {
    counter-increment: featured-links -1;
}

.link-list a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 750;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.link-list a::before {
    content: counter(featured-links, decimal-leading-zero);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--accent-soft);
    border: 1px solid rgba(11, 118, 111, 0.16);
    border-radius: 50%;
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
}

.link-list a:hover {
    border-color: rgba(11, 118, 111, 0.45);
    box-shadow: 0 22px 52px rgba(28, 35, 33, 0.12);
    transform: translateY(-2px);
}

.link-arrow {
    color: var(--accent);
    font-size: 1.35rem;
    line-height: 1;
}

.suggest-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.suggest-layout {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 48px;
    align-items: start;
}

.suggest-content {
    max-width: 620px;
    color: var(--muted);
    font-size: 1rem;
}

.suggest-content p {
    margin-bottom: 14px;
}

.suggest-list {
    display: grid;
    gap: 12px;
    margin: 0;
    counter-reset: suggest-links;
}

.suggest-list li {
    position: relative;
    padding-left: 36px;
    counter-increment: suggest-links;
}

.suggest-list li::before {
    content: counter(suggest-links);
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 920px);
    }

    .site-header {
        padding: 24px 0 19px;
    }

    .section {
        padding: 42px 0;
    }

    .section-heading,
    .suggest-layout {
        display: block;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .link-list a {
        grid-template-columns: auto 1fr;
        min-height: 68px;
        padding: 16px;
    }

    .link-arrow {
        display: none;
    }

    .suggest-content {
        margin-top: 20px;
    }
}