:root {
    --color-bg: #faf7f2;
    --color-bg-alt: #f3eee7;
    --color-main: #8a9e8a;
    --color-main-dark: #5c7a5c;
    --color-accent: #c4855a;
    --color-accent-light: #e8b99a;
    --color-text: #2c2c2c;
    --color-muted: #6b6560;
    --color-line: #e8e4de;
    --color-white: #fffdf9;
    --color-gold: #c9a96e;

    --shadow-sm: 0 8px 24px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 18px 40px rgba(44, 44, 44, 0.08);
    --shadow-lg: 0 24px 56px rgba(44, 44, 44, 0.12);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;

    --container: 1120px;
    --header-h: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.section--alt {
    background:
        linear-gradient(180deg, #fffdf9 0%, var(--color-bg-alt) 100%);
}

.section-head {
    margin-bottom: 52px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-label::before,
.section-label::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(196, 133, 90, 0.45);
}

.section-title {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.section-text {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.95;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--color-main-dark);
    color: var(--color-white);
    box-shadow: 0 6px 14px rgba(123, 154, 123, 0.25);
}

.btn--primary:hover {
    background: var(--color-main);
    box-shadow: 0 14px 32px rgba(92, 122, 92, 0.28);
    transform: translateY(-1px);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.84);
    color: var(--color-text);
    border: 1px solid var(--color-line);
    opacity: 1;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================================
   Header
========================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 228, 222, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 100%;
}

.brand {
    position: relative;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--color-main-dark);
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-main), #b5c8b5);
    box-shadow: var(--shadow-sm);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.header-nav a {
    white-space: nowrap;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
}

.header-nav__cta {
    display: none;
}

.header-cta {
    flex-shrink: 0;
    min-height: 48px;
    padding: 0 22px;
    font-size: 13px;
}

.nav-toggle {
    position: relative;
    z-index: 120;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================
   Hero
========================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 92px;
    background:
        radial-gradient(circle at top right, rgba(196, 133, 90, 0.10), transparent 26%),
        radial-gradient(circle at left top, rgba(138, 158, 138, 0.10), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, #f4efe7 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.55;
    pointer-events: none;
}

.hero::before {
    top: -40px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(138, 158, 138, 0.10);
}

.hero::after {
    right: 2%;
    bottom: 8%;
    width: 180px;
    height: 180px;
    background: rgba(196, 133, 90, 0.09);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 62px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(138, 158, 138, 0.10);
    color: var(--color-main-dark);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.42;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-text);
}

.hero-title strong {
    display: inline;
    color: var(--color-main-dark);
    font-weight: 600;
}

.hero-text {
    max-width: 36em;
    margin: 28px 0 36px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.03em;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 10px 16px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.86);
    box-shadow: 0 4px 14px rgba(44, 44, 44, 0.03);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hero .btn-row {
    gap: 16px;
}

.hero .btn {
    min-height: 54px;
    padding: 0 24px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(rgba(138, 158, 138, 0.08), rgba(138, 158, 138, 0.02));
    box-shadow: 0 24px 56px rgba(44, 44, 44, 0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: brightness(0.98) contrast(1.04);
}

.hero-card {
    position: absolute;
    left: -20px;
    bottom: 20px;
    width: min(320px, 88%);
    padding: 22px 22px 20px;
    border: 1px solid rgba(232, 228, 222, 0.95);
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(44, 44, 44, 0.08);
}

.hero-card-label {
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-card-title {
    margin: 0 0 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
}

.hero-card-text {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.9;
}

/* =========================================
   Card / Grid
========================================= */
.problem-list,
.service-grid,
.reason-grid,
.voice-grid,
.flow-grid,
.info-grid,
.cta-box,
.stats-grid {
    display: grid;
    gap: 24px;
}

.problem-list {
    grid-template-columns: repeat(3, 1fr);
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.reason-grid {
    grid-template-columns: repeat(4, 1fr);
}

.voice-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
}

.flow-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
}

.info-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.card {
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(232, 228, 222, 0.96);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.05);
}

.problem-card,
.service-card,
.reason-card,
.voice-card,
.info-card {
    padding: 30px 28px;
}

.icon-circle {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(138, 158, 138, 0.12);
    color: var(--color-main-dark);
    font-size: 24px;
    font-weight: 700;
}

.card-title {
    margin: 0 0 10px;
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.card-text {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.95;
}

.solution-lead {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
    color: var(--color-main-dark);
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.04em;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-main-dark), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(138, 158, 138, 0.08);
}

.service-icon img {
    width: 28px;
    height: 28px;
}

