/* =============================================
   CSS Variables (Design Tokens)
   ============================================= */
:root {
    /* Colors - Evergreen Minimal Palette */
    --background: #FFFFFF;                          /* Base page background */
    --surface: #FFFFFF;                             /* Elevated surfaces */
    --surface-alt: #F4F7F4;                         /* Light neutral surface */
    --surface-border: rgba(17, 34, 25, 0.08);       /* Soft border */
    --glow: rgba(31, 92, 58, 0.18);                 /* Accent glow */

    --ink: #0F1412;                                 /* Primary text color */
    --ink-muted: rgba(15, 20, 18, 0.72);            /* Muted text */
    --leaf: #1F5C3A;                                /* Evergreen accent */
    --leaf-hover: #17472E;                          /* Hover state */
    --kraft: rgba(31, 92, 58, 0.18);                /* Subtle highlight */
    --paper: #F9FBF9;                               /* Gentle off-white */
    --white: #FFFFFF;
    --line: rgba(17, 34, 25, 0.08);                 /* Divider */
    --shadow-light: rgba(16, 24, 20, 0.08);
    --shadow-medium: rgba(16, 24, 20, 0.12);
    --shadow-heavy: rgba(16, 24, 20, 0.18);

    /* Typography */
    --font-heading: 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-accent: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Animation */
    --transition: 200ms ease;

    /* Layout */
    --container-max: 1200px;
    --container-padding: var(--space-md);
}

/* =============================================
   Reset & Base Styles
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, var(--paper) 0%, var(--background) 100%);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

p {
    color: var(--ink-muted);
}

/* =============================================
   Header Navigation
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    backdrop-filter: blur(16px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 55%, rgba(255, 255, 255, 0.9) 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 30px var(--shadow-light);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    min-height: 78px;
}

.site-brand {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--leaf);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.site-brand:hover .site-brand__text {
    color: var(--leaf-hover);
}

.site-brand__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-brand:hover .site-brand__icon {
    transform: scale(1.1);
}

.site-brand__text {
    transition: color 0.3s ease;
}

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

.site-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(17, 34, 25, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    cursor: pointer;
    color: var(--leaf);
    letter-spacing: 0.3em;
    font-size: 0.65rem;
    font-family: var(--font-accent);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.site-nav__toggle:focus-visible {
    outline: 2px solid var(--leaf);
    outline-offset: 3px;
}

.site-nav__toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 92, 58, 0.45);
}

.site-nav__toggle-bar {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__toggle-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    margin-top: 2px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
    flex-wrap: nowrap;
}

.site-nav.is-open .site-nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .site-nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-nav.is-open .site-nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav.is-open .site-nav__toggle {
    border-color: rgba(31, 92, 58, 0.55);
}

.site-nav__item {
    display: flex;
    align-items: center;
}

.site-nav__link {
    position: relative;
    font-size: 0.95rem;
    color: var(--ink-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
    font-family: var(--font-accent);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--leaf) 0%, rgba(31, 92, 58, 0) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
    border-radius: 999px;
}

.site-nav__link:hover,
.site-nav__link:focus {
    color: var(--ink);
}

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

.btn--small {
    height: 44px;
    padding: 0 1.75rem;
    font-size: 0.85rem;
}

/* =============================================
   Layout Components
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
}

.section__subtitle {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--leaf);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.section__subtitle-jp {
    font-size: 1rem;
    text-align: center;
    color: var(--leaf);
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: var(--space-xl);
}

.section__subtitle-jp--underline {
    position: relative;
    padding-bottom: var(--space-sm);
    display: inline-block;
    width: 100%;
}

.section__subtitle-jp--underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    background: var(--leaf);
    border-radius: 999px;
}

.section__title {
    font-size: clamp(2.1rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--leaf);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    position: relative;
    display: block;
    margin: 0 auto var(--space-xl);
    padding-bottom: var(--space-sm);
    animation: slideUpFade 0.6s ease forwards;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: linear-gradient(135deg, var(--leaf) 0%, rgba(31, 92, 58, 0.4) 100%);
    border-radius: 999px;
    box-shadow: 0 0 18px var(--glow);
}

.section__title--no-underline::after {
    display: none;
}

/* =============================================
   Button Components
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-xl);
    height: 52px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.02em;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(4px);
}



.btn--primary {
    background: var(--leaf);
    color: var(--white);
    border-color: rgba(31, 92, 58, 0.35);
    letter-spacing: 0.05em;
}

.btn--primary:hover {
    background: var(--leaf-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.btn--secondary {
    background: var(--white);
    color: var(--leaf);
    border-color: var(--leaf);
    letter-spacing: 0.05em;
}

.btn--secondary:hover {
    background: var(--leaf);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    max-width: 400px;
}

.hero__cta-group .btn {
    width: 100%;
    max-width: none;
}

.btn--large {
    height: 60px;
    padding: 0 2.5rem;
    font-size: 1.1875rem;
    font-weight: 700;
}

.btn--full {
    width: 100%;
}

.btn__logo {
    height: 20px;
    width: auto;
    margin-right: 0.5rem;
}

.floating-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(16px + env(safe-area-inset-bottom));
    transform: translateY(0);
    width: 100%;
    min-height: 60px;
    padding: 1rem 2.5rem;
    border-radius: 0;
    z-index: 1200;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease;
}

.floating-cta::after {
    content: '→';
    font-size: 1rem;
    letter-spacing: normal;
}

.floating-cta::before {
    content: '';
    position: absolute;
    top: -180%;
    left: -30%;
    width: 45%;
    height: 400%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-160%) rotate(25deg);
    opacity: 0;
    animation: floating-cta-shine 7s ease-in-out infinite;
    pointer-events: none;
}

.floating-cta:hover,
.floating-cta:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 36px 80px rgba(15, 23, 42, 0.32);
}

.floating-cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

/* =============================================
   Card Components
   ============================================= */
