@charset "UTF-8";

/* ===========================================
   kaori sharoushi — Design Renewal v2
   =========================================== */

/* ---------- Custom Properties ---------- */
:root {
    --primary: #48b87d;
    --primary-light: #6dd4a0;
    --primary-dark: #339963;
    --primary-glow: rgba(72, 184, 125, 0.3);
    --accent: #2d5a3f;
    --accent-light: #3d7a56;
    --accent-deep: #1a3a28;
    --warm: #e8a85e;
    --warm-light: #f0c68a;
    --text: #2c2c2c;
    --text-light: #6b6560;
    --text-muted: #a09890;
    --bg: #fffefa;
    --bg-alt: #f7f4ef;
    --bg-warm: #fdf8f3;
    --border: #e6dfd6;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 12px rgba(45, 90, 63, 0.05);
    --shadow-md: 0 8px 30px rgba(45, 90, 63, 0.07);
    --shadow-lg: 0 16px 50px rgba(45, 90, 63, 0.1);
    --shadow-xl: 0 24px 60px rgba(45, 90, 63, 0.14);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font:
        "M PLUS Rounded 1c", system-ui, -apple-system, BlinkMacSystemFont,
        "Helvetica Neue", Arial, "Yu Gothic", sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: var(--font);
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}

/* ---------- Page Loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--accent-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Progress Bar ---------- */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 1000;
    width: 0;
    transition: width 0.12s linear;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Headings ---------- */
h1,
h2,
h3 {
    line-height: 1.35;
}

/* ---------- Icon Spacing ---------- */
.btn i,
.service-title i,
.sub-title i,
.contact-tel i,
.header-tel i,
.footer-dl dt i,
.mobile-nav-links a i {
    margin-right: 0.4em;
}
.service-title i {
    opacity: 0.8;
}

/* =============================================
   HEADER — Frost Glass + Nav + Hamburger
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition:
        background 0.5s ease,
        backdrop-filter 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 20px;
}

.site-logo {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
    transition: color var(--transition);
}
.site-tagline {
    margin: 2px 0 0;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.header-contact {
    text-align: right;
    font-size: 0.8rem;
    white-space: nowrap;
}
.header-tel-label {
    color: var(--text-light);
    font-size: 0.75rem;
}
.header-tel {
    font-weight: 700;
    margin: 2px 0 0;
    color: var(--accent);
}

/* Header CTA */
.header-cta {
    padding: 0.5em 1.6em;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Desktop nav */
.header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}
.header-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}
.header-nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition:
        width var(--transition),
        left var(--transition);
    border-radius: 1px;
}
.header-nav a:hover,
.header-nav a.active {
    color: var(--primary);
}
.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
    left: 0;
}

/* ----- CSS-only Hamburger ----- */
.hamburger-toggle {
    display: none;
}
.hamburger-label {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 210;
}
.hamburger-label span,
.hamburger-label span::before,
.hamburger-label span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger-label span {
    top: 11px;
}
.hamburger-label span::before {
    content: "";
    top: -8px;
}
.hamburger-label span::after {
    content: "";
    top: 8px;
}

.hamburger-toggle:checked + .hamburger-label span {
    background: transparent;
}
.hamburger-toggle:checked + .hamburger-label span::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--accent);
}
.hamburger-toggle:checked + .hamburger-label span::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--accent);
}

/* Mobile overlay — hidden on desktop, visible on mobile */
.mobile-nav {
    display: none;
}
@media (max-width: 900px) {
    .mobile-nav {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: linear-gradient(
            170deg,
            #f2f9f0 0%,
            var(--bg-warm) 50%,
            #f0f5eb 100%
        );
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 80px 32px 40px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity var(--transition),
            visibility var(--transition);
    }
    .hamburger-toggle:checked + .mobile-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Close button */
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 24px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--accent);
        cursor: pointer;
        border-radius: 50%;
        transition:
            background var(--transition),
            color var(--transition);
        line-height: 1;
    }
    .mobile-nav-close:hover {
        background: rgba(45, 90, 63, 0.08);
        color: var(--primary);
    }

    /* Brand */
    .mobile-nav-brand {
        text-align: center;
        margin-bottom: 36px;
    }
    .mobile-nav-logo {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--accent);
        margin: 0 0 4px;
    }
    .mobile-nav-tagline {
        font-size: 0.75rem;
        color: var(--text-muted);
        letter-spacing: 0.02em;
    }

    /* Nav links */
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        max-width: 300px;
    }
    .mobile-nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--accent);
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        transition:
            color var(--transition),
            background var(--transition);
        letter-spacing: 0.04em;
    }
    .mobile-nav-links a:first-child {
        border-top: 1px solid var(--border);
    }
    .mobile-nav-links a:hover {
        color: var(--primary);
        background: rgba(72, 184, 125, 0.05);
    }

    /* Footer area */
    .mobile-nav-footer {
        margin-top: auto;
        text-align: center;
        padding-top: 32px;
    }
    .mobile-nav-tel-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin: 0 0 6px;
        letter-spacing: 0.03em;
    }
    .mobile-nav-tel {
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 0.03em;
        text-decoration: none;
        transition: color var(--transition);
    }
    .mobile-nav-tel:hover {
        color: var(--primary-dark);
    }
    .mobile-nav-hours {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin: 6px 0 0;
    }
}

