@charset "UTF-8";

:root {
    --ink: #21140e;
    --muted: #7b6254;
    --coffee: #6b351f;
    --coffee-dark: #3d1d11;
    --matcha: #557847;
    --sakura: #ff7f9a;
    --sun: #ffb33f;
    --cream: #fff5df;
    --cream-2: #fffaf0;
    --paper: rgba(255, 255, 255, .76);
    --line: rgba(93, 55, 31, .14);
    --shadow: 0 24px 80px rgba(102, 57, 25, .18);
    --shadow-strong: 0 36px 110px rgba(110, 54, 20, .25);
    --radius-xl: 38px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 179, 63, .26), transparent 34rem),
        radial-gradient(circle at 88% 3%, rgba(255, 127, 154, .2), transparent 30rem),
        radial-gradient(circle at 50% 50%, rgba(85, 120, 71, .09), transparent 46rem),
        linear-gradient(135deg, #fffdf7 0%, #fff1d8 48%, #fff7eb 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(61, 29, 17, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 29, 17, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 72%);
    z-index: -3;
}

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

p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
}

img, svg {
    max-width: 100%;
}

button, input, textarea, select {
    font: inherit;
}

.page-glow {
    position: fixed;
    width: 34vw;
    height: 34vw;
    right: -10vw;
    top: 20vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 127, 154, .22), transparent 64%);
    filter: blur(12px);
    pointer-events: none;
    z-index: -2;
    animation: glowFloat 9s ease-in-out infinite alternate;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: .18;
    mix-blend-mode: multiply;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(100, 60, 20, .12) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(100, 60, 20, .08) 0 1px, transparent 1px);
    background-size: 26px 26px, 33px 33px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--max), calc(100% - 32px));
    margin: 16px auto 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    background: rgba(255, 250, 240, .74);
    backdrop-filter: blur(22px);
    box-shadow: 0 14px 50px rgba(77, 43, 18, .1);
}

.site-header.is-scrolled {
    background: rgba(255, 250, 240, .92);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 30% 25%, #ffcf7d, transparent 32%),
        linear-gradient(135deg, var(--coffee), var(--sakura));
    box-shadow: 0 14px 34px rgba(107, 53, 31, .22);
}

.coffee-drop,
.packet-drop,
.mini-drop,
.note-drop {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    background:
        radial-gradient(circle at 68% 74%, rgba(255,255,255,.78), transparent 17%),
        radial-gradient(circle at 38% 32%, rgba(61,29,17,.45), transparent 34%),
        linear-gradient(315deg, #9b522b 0%, #5b2b18 54%, #2f150d 100%);
    box-shadow:
        inset 10px -12px 24px rgba(61,29,17,.25),
        inset -8px 10px 18px rgba(255,255,255,.12),
        0 14px 34px rgba(107, 53, 31, .22);
    animation: dropPulse 3.2s ease-in-out infinite;
}

.coffee-drop {
    width: 48px;
    height: 48px;
}

.coffee-drop::before,
.packet-drop::before,
.mini-drop::before,
.note-drop::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,179,63,.18), rgba(255,127,154,.12));
    z-index: -1;
    filter: blur(8px);
}

.coffee-drop::after,
.packet-drop::after,
.mini-drop::after,
.note-drop::after {
    content: "";
    position: absolute;
    left: 54%;
    top: 58%;
    width: 22%;
    height: 22%;
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    filter: blur(.2px);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 18px;
    letter-spacing: -.02em;
}

.logo-text small {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: #5d4335;
    font-weight: 700;
    font-size: 14px;
    transition: .25s ease;
}

.nav a:hover {
    color: var(--ink);
    background: rgba(255, 179, 63, .16);
    transform: translateY(-1px);
}

.nav .nav-cta {
    color: #fff;
    background: var(--coffee);
    box-shadow: 0 12px 28px rgba(107, 53, 31, .22);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 10px;
}

.section {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 82px 0;
}

.hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
    gap: 44px;
    align-items: center;
    padding-top: 76px;
}

.hero-bg-word {
    position: absolute;
    right: -6vw;
    top: 8%;
    font-size: clamp(88px, 18vw, 270px);
    line-height: .8;
    font-weight: 950;
    letter-spacing: -.09em;
    color: rgba(107, 53, 31, .05);
    z-index: -1;
}

.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--coffee);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow span, .section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sakura), var(--sun));
}