.card {
    background: var(--surface);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(20px);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px var(--shadow-heavy);
    border-color: rgba(31, 92, 58, 0.28);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding: 6rem 0 7rem;
    background:
        radial-gradient(circle at 85% 15%, rgba(31, 92, 58, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 10% 85%, rgba(31, 92, 58, 0.12) 0%, transparent 65%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 249, 0.92) 60%, rgba(244, 247, 244, 0.88) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(31, 92, 58, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -40%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 65%);
    transform: rotate(6deg);
    pointer-events: none;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-xl);
    align-items: center;
    min-height: 620px;
    padding: var(--space-xxl) var(--space-xl);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero__content::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: calc(var(--radius-xl) - 8px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    pointer-events: none;
}

.hero__text {
    animation: fadeInUp 0.8s ease forwards;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero__headline {
    margin-bottom: var(--space-xl);
}

.hero__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
}

.hero__body .hero__subtitle,
.hero__body .hero__price {
    margin: 0;
}

.hero__headline::before {
    content: 'ORENO GARLIC SALT';
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--leaf);
    font-family: var(--font-accent);
    font-weight: 600;
    text-shadow: 0 8px 18px rgba(31, 92, 58, 0.22);
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 3.5rem);
    margin-bottom: var(--space-lg);
    color: var(--ink);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.hero__accent,
.hero__title-line {
    display: inline-block;
}

.hero__accent {
    background: linear-gradient(135deg, rgba(31, 92, 58, 1) 0%, rgba(23, 71, 46, 0.85) 50%, rgba(31, 92, 58, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
}

.hero__title-line {
    color: var(--ink);
}

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--ink-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero__price {
    margin-bottom: var(--space-lg);
}

.price {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--leaf);
    font-family: var(--font-accent);
    letter-spacing: 0.04em;
    text-shadow: 0 12px 25px rgba(31, 92, 58, 0.2);
}

.hero__image {
    text-align: center;
    animation: fadeInScale 0.8s ease 0.2s forwards;
    opacity: 0;
    position: relative;
}

.hero__image::before {
    content: '';
    position: absolute;
    inset: -10% -12% -14% -12%;
    background: radial-gradient(circle at 50% 50%, rgba(31, 92, 58, 0.22), transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.hero__image img {
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 32px 75px rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
}

/* =============================================
   Benefits Section
   ============================================= */
.benefits {
    padding: var(--space-xxl) 0;
    background: var(--paper);
    margin-top: calc(var(--space-xxl) + var(--space-lg));
}

.benefits__intro {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--leaf);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.benefit-card {
    padding: 2.5rem 2rem;
    text-align: left;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px var(--shadow-medium);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
}



.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 92, 58, 0.28);
    box-shadow: 0 24px 48px var(--shadow-heavy);
}

.benefit-card__icon {
    display: inline-block;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-hover) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 var(--space-lg) 0;
    font-family: var(--font-accent);
    font-style: italic;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
}

