/* ============================================================
   ひとり防災
   style.css
   ============================================================ */


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;

    background: #f7f7f3;
    color: #202625;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        Meiryo,
        sans-serif;

    line-height: 1.8;

    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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


/* ============================================================
   VARIABLES
   ============================================================ */

:root {

    --color-bg: #f7f7f3;
    --color-bg-soft: #f0f1ed;

    --color-white: #ffffff;

    --color-ink: #202625;
    --color-ink-soft: #5e6764;
    --color-ink-light: #7b8380;

    --color-navy: #17333a;
    --color-navy-light: #28505a;

    --color-accent: #d96b3a;
    --color-accent-dark: #bd5427;
    --color-accent-soft: #f4e4db;

    --color-water: #2d7883;
    --color-water-soft: #e1eff0;

    --color-line: #dfe2de;

    --shadow-soft:
        0 10px 35px rgba(26, 39, 38, 0.06);

    --shadow-card:
        0 14px 45px rgba(26, 39, 38, 0.08);

    --content-width: 1180px;
    --narrow-width: 760px;

    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 22px;
}


/* ============================================================
   COMMON
   ============================================================ */

.section {
    padding: 110px 24px;
}

.section-inner {
    width: min(100%, var(--content-width));
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(100%, var(--narrow-width));
}

.section-label {
    margin-bottom: 14px;

    color: var(--color-accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.18em;
    line-height: 1.4;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 48px;
}

.section-heading.centered {
    display: block;

    max-width: 720px;

    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-heading h2,
.intro-heading h2,
.about-section h2 {
    margin-bottom: 0;

    color: var(--color-navy);

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;

    letter-spacing: -0.035em;
    line-height: 1.35;
}

.section-heading-text {
    max-width: 460px;

    margin-bottom: 3px;

    color: var(--color-ink-soft);

    font-size: 14px;
    line-height: 1.9;
}

.section-text {
    margin-bottom: 24px;

    color: var(--color-ink-soft);

    font-size: 15px;
    line-height: 2.05;
}

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


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

.site-header {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 100%;

    background: rgba(247, 247, 243, 0.96);

    border-bottom: 1px solid var(--color-line);
}

.header-inner {
    width: min(100%, var(--content-width));
    min-height: 86px;
    min-width: 0;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    overflow: hidden;
}

.site-logo {
    display: flex;
    flex-direction: column;

    gap: 3px;

    min-width: 0;

    flex: 0 1 auto;
}

.logo-main {
    color: var(--color-navy);

    font-size: 21px;
    font-weight: 900;

    letter-spacing: -0.04em;
    line-height: 1.2;

    white-space: nowrap;
}

.logo-sub {
    color: var(--color-ink-light);

    font-size: 9px;

    letter-spacing: 0.04em;
    line-height: 1.4;

    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;

    gap: 34px;

    min-width: 0;

    flex: 0 1 auto;
}

.site-nav a {
    position: relative;

    display: block;

    min-width: 0;

    color: var(--color-ink-soft);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.site-nav a::after {
    position: absolute;

    right: 0;
    bottom: -7px;
    left: 0;

    height: 2px;

    background: var(--color-accent);

    content: "";

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--color-navy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}


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

.hero {
    width: min(100%, 1400px);
    min-height: 610px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.12fr 0.88fr;

    background: var(--color-navy);
}

.hero-image {
    position: relative;

    min-width: 0;
    min-height: 610px;

    overflow: hidden;
}

.hero-image::after {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 35, 39, 0) 55%,
            rgba(15, 35, 39, 0.35) 100%
        );

    content: "";

    pointer-events: none;
}

.hero-image-photo {
    width: 100%;
    height: 100%;

    min-width: 0;

    object-fit: cover;
}

.hero-image-credit {
    position: absolute;
    z-index: 2;

    right: 18px;
    bottom: 16px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 9px;
    line-height: 1.5;
}

.hero-image-credit a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-content {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 8vw 80px 70px;

    color: var(--color-white);
}

.hero-content::before {
    position: absolute;

    top: 60px;
    left: 0;

    width: 4px;
    height: 80px;

    background: var(--color-accent);

    content: "";
}

.eyebrow {
    margin-bottom: 30px;

    color: #a8c3c7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.17em;
}

.hero-category {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 18px;
    padding: 5px 12px;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    color: #d9e9eb;

    font-size: 11px;
    font-weight: 700;
}

.hero-content h1 {
    margin-bottom: 20px;

    color: var(--color-white);

    font-size: clamp(38px, 5vw, 65px);
    font-weight: 900;

    letter-spacing: -0.06em;
    line-height: 1.08;
}

.hero-theme {
    max-width: 540px;

    margin-bottom: 27px;

    color: #d6e3e4;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.7;
}

.hero-lead {
    max-width: 510px;

    margin-bottom: 36px;

    color: #aebfc1;

    font-size: 14px;
}

.hero-lead p {
    margin-bottom: 5px;
}


/* ============================================================
   BUTTON
   ============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    width: fit-content;
    min-width: 220px;

    padding: 14px 18px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button-primary {
    background: var(--color-accent);
    color: #fff;
}

.button-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.button span {
    font-size: 17px;
    line-height: 1;
}


/* ============================================================
   THEME INTRO
   ============================================================ */

.theme-intro {
    background: var(--color-bg);
}

.intro-main {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;
    align-items: start;

    margin-bottom: 65px;
}

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

.intro-copy {
    color: var(--color-ink-soft);

    font-size: 15px;
}

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


/* ============================================================
   PROBLEM CARDS
   ============================================================ */

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

    gap: 18px;
}

.problem-card {
    position: relative;

    min-width: 0;
    min-height: 270px;

    padding: 28px;

    background: var(--color-white);

    border: 1px solid var(--color-line);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-card);
}

.problem-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 38px;
}

.problem-number {
    color: var(--color-accent);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.1em;
}

.problem-icon {
    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    background: var(--color-water-soft);

    border-radius: 50%;

    font-size: 19px;
}

.problem-card h3 {
    margin-bottom: 10px;

    color: var(--color-navy);

    font-size: 18px;
    font-weight: 800;

    line-height: 1.4;
}

.problem-card p {
    margin-bottom: 0;

    color: var(--color-ink-soft);

    font-size: 13px;
    line-height: 1.85;
}