h1, h2, h3 {
    margin: 0;
    letter-spacing: -.055em;
}

h1 {
    max-width: 900px;
    font-size: clamp(48px, 7.7vw, 112px);
    line-height: .88;
}

h2 {
    font-size: clamp(34px, 5vw, 72px);
    line-height: .92;
}

h3 {
    font-size: 24px;
    line-height: 1.05;
}

.hero-lead {
    max-width: 690px;
    margin: 28px 0 0;
    font-size: clamp(18px, 2vw, 23px);
    color: #654535;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: .26s ease;
}

.button.primary {
    color: #fff;
    background:
        radial-gradient(circle at 25% 0, rgba(255,255,255,.28), transparent 35%),
        linear-gradient(135deg, var(--coffee), #a5532b 55%, var(--sakura));
    box-shadow: 0 18px 42px rgba(107, 53, 31, .28);
}

.button.secondary {
    color: var(--coffee-dark);
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(107, 53, 31, .14);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 62px rgba(107, 53, 31, .26);
}

.button.full {
    width: 100%;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 560px;
    margin-top: 42px;
}

.hero-facts div {
    padding: 18px;
    border: 1px solid rgba(107, 53, 31, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 16px 44px rgba(85, 53, 23, .08);
}

.hero-facts b {
    display: block;
    font-size: 25px;
}

.hero-facts span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.sun {
    position: absolute;
    width: min(440px, 78vw);
    height: min(440px, 78vw);
    left: 50%;
    top: 49%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,.8), transparent 24%),
        linear-gradient(135deg, #ffe1a4, #ffad42 52%, #ff7f9a);
    box-shadow: 0 38px 120px rgba(255, 154, 80, .34);
    animation: breathe 5s ease-in-out infinite;
}

.drip-scene {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.packet {
    position: absolute;
    top: 88px;
    left: 50%;
    width: 230px;
    height: 260px;
    transform: translateX(-50%) rotate(-2deg);
    animation: packetFloat 4.4s ease-in-out infinite;
    z-index: 3;
}

.packet-top {
    position: absolute;
    inset: 0 22px auto;
    height: 48px;
    border-radius: 22px 22px 8px 8px;
    background: linear-gradient(135deg, #fff, #ffe7c2);
    box-shadow: var(--shadow);
}

.packet-face {
    position: absolute;
    inset: 34px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,246,230,.9)),
        repeating-linear-gradient(45deg, rgba(107,53,31,.06) 0 8px, transparent 8px 16px);
    border: 1px solid rgba(107, 53, 31, .12);
    box-shadow: var(--shadow-strong);
}

.packet-drop {
    width: 74px;
    height: 74px;
}

.packet-face strong {
    letter-spacing: .12em;
}

.packet-face small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
}

.packet-shadow {
    position: absolute;
    width: 180px;
    height: 34px;
    left: 50%;
    bottom: -52px;
    transform: translateX(-50%);
    background: rgba(77, 43, 18, .17);
    filter: blur(18px);
    border-radius: 50%;
}

.pour-line {
    position: absolute;
    top: 330px;
    left: calc(50% - 6px);
    width: 12px;
    height: 138px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(111, 58, 28, 0), rgba(111, 58, 28, .7), rgba(111, 58, 28, 0));
    animation: pour 1.6s ease-in-out infinite;
    z-index: 2;
}

.cup {
    position: absolute;
    left: 50%;
    top: 460px;
    width: 300px;
    height: 210px;
    transform: translateX(-50%);
    z-index: 2;
}

.cup-rim {
    position: absolute;
    left: 28px;
    top: 0;
    width: 230px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 10px solid #ffe7c2;
    box-shadow: inset 0 9px 20px rgba(107, 53, 31, .12);
}

.coffee-surface {
    position: absolute;
    left: 52px;
    top: 18px;
    width: 182px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 30%, #a86b43, #4f2818);
    z-index: 2;
    animation: coffeeWave 2s ease-in-out infinite;
}