/* =============================================
   HERO — 100vh Full-screen Impact
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        160deg,
        #f2f9f0 0%,
        var(--bg) 35%,
        var(--bg-warm) 65%,
        #f0f5eb 100%
    );
    overflow: hidden;
}

/* Animated decorative circles */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}
.hero-circle--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(72, 184, 125, 0.1) 0%,
        transparent 70%
    );
    top: -15%;
    right: -10%;
    animation: floatCircle 8s ease-in-out infinite;
}
.hero-circle--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(232, 168, 94, 0.07) 0%,
        transparent 70%
    );
    bottom: -10%;
    left: -8%;
    animation: floatCircle 10s ease-in-out infinite reverse;
}
.hero-circle--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(72, 184, 125, 0.08) 0%,
        transparent 70%
    );
    top: 40%;
    left: 50%;
    animation: floatCircle 12s ease-in-out infinite 2s;
}
@keyframes floatCircle {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 1.2rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.3;
    margin: 0 0 1.6rem;
    color: var(--accent);
}
.hero-title span {
    display: inline;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-note {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 0 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Scroll hint animation */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-hint span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-hint span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   INTRO — Photo + Text 2-column
   ============================================= */
.section-intro {
    padding: 100px 0;
    background: var(--bg-alt);
}
.intro-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 60px;
    align-items: center;
}
.intro-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.intro-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}
.intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.intro-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 0.8rem;
}
.intro-heading {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0 0 1.4rem;
    line-height: 1.4;
}
.intro-body {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0 0 2rem;
    line-height: 2;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7em 2.2em;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.02em;
}
.btn-lg {
    padding: 0.85em 2.8em;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* Hero CTA pulse */
.hero .btn-primary {
    animation: ctaPulse 3s ease-in-out infinite;
}
.hero .btn-primary:hover {
    animation: none;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(72, 184, 125, 0.35); }
    50% { box-shadow: 0 0 0 12px rgba(72, 184, 125, 0); }
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 90, 63, 0.25);
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* =============================================
   SECTION BANNER (full-width BG image)
   ============================================= */
.section-banner {
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.section-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 40, 0.6),
        rgba(45, 90, 63, 0.4)
    );
}

.section-banner-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    padding: 20px 48px;
    letter-spacing: 0.08em;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 90px 0;
    background: var(--bg);
}
.section-alt {
    padding: 90px 0;
    background: var(--bg-alt);
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.5em;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--accent) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.5em;
    color: var(--accent);
}

.section-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0.1s;
}
.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.22s;
}
.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.34s;
}
.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.46s;
}
.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.58s;
}
.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   STRENGTH CARDS — Elevated Glass
   ============================================= */
.strength-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.strength-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    box-shadow: var(--shadow-md);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
.strength-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition);
}
.strength-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.strength-item:hover::before {
    opacity: 1;
}

/* Icon circle above card title */
.strength-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(72, 184, 125, 0.12),
        rgba(72, 184, 125, 0.06)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--primary);
    transition:
        transform var(--transition),
        background var(--transition);
}
.strength-item:hover .strength-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(
        135deg,
        rgba(72, 184, 125, 0.25),
        rgba(232, 168, 94, 0.15)
    );
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(72, 184, 125, 0.2);
}

.strength-title {
    font-size: 1.05rem;
    margin-bottom: 0.8em;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius-sm);
}

.strength-item p {
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 0.8em;
    line-height: 1.8;
}

/* =============================================
   SERVICE CARDS — Left Border Accent
   ============================================= */