/* ============================================================
   GOODS
   ============================================================ */

.goods-section {
    background: var(--color-white);
}

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

    gap: 20px;
}


/* ------------------------------------------------------------
   Goods card
   ------------------------------------------------------------ */

.goods-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: var(--color-bg);

    border: 1px solid var(--color-line);
    border-radius: var(--radius-large);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.goods-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-card);
}


/* ------------------------------------------------------------
   Goods image
   ------------------------------------------------------------ */

.goods-card-image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #ffffff;

    border-bottom: 1px solid var(--color-line);
}

.goods-card-image a {
    display: block;

    width: 100%;
    height: 100%;
}

.goods-card-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 22px;

    transition: transform 0.3s ease;
}

.goods-card:hover .goods-card-image img {
    transform: scale(1.03);
}


/* ------------------------------------------------------------
   Goods content
   ------------------------------------------------------------ */

.goods-card-content {
    min-width: 0;

    padding: 28px;
}

.goods-category {
    display: inline-block;

    margin-bottom: 15px;
    padding: 4px 9px;

    background: var(--color-water-soft);

    border-radius: 4px;

    color: var(--color-water);

    font-size: 10px;
    font-weight: 800;
}

.goods-item-name,
.goods-product-label {
    margin: 0 0 6px;

    color: #89918e;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.goods-item-title {
    margin: 0 0 18px;

    color: var(--color-navy);

    font-size: 22px;
    font-weight: 900;

    letter-spacing: -0.025em;
    line-height: 1.4;
}

.goods-theme {
    margin: 0 0 27px;

    padding: 17px 18px;

    background: #ffffff;

    border-left: 3px solid var(--color-accent);
    border-radius: 0 7px 7px 0;

    color: var(--color-ink-soft);

    font-size: 12px;
    line-height: 1.85;
}

.goods-title {
    margin: 0 0 25px;

    color: var(--color-navy);

    font-size: 13px;
    font-weight: 800;

    line-height: 1.7;
}

.goods-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 48px;

    padding: 12px 16px;

    background: var(--color-navy);

    border: 1px solid var(--color-navy);
    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.goods-button span {
    font-size: 17px;
    line-height: 1;
}

.goods-button:hover {
    background: #10272d;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(26, 39, 38, 0.15);
}


/* ============================================================
   OLD / COMPATIBLE GOODS ELEMENTS
   ============================================================ */

.goods-card-number {
    position: absolute;
    z-index: 2;

    top: 24px;
    right: 25px;

    color: #a7afad;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.1em;
}

.goods-body {
    padding: 30px;
}

.goods-lead {
    margin-bottom: 13px;

    color: var(--color-ink);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.75;
}

.goods-description {
    margin-bottom: 20px;

    color: var(--color-ink-soft);

    font-size: 12px;
    line-height: 1.8;
}

.goods-points {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin: 0 0 25px;
    padding: 0;

    list-style: none;
}

.goods-points li {
    padding: 4px 8px;

    background: var(--color-white);

    border: 1px solid var(--color-line);
    border-radius: 3px;

    color: var(--color-ink-soft);

    font-size: 10px;
    line-height: 1.4;
}

.goods-products {
    padding-top: 20px;

    border-top: 1px solid var(--color-line);
}

.goods-product {
    display: grid;

    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto auto auto;

    column-gap: 14px;

    min-width: 0;
}

.goods-product-image {
    grid-row: 1 / 4;

    width: 82px;
    height: 82px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--color-line);
    border-radius: 8px;
}

.goods-product-image-link {
    display: block;

    width: 100%;
    height: 100%;
}

.goods-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.goods-product-name {
    min-width: 0;
}

.goods-product-name-link {
    display: -webkit-box;

    overflow: hidden;

    color: var(--color-navy);

    font-size: 11px;
    font-weight: 800;

    line-height: 1.55;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.goods-product-name-link:hover {
    color: var(--color-accent-dark);
}

.goods-product-link {
    align-self: end;

    color: var(--color-accent);

    font-size: 10px;
    font-weight: 900;
}

.goods-product-keyword {
    align-self: end;

    overflow: hidden;

    color: #8b9390;

    font-size: 9px;
    line-height: 1.4;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* ============================================================
   MINIMUM
   ============================================================ */

.minimum-section {
    background: var(--color-navy);

    color: #ffffff;

    border-top: none;
    border-bottom: none;
}

.minimum-section .section-label {
    color: #e69a76;
}

.minimum-section h2 {
    color: #ffffff;
}

.minimum-section .section-heading-text {
    color: #afc0c2;
}


/* ------------------------------------------------------------
   Homepage minimum grid
   ------------------------------------------------------------ */

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

    gap: 2px;

    margin-top: 55px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.minimum-card {
    position: relative;

    min-width: 0;
    min-height: 270px;

    padding: 35px;

    background: var(--color-navy);
}

.minimum-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: #70898e;

    font-size: 11px;
    font-weight: 900;
}

.minimum-card .minimum-icon {
    display: grid;

    width: 52px;
    height: 52px;

    margin-bottom: 35px;

    place-items: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    font-size: 22px;
}

.minimum-card h3 {
    margin-bottom: 12px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;
}

.minimum-card p {
    margin-bottom: 0;

    color: #aebfc1;

    font-size: 12px;
    line-height: 1.85;
}


/* ------------------------------------------------------------
   Minimum message
   ------------------------------------------------------------ */

.minimum-message {
    margin-top: 35px;

    padding: 25px 30px;

    background: rgba(255, 255, 255, 0.055);

    border-left: 3px solid var(--color-accent);
}

.minimum-message strong {
    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: 14px;
}

.minimum-message p {
    margin: 0;

    color: #9fb2b5;

    font-size: 12px;
}


/* ------------------------------------------------------------
   Article minimum list
   ------------------------------------------------------------ */

.minimum-list {
    display: grid;

    gap: 12px;

    margin-top: 30px;
}

.minimum-item {
    display: flex;
    align-items: center;

    min-width: 0;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid #e0e7e3;
    border-radius: 10px;
}

.minimum-item .minimum-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 17px;

    background: #edf2ef;

    border-radius: 10px;

    color: var(--color-ink);

    font-size: 22px;
}

.minimum-item div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.minimum-item strong {
    color: #26342d;

    font-size: 16px;
    font-weight: 750;

    line-height: 1.5;
}