.cup-body {
    position: absolute;
    left: 42px;
    top: 28px;
    width: 210px;
    height: 142px;
    border-radius: 0 0 54px 54px;
    background: linear-gradient(135deg, #fff, #ffe8c2);
    box-shadow: var(--shadow);
}

.cup-handle {
    position: absolute;
    right: 0;
    top: 50px;
    width: 78px;
    height: 82px;
    border: 18px solid #ffe4bd;
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.cup-plate {
    position: absolute;
    left: 5px;
    bottom: 0;
    width: 285px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    box-shadow: 0 18px 38px rgba(77,43,18,.12);
}

.steam {
    position: absolute;
    width: 22px;
    height: 110px;
    top: 360px;
    border-radius: 999px;
    border-left: 3px solid rgba(255, 255, 255, .78);
    filter: blur(.2px);
    animation: steam 2.8s ease-in-out infinite;
    z-index: 5;
}

.steam-one { left: calc(50% - 60px); animation-delay: 0s; }
.steam-two { left: calc(50% - 8px); animation-delay: .4s; }
.steam-three { left: calc(50% + 46px); animation-delay: .8s; }

.floating-label {
    position: absolute;
    z-index: 4;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(107, 53, 31, .1);
    box-shadow: 0 18px 42px rgba(77,43,18,.11);
    color: var(--coffee);
    font-weight: 900;
    backdrop-filter: blur(18px);
    animation: labelFloat 4s ease-in-out infinite alternate;
}

.label-one {
    left: 4%;
    top: 28%;
}

.label-two {
    right: 3%;
    bottom: 28%;
    animation-delay: .6s;
}

.marquee {
    width: 100%;
    overflow: hidden;
    padding: 18px 0;
    border-block: 1px solid rgba(107,53,31,.1);
    background: rgba(255,255,255,.34);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee span {
    display: inline-flex;
    margin-right: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--coffee-dark);
    background: #fff;
    box-shadow: 0 10px 26px rgba(77,43,18,.07);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, .7fr);
    gap: 54px;
    align-items: start;
}

.benefit-grid, .format-grid, .steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 52px;
}

.benefit-card, .format-card, .step {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(107,53,31,.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.62);
    box-shadow: 0 18px 58px rgba(77,43,18,.08);
    overflow: hidden;
    transition: .3s ease;
}

.benefit-card:hover, .format-card:hover, .step:hover {
    transform: translateY(-7px) rotate(.3deg);
    box-shadow: 0 28px 90px rgba(77,43,18,.14);
}

.benefit-card::after, .format-card::after, .step::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,179,63,.26), transparent 68%);
}

.benefit-card span, .step span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    border-radius: 50%;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--coffee), var(--sakura));
}

.story {
    width: min(1440px, calc(100% - 32px));
}

.story-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .75fr) minmax(0, 1fr);
    gap: 54px;
    padding: clamp(28px, 5vw, 72px);
    border-radius: 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.9), transparent 28%),
        linear-gradient(135deg, #fff, #ffeac6 54%, #ffd6df);
    box-shadow: var(--shadow-strong);
}

.story-card::before {
    content: "日本";
    position: absolute;
    right: 5%;
    bottom: -3%;
    color: rgba(107,53,31,.06);
    font-size: clamp(90px, 18vw, 250px);
    font-weight: 950;
    line-height: .8;
}

.story-map {
    position: relative;
    min-height: 420px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 44%, rgba(255,127,154,.32), transparent 21%),
        radial-gradient(circle at 48% 48%, rgba(255,255,255,.86), transparent 25%),
        linear-gradient(135deg, rgba(255,255,255,.64), rgba(255,255,255,.28));
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: inset 0 0 0 1px rgba(107,53,31,.06);
    overflow: hidden;
}

.story-map::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 330px;
    transform: translate(-50%, -50%) rotate(20deg);
    background: linear-gradient(180deg, var(--matcha), #8ab36f);
    border-radius: 60% 48% 52% 55%;
    clip-path: polygon(45% 0, 62% 8%, 55% 26%, 72% 38%, 55% 52%, 61% 70%, 43% 100%, 29% 74%, 40% 55%, 24% 36%, 39% 24%, 35% 9%);
    opacity: .9;
    box-shadow: 0 30px 80px rgba(85,120,71,.28);
}

.japan-dot {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sakura);
    box-shadow: 0 0 0 10px rgba(255,127,154,.16);
    animation: pulse 2.2s ease-in-out infinite;
}

.dot-one { left: 52%; top: 28%; }
.dot-two { left: 45%; top: 52%; animation-delay: .4s; }
.dot-three { left: 54%; top: 70%; animation-delay: .8s; }

.route-line {
    position: absolute;
    left: 46%;
    top: 29%;
    width: 120px;
    height: 210px;
    border-right: 3px dashed rgba(107,53,31,.28);
    border-radius: 50%;
    transform: rotate(9deg);
    z-index: 1;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.timeline div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.56);
    border: 1px solid rgba(107,53,31,.1);
}

