:root {
            --yellow: #f7c948;
            --orange: #f28c28;
            --green: #74a84a;
            --brown: #5a3a1e;
            --cream: #fffaf0;
            --ink: #2f2a24;
            --white: #fff;
            --softgreen: #eef6e8;
            --softyellow: #fff4c7;
            --line: #e9dcc6;
            --shadow: 0 14px 34px rgba(90, 58, 30, .12)
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            color: var(--ink);
            background: var(--cream);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
            line-height: 1.8
        }

        a {
            color: inherit
        }

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

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

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 250, 240, .96);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--line)
        }

        .header-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            text-decoration: none;
            color: var(--brown)
        }

        .brand-logo {
            width: 48px;
            height: 48px;
            object-fit: cover;
            border: 3px solid #f7c948;
            border-radius: 50%;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(90, 58, 30, 0.15);
        }

        .global-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            margin: 0;
            padding: 0;
            list-style: none
        }

        .global-nav a {
            text-decoration: none;
            font-size: .93rem;
            font-weight: 800;
            color: var(--brown)
        }

        .global-nav a:hover {
            color: var(--orange)
        }

        .hero {
            padding: 82px 0 72px;
            background:
                radial-gradient(circle at 10% 15%,
                    rgba(247, 201, 72, 0.42),
                    transparent 26%),
                radial-gradient(circle at 90% 10%,
                    rgba(116, 168, 74, 0.24),
                    transparent 24%),
                linear-gradient(135deg,
                    #fff6ce,
                    #f8f3e7 56%,
                    #eef6e8);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 54px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            margin-bottom: 18px;
            padding: 8px 14px;
            border-radius: 999px;
            background-color: #ffffff;
            color: #74a84a;
            font-weight: 900;
            box-shadow: 0 14px 34px rgba(90, 58, 30, 0.12);
        }

        .hero h1 {
            margin: 0 0 12px;
            color: #5a3a1e;
            font-size: clamp(2.4rem, 5vw, 4.6rem);
            line-height: 1.05;
        }

        .hero h1 span {
            color: #f28c28;
        }

        .hero-copy {
            margin: 0 0 14px;
            color: #74a84a;
            font-size: clamp(1.25rem, 2.5vw, 1.8rem);
            font-weight: 900;
        }

        .hero-lead {
            max-width: 680px;
            margin: 0 0 26px;
            font-size: 1.06rem;
        }

        .hero-actions,
        .topic-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .topic-links {
            margin-top: 18px;
        }

        .topic-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 10px 16px;
            border: 1px solid #e9dcc6;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.85);
            color: #5a3a1e;
            font-weight: 900;
            text-decoration: none;
            transition: 0.2s;
        }

        .topic-link:hover {
            border-color: #f28c28;
            transform: translateY(-2px);
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 12px 22px;
            border-radius: 12px;
            background: var(--orange);
            color: var(--white);
            font-weight: 900;
            text-decoration: none;
            box-shadow: var(--shadow)
        }

        .button.secondary {
            background: var(--green)
        }

        .profile-photo-wrap {
            position: relative;
            max-width: 420px;
            margin-inline: auto
        }

        .profile-photo {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            object-position: center 18%;
            border: 10px solid var(--white);
            border-radius: 36px;
            box-shadow: var(--shadow)
        }

        .photo-badge {
            position: absolute;
            right: -14px;
            bottom: 24px;
            padding: 10px 16px;
            border-radius: 999px;
            background: var(--yellow);
            color: var(--brown);
            font-weight: 900;
            transform: rotate(-4deg);
            box-shadow: var(--shadow)
        }

        section {
            padding: 84px 0
        }

        .section-heading {
            margin-bottom: 36px;
            text-align: center
        }

        .section-heading span {
            display: block;
            color: var(--orange);
            font-size: .82rem;
            font-weight: 900;
            letter-spacing: .14em
        }

        .section-heading h2 {
            margin: 4px 0 10px;
            color: var(--brown);
            font-size: clamp(2rem, 4vw, 3rem)
        }

        .section-heading p {
            max-width: 760px;
            margin: 0 auto
        }

        .profile-section {
            background: var(--white)
        }

        .profile-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 42px;
            align-items: center
        }

        .profile-text {
            padding: 34px;
            border-radius: 24px;
            background: var(--softyellow);
            box-shadow: var(--shadow)
        }

        .profile-text h3 {
            margin-top: 0;
            color: var(--brown);
            font-size: 1.8rem
        }

        .social-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            background: var(--white);
            font-weight: 900;
            text-decoration: none;
            border: 1px solid var(--line)
        }

        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px
        }

        .photo-gallery img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: var(--shadow)
        }

        .content-section {
            background: linear-gradient(180deg, #fffaf0, #f8f3e7)
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px
        }

        .content-card {
            display: flex;
            flex-direction: column;
            min-height: 280px;
            padding: 26px;
            border: 1px solid var(--line);
            border-radius: 22px;
            background: var(--white);
            box-shadow: var(--shadow)
        }

        .content-card .icon {
            font-size: 2rem;
            line-height: 1
        }

        .content-card h3 {
            margin: 14px 0 10px;
            color: var(--brown);
            font-size: 1.3rem
        }

        .content-card p {
            margin: 0 0 20px
        }

        .content-card a {
            margin-top: auto;
            color: var(--green);
            font-weight: 900;
            text-decoration: none
        }

        .stats-section {
            background-color: #eef6e8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .stat {
            padding: 24px;
            border-radius: 20px;
            background-color: #ffffff;
            text-align: center;
            box-shadow: 0 14px 34px rgba(90, 58, 30, 0.12);
        }

        .stat strong {
            display: block;
            color: #f28c28;
            font-size: 2rem;
        }

        .stat span {
            font-weight: 800;
        }

        .food-section {
            background:
                linear-gradient(180deg,
                    #fffaf0,
                    #fff4c7);
        }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .food-card {
            overflow: hidden;
            border-radius: 20px;
            background-color: #ffffff;
            box-shadow: 0 14px 34px rgba(90, 58, 30, 0.12);
        }

        .food-card img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        .food-card p {
            margin: 0;
            padding: 14px 16px;
            color: #5a3a1e;
            font-weight: 900;
        }

        .food-note {
            margin-top: 24px;
            text-align: center;
        }

        .portfolio-section {
            background: var(--softgreen)
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .portfolio-card {
            overflow: hidden;
            border-radius: 22px;
            background: var(--white);
            box-shadow: var(--shadow)
        }

        .portfolio-label {
            padding: 14px 20px;
            background: var(--brown);
            color: var(--white);
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .12em
        }

        .portfolio-body {
            display: flex;
            flex-direction: column;
            min-height: 300px;
            padding: 26px
        }

        .portfolio-body h3 {
            margin: 0 0 12px;
            color: var(--brown);
            font-size: 1.45rem
        }

        .portfolio-meta {
            margin: 18px 0 22px;
            padding: 0
        }

        .portfolio-meta div {
            display: grid;
            grid-template-columns: 88px 1fr;
            gap: 8px;
            padding: 9px 0;
            border-top: 1px solid var(--line)
        }

        .portfolio-meta div:last-child {
            border-bottom: 1px solid var(--line)
        }

        .portfolio-meta dt {
            font-weight: 900
        }

        .portfolio-meta dd {
            margin: 0
        }

        .portfolio-button {
            display: block;
            margin-top: auto;
            padding: 12px 16px;
            border-radius: 10px;
            background: var(--green);
            color: var(--white);
            text-align: center;
            font-weight: 900;
            text-decoration: none
        }

        .contact-section {
            background: var(--white)
        }

        .contact-box {
            padding: 46px;
            border-radius: 28px;
            background: var(--brown);
            color: var(--white);
            text-align: center;
            box-shadow: var(--shadow)
        }

        .contact-box h2 {
            margin-top: 0;
            font-size: clamp(2rem, 4vw, 3rem)
        }

        footer {
            padding: 28px 0;
            background: #3e2917;
            color: #f6ead9;
            text-align: center
        }

        @media(max-width:900px) {
            .header-inner {
                align-items: flex-start;
                flex-direction: column;
                padding: 14px 0
            }

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

            .hero-grid,
            .profile-grid {
                grid-template-columns: 1fr
            }

            .profile-photo-wrap {
                max-width: 360px
            }

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

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

            .card-grid,
            .portfolio-grid {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:640px) {
            .hero {
                padding: 58px 0
            }

            section {
                padding: 64px 0
            }

            .card-grid,
            .portfolio-grid,
            .photo-gallery {
                grid-template-columns: 1fr
            }

            .profile-text,
            .contact-box {
                padding: 26px 20px
            }

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

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

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .brand-text strong {
            font-size: 1.05rem;
        }

        .brand-text small {
            font-size: .78rem;
            color: var(--green);
            font-weight: 800;
        }

        .hero-title-sub {
            display: block;
            color: #f28c28;
            white-space: nowrap;
        }

        .menu-button {
            display: none;
            width: 46px;
            height: 46px;
            padding: 10px;
            border: 0;
            border-radius: 10px;
            background-color: var(--yellow);
            cursor: pointer;
        }

        .menu-button span {
            display: block;
            width: 100%;
            height: 3px;
            margin: 5px 0;
            border-radius: 999px;
            background-color: var(--brown);
        }

        .social-link img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .page-top {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 900;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background-color: var(--orange);
            color: #ffffff;
            font-weight: 900;
            line-height: 1.1;
            text-decoration: none;
            box-shadow: 0 8px 22px rgba(90, 58, 30, .24);
            transition: .2s;
        }

        .page-top:hover {
            transform: translateY(-3px);
            background-color: var(--green);
        }

        .page-top span {
            font-size: .7rem;
        }

        @media(max-width:900px) {
            .header-inner {
                position: relative;
                flex-direction: row;
                align-items: center;
                padding: 12px 0;
            }

            .menu-button {
                display: block;
                margin-left: auto;
            }

            .global-nav {
                display: none;
                position: absolute;
                top: calc(100% + 1px);
                right: 0;
                left: 0;
                padding: 16px 4%;
                background-color: var(--cream);
                border-bottom: 1px solid var(--line);
                box-shadow: 0 12px 24px rgba(90, 58, 30, .12);
            }

            .global-nav.is-open {
                display: block;
            }

            .global-nav ul {
                flex-direction: column;
                gap: 0;
            }

            .global-nav a {
                display: block;
                padding: 12px 8px;
                border-bottom: 1px solid var(--line);
            }
        }

        @media(max-width:640px) {
            .hero-title-sub {
                white-space: normal;
            }

            .page-top {
                right: 14px;
                bottom: 14px;
                width: 54px;
                height: 54px;
            }
        }