.service-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-left-color var(--transition);
}
.service-block:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-dark);
}

.service-title {
    font-size: 1.15rem;
    margin-bottom: 0.5em;
    color: var(--primary);
    font-weight: 700;
}

.service-block p {
    font-size: 0.92rem;
    margin-bottom: 0.8em;
    line-height: 1.8;
}

/* =============================================
   DOT LIST
   ============================================= */
.dot-list li {
    position: relative;
    padding-left: 1.4em;
    margin-bottom: 0.5em;
    font-size: 0.92rem;
}
.dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

/* =============================================
   PRICE TABLE
   ============================================= */
.sub-title {
    font-size: 1.15rem;
    margin: 2em 0 0.7em;
    color: var(--accent);
    padding-bottom: 0.3em;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    font-weight: 700;
}

.table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    background: #fff;
}

.table th,
.table td {
    padding: 16px 20px;
    border: 1px solid var(--border);
    text-align: left;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 600;
    border-color: var(--primary-dark);
    font-size: 0.9rem;
}

.table tbody tr {
    transition: background var(--transition);
}
.table tbody tr:hover {
    background: rgba(72, 184, 125, 0.06);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding: 14px 8px;
    font-size: 0.93rem;
    transition:
        background var(--transition),
        padding-left var(--transition);
    border-radius: var(--radius-sm);
}
.price-list li:hover {
    background: rgba(72, 184, 125, 0.05);
    padding-left: 16px;
}

/* =============================================
   FLOW — Step Cards + Connector
   ============================================= */
.step-list {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.step-list::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 32px;
    bottom: 32px;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--primary),
        var(--primary-light)
    );
    border-radius: 2px;
}

.step-list li {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px 24px 20px 72px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.step-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.step-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 14px;
    top: 22px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
    box-shadow: 0 3px 12px var(--primary-glow);
}

.step-list h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3em;
    color: var(--primary);
}
.step-list h3 i {
    margin-right: 0.4em;
    opacity: 0.7;
}

.step-list p {
    font-size: 0.92rem;
    color: var(--text);
}

/* =============================================
   GRID
   ============================================= */
.grid {
    display: grid;
    gap: 28px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* =============================================
   OFFICE INFO
   ============================================= */
.info-list > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 6px 14px;
    padding: 12px 0;
    border-bottom: 1px dotted var(--border);
}
.info-list dt {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent);
}
.info-list dd {
    margin: 0;
    font-size: 0.9rem;
}
.office-grid {
    align-items: flex-start;
}
.office-message p {
    margin-top: 0;
    font-size: 0.93rem;
    line-height: 1.9;
}

/* =============================================
   CONTACT — Warm & Inviting
   ============================================= */
.section-contact {
    background: linear-gradient(170deg, #fdf8f3 0%, #f9f1e8 40%, #f4ece2 100%);
    color: var(--text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
/* Decorative warm blobs */
.section-contact::before,
.section-contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.section-contact::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(72, 184, 125, 0.08) 0%,
        transparent 70%
    );
    top: -180px;
    right: -120px;
}
.section-contact::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(232, 168, 94, 0.08) 0%,
        transparent 70%
    );
    bottom: -160px;
    left: -100px;
}