.timeline b {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.timeline span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.center {
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

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

.compare-shell {
    padding: clamp(24px, 5vw, 64px);
    border-radius: 48px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.36)),
        radial-gradient(circle at 80% 20%, rgba(255,179,63,.2), transparent 36%);
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: var(--shadow);
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
    margin-top: 36px;
}

.compare-card {
    padding: 32px;
    border-radius: 32px;
}

.compare-card.muted {
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(107,53,31,.09);
}

.compare-card.accent {
    color: #fff;
    background:
        radial-gradient(circle at 20% 0, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(135deg, var(--coffee-dark), var(--coffee), #b75c32);
    box-shadow: 0 30px 80px rgba(107,53,31,.24);
}

.compare-card.accent h3,
.compare-card.accent li {
    color: #fff;
}

.compare-card ul {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.compare-card li {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    color: var(--muted);
    line-height: 1.45;
}

.compare-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--sakura);
}

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

.format-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 26px;
    color: #fff;
    font-size: 30px;
    font-weight: 950;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 28%),
        linear-gradient(135deg, var(--matcha), var(--sun));
    box-shadow: 0 18px 38px rgba(85,120,71,.18);
}

.format-card span {
    color: var(--coffee);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.product-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
    gap: 34px;
    align-items: center;
    padding: clamp(24px, 5vw, 70px);
    border-radius: 52px;
    background:
        radial-gradient(circle at 18% 8%, rgba(255,127,154,.18), transparent 35%),
        linear-gradient(135deg, #fff, #fff4dc);
    box-shadow: var(--shadow);
    border: 1px solid rgba(107,53,31,.1);
}

.product-card {
    position: relative;
    padding: 34px;
    border-radius: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 0, rgba(255,255,255,.24), transparent 32%),
        linear-gradient(145deg, #2c150e, #6b351f 55%, #ff7f9a);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.product-card::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    background: rgba(255,255,255,.08);
}

.product-card p {
    color: rgba(255,255,255,.78);
}

.product-badge {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.16);
    font-weight: 900;
    font-size: 13px;
}

.product-card dl {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
}

.product-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.product-card dt {
    color: rgba(255,255,255,.6);
}

.product-card dd {
    margin: 0;
    text-align: right;
    font-weight: 900;
}

.use-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 960px;
    margin: 40px auto 0;
}

.use-cloud span {
    padding: 14px 19px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: 0 12px 30px rgba(77,43,18,.06);
    color: var(--coffee-dark);
    font-weight: 900;
    transition: .25s ease;
}

.use-cloud span:nth-child(3n) {
    background: rgba(255, 226, 232, .7);
}

.use-cloud span:nth-child(4n) {
    background: rgba(255, 237, 190, .72);
}

.use-cloud span:hover {
    transform: translateY(-5px) rotate(-1deg);
}

.faq-shell {
    position: relative;
    padding: clamp(24px, 5vw, 58px);
    border-radius: 48px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 179, 63, .24), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(255, 127, 154, .18), transparent 31%),
        linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,247,229,.7));
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-shell::after {
    content: "FAQ";
    position: absolute;
    right: -16px;
    top: -42px;
    color: rgba(107,53,31,.055);
    font-size: clamp(110px, 18vw, 240px);
    font-weight: 950;
    letter-spacing: -.08em;
    pointer-events: none;
}

.faq-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 34px;
}

.faq-head p {
    margin: 0;
}

.faq-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

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

.faq-visual {
    position: relative;
    min-height: 100%;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.8), transparent 29%),
        linear-gradient(145deg, rgba(255, 225, 164, .82), rgba(255, 214, 223, .68));
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: inset 0 0 0 1px rgba(107,53,31,.06);
    overflow: hidden;
}

.mini-packet {
    position: absolute;
    left: 50%;
    top: 42px;
    width: 126px;
    height: 154px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 25% 15%, rgba(255,255,255,.32), transparent 32%),
        linear-gradient(135deg, var(--coffee), #b75c32 62%, var(--sakura));
    box-shadow: 0 24px 52px rgba(107,53,31,.24);
    animation: miniPacket 3.6s ease-in-out infinite;
}