.minimum-item div span {
    color: #727d77;

    font-size: 13px;

    line-height: 1.7;
}


/* Article minimum message */

.minimum-list + .minimum-message {
    margin-top: 28px;

    background: #ffffff;

    border-left-color: #6d8177;

    border-radius: 0 9px 9px 0;
}

.minimum-list + .minimum-message p {
    margin: 0 0 7px;

    color: #29372f;

    font-size: 15px;
    font-weight: 750;

    line-height: 1.7;
}

.minimum-list + .minimum-message span {
    display: block;

    color: #747e79;

    font-size: 13px;

    line-height: 1.8;
}


/* ============================================================
   WITHOUT
   ============================================================ */

.without-section {
    background: #ffffff;
}

.without-grid {
    display: grid;

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

    gap: 18px;

    margin-top: 46px;
}

.without-card {
    min-width: 0;

    padding: 28px;

    background: #f7f9f8;

    border: 1px solid #e1e7e4;
    border-radius: 13px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.without-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 28px rgba(30, 45, 38, 0.06);
}

.without-card-number {
    margin-bottom: 24px;

    color: #87938d;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.without-target,
.without-alternative {
    min-width: 0;
}

.without-label {
    display: block;

    margin-bottom: 8px;

    color: #7b8781;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.without-card h3 {
    margin: 0;

    color: #29362f;

    font-size: 17px;
    font-weight: 750;

    line-height: 1.6;
}

.without-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: 20px 0;

    background: #e9efeb;

    border-radius: 50%;

    color: #617169;

    font-size: 15px;
}

.without-alternative {
    padding-top: 20px;

    border-top: 1px solid #dde4e0;
}

.without-alternative h3 {
    margin-bottom: 12px;

    font-size: 16px;
}

.without-alternative p {
    margin: 0;

    color: #6e7973;

    font-size: 13px;

    line-height: 1.9;
}

.without-message {
    margin-top: 28px;

    padding: 26px 28px;

    background: #f3f6f4;

    border-radius: 10px;

    text-align: center;
}

.without-message strong {
    display: block;

    margin-bottom: 8px;

    color: #29372f;

    font-size: 15px;
    font-weight: 750;
}

.without-message p {
    margin: 0;

    color: #707b75;

    font-size: 13px;

    line-height: 1.8;
}


/* ============================================================
   THEMES
   ============================================================ */

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

.theme-grid {
    display: grid;

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

    gap: 10px;
}

.theme-card {
    position: relative;

    display: grid;

    grid-template-columns: 48px minmax(0, 1fr) 25px;

    gap: 15px;

    align-items: center;

    min-width: 0;
    min-height: 105px;

    padding: 20px;

    background: var(--color-white);

    border: 1px solid var(--color-line);
    border-radius: var(--radius-medium);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.theme-card:hover {
    transform: translateY(-3px);

    border-color: #c8ceca;

    background: #fcfcfa;
}

.theme-card-current {
    border-color: var(--color-water);

    background: var(--color-water-soft);
}

.theme-icon {
    display: grid;

    width: 44px;
    height: 44px;

    place-items: center;

    background: var(--color-bg-soft);

    border-radius: 50%;

    font-size: 19px;
}

.theme-card-current .theme-icon {
    background: #fff;
}

.theme-card h3 {
    margin-bottom: 3px;

    color: var(--color-navy);

    font-size: 15px;
    font-weight: 800;
}

.theme-card p {
    margin: 0;

    color: var(--color-ink-light);

    font-size: 10px;

    line-height: 1.5;
}

.theme-arrow {
    color: var(--color-accent);

    font-size: 17px;
    font-weight: 800;
}


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

.about-section {
    background: var(--color-white);
}

.about-section .section-inner {
    padding-top: 10px;
    padding-bottom: 10px;
}

.about-section h2 {
    margin-bottom: 45px;
}


/* ============================================================
   RELATED
   ============================================================ */

.related-section {
    background: #f3f6f4;

    border-top: 1px solid #e3e8e5;
}

.related-grid {
    max-width: 720px;

    margin: 42px auto 0;
}

.related-card {
    display: grid;

    grid-template-columns: 48px minmax(0, 1fr) 32px;

    align-items: center;

    gap: 18px;

    min-width: 0;

    padding: 22px 24px;

    background: #ffffff;

    border: 1px solid #dfe6e2;
    border-radius: 11px;

    box-shadow:
        0 7px 22px rgba(30, 45, 38, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(30, 45, 38, 0.08);
}

.related-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef3f0;

    border-radius: 9px;

    color: #65746c;

    font-size: 18px;
}

.related-card h3 {
    margin: 0 0 4px;

    color: #29372f;

    font-size: 16px;
    font-weight: 750;
}

.related-card p {
    margin: 0;

    color: #78827d;

    font-size: 12px;

    line-height: 1.6;
}

.related-arrow {
    color: #63736a;

    font-size: 18px;

    text-align: right;
}


/* ============================================================
   THEME ARTICLE
   ============================================================ */

.theme-hero {
    width: min(1180px, calc(100% - 40px));

    margin: 42px auto 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    background: #ffffff;

    border: 1px solid #e4e8e5;
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 14px 40px rgba(30, 45, 38, 0.07);
}

.theme-hero-image {
    position: relative;

    min-width: 0;
    min-height: 480px;

    background: #edf1ee;

    overflow: hidden;
}

.theme-hero-image-photo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.theme-photo-credit {
    position: absolute;

    left: 18px;
    bottom: 16px;

    max-width: calc(100% - 36px);

    padding: 7px 10px;

    background: rgba(20, 28, 24, 0.68);

    color: rgba(255, 255, 255, 0.9);

    border-radius: 5px;

    font-size: 11px;
    line-height: 1.5;

    backdrop-filter: blur(5px);
}

.theme-photo-credit a {
    color: #ffffff;

    text-decoration: underline;
    text-underline-offset: 2px;
}

.theme-hero-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 64px 58px;
}

.theme-hero-content .eyebrow {
    margin: 0 0 20px;

    color: #718078;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.theme-hero-content h1 {
    margin: 0;

    color: #1d2924;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;

    line-height: 1.25;
    letter-spacing: -0.035em;
}

.theme-hero-lead {
    margin: 28px 0 0;

    color: #59655f;

    font-size: 16px;

    line-height: 2;

    letter-spacing: 0.015em;
}