.service-num {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reason-card {
    text-align: center;
}

.reason-card .icon-circle {
    margin-inline: auto;
}

.stat-card {
    padding: 30px 28px;
    text-align: center;
    border: 1px solid rgba(232, 228, 222, 0.96);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fffdf9 0%, #f7f1e9 100%);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.05);
}

.stat-num {
    display: block;
    color: var(--color-main-dark);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.2;
    font-weight: 600;
}

.stat-label {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.voice-meta {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.flow-card {
    padding: 30px 22px;
    text-align: center;
    border: 1px solid rgba(232, 228, 222, 0.96);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.05);
}

.flow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-main-dark), var(--color-main));
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.flow-title {
    margin: 0 0 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
}

.flow-text {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.9;
}

.info-card {
    height: 100%;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 15px;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--color-text);
    font-weight: 600;
}

.map {
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(232, 228, 222, 0.96);
    border-radius: var(--radius-md);
    background: #f5f1ea;
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.05);
}

.map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
}

/* =========================================
   CTA / FAQ / Footer
========================================= */
.cta {
    padding: 96px 0;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-main-dark) 0%, #4a6b4a 100%);
}

.cta-box {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 34px;
}

.cta-title {
    margin: 0 0 14px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cta-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.95;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.cta .btn--primary {
    background: var(--color-white);
    color: var(--color-main-dark);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.cta .btn--secondary {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
}

.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item+.faq-item {
    margin-top: 16px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(232, 228, 222, 0.96);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.05);
}

.faq-q {
    position: relative;
    padding: 22px 56px 22px 24px;
    list-style: none;
    cursor: pointer;
    font-family: "Noto Serif JP", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 24px;
    line-height: 1;
}

.faq-item[open] .faq-q::after {
    content: "−";
}

.faq-a {
    padding: 0 24px 22px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.95;
}

.footer {
    padding: 28px 0;
    border-top: 1px solid var(--color-line);
    background: #f8f4ee;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy,
.footer-links {
    color: var(--color-muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    display: none;
}

.floating-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 30px rgba(196, 133, 90, 0.30);
}

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

/* =========================================
   Page / Contact
========================================= */
.page-main {
    min-height: 60vh;
}

.page-hero {
    padding: 78px 0 30px;
    background:
        radial-gradient(circle at top right, rgba(196, 133, 90, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #f4efe7 100%);
}

.page-hero__head {
    text-align: center;
}

.page-hero__title {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid rgba(232, 228, 222, 0.96);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.05);
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: var(--color-text);
    font-family: "Noto Serif JP", serif;
    line-height: 1.5;
    font-weight: 600;
}

.page-content h2 {
    font-size: 28px;
}

.page-content h3 {
    font-size: 22px;
}

.page-content p {
    margin: 0 0 1.2em;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.95;
}

.page-content ul,
.page-content ol {
    margin: 0 0 1.2em 1.4em;
}

.page-content li {
    margin-bottom: 0.5em;
    line-height: 1.9;
}

.page-content a {
    color: var(--color-main-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

/* =========================================
   Contact Form 7
========================================= */
.cf7-form {
    display: grid;
    gap: 22px;
}

.cf7-field label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
}

.required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(196, 133, 90, 0.14);
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    background: #fff;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    appearance: none;
}

.cf7-form textarea {
    min-height: 180px;
    resize: vertical;
}

.cf7-form input::placeholder,
.cf7-form textarea::placeholder {
    color: #9c968f;
}

.cf7-form input:focus,
.cf7-form textarea:focus {
    outline: none;
    border-color: rgba(138, 158, 138, 0.6);
    box-shadow: 0 0 0 4px rgba(138, 158, 138, 0.12);
    background: #fff;
}

.cf7-consent {
    font-size: 14px;
    line-height: 1.8;
}

.cf7-consent .wpcf7-list-item {
    margin: 0;
}

.cf7-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.cf7-consent input[type="checkbox"] {
    margin-top: 0.3em;
}

.cf7-submit {
    margin-top: 8px;
}

.cf7-submit .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    background: var(--color-main-dark);
    color: var(--color-white);
    box-shadow: 0 10px 28px rgba(92, 122, 92, 0.22);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cf7-submit .wpcf7-submit:hover {
    background: var(--color-main);
    transform: translateY(-2px);
}

.cf7-submit .wpcf7-spinner {
    display: block;
    margin-top: 12px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.7;
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #c44b4b;
    font-size: 13px;
}

/* =========================================
   Tablet
========================================= */
@media (max-width: 1024px) {
    :root {
        --header-h: 68px;
    }

    .header-inner {
        gap: 16px;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .header-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        display: grid;
        gap: 0;
        padding: 14px 20px 24px;
        border-bottom: 1px solid var(--color-line);
        background: rgba(250, 247, 242, 0.98);
        box-shadow: 0 16px 30px rgba(44, 44, 44, 0.06);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .header-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-line);
        font-size: 15px;
    }

    .header-nav__cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 18px;
        padding: 14px 18px !important;
        border-bottom: 0 !important;
        border-radius: 999px;
        background: var(--color-main-dark);
        color: var(--color-white) !important;
        font-weight: 600;
    }

    .nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 76px 0 88px;
    }

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

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

    .hero-title {
        font-size: clamp(34px, 6vw, 52px);
    }

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

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-image {
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }

    .hero-card {
        left: 20px;
        bottom: 20px;
    }

    .cta-box,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .problem-list,
    .service-grid,
    .reason-grid,
    .stats-grid,
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-actions {
        justify-content: flex-start;
    }

    .page-content {
        padding: 32px;
    }
}