.mini-drop {
    width: 58px;
    height: 58px;
    box-shadow:
        inset 0 -10px 20px rgba(61,29,17,.22),
        0 16px 34px rgba(61,29,17,.18);
}

.mini-packet b {
    letter-spacing: .18em;
}

.mini-water {
    position: absolute;
    left: 50%;
    top: 195px;
    width: 10px;
    height: 96px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(107,53,31,0), rgba(107,53,31,.75), rgba(107,53,31,0));
    animation: miniPour 1.35s ease-in-out infinite;
}

.mini-cup {
    position: absolute;
    left: 50%;
    top: 288px;
    width: 170px;
    height: 96px;
    transform: translateX(-50%);
    border-radius: 0 0 42px 42px;
    background: linear-gradient(135deg, #fff, #ffe4bd);
    box-shadow: 0 25px 58px rgba(77,43,18,.16);
}

.mini-cup::before {
    content: "";
    position: absolute;
    left: -7px;
    right: -7px;
    top: -22px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 8px solid #ffe4bd;
}

.mini-cup::after {
    content: "";
    position: absolute;
    right: -42px;
    top: 18px;
    width: 48px;
    height: 48px;
    border: 12px solid #ffe4bd;
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.mini-coffee {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    top: -7px;
    height: 17px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 25%, #a86b43, #4f2818);
    animation: coffeeWave 2s ease-in-out infinite;
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(107,53,31,.18);
    border-radius: 50%;
    animation: spin 13s linear infinite;
}

.orbit-one {
    width: 250px;
    height: 250px;
    left: 35px;
    top: 76px;
}

.orbit-two {
    width: 190px;
    height: 190px;
    left: 67px;
    top: 108px;
    animation-direction: reverse;
    animation-duration: 10s;
}

.bean {
    position: absolute;
    width: 22px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b3e22, #3d1d11);
    box-shadow: 0 10px 22px rgba(61,29,17,.18);
}

.bean::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    bottom: 6px;
    width: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    transform: translateX(-50%) rotate(13deg);
}

.bean-one { left: 48px; top: 64px; animation: beanFloat 4s ease-in-out infinite; }
.bean-two { right: 45px; top: 226px; animation: beanFloat 4.4s ease-in-out infinite .4s; }
.bean-three { left: 86px; bottom: 42px; animation: beanFloat 3.7s ease-in-out infinite .8s; }

.scenario-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 34px auto 0;
    max-width: 1040px;
}

.scenario-strip article {
    min-height: 118px;
    padding: 22px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 20% 0, rgba(255,255,255,.82), transparent 32%),
        rgba(255,255,255,.62);
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: 0 16px 46px rgba(77,43,18,.07);
    transition: .25s ease;
}

.scenario-strip article:hover {
    transform: translateY(-6px);
}

.scenario-strip b {
    display: block;
    margin-bottom: 8px;
    color: var(--coffee-dark);
    font-size: 22px;
}

.scenario-strip span {
    color: var(--muted);
    line-height: 1.45;
}

details {
    border-radius: 24px;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: 0 14px 40px rgba(77,43,18,.06);
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 22px 24px;
    font-weight: 950;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 0;
    padding: 0 24px 24px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, .72fr);
    gap: 28px;
    align-items: stretch;
    padding: clamp(24px, 5vw, 72px);
    border-radius: 54px;
    background:
        radial-gradient(circle at 10% 15%, rgba(255,255,255,.84), transparent 26%),
        linear-gradient(135deg, #ffe3a4, #ffd7df 62%, #fff);
    box-shadow: var(--shadow-strong);
}

.contact-copy {
    align-self: center;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contact-links a {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    font-weight: 900;
}

.lead-form {
    display: grid;
    gap: 15px;
    padding: 24px;
    border-radius: 34px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 24px 80px rgba(77,43,18,.12);
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--coffee-dark);
    font-weight: 900;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    border: 1px solid rgba(107,53,31,.16);
    border-radius: 18px;
    padding: 15px 16px;
    color: var(--ink);
    background: rgba(255,255,255,.82);
    outline: none;
    transition: .2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    border-color: rgba(255,127,154,.72);
    box-shadow: 0 0 0 4px rgba(255,127,154,.14);
}

.consent {
    grid-template-columns: 22px 1fr !important;
    align-items: start;
    gap: 12px !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
    font-size: 14px;
    line-height: 1.45;
}

.consent input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.consent a {
    color: var(--coffee);
    font-weight: 900;
    text-decoration: underline;
}