/* ============================================================
   THEME ARTICLE INTRO
   ============================================================ */

.theme-article {
    padding-top: 100px;
    padding-bottom: 100px;
}

.theme-article .section-label {
    margin-bottom: 18px;
}

.theme-article h2 {
    margin: 0 0 36px;

    color: #1d2924;

    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;

    line-height: 1.4;
    letter-spacing: -0.025em;
}

.theme-article .section-text {
    color: #59655f;

    font-size: 16px;
    line-height: 2.1;
}

.theme-article .section-text.large {
    margin-bottom: 24px;

    color: #28352f;

    font-size: 19px;
    font-weight: 600;

    line-height: 1.9;
}


/* ============================================================
   ARTICLE PROBLEMS
   ============================================================ */

.problem-section {
    background: #f3f6f4;

    border-top: 1px solid #e5eae7;
    border-bottom: 1px solid #e5eae7;
}

.problem-large-grid {
    display: grid;

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

    gap: 22px;

    margin-top: 46px;
}

.problem-large-card {
    position: relative;

    min-width: 0;

    padding: 34px 32px 36px;

    background: #ffffff;

    border: 1px solid #e2e8e4;
    border-radius: 14px;

    box-shadow:
        0 8px 24px rgba(30, 45, 38, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.problem-large-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(30, 45, 38, 0.08);
}

.problem-large-number {
    display: block;

    margin-bottom: 18px;

    color: #83918a;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.problem-large-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    background: #eef3f0;

    border-radius: 12px;

    font-size: 25px;
}

.problem-large-card h3 {
    margin: 0 0 14px;

    color: #26332d;

    font-size: 20px;
    font-weight: 750;

    line-height: 1.55;
}

.problem-large-card p {
    margin: 0;

    color: #68736d;

    font-size: 14px;
    line-height: 1.9;
}


/* ============================================================
   ANSWER / RECOMMENDATIONS
   ============================================================ */

.answer-section {
    background: #ffffff;
}

.answer-section > .section-inner > .section-heading {
    margin-bottom: 50px;
}

.recommendation {
    position: relative;

    display: grid;

    grid-template-columns:
        64px
        minmax(0, 1fr);

    min-width: 0;

    margin-top: 22px;

    background: #ffffff;

    border: 1px solid #dfe6e2;
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 10px 32px rgba(30, 45, 38, 0.055);
}

.recommendation-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 34px;

    background: #eef3f0;

    color: #68766f;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.recommendation-content {
    min-width: 0;

    padding: 32px 38px 38px;
}

.recommendation-heading {
    margin-bottom: 30px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e8ecea;
}

.recommendation-category {
    margin: 0 0 8px;

    color: #738179;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.recommendation-heading h3 {
    margin: 0;

    color: #1f2c26;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.45;
    letter-spacing: -0.02em;
}

.recommendation-grid {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    gap: 32px;

    align-items: start;
}

.recommendation-image {
    width: 100%;
    max-width: 220px;

    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px;

    background: #f7f8f7;

    border: 1px solid #e7ebe9;
    border-radius: 10px;

    overflow: hidden;
}

.recommendation-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.recommendation-text {
    min-width: 0;
}

.recommendation-text p {
    margin: 0 0 18px;

    color: #626e68;

    font-size: 14px;
    line-height: 1.95;
}

.recommendation-text .recommendation-lead {
    margin-bottom: 22px;

    color: #26342d;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.7;
}

.product-points {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 26px;
    margin-bottom: 28px;
}

.product-points span {
    display: inline-flex;
    align-items: center;

    min-height: 32px;

    padding: 6px 11px;

    background: #f0f4f1;

    border-radius: 5px;

    color: #536159;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 46px;

    padding: 11px 20px;

    background: #293b33;

    border: 1px solid #293b33;
    border-radius: 7px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-button span {
    font-size: 17px;
    line-height: 1;
}

.product-button:hover {
    background: #1f2e28;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(30, 45, 38, 0.16);
}


/* ============================================================
   CATEGORY ARCHIVE
   ============================================================ */

.archive-hero {
    padding: 95px 24px 85px;

    background:
        linear-gradient(
            180deg,
            #eef2ef 0%,
            #f7f7f3 100%
        );

    border-bottom: 1px solid #e3e7e4;

    text-align: center;
}

.archive-hero .section-label {
    margin-bottom: 22px;
}

.archive-category-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    margin: 0 auto 24px;

    background: #ffffff;

    border: 1px solid #e0e6e2;
    border-radius: 50%;

    box-shadow:
        0 8px 24px rgba(30, 45, 38, 0.06);

    font-size: 30px;
}

.archive-hero h1 {
    margin: 0 0 18px;

    color: var(--color-navy);

    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;

    letter-spacing: -0.05em;
    line-height: 1.2;
}

.archive-hero p {
    max-width: 600px;

    margin: 0 auto;

    color: var(--color-ink-soft);

    font-size: 14px;
    line-height: 2;
}


/* ------------------------------------------------------------
   Archive
   ------------------------------------------------------------ */

.archive-section {
    background: #ffffff;
}

.archive-heading {
    margin-bottom: 42px;
}

.archive-heading h2 {
    margin: 0;

    color: var(--color-navy);

    font-size: clamp(27px, 3vw, 38px);
    font-weight: 800;

    line-height: 1.4;
}

.archive-list {
    display: grid;

    gap: 12px;
}


/* ------------------------------------------------------------
   Empty archive
   ------------------------------------------------------------ */

.archive-empty {
    padding: 70px 30px;

    background: #f7f9f8;

    border: 1px solid #e2e8e4;
    border-radius: 15px;

    text-align: center;
}

.archive-empty-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 22px;

    background: #eef3f0;

    border-radius: 50%;

    font-size: 24px;
}

.archive-empty h2 {
    margin: 0 0 12px;

    color: #29372f;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.5;
}

.archive-empty p {
    max-width: 460px;

    margin: 0 auto;

    color: #747e79;

    font-size: 13px;
    line-height: 1.9;
}


/* ------------------------------------------------------------
   Archive theme list
   ------------------------------------------------------------ */