.section-contact .section-title {
    background: linear-gradient(135deg, var(--accent) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-contact .section-note {
    color: var(--text-light);
}
.section-contact .sub-title {
    color: var(--accent);
    border-bottom-color: var(--primary);
}
.section-contact .form-row label {
    color: var(--accent);
}

.contact-tel-bar {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.contact-tel-bar .contact-tel {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 4px;
}
.contact-tel-bar .contact-tel-note {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Form */
.contact-form {
    font-size: 0.9rem;
}
.form-row {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-row label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.02em;
}
.form-row input,
.form-row textarea {
    font: inherit;
    border-radius: var(--radius-sm);
    border: 1.5px solid #ddd6cc;
    background: #fdfbf9;
    color: var(--text);
    padding: 12px 14px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}
.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #bbb3a8;
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(72, 184, 125, 0.15);
}
.form-row textarea {
    resize: vertical;
}

/* Validation */
.form-error {
    font-size: 0.78rem;
    color: #d94040;
    margin-top: 2px;
    display: none;
}
.form-row.has-error input,
.form-row.has-error textarea {
    border-color: #d94040;
    background: #fef8f8;
}
.form-row.has-error input:focus,
.form-row.has-error textarea:focus {
    box-shadow: 0 0 0 4px rgba(217, 64, 64, 0.12);
}
.form-row.has-error .form-error {
    display: block;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}
.form-actions .btn-primary {
    width: auto;
    min-width: 240px;
    font-size: 1rem;
}

/* =============================================
   LINK SECTION — Card Style
   ============================================= */
.link-section {
    padding: 80px 0;
    background: var(--bg-alt);
    text-align: center;
}
.link-eyebrow {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.link-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--accent);
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.link-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.link-card-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.03em;
}
.link-card-logo {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.link-card-logo img {
    max-height: 52px;
    max-width: 200px;
    width: 130px;
    height: auto;
    object-fit: contain;
}

.link-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 8px 28px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.link-card-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(72, 184, 125, 0.04);
}
.link-card-btn i {
    font-size: 0.7rem;
    transition: transform var(--transition);
}
.link-card-btn:hover i {
    transform: translateX(3px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--accent-deep);
    color: #b0bfa8;
    padding: 60px 0 0;
    font-size: 0.85rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.footer-brand {
}
.footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.footer-tagline {
    font-size: 0.78rem;
    color: #8a9d80;
    margin: 0;
}

/* Info column */
.footer-dl div {
    display: flex;
    gap: 12px;
    padding: 6px 0;
}
.footer-dl dt {
    font-weight: 600;
    color: #8a9d80;
    min-width: 56px;
    font-size: 0.8rem;
}
.footer-dl dd {
    margin: 0;
    font-size: 0.85rem;
}
.footer-dl dd a {
    color: var(--primary-light);
    transition: color var(--transition);
}
.footer-dl dd a:hover {
    color: #fff;
}

/* Nav column */
.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}
.footer-nav a {
    font-size: 0.83rem;
    color: #b0bfa8;
    padding: 6px 0;
    transition: color var(--transition);
    position: relative;
}
.footer-nav a:hover {
    color: var(--primary-light);
}

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-copy {
    font-size: 0.75rem;
    color: #6b7f62;
    margin: 0;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 24px var(--primary-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    z-index: 90;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px var(--primary-glow);
}

/* =============================================
   NOSCRIPT
   ============================================= */
noscript .reveal {
    opacity: 1;
    transform: none;
}
noscript .reveal-stagger > * {
    opacity: 1;
    transform: none;
}

/* =============================================
   CONFIRM / THANKS pages
   ============================================= */
.page-confirm .section-title2,
.page-thanks .section-title2 {
    color: var(--accent);
    padding: 24px 0 12px;
}
.page-confirm .service-block,
.page-thanks .service-block {
    border-left: 5px solid var(--primary);
}
.page-confirm .hero-actions,
.page-thanks .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 28px 0 0;
}

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

/* Tablet */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .hamburger-label {
        display: block;
    }
    .header-inner {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 100svh;
    }
    .hero-title {
        font-size: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-photo {
        max-width: 400px;
        margin: 0 auto;
    }
    .intro-text {
        text-align: center;
    }

    .strength-list {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
    .link-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
    }
    .footer-dl div {
        justify-content: center;
    }

    .section-banner {
        height: 260px;
        background-attachment: scroll;
    }
    .section-banner-title {
        font-size: 1.5rem;
    }

    .step-list::before {
        left: 24px;
    }
    .step-list li {
        padding-left: 60px;
    }
    .step-list li::before {
        left: 10px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .header-contact {
        display: none;
    }

    .hero-title {
        font-size: 1.6rem;
    }
    .hero-note {
        font-size: 0.9rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 280px;
        max-width: 100%;
    }
    .hero-scroll-hint {
        bottom: 24px;
    }

    .section-intro {
        padding: 60px 0;
    }
    .intro-heading {
        font-size: 1.4rem;
    }

    .section,
    .section-alt {
        padding: 60px 0;
    }
    .section-contact {
        padding: 60px 0;
    }

    .section-banner {
        height: 180px;
    }
    .section-banner-title {
        font-size: 1.15rem;
        padding: 14px 20px;
    }

    .section-title,
    .section-title2 {
        font-size: 1.35rem;
    }

    .price-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .info-list > div {
        grid-template-columns: 80px 1fr;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
    .page-loader {
        display: none;
    }
    .hero-circle {
        animation: none;
    }
    .hero-scroll-hint span::after {
        animation: none;
    }
}