.hp-field {
    display: none !important;
}


.contact-shell-v2 {
    grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr);
    align-items: stretch;
}

.contact-shell-v2 .contact-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buyer-routes {
    display: grid;
    gap: 16px;
}

.note-drop {
    width: 46px;
    height: 46px;
}

.supply-note {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: 0 16px 46px rgba(77,43,18,.08);
}

.supply-note b {
    display: block;
    margin-bottom: 6px;
    color: var(--coffee-dark);
    font-size: 18px;
}

.supply-note p {
    margin: 0;
    font-size: 15px;
}

.route-card {
    position: relative;
    min-height: 220px;
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 22px 70px rgba(77,43,18,.14);
    transition: .3s ease;
}

.route-card::before {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 150px;
    height: 150px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    background: rgba(255,255,255,.18);
}

.route-card:hover {
    transform: translateY(-8px) rotate(.4deg);
    box-shadow: 0 30px 95px rgba(77,43,18,.2);
}

.route-card.wholesale {
    color: #fff;
    background:
        radial-gradient(circle at 18% 0, rgba(255,255,255,.24), transparent 30%),
        linear-gradient(135deg, var(--coffee-dark), var(--coffee), #b75c32);
}

.route-card.retail {
    color: var(--coffee-dark);
    background:
        radial-gradient(circle at 18% 0, rgba(255,255,255,.82), transparent 30%),
        linear-gradient(135deg, #fff, #ffe3a4 54%, #ffd6df);
}

.route-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.retail .route-label {
    background: rgba(107,53,31,.08);
}

.route-card h3,
.route-card p,
.route-card b {
    position: relative;
    z-index: 1;
}

.route-card h3 {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.055em;
}

.route-card p {
    margin: 14px 0 22px;
}

.route-card.wholesale p {
    color: rgba(255,255,255,.76);
}

.route-card b {
    display: inline-flex;
    font-size: 16px;
}

@keyframes dropPulse {
    0%, 100% {
        transform: rotate(135deg) scale(1);
        filter: saturate(1);
    }
    50% {
        transform: rotate(135deg) scale(1.08);
        filter: saturate(1.22);
    }
}


.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 46px;
    color: var(--muted);
}

.site-footer div {
    display: grid;
    gap: 4px;
}

.site-footer strong {
    color: var(--ink);
}

.site-footer nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 800;
}

.legal-page {
    width: min(920px, calc(100% - 32px));
    margin: 72px auto;
    padding: clamp(24px, 5vw, 60px);
    border-radius: 38px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow);
}

.legal-page h1 {
    font-size: clamp(38px, 6vw, 68px);
    margin-bottom: 28px;
}

.legal-page h2 {
    margin-top: 32px;
    font-size: 28px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--coffee);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

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

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.035); }
}

@keyframes packetFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
    50% { transform: translateX(-50%) translateY(-15px) rotate(2deg); }
}