.archive-item {
    display: grid;

    grid-template-columns:
        90px
        minmax(0, 1fr)
        30px;

    gap: 22px;

    align-items: center;

    min-width: 0;

    padding: 22px 24px;

    background: #f7f9f8;

    border: 1px solid #e1e7e4;
    border-radius: 11px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.archive-item:hover {
    transform: translateY(-2px);

    background: #ffffff;

    box-shadow:
        0 9px 24px rgba(30, 45, 38, 0.06);
}

.archive-date {
    color: #87938d;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.archive-item h3 {
    margin: 0 0 4px;

    color: #29372f;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.55;
}

.archive-item p {
    margin: 0;

    color: #78827d;

    font-size: 11px;

    line-height: 1.6;
}

.archive-arrow {
    color: var(--color-accent);

    font-size: 17px;
    font-weight: 800;

    text-align: right;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 70px 24px 30px;

    background: #142b31;

    color: #fff;
}

.footer-inner {
    width: min(100%, var(--content-width));

    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-bottom: 40px;
}

.footer-logo strong {
    font-size: 20px;
    font-weight: 900;

    letter-spacing: -0.04em;
}

.footer-logo span {
    color: #91a5a8;

    font-size: 9px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;

    gap: 20px 30px;

    margin-bottom: 45px;
    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav a {
    color: #c4d0d1;

    font-size: 11px;
    font-weight: 700;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-categories-title {
    margin-bottom: 15px;

    color: #80979b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.footer-category-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 60px;
}

.footer-category-list a {
    padding: 5px 10px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 3px;

    color: #aebfc1;

    font-size: 10px;
}

.footer-category-list a:hover {
    border-color: rgba(255, 255, 255, 0.3);

    color: #fff;
}

.copyright {
    margin: 0;

    color: #657d81;

    font-size: 9px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .section {
        padding: 85px 20px;
    }


    /* Header */

    .header-inner {
        min-height: 76px;

        gap: 25px;

        padding-right: 20px;
        padding-left: 20px;
    }

    .site-nav {
        gap: 20px;
    }


    /* Main hero */

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 430px;
    }

    .hero-content {
        padding: 65px 45px 70px;
    }

    .hero-content::before {
        top: 0;
        left: 45px;

        width: 60px;
        height: 4px;
    }


    /* Intro */

    .intro-main {
        gap: 45px;
    }


    /* Cards */

    .problem-grid,
    .goods-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: auto;
    }


    /* Minimum */

    .minimum-grid {
        grid-template-columns: 1fr;
    }

    .minimum-card {
        min-height: 220px;
    }


    /* Without */

    .without-grid {
        grid-template-columns: 1fr;
    }


    /* Themes */

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


    /* Article hero */

    .theme-hero {
        grid-template-columns: 1fr;

        margin-top: 24px;
    }

    .theme-hero-image {
        min-height: 360px;
    }

    .theme-hero-content {
        padding: 42px 36px 46px;
    }


    /* Article problems */

    .problem-large-grid {
        grid-template-columns: 1fr;
    }


    /* Recommendations */

    .recommendation-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .recommendation-image {
        max-width: 300px;

        margin: 0 auto;
    }


    /* Archive */

    .archive-hero {
        padding-top: 75px;
        padding-bottom: 70px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    .section {
        padding: 70px 16px;
    }


    /* --------------------------------------------------------
       Header
       -------------------------------------------------------- */

    .site-header {
        width: 100%;
        max-width: 100%;
    }

    .header-inner {
        width: 100%;
        max-width: 100%;
        min-height: 70px;
        min-width: 0;

        padding: 0 16px;

        gap: 12px;

        overflow: hidden;
    }

    .site-logo {
        min-width: 0;

        flex: 1 1 auto;

        overflow: hidden;
    }

    .logo-main {
        min-width: 0;

        font-size: 18px;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-sub {
        display: none;
    }

    .site-nav {
        min-width: 0;

        flex: 0 1 auto;

        gap: 14px;

        overflow: hidden;
    }

    .site-nav a {
        display: block;

        min-width: 0;

        font-size: 10px;

        white-space: nowrap;
    }

    .site-nav a:nth-child(3) {
        display: none;
    }


    /* --------------------------------------------------------
       Main hero
       -------------------------------------------------------- */

    .hero {
        width: 100%;
        max-width: 100%;

        margin: 0;

        overflow: hidden;
    }

    .hero-image {
        width: 100%;
        min-height: 320px;

        max-width: 100%;
    }

    .hero-image-credit {
        right: 10px;
        bottom: 10px;

        font-size: 7px;
    }

    .hero-content {
        width: 100%;

        padding: 55px 25px 60px;
    }

    .hero-content::before {
        left: 25px;
    }

    .eyebrow {
        margin-bottom: 25px;
    }

    .hero-content h1 {
        max-width: 100%;

        font-size: 39px;

        overflow-wrap: anywhere;
    }

    .hero-theme {
        max-width: 100%;

        font-size: 15px;

        overflow-wrap: anywhere;
    }

    .hero-lead {
        max-width: 100%;

        font-size: 12px;

        overflow-wrap: anywhere;
    }

    .button {
        width: 100%;
    }


    /* --------------------------------------------------------
       Section heading
       -------------------------------------------------------- */

    .section-heading {
        display: block;

        margin-bottom: 35px;
    }

    .section-heading h2,
    .intro-heading h2,
    .about-section h2 {
        font-size: 28px;
    }

    .section-heading-text {
        margin-top: 18px;

        font-size: 12px;
    }


    /* --------------------------------------------------------
       Intro
       -------------------------------------------------------- */

    .intro-main {
        display: block;

        margin-bottom: 45px;
    }

    .intro-heading {
        margin-bottom: 25px;
    }

    .intro-copy {
        font-size: 13px;
    }


    /* --------------------------------------------------------
       Problem
       -------------------------------------------------------- */

    .problem-grid {
        gap: 10px;
    }

    .problem-card {
        padding: 24px;
    }

    .problem-top {
        margin-bottom: 25px;
    }


    /* --------------------------------------------------------
       Goods
       -------------------------------------------------------- */

    .goods-card {
        border-radius: 15px;
    }

    .goods-card-image {
        aspect-ratio: 4 / 3;
    }

    .goods-card-image img {
        padding: 18px;
    }

    .goods-card-content {
        padding: 24px;
    }

    .goods-item-title {
        font-size: 19px;
    }

    .goods-theme {
        margin-bottom: 23px;

        padding: 15px;

        font-size: 11px;
    }

    .goods-title {
        font-size: 12px;
    }


    /* --------------------------------------------------------
       Minimum
       -------------------------------------------------------- */

    .minimum-grid {
        margin-top: 40px;
    }

    .minimum-card {
        min-height: 210px;

        padding: 28px;
    }

    .minimum-card .minimum-icon {
        margin-bottom: 25px;
    }

    .minimum-message {
        padding: 20px;
    }

    .minimum-item {
        align-items: flex-start;

        padding: 17px;
    }

    .minimum-item .minimum-icon {
        flex: 0 0 42px;

        width: 42px;
        height: 42px;

        margin-right: 12px;

        font-size: 19px;
    }

    .minimum-item strong {
        font-size: 14px;
    }

    .minimum-item div span {
        font-size: 12px;

        line-height: 1.7;
    }


    /* --------------------------------------------------------
       Without
       -------------------------------------------------------- */

    .without-grid {
        gap: 13px;

        margin-top: 30px;
    }

    .without-card {
        padding: 23px 20px;

        border-radius: 10px;
    }

    .without-card h3 {
        font-size: 16px;
    }

    .without-alternative h3 {
        font-size: 15px;
    }

    .without-alternative p {
        font-size: 12px;

        line-height: 1.9;
    }

    .without-message {
        padding: 22px 18px;
    }

    .without-message strong {
        font-size: 14px;
    }

    .without-message p {
        font-size: 12px;
    }


    /* --------------------------------------------------------
       Themes
       -------------------------------------------------------- */

    .theme-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .theme-card {
        min-height: 90px;
    }


    /* --------------------------------------------------------
       About
       -------------------------------------------------------- */

    .about-section h2 {
        margin-bottom: 30px;
    }

    .section-text {
        font-size: 13px;
    }


    /* --------------------------------------------------------
       Theme article hero
       -------------------------------------------------------- */

    .theme-hero {
        width: calc(100% - 24px);

        margin-top: 16px;

        border-radius: 13px;
    }

    .theme-hero-image {
        min-height: 245px;
    }

    .theme-photo-credit {
        left: 10px;
        right: 10px;
        bottom: 10px;

        max-width: calc(100% - 20px);

        font-size: 9px;

        overflow: hidden;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme-hero-content {
        padding: 30px 24px 34px;
    }

    .theme-hero-content .eyebrow {
        margin-bottom: 13px;

        font-size: 9px;
    }

    .theme-hero-content h1 {
        font-size: 32px;

        line-height: 1.35;
    }

    .theme-hero-lead {
        margin-top: 19px;

        font-size: 14px;

        line-height: 1.9;
    }


    /* --------------------------------------------------------
       Theme article intro
       -------------------------------------------------------- */

    .theme-article {
        padding-top: 66px;
        padding-bottom: 66px;
    }

    .theme-article h2 {
        margin-bottom: 24px;

        font-size: 27px;
    }

    .theme-article .section-text.large {
        font-size: 16px;

        line-height: 1.9;
    }

    .theme-article .section-text {
        font-size: 14px;

        line-height: 2;
    }


    /* --------------------------------------------------------
       Article problems
       -------------------------------------------------------- */

    .problem-large-grid {
        gap: 14px;

        margin-top: 30px;
    }

    .problem-large-card {
        padding: 25px 23px 27px;

        border-radius: 11px;
    }

    .problem-large-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 18px;

        font-size: 22px;
    }

    .problem-large-card h3 {
        font-size: 18px;
    }

    .problem-large-card p {
        font-size: 13px;

        line-height: 1.9;
    }


    /* --------------------------------------------------------
       Recommendation
       -------------------------------------------------------- */

    .answer-section > .section-inner > .section-heading {
        margin-bottom: 32px;
    }

    .recommendation {
        grid-template-columns: 1fr;

        margin-top: 15px;

        border-radius: 11px;
    }

    .recommendation-number {
        display: block;

        padding: 13px 20px;

        font-size: 10px;
    }

    .recommendation-content {
        padding: 23px 20px 25px;
    }

    .recommendation-heading {
        margin-bottom: 22px;

        padding-bottom: 18px;
    }

    .recommendation-heading h3 {
        font-size: 23px;
    }

    .recommendation-grid {
        gap: 23px;
    }

    .recommendation-image {
        width: 100%;
        max-width: 220px;

        margin: 0 auto;

        padding: 12px;
    }

    .recommendation-text .recommendation-lead {
        font-size: 16px;

        line-height: 1.7;
    }

    .recommendation-text p {
        font-size: 13px;

        line-height: 1.9;
    }

    .product-points {
        gap: 6px;

        margin-top: 21px;
        margin-bottom: 22px;
    }

    .product-points span {
        font-size: 10px;
    }

    .product-button {
        width: 100%;

        min-height: 48px;
    }


    /* --------------------------------------------------------
       Archive hero
       -------------------------------------------------------- */

    .archive-hero {
        padding: 60px 16px 55px;
    }

    .archive-category-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 20px;

        font-size: 26px;
    }

    .archive-hero h1 {
        margin-bottom: 14px;

        font-size: 38px;
    }

    .archive-hero p {
        font-size: 12px;

        line-height: 1.9;
    }


    /* --------------------------------------------------------
       Archive
       -------------------------------------------------------- */

    .archive-heading {
        margin-bottom: 30px;
    }

    .archive-heading h2 {
        font-size: 27px;
    }

    .archive-empty {
        padding: 50px 20px;
    }

    .archive-empty-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 18px;

        font-size: 22px;
    }

    .archive-empty h2 {
        font-size: 18px;
    }

    .archive-empty p {
        font-size: 12px;
    }

    .archive-item {
        grid-template-columns:
            65px
            minmax(0, 1fr)
            24px;

        gap: 13px;

        padding: 18px 16px;
    }

    .archive-date {
        font-size: 9px;
    }

    .archive-item h3 {
        font-size: 14px;
    }

    .archive-item p {
        font-size: 10px;
    }


    /* --------------------------------------------------------
       Related
       -------------------------------------------------------- */

    .related-grid {
        margin-top: 30px;
    }

    .related-card {
        grid-template-columns:
            42px
            minmax(0, 1fr)
            24px;

        gap: 12px;

        padding: 16px;
    }

    .related-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .related-card h3 {
        font-size: 14px;
    }

    .related-card p {
        font-size: 11px;
    }

    .related-arrow {
        font-size: 16px;
    }


    /* --------------------------------------------------------
       Footer
       -------------------------------------------------------- */

    .site-footer {
        padding: 55px 16px 25px;
    }

    .footer-nav {
        gap: 15px 20px;
    }
}


/* ============================================================
   VERY SMALL DEVICES
   ============================================================ */

@media (max-width: 380px) {

    .header-inner {
        gap: 8px;

        padding-right: 12px;
        padding-left: 12px;
    }

    .logo-main {
        font-size: 17px;
    }

    .site-nav {
        gap: 10px;
    }

    .site-nav a {
        font-size: 9px;
    }

    .theme-hero {
        width: calc(100% - 16px);
    }

    .theme-hero-content {
        padding: 27px 19px 30px;
    }

    .theme-hero-content h1 {
        font-size: 28px;
    }

    .theme-hero-lead {
        font-size: 13px;
    }

    .recommendation-content {
        padding-right: 17px;
        padding-left: 17px;
    }

    .recommendation-heading h3 {
        font-size: 21px;
    }

    .product-points span {
        max-width: 100%;

        white-space: normal;
    }

    .archive-hero h1 {
        font-size: 34px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}







/* ============================================================
   CATEGORY / ARCHIVE
   ============================================================ */


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

.archive-hero {
    padding: 72px 0 68px;
    background: #f7f8f6;
    border-bottom: 1px solid #e5e7e4;
}

.archive-hero .section-inner {
    text-align: center;
}


/* CATEGORY ICON */

.archive-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin: 20px auto 18px;

    border-radius: 50%;

    background: #ffffff;

    font-size: 34px;

    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06);
}