.benefit-card__icon::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--leaf) 0%, transparent 100%);
    border-radius: 999px;
}



.benefit-card__title {
    font-size: 1.625rem;
    color: var(--ink);
    margin-bottom: var(--space-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.benefit-card__text {
    color: var(--ink-muted);
    line-height: 1.7;
}

/* =============================================
   Recipe Showcase
   ============================================= */
.recipes {
    padding: var(--space-xxl) 0;
}

.recipes--fullwidth {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 249, 0.85) 100%);
    position: relative;
}

.recipes__intro {
    text-align: center;
    margin-bottom: calc(var(--space-xxl) + var(--space-lg));
}

.recipes__description {
    font-size: 1.125rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.recipe-featured {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
    position: relative;
}

.recipe-featured img {
    max-width: 900px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 80px rgba(4, 6, 12, 0.6);
}

.recipe-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: calc(var(--space-xxl) + var(--space-lg));
    padding: var(--space-lg) 0;
}

.recipe-item {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.recipe-item__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.recipe-item__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 93, 66, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.recipe-item:hover .recipe-item__image::before {
    opacity: 1;
}

.recipe-item--large .recipe-item__image {
    height: 400px;
}

.recipe-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-item:hover .recipe-item__image img {
    transform: scale(1.08);
}

.recipes__story {
    text-align: center;
    max-width: 900px;
    margin: calc(var(--space-xxl) * 1.8) auto 0;
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--ink-muted);
    padding: 0;
    font-style: normal;
    position: relative;
}

.recipes__story::before {
    display: none;
}

.break-desktop::after {
    content: '\A';
    white-space: pre;
}

@media (max-width: 768px) {
    .break-desktop::after {
        display: none;
    }
}

/* =============================================
   Profile Section
   ============================================= */
.profile-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, rgba(249, 251, 249, 0.75) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.profile-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(31, 92, 58, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.profile-intro {
    text-align: center;
    margin-bottom: calc(var(--space-xxl) + var(--space-lg));
}

.profile-intro__avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 16px 34px var(--shadow-medium);
    background: transparent;
}

.profile-intro__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.profile-intro__subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--leaf);
    margin-bottom: var(--space-md);
}

