:root {
    --color-ink: #151515;
    --color-muted: #667085;
    --color-dark: #17231f;
    --color-green: #223d33;
    --color-gold: #b88a3b;
    --color-cream: #f7f1e7;
    --color-border: #e5ded0;
    --container: min(1120px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(229, 222, 208, 0.88);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: var(--container);
    min-height: 72px;
    margin: 0 auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
}

.site-logo__mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--color-dark);
    color: #f6d889;
}

.site-logo__text {
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a,
.button {
    text-decoration: none;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    padding: 0 16px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.2;
}

.button--gold {
    background: var(--color-gold);
    color: #111;
}

.button--line {
    background: #06c755;
    color: #fff;
}

.button--light {
    background: #fff;
    color: var(--color-dark);
}

.button--ghost {
    border-color: var(--color-border);
    background: #fff;
    color: var(--color-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 30%, rgba(184, 138, 59, 0.34), transparent 34%),
        radial-gradient(circle at 94% 84%, rgba(112, 58, 32, 0.28), transparent 28%),
        linear-gradient(135deg, #101816 0%, #1f3a31 48%, #211814 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 24, 22, 0.88) 0%, rgba(16, 24, 22, 0.52) 48%, rgba(16, 24, 22, 0.2) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 42px;
    align-items: center;
    min-height: 680px;
    padding: 78px 0 96px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-layout h2,
.two-column h2,
.shop-info h2 {
    margin: 0;
    line-height: 1.18;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 72px);
}

.hero__lead {
    max-width: 640px;
    margin: 24px 0 0;
    color: #e7dfd1;
    font-size: 18px;
}

.hero__actions,
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__actions {
    margin-top: 32px;
}

.hero__badges {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero__badges li {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
    color: #f4ead3;
    font-size: 13px;
    font-weight: 800;
}

.hero__visual {
    position: relative;
    min-height: 480px;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 28px 18px -18px 58px;
    border-radius: 8px;
    background: rgba(184, 138, 59, 0.18);
    filter: blur(30px);
    opacity: 0.8;
}

.hero__image {
    position: relative;
    display: block;
    width: 100%;
    height: min(520px, 58vw);
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(246, 216, 137, 0.24);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.section {
    padding: 86px 0;
}

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

.section--dark {
    background: var(--color-dark);
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
}

.section-heading h2,
.split-layout h2,
.two-column h2,
.shop-info h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.section-heading p:not(.eyebrow),
.split-layout p,
.shop-info p {
    color: var(--color-muted);
}

.section--dark .section-heading p:not(.eyebrow) {
    color: #d6cbb8;
}

.text-link {
    color: #7a592a;
    font-weight: 900;
    text-decoration: none;
}

.text-link::after {
    content: " ->";
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card,
.two-column article,
.contact-panel,
.shop-info dl {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: var(--color-muted);
}

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

.news-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
}

.news-card time {
    display: block;
    margin-bottom: 10px;
    color: #71542d;
    font-size: 13px;
    font-weight: 900;
}

.news-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
}

.news-card h3 a {
    text-decoration: none;
}

.news-card p {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.split-layout,
.two-column,
.shop-info {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 40px;
    align-items: start;
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 16px;
    font-weight: 800;
}

.flow-list span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--color-dark);
    color: #f6d889;
    flex: 0 0 auto;
}

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

.check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    transform: rotate(-45deg);
}

.contact-panel {
    margin-top: 28px;
    color: var(--color-ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.lkm-cta a.is-selected,
.hero__actions a.is-selected,
.mobile-cta a.is-selected {
    outline: 3px solid rgba(246, 216, 137, 0.42);
    outline-offset: 2px;
}

.contact-mode-panel h2 {
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
}

.contact-mode-panel[hidden] {
    display: none;
}

.contact-panel .lkm-assessment-form {
    margin-top: 0;
}

.contact-panel .lkm-form-grid label {
    color: #1f2d28;
    font-weight: 900;
}

.contact-panel .lkm-form-grid span {
    color: #1f2d28;
}

.contact-panel .lkm-form-grid b {
    color: #b42318;
}

.contact-panel .lkm-form-grid input,
.contact-panel .lkm-form-grid select,
.contact-panel .lkm-form-grid textarea {
    border-color: #cfd8d3;
    background: #fff;
    color: #151515;
    box-shadow: inset 0 1px 0 rgba(16, 24, 22, 0.04);
}

.contact-panel .lkm-form-grid input:focus,
.contact-panel .lkm-form-grid select:focus,
.contact-panel .lkm-form-grid textarea:focus {
    border-color: var(--color-gold);
    outline: 3px solid rgba(184, 138, 59, 0.18);
}

.contact-panel .lkm-form-submit {
    background: var(--color-gold);
    color: #111;
}

.line-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.phone-contact p,
.line-contact p {
    max-width: 640px;
    margin-top: 0;
    color: var(--color-muted);
}

.line-flow {
    display: grid;
    gap: 10px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.line-flow li {
    position: relative;
    padding-left: 28px;
    color: #344054;
    font-weight: 800;
}

.line-flow li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 14px;
    height: 8px;
    border-left: 3px solid #06c755;
    border-bottom: 3px solid #06c755;
    transform: rotate(-45deg);
}

.line-qr {
    display: grid;
    gap: 10px;
    place-items: center;
    min-height: 300px;
    border: 1px dashed #b8d8c0;
    border-radius: 8px;
    background: #f4fbf6;
    padding: 20px;
    text-align: center;
}

.line-qr img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.line-qr__placeholder {
    width: 180px;
    height: 180px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
        repeating-linear-gradient(0deg, #111 0 7px, #fff 7px 14px, #111 14px 21px, #fff 21px 35px),
        repeating-linear-gradient(90deg, #111 0 9px, #fff 9px 16px, #111 16px 24px, #fff 24px 36px);
    box-shadow: inset 0 0 0 12px #fff, 0 0 0 1px #d6eadb;
    filter: blur(2px);
    opacity: 0.72;
}

.line-qr__placeholder--muted {
    filter: blur(3px) grayscale(1);
    opacity: 0.48;
}

.line-qr strong {
    color: var(--color-dark);
    font-size: 20px;
}

.line-qr span {
    color: var(--color-muted);
    font-size: 13px;
}

.phone-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
}

.phone-contact__number {
    display: grid;
    gap: 6px;
    border: 1px solid #ead8b6;
    border-radius: 8px;
    background: #fbf6ec;
    padding: 24px;
    text-align: center;
    text-decoration: none;
}

.phone-contact__number span,
.phone-contact__number small {
    color: var(--color-muted);
    font-weight: 800;
}

.phone-contact__number strong {
    color: var(--color-ink);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

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

.mock-form input,
.mock-form textarea {
    min-height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 10px 12px;
}

.mock-form textarea {
    grid-column: 1 / -1;
    min-height: 110px;
}

.mock-form button {
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    background: var(--color-gold);
    font-weight: 800;
}

.shop-info dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.content-shell {
    max-width: 860px;
}

.content-page {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: clamp(24px, 5vw, 56px);
}

.content-page h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.18;
}

.content-date {
    display: block;
    color: #71542d;
    font-weight: 900;
    margin-bottom: 22px;
}

.content-eyecatch {
    margin: 24px 0;
}

.content-eyecatch img {
    width: 100%;
    border-radius: 8px;
}

.content-body {
    color: #344054;
}

.content-body h2,
.content-body h3 {
    color: var(--color-ink);
    line-height: 1.3;
}

.pagination {
    margin-top: 28px;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    padding: 0 10px;
    text-decoration: none;
    font-weight: 800;
}

.shop-info dl div,
.site-footer__info div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    border-bottom: 1px solid #eee6d8;
    padding: 12px 0;
}

.shop-info dt,
.site-footer__info dt {
    color: #71542d;
    font-weight: 900;
}

.shop-info dd,
.site-footer__info dd {
    margin: 0;
}

.site-footer {
    padding: 42px 0 86px;
    background: #101816;
    color: #d8d0c1;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
    width: var(--container);
    margin: 0 auto;
}

.site-footer__brand {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.site-footer__info {
    margin: 0;
}

.mobile-cta {
    display: none;
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }

    .hero__inner,
    .split-layout,
    .shop-info,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        min-height: auto;
        padding: 62px 0 78px;
    }

    .hero__visual {
        min-height: auto;
    }

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

@media (max-width: 720px) {
    :root {
        --container: min(100vw - 28px, 1120px);
    }

    body {
        padding-bottom: 64px;
    }

    .site-header__inner {
        min-height: 62px;
    }

    .site-header__actions {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero__visual {
        margin-top: 4px;
    }

    .hero__visual::before {
        inset: 28px 10px -10px;
    }

    .hero__image {
        height: 320px;
        min-height: 0;
        object-position: center bottom;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading--split,
    .two-column,
    .feature-grid,
    .news-grid,
    .flow-list,
    .line-contact,
    .phone-contact,
    .mock-form {
        grid-template-columns: 1fr;
    }

    .line-qr {
        min-height: 240px;
    }

    .section-heading--split {
        display: grid;
    }

    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        background: #101816;
    }

    .mobile-cta a {
        display: grid;
        place-items: center;
        min-height: 58px;
        color: #fff;
        text-decoration: none;
        font-weight: 900;
    }

    .mobile-cta a:nth-child(2) {
        background: #06c755;
    }

    .mobile-cta a:nth-child(3) {
        background: var(--color-gold);
        color: #111;
    }
}