/* CATEGORY TITLE */

.archive-hero h1 {
    margin: 0;

    font-size: 2.2rem;
    font-weight: 700;

    letter-spacing: 0.04em;

    color: #202522;
}


.archive-hero > .section-inner > p:last-child {
    margin: 18px auto 0;

    max-width: 620px;

    font-size: 0.95rem;
    line-height: 1.9;

    color: #626863;
}


/* ============================================================
   ARCHIVE SECTION
   ============================================================ */

.archive-section {
    background: #ffffff;
}


.archive-section .section-inner {
    max-width: 900px;
}


/* ============================================================
   ARCHIVE HEADING
   ============================================================ */

.archive-heading {
    margin-bottom: 34px;
}


.archive-heading h2 {
    margin: 8px 0 0;

    font-size: 1.65rem;
    font-weight: 700;

    letter-spacing: 0.03em;

    color: #202522;
}


.archive-count {
    margin: 8px 0 0;

    font-size: 0.85rem;

    color: #7a807b;
}


/* ============================================================
   ARCHIVE LIST
   ============================================================ */

.archive-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* ============================================================
   ARCHIVE CARD
   ============================================================ */

.archive-card {
    display: grid;

    grid-template-columns: 130px 1fr;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e6e2;
    border-radius: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.archive-card:hover {
    border-color: #cbd1cc;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06);

    transform: translateY(-2px);
}


/* ============================================================
   ARCHIVE DATE
   ============================================================ */

.archive-date {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 28px 18px;

    background: #f7f8f6;

    border-right: 1px solid #e5e8e5;

    font-size: 0.8rem;
    font-weight: 600;

    line-height: 1.5;

    color: #69706b;

    white-space: nowrap;
}


/* ============================================================
   ARCHIVE BODY
   ============================================================ */

.archive-body {
    padding: 28px 30px 30px;
}


.archive-label {
    display: inline-block;

    margin: 0 0 10px;

    padding: 4px 10px;

    border-radius: 999px;

    background: #f0f3f0;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.04em;

    color: #59605b;
}


.archive-body h2 {
    margin: 0;

    font-size: 1.18rem;
    font-weight: 700;

    line-height: 1.65;

    color: #202522;
}


.archive-description {
    margin: 14px 0 0;

    font-size: 0.9rem;

    line-height: 1.85;

    color: #686f6a;
}


/* ============================================================
   ARCHIVE LINK
   ============================================================ */

.archive-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    font-size: 0.88rem;
    font-weight: 600;

    color: #3f5f4a;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.archive-link span {
    font-size: 1rem;

    transition:
        transform 0.2s ease;
}