.profile-intro__description {
    font-size: 1.125rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.profile-intro__line {
    display: block;
    white-space: nowrap;
}

.profile-intro__label {
    margin-top: var(--space-xl);
    margin-bottom: 0;
    font-size: 1.6rem;
    letter-spacing: 0.28em;
    color: var(--leaf);
    text-align: center;
    font-family: var(--font-accent);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.4rem 0.6rem 0 0.6rem;
    margin-left: auto;
    margin-right: auto;
    animation: profile-label-shake 3.6s ease-in-out infinite;
    line-height: 1;
}

.profile-intro__video {
    margin-top: -0.5rem;
    display: flex;
    justify-content: center;
    width: 70%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.profile-intro__video-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #000;
}

.profile-intro__video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stats {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.stats__total {
    width: 100%;
    text-align: center;
    padding: var(--space-lg) 0;
}

.stats__title {
    font-size: 1rem;
    color: var(--ink-muted);
    margin-bottom: var(--space-sm);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.stats__number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--leaf);
    font-family: var(--font-accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.stats__date {
    color: var(--ink-muted);
    font-size: 0.95rem;
}

.stats__platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    width: 100%;
}

.platform {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.platform__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.platform__link:focus-visible {
    outline: 2px solid var(--leaf);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

.platform:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 92, 58, 0.4);
    box-shadow: 0 16px 32px var(--shadow-heavy);
}

.platform__icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    margin-bottom: 0.6rem;
    border: none;
}

.platform__icon svg {
    width: 34px;
    height: 34px;
    color: var(--white);
}

.platform__icon--youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.platform__icon--instagram {
    background: linear-gradient(45deg, #f58529 0%, #dd2a7b 40%, #8134af 70%, #515bd4 100%);
}

.platform__icon--tiktok {
    background: radial-gradient(circle at 30% 30%, #25f4ee 0%, rgba(37, 244, 238, 0.45) 40%, rgba(0, 0, 0, 0) 70%),
                radial-gradient(circle at 70% 70%, #fe2c55 0%, rgba(254, 44, 85, 0.45) 40%, rgba(0, 0, 0, 0) 70%),
                #000000;
}

.platform__name {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.platform__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.platform__number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--leaf);
    font-family: var(--font-accent);
    display: block;
    line-height: 1;
}

.platform__label {
    font-size: 0.7rem;
    color: var(--ink-muted);
    margin-top: 0.2rem;
}

/* =============================================
   Steps Section
   ============================================= */
.how-to-use {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, rgba(249, 251, 249, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
    justify-content: center;
    justify-items: center;
}


.step {
    text-align: center;
    padding: 2.5rem var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px var(--shadow-medium);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}



.step:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 92, 58, 0.28);
}

.step__number {
    width: 70px;
    height: 70px;
    background: var(--leaf);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
}



.step__title {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.step__text {
    color: var(--ink-muted);
    line-height: 1.7;
}

/* =============================================
   Product Details
   ============================================= */
.product-details {
    padding: var(--space-xxl) 0;
    position: relative;
    text-align: left;
}

.details-card {
    padding: var(--space-lg) 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(17, 34, 25, 0.1);
    border-bottom: 1px solid rgba(17, 34, 25, 0.1);
    max-width: 760px;
    margin: 0 auto;
}

.details__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-md);
    align-items: baseline;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(17, 34, 25, 0.06);
}

.details__item:last-child {
    border-bottom: none;
}

.details__item dt {
    font-weight: 600;
    color: var(--leaf);
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.details__item dd {
    color: var(--ink-muted);
    line-height: 1.7;
    text-align: left;
    font-size: 0.95rem;
}

.product-image {
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(16, 24, 20, 0.15));
}

/* =============================================
   Reviews Section
   ============================================= */
.reviews {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, rgba(249, 251, 249, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    justify-content: center;
}

.review-card {
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.review-card::before {
    content: '';
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--leaf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 28px 28px;
    background-position: center;
    background-repeat: no-repeat;
}

.review-card--female::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.review-card--male::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M12 2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.review-card:hover {
    transform: translateX(4px);
}

.review__text {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.7;
    font-style: normal;
    margin: 0;
    position: relative;
    background: var(--surface);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-border);
    box-shadow: 0 4px 12px rgba(16, 24, 20, 0.08);
}

.review__text::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--surface) transparent transparent;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 251, 249, 0.9) 100%);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    border: 1px solid rgba(31, 92, 58, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--leaf);
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
}

.faq__question:focus-visible {
    outline: 2px solid rgba(31, 92, 58, 0.45);
    outline-offset: 3px;
}

.faq__question-text {
    flex: 1;
}