@keyframes pour {
    0%, 100% { opacity: .35; transform: scaleY(.72); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes coffeeWave {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(.92); }
}

@keyframes steam {
    0% { opacity: 0; transform: translateY(22px) translateX(0) scale(.8); }
    35% { opacity: .9; }
    100% { opacity: 0; transform: translateY(-78px) translateX(22px) scale(1.25); }
}

@keyframes labelFloat {
    0% { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes glowFloat {
    from { transform: translate3d(0,0,0) scale(1); }
    to { transform: translate3d(-8vw,8vh,0) scale(1.2); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255,127,154,.16); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 18px rgba(255,127,154,.03); }
}

@keyframes miniPacket {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
    50% { transform: translateX(-50%) translateY(-12px) rotate(2deg); }
}

@keyframes miniPour {
    0%, 100% { opacity: .35; transform: translateX(-50%) scaleY(.62); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes beanFloat {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-12px) rotate(10deg); }
}

@media (min-width: 1500px) {
    :root {
        --max: 1360px;
    }

    .hero {
        min-height: 860px;
    }

    h1 {
        font-size: 118px;
    }

    .hero-visual {
        transform: scale(1.04);
        transform-origin: center;
    }
}

@media (max-width: 1080px) {
    .hero,
    .split,
    .story-card,
    .product-panel,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-shell-v2 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: 620px;
    }

    .benefit-grid,
    .format-grid,
    .steps,
    .scenario-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-head,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-visual {
        min-height: 420px;
    }

    .story-map {
        min-height: 340px;
    }
}

@media (max-width: 760px) {
    :root {
        --radius-xl: 26px;
        --radius-lg: 22px;
    }

    body {
        background:
            radial-gradient(circle at 10% 4%, rgba(255, 179, 63, .28), transparent 22rem),
            linear-gradient(135deg, #fffdf8, #fff0d1);
    }

    .site-header {
        width: calc(100% - 20px);
        margin-top: 10px;
        border-radius: 26px;
    }

    .menu-button {
        display: block;
        flex: 0 0 auto;
    }

    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 26px;
        background: rgba(255, 250, 240, .96);
        box-shadow: var(--shadow);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        text-align: center;
        padding: 14px;
    }

    .section {
        width: calc(100% - 20px);
        padding: 54px 0;
    }

    .faq-shell {
        padding: 22px;
        border-radius: 30px;
    }

    .faq-visual {
        min-height: 390px;
    }

    .hero {
        padding-top: 54px;
        gap: 12px;
    }

    h1 {
        font-size: clamp(44px, 16vw, 76px);
    }

    h2 {
        font-size: clamp(32px, 12vw, 52px);
    }

    p {
        font-size: 16px;
    }

    .hero-actions,
    .contact-links {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

    .hero-visual {
        min-height: 520px;
        margin-top: 8px;
    }

    .sun {
        width: 320px;
        height: 320px;
    }

    .packet {
        width: 178px;
        height: 220px;
        top: 58px;
    }

    .pour-line {
        top: 277px;
        height: 112px;
    }

    .cup {
        top: 382px;
        width: 260px;
        transform: translateX(-50%) scale(.86);
    }

    .floating-label {
        display: none;
    }

    .benefit-grid,
    .format-grid,
    .steps,
    .compare-grid,
    .timeline,
    .faq-list,
    .scenario-strip {
        grid-template-columns: 1fr;
    }

    .story {
        width: calc(100% - 20px);
    }

    .story-card,
    .compare-shell,
    .product-panel,
    .contact-shell {
        border-radius: 32px;
    }

    .contact-shell-v2 {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .format-card,
    .step {
        min-height: 0;
        padding: 24px;
    }

    
.contact-shell-v2 {
    grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr);
    align-items: stretch;
}

.contact-shell-v2 .contact-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buyer-routes {
    display: grid;
    gap: 16px;
}

.note-drop {
    width: 46px;
    height: 46px;
}

.supply-note {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(107,53,31,.1);
    box-shadow: 0 16px 46px rgba(77,43,18,.08);
}

.supply-note b {
    display: block;
    margin-bottom: 6px;
    color: var(--coffee-dark);
    font-size: 18px;
}

.supply-note p {
    margin: 0;
    font-size: 15px;
}

.route-card {
    position: relative;
    min-height: 220px;
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 22px 70px rgba(77,43,18,.14);
    transition: .3s ease;
}

.route-card::before {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 150px;
    height: 150px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    background: rgba(255,255,255,.18);
}

.route-card:hover {
    transform: translateY(-8px) rotate(.4deg);
    box-shadow: 0 30px 95px rgba(77,43,18,.2);
}

.route-card.wholesale {
    color: #fff;
    background:
        radial-gradient(circle at 18% 0, rgba(255,255,255,.24), transparent 30%),
        linear-gradient(135deg, var(--coffee-dark), var(--coffee), #b75c32);
}

.route-card.retail {
    color: var(--coffee-dark);
    background:
        radial-gradient(circle at 18% 0, rgba(255,255,255,.82), transparent 30%),
        linear-gradient(135deg, #fff, #ffe3a4 54%, #ffd6df);
}

.route-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.retail .route-label {
    background: rgba(107,53,31,.08);
}

.route-card h3,
.route-card p,
.route-card b {
    position: relative;
    z-index: 1;
}

.route-card h3 {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.055em;
}

.route-card p {
    margin: 14px 0 22px;
}

.route-card.wholesale p {
    color: rgba(255,255,255,.76);
}

.route-card b {
    display: inline-flex;
    font-size: 16px;
}

@keyframes dropPulse {
    0%, 100% {
        transform: rotate(135deg) scale(1);
        filter: saturate(1);
    }
    50% {
        transform: rotate(135deg) scale(1.08);
        filter: saturate(1.22);
    }
}


.site-footer {
        width: calc(100% - 20px);
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