.archive-link:hover {
    color: #263d30;
}


.archive-link:hover span {
    transform: translateX(4px);
}


/* ============================================================
   OTHER THEMES
   ============================================================ */

.themes-section {
    background: #f7f8f6;

    border-top: 1px solid #e5e7e4;
}


.themes-section .section-inner {
    max-width: 1100px;
}


/* ============================================================
   THEME GRID
   ============================================================ */

.theme-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    margin-top: 36px;
}


.theme-card {
    display: grid;

    grid-template-columns: 42px 1fr auto;

    align-items: center;

    gap: 12px;

    min-height: 94px;

    padding: 18px 20px;

    background: #ffffff;

    border: 1px solid #e2e6e2;
    border-radius: 12px;

    color: #202522;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.theme-card:hover {
    border-color: #cbd1cc;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.05);

    transform: translateY(-2px);
}


.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: #f3f5f2;

    font-size: 22px;
}


.theme-card h3 {
    margin: 0;

    font-size: 0.98rem;
    font-weight: 700;

    line-height: 1.4;
}


.theme-card p {
    margin: 4px 0 0;

    font-size: 0.78rem;

    line-height: 1.5;

    color: #777d78;
}


.theme-arrow {
    font-size: 1rem;

    color: #788079;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}


.theme-card:hover .theme-arrow {
    color: #3f5f4a;

    transform: translateX(4px);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 800px) {

    .archive-hero {
        padding: 54px 0 50px;
    }


    .archive-hero h1 {
        font-size: 1.9rem;
    }


    .archive-category-icon {
        width: 64px;
        height: 64px;

        font-size: 30px;
    }


    .archive-card {
        grid-template-columns: 1fr;
    }


    .archive-date {
        justify-content: flex-start;

        padding: 14px 20px;

        border-right: none;
        border-bottom: 1px solid #e5e8e5;
    }


    .archive-body {
        padding: 22px 20px 24px;
    }


    .archive-body h2 {
        font-size: 1.08rem;

        line-height: 1.65;
    }


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

}


@media (max-width: 560px) {

    .archive-hero {
        padding: 42px 0 40px;
    }


    .archive-hero h1 {
        font-size: 1.7rem;
    }


    .archive-hero > .section-inner > p:last-child {
        padding: 0 10px;

        font-size: 0.88rem;

        line-height: 1.8;
    }


    .archive-heading h2 {
        font-size: 1.4rem;
    }


    .archive-body h2 {
        font-size: 1rem;
    }


    .archive-description {
        font-size: 0.84rem;

        line-height: 1.8;
    }


    .theme-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .theme-card {
        min-height: 82px;
    }

}






/* ============================================================
PRIVACY / DISCLAIMER
============================================================ */

/* ============================================================
PRIVACY PAGE
============================================================ */

.privacy-page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;

    padding: 70px 24px 90px;

    background: var(--color-bg);
}