.faq__toggle {
    font-size: 1.75rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq__toggle {
    transform: rotate(45deg);
}

.faq__answer {
    overflow: hidden;
    height: 0;
    padding: 0 1.5rem;
    color: var(--ink-muted);
    line-height: 1.7;
    transition: height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.is-open .faq__answer {
    opacity: 1;
    padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
    margin: 0;
    padding-top: var(--space-xs);
}

/* =============================================
   CTA Section
   ============================================= */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-hover) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.cta__image {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.cta__image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.cta__image:hover img {
    transform: translateY(-8px);
}

.cta__title {
    font-size: clamp(2.2rem, 5vw, 3.1rem);
    margin-bottom: 0;
    color: var(--white);
    letter-spacing: -0.015em;
}

.cta__button-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    max-width: 400px;
}

.cta__button-group .btn {
    width: 100%;
}

.cta .btn--primary {
    background: var(--white);
    color: var(--leaf);
    border-color: transparent;
    box-shadow: none;
}

.cta .btn--primary:hover {
    background: rgba(255, 255, 255, 0.88);
}

.cta .btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta .btn--secondary:hover {
    background: var(--white);
    color: var(--leaf);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: var(--space-lg) 0;
    background: rgba(249, 251, 249, 0.9);
    color: var(--ink-muted);
    text-align: center;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating-cta-shine {
    0%, 18% {
        transform: translateX(-160%) rotate(25deg);
        opacity: 0;
    }
    22% {
        opacity: 0.65;
    }
    30% {
        transform: translateX(160%) rotate(25deg);
        opacity: 0;
    }
    100% {
        transform: translateX(160%) rotate(25deg);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-cta::before {
        animation: none;
    }

    .floating-cta {
        transition: none;
    }

    .floating-cta:hover,
    .floating-cta:focus-visible {
        transform: translateY(0);
    }

    .profile-intro__label {
        animation: none;
    }
}

@keyframes profile-label-shake {
    0%, 92%, 100% {
        transform: translate3d(0, 0, 0);
    }
    94% {
        transform: translate3d(-3px, 0, 0) rotate(-1deg);
    }
    95% {
        transform: translate3d(3px, 0, 0) rotate(1deg);
    }
    96% {
        transform: translate3d(-2px, 0, 0) rotate(-1deg);
    }
    97% {
        transform: translate3d(2px, 0, 0) rotate(1deg);
    }
    98% {
        transform: translate3d(-1px, 0, 0) rotate(-0.5deg);
    }
    99% {
        transform: translate3d(1px, 0, 0) rotate(0.5deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .site-header__inner {
        padding: var(--space-sm) 0;
        min-height: 68px;
    }

    .site-nav__toggle {
        display: flex;
    }

    .site-nav {
        align-items: flex-start;
    }

    .site-nav__list {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-lg);
        background: var(--surface);
        border-radius: var(--radius-lg);
        border: 1px solid var(--surface-border);
        backdrop-filter: blur(20px);
        box-shadow: 0 24px 48px var(--shadow-medium);
        min-width: 260px;
        max-width: min(320px, calc(100vw - 2 * var(--container-padding)));
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

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

    .site-nav__item {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav__link {
        width: 100%;
        padding: 0.75rem 0;
        letter-spacing: 0.22em;
    }

    .site-nav__link::after {
        bottom: 0;
    }

    .site-nav__cta {
        width: 100%;
        margin-left: 0;
        padding-top: var(--space-sm);
    }

    .site-nav__cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-image {
        max-width: 300px;
    }

    .details-card {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .details__item {
        grid-template-columns: 100px 1fr;
        gap: var(--space-sm);
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .site-header__inner {
        padding: var(--space-sm) 0;
        min-height: 62px;
    }

    .site-brand {
        font-size: 0.85rem;
        letter-spacing: 0.32em;
    }

    .site-brand__icon {
        width: 42px;
        height: 42px;
    }

    .site-nav__list {
        width: min(100%, calc(100vw - 2 * var(--container-padding)));
        max-width: none;
        left: 50%;
        right: auto;
        transform: translate(-50%, -12px);
    }

    .site-nav.is-open .site-nav__list {
        transform: translate(-50%, 0);
    }

    .hero__content,
    .recipe-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .hero__content {
        padding: var(--space-xl);
        min-height: auto;
        position: relative;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: var(--space-lg);
    }

    .hero__text {
        margin: 0;
        text-align: center;
        display: contents;
    }

    .hero__headline {
        grid-row: 1;
        justify-self: center;
        padding: 0;
        background: none;
        border-radius: 0;
        box-shadow: none;
        max-width: min(92%, 26rem);
        text-align: center;
    }

    .hero__headline::before {
        margin: 0 auto var(--space-sm);
        text-align: center;
    }

    .hero__headline .hero__title {
        margin: 0;
        font-size: 2.4rem;
    }

    .hero__image {
        grid-row: 2;
        margin: 0 auto;
    }

    .hero__image img {
        max-width: min(380px, 100%);
    }

    .hero__body {
        grid-row: 3;
        margin-top: 0;
        padding: 0;
        align-items: center;
        text-align: center;
        gap: var(--space-md);
    }

    .floating-cta {
        padding: 1rem 1.8rem;
        bottom: calc(20px + env(safe-area-inset-bottom));
        font-size: 1rem;
    letter-spacing: 0.06em;
        gap: 0.5rem;
    }

    .floating-cta::after {
        font-size: 0.95rem;
    }

    .stats__platforms {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stats__number {
        font-size: 3rem;
    }

    .platform {
        padding: 1.5rem 1rem;
    }

    .platform__number {
        font-size: 1.875rem;
    }

    .hero__subtitle {
        font-size: 1.15rem;
        margin-bottom: 0;
    }

    .section__title {
        font-size: 2.25rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .recipe-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .recipe-item__image {
        height: 250px;
    }

    .recipe-item--large .recipe-item__image {
        height: 300px;
    }

    .details__item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-lg) 0;
    }

    .details__item dt {
        margin-bottom: var(--space-xs);
        font-size: 1.125rem;
    }


    .step,
    .benefit-card,
    .review-card {
        padding: 2rem var(--space-lg);
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .profile-intro__description {
        max-width: 100%;
    }

    .profile-intro__line {
        white-space: nowrap;
    }

    .profile-intro__label {
        margin-top: var(--space-xl);
        margin-bottom: 0;
        font-size: 1.05rem;
        letter-spacing: 0.24em;
        padding: 0.45rem 0.6rem 0 0.6rem;
        line-height: 1;
    }

    .profile-intro__video {
        margin-top: -1.5rem;
        width: 100%;
    }

    .profile-intro__video-inner {
        border-radius: var(--radius-md);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero__content {
        padding: var(--space-lg);
    }

    .hero__headline::before {
        letter-spacing: 0.26em;
    }

    .hero__headline {
        padding: 0;
        max-width: min(92%, 24rem);
        text-align: center;
    }

    .hero__headline .hero__title {
        font-size: 2.0rem;
        line-height: 1.15;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__image img {
        max-width: min(320px, 100%);
    }

    .floating-cta {
        padding: 0.9rem 1.4rem;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    .floating-cta::after {
        font-size: 0.9rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .cta__title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .step,
    .benefit-card,
    .review-card {
        padding: 1.5rem var(--space-md);
    }

    .step__number {
        width: 60px;
        height: 60px;
        font-size: 1.375rem;
    }

    .btn {
        height: 48px;
        font-size: 1rem;
    }

    .btn--large {
        height: 52px;
        font-size: 1.0625rem;
    }

    .profile-intro__line {
        white-space: normal;
    }

    .profile-intro__label {
        margin-top: var(--space-lg);
        margin-bottom: 0;
        font-size: 0.95rem;
        letter-spacing: 0.18em;
        padding: 0.4rem 0.5rem 0 0.5rem;
        line-height: 1;
    }

    .profile-intro__video {
        margin-top: -1.5rem;
    }

    .profile-intro__video-inner {
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
    }
}

@media (min-width: 1024px) {
    .floating-cta {
        padding: 1.1rem 3rem;
        bottom: calc(24px + env(safe-area-inset-bottom));
        font-size: 1.1rem;
        letter-spacing: 0.08em;
    }

    .floating-cta::after {
        font-size: 1.1rem;
    }
}

/* =============================================
   Recipe Use Section
   ============================================= */
.recipe-use {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, rgba(249, 251, 249, 0.88) 0%, rgba(255, 255, 255, 1) 60%, rgba(249, 251, 249, 0.92) 100%);
}

.recipe-use__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-use__lead {
    text-align: center;
    color: var(--ink-muted);
    margin-top: -var(--space-sm);
    margin-bottom: var(--space-xxl);
}

.recipe-use__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-use__grid + .benefits {
    margin-top: calc(var(--space-xxl) * 1.5);
}


.recipe-card {
    background: var(--surface);
    border: none;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(16, 24, 20, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.recipe-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--leaf) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 24, 20, 0.12);
}

.recipe-card:hover::after {
    transform: scaleX(1);
}

.recipe-card--hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
}

.recipe-card__image {
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
}

.recipe-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0.96;
}

.recipe-card:hover .recipe-card__image img {
    transform: scale(1.05);
    opacity: 1;
}

.recipe-card__body {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    justify-content: center;
    position: relative;
}

.recipe-card__tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--leaf);
    font-weight: 500;
    align-self: flex-start;
    font-family: var(--font-accent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.recipe-card:hover .recipe-card__tag {
    opacity: 1;
}

.recipe-card__title {
    font-size: 1.5rem;
    color: var(--ink);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: letter-spacing 0.3s ease;
}

.recipe-card:hover .recipe-card__title {
    letter-spacing: -0.01em;
}

.recipe-card__text {
    color: var(--ink-muted);
    line-height: 1.75;
    font-size: 0.9375rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .recipe-use__grid {
        grid-template-columns: 1fr;
        padding: 0 var(--space-md);
    }

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

.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ボタンキラッとアニメーション */
@keyframes btn-shine {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(31, 92, 58, 0.25);
    }
    50% {
        box-shadow: 0 8px 24px rgba(31, 92, 58, 0.25), 0 0 20px rgba(255, 255, 255, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.btn-shine {
    position: relative;
    overflow: hidden;
    animation: btn-shine 3s ease-in-out infinite;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: btn-shine-move 3s ease-in-out infinite;
}

@keyframes btn-shine-move {
    0% {
        transform: translateX(-150%) translateY(-150%) rotate(45deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateX(50%) translateY(50%) rotate(45deg);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(150%) translateY(150%) rotate(45deg);
        opacity: 0;
    }
}