/* =========================================
   Mobile
========================================= */
@media (max-width: 767px) {
    :root {
        --header-h: 64px;
    }

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .section,
    .cta {
        padding: 76px 0;
    }

    .nav-toggle {
        display: inline-block;
    }

    .header-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        display: grid;
        gap: 0;
        padding: 12px 16px 22px;
        border-bottom: 1px solid var(--color-line);
        background: rgba(250, 247, 242, 0.98);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .header-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav a {
        font-size: 14px;
        padding: 16px 0;
        line-height: 1.6;
        border-bottom: 1px solid var(--color-line);
    }

    .header-nav__cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 24px;
        padding: 16px 18px !important;
        border-bottom: 0 !important;
        border-radius: 999px;
        background: var(--color-main-dark);
        color: var(--color-white) !important;
    }

    .hero {
        padding: 60px 0 76px;
    }

    .hero-grid,
    .problem-list,
    .service-grid,
    .reason-grid,
    .stats-grid,
    .voice-grid,
    .flow-grid,
    .info-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        margin-bottom: 18px;
        font-size: 10px;
        padding: 7px 14px;
        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.5;
    }

    .hero-text {
        margin: 20px 0 28px;
        font-size: 14px;
        line-height: 1.9;
    }

    .hero-points {
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-points li {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero .btn-row {
        gap: 12px;
    }

    .hero .btn {
        min-height: 50px;
        padding: 0 20px;
        font-size: 13px;
    }

    .hero-image {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }

    .hero-card {
        position: static;
        width: 100%;
        margin-top: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .hero-card-title {
        font-size: 12px;
        line-height: 1.8;
    }

    .hero-card-text {
        font-size: 13px;
    }

    .problem-card,
    .service-card,
    .reason-card,
    .voice-card,
    .info-card,
    .stat-card,
    .flow-card {
        padding: 24px 20px;
    }

    .service-card::before {
        display: none;
    }

    .info-list li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .page-hero {
        padding: 60px 0 22px;
    }

    .page-content {
        padding: 24px 20px;
    }

    .page-content h2 {
        font-size: 24px;
    }

    .page-content h3 {
        font-size: 20px;
    }

    .page-content p {
        font-size: 15px;
    }

    .cf7-form {
        gap: 18px;
    }

    .cf7-form input[type="text"],
    .cf7-form input[type="email"],
    .cf7-form input[type="tel"],
    .cf7-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .cf7-submit .wpcf7-submit {
        width: 100%;
    }

    .floating-cta {
        display: block;
    }
}

/* =========================================
   Motion
========================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-up,
    .fade-up.is-visible,
    .card,
    .service-card,
    .reason-card,
    .voice-card,
    .problem-card,
    .flow-card,
    .info-card,
    .cta-box {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.08s;
}

.fade-up-delay-2 {
    transition-delay: 0.16s;
}

.fade-up-delay-3 {
    transition-delay: 0.24s;
}

.card,
.cta-box {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {

    .problem-card:hover,
    .service-card:hover,
    .reason-card:hover,
    .voice-card:hover,
    .flow-card:hover,
    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(44, 44, 44, 0.08);
    }

    .service-card:hover {
        border-color: rgba(138, 158, 138, 0.32);
    }

    .header-nav a {
        transition:
            color 0.2s ease,
            opacity 0.2s ease,
            transform 0.2s ease;
    }

    .header-nav a:hover {
        color: var(--color-main-dark);
        opacity: 0.85;
        transform: translateY(-1px);
    }
}