.privacy-inner {
width: min(100%, 820px);


margin: 0 auto;

padding: 0 0 20px;

background: var(--color-white);

border: 1px solid var(--color-line);
border-radius: var(--radius-medium);

box-shadow: var(--shadow-soft);

overflow: hidden;


}

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

.privacy-header {
padding: 52px 60px 45px;


background: var(--color-navy);

border-bottom: 4px solid var(--color-accent);


}

.privacy-header h1 {
margin: 0;


color: #ffffff;

font-size: clamp(28px, 4vw, 38px);
font-weight: 800;

letter-spacing: -0.035em;
line-height: 1.4;


}

/* ============================================================
PRIVACY SECTION
============================================================ */

.privacy-section {
margin: 0 60px;


padding: 42px 0;

border-bottom: 1px solid var(--color-line);


}

.privacy-section:last-of-type {
border-bottom: none;
}

/* ============================================================
PRIVACY HEADING
============================================================ */

.privacy-section h2 {
position: relative;


margin: 0 0 25px;

padding-left: 16px;

color: var(--color-navy);

font-size: 20px;
font-weight: 800;

letter-spacing: -0.02em;
line-height: 1.5;


}

.privacy-section h2::before {
position: absolute;


top: 0.25em;
left: 0;

width: 4px;
height: 1.15em;

background: var(--color-accent);

border-radius: 2px;

content: "";


}

/* ============================================================
PRIVACY TEXT
============================================================ */

.privacy-section p {
margin: 0 0 18px;


color: var(--color-ink-soft);

font-size: 14px;

line-height: 2;


}

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

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

.privacy-services {
display: flex;
flex-wrap: wrap;


gap: 8px;

margin: 22px 0 0;
padding: 0;

list-style: none;


}

.privacy-services li {
padding: 6px 11px;


background: var(--color-bg-soft);

border: 1px solid var(--color-line);
border-radius: 4px;

color: var(--color-ink-soft);

font-size: 11px;
font-weight: 700;

line-height: 1.4;


}

/* ============================================================
PRIVACY CONTACT
============================================================ */

.privacy-contact {
margin-top: 22px;


padding: 20px 22px;

background: var(--color-bg);

border-left: 3px solid var(--color-water);

border-radius: 0 8px 8px 0;


}

.privacy-contact p {
margin: 0;


color: var(--color-ink);

font-size: 13px;

line-height: 1.9;


}

.privacy-contact strong {
color: var(--color-navy);


font-weight: 800;


}

/* ============================================================
PRIVACY DATE
============================================================ */

.privacy-date {
margin: 0 60px;


padding: 35px 0 20px;

color: var(--color-ink-light);

font-size: 11px;

line-height: 1.9;


}

.privacy-date p {
margin: 0;
}

/* ============================================================
PRIVACY LINKS
============================================================ */

.privacy-section a {
color: var(--color-water);


text-decoration: underline;
text-decoration-color: rgba(45, 120, 131, 0.35);
text-underline-offset: 3px;


}

.privacy-section a:hover {
color: var(--color-accent-dark);
}

/* ============================================================
PRIVACY TABLET
============================================================ */

@media (max-width: 800px) {


.privacy-page {
    padding: 50px 20px 70px;
}


.privacy-inner {
    width: min(100%, 760px);
}


.privacy-header {
    padding: 42px 40px 38px;
}


.privacy-section {
    margin-right: 40px;
    margin-left: 40px;

    padding: 36px 0;
}


.privacy-date {
    margin-right: 40px;
    margin-left: 40px;
}


}

/* ============================================================
PRIVACY MOBILE
============================================================ */

@media (max-width: 640px) {


.privacy-page {
    padding: 20px 12px 45px;
}


.privacy-inner {
    width: 100%;

    border-radius: 11px;
}


.privacy-header {
    padding: 30px 23px 28px;

    border-bottom-width: 3px;
}


.privacy-header h1 {
    font-size: 25px;

    line-height: 1.45;
}


.privacy-section {
    margin-right: 20px;
    margin-left: 20px;

    padding: 30px 0;
}


.privacy-section h2 {
    margin-bottom: 20px;

    padding-left: 13px;

    font-size: 18px;

    line-height: 1.5;
}


.privacy-section h2::before {
    width: 3px;
}


.privacy-section p {
    margin-bottom: 16px;

    font-size: 13px;

    line-height: 2;
}


.privacy-services {
    gap: 6px;

    margin-top: 18px;
}


.privacy-services li {
    padding: 5px 9px;

    font-size: 10px;
}


.privacy-contact {
    margin-top: 18px;

    padding: 17px 18px;
}


.privacy-contact p {
    font-size: 12px;

    overflow-wrap: anywhere;
}


.privacy-date {
    margin-right: 20px;
    margin-left: 20px;

    padding-top: 28px;
    padding-bottom: 10px;

    font-size: 10px;
}


}

/* ============================================================
PRIVACY VERY SMALL DEVICES
============================================================ */

@media (max-width: 380px) {


.privacy-page {
    padding-right: 8px;
    padding-left: 8px;
}


.privacy-header {
    padding: 27px 19px 25px;
}


.privacy-header h1 {
    font-size: 23px;
}


.privacy-section {
    margin-right: 17px;
    margin-left: 17px;

    padding: 27px 0;
}


.privacy-section h2 {
    font-size: 17px;
}


.privacy-section p {
    font-size: 12px;

    line-height: 1.95;
}


.privacy-date {
    margin-right: 17px;
    margin-left: 17px;
}


}

