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

:root {
    --ease-o3: cubic-bezier(0.33, 0, 0, 1);
    --ease-o6: cubic-bezier(0.16, 1, 0.3, 1);
    --gold: #a59572;
    --dark: #0a0a0a;
    --text: #2a2a2a;
    --muted: #808080;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Pretendard", -apple-system, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.is-loading {
    overflow: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

/* ===== ① Loader ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.loader__bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    will-change: opacity;
}

.loader__logo {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    will-change: opacity, transform;
}

.loader__logo img {
    width: 48px;
    height: 48px;
}

/* loader done state (GSAP will handle animation, this is fallback) */
.loader.is-done {
    pointer-events: none;
}

/* ===== Layout ===== */
.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section--dark {
    background: var(--dark);
    color: #e7e7e7;
}

/* ===== Typography ===== */
.label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a9099;
    margin-bottom: 1.25rem;
}

.section--dark .label {
    color: #7a8894;
}

.section__title {
    font-family: "Noto Serif KR", serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section__desc {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.8;
}

.section--dark .section__desc {
    color: var(--muted);
}

/* ===== ④ Line Reveal ===== */
[data-line-reveal] .line-wrap {
    overflow: hidden;
    display: block;
}

[data-line-reveal] .line-inner {
    display: block;
    transform: translateY(110%);
    will-change: transform;
}

/* ===== Reveal (GSAP driven, CSS fallback) ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--dark);
    color: #fff;
    transition: background 0.3s var(--ease-o3), color 0.3s var(--ease-o3), transform 0.35s var(--ease-o6), box-shadow 0.35s var(--ease-o6);
}

.btn:hover {
    background: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
    transform: translateY(-1px);
}

.section--dark .btn {
    background: var(--gold);
    color: #fff;
}

.section--dark .btn:hover {
    background: #b8a580;
}

.section--dark .btn--outline {
    background: transparent;
    color: #d0ccc4;
    border-color: rgba(255, 255, 255, 0.2);
}

.section--dark .btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.48s var(--ease-o3), box-shadow 0.48s var(--ease-o3), transform 0.35s var(--ease-o6);
}

/* ⑤ Theme-aware header */
.header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header.theme-dark {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header.theme-dark .header__nav a {
    color: rgba(255, 255, 255, 0.5);
}

.header.theme-dark .header__nav a:hover,
.header.theme-dark .header__nav a.is-active {
    color: #fff;
}

.header.theme-dark .header__cta {
    background: var(--gold);
    color: #fff;
}

.header.theme-dark .header__logo img {
    filter: brightness(0) invert(1);
}

.header.theme-dark .header__menu span {
    background: #fff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    height: 28px;
    width: auto;
    transition: filter 0.48s var(--ease-o3);
}

.header__nav {
    display: flex;
    gap: 32px;
}

/* ⑦ Nav link underline slide */
.header__nav a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    transition: color 0.2s;
    position: relative;
}

.header__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-o6);
}

.header__nav a:hover::after,
.header__nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header.theme-dark .header__nav a::after {
    background: #fff;
}

.header__nav a:hover,
.header__nav a.is-active {
    color: var(--dark);
}

.header__cta {
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    padding: 8px 20px;
    background: var(--dark);
    border-radius: 4px;
    transition: background 0.3s var(--ease-o3), transform 0.3s var(--ease-o6);
}

.header__cta:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

.header__menu {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
}

.header__menu span {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s var(--ease-o6), opacity 0.25s, background 0.48s var(--ease-o3);
}

.header__menu span:first-child { top: 14px; }
.header__menu span:last-child { top: 24px; }

.nav-open .header__menu span:first-child {
    transform: translateY(5px) rotate(45deg);
}

.nav-open .header__menu span:last-child {
    transform: translateY(-5px) rotate(-45deg);
}

/* ===== Mobile Nav ===== */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-o3);
}

.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav__inner a {
    font-family: "Noto Serif KR", serif;
    font-size: 1.5rem;
    color: var(--text);
}

.mobile-nav__cta {
    margin-top: 16px;
    font-family: "Pretendard", sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* ===== ② Hero ===== */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Scroll hint at bottom of hero */
.hero__scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-hint span {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff 0%, transparent 30%, transparent 70%, #fff 100%);
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Centered hero layout (no product image) */
.hero__layout--centered {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}

.hero__copy {
    max-width: 480px;
}

.hero__copy--centered {
    max-width: 600px;
}

.hero__copy--centered .hero__actions {
    justify-content: center;
}

.hero__title {
    font-family: "Noto Serif KR", serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero__desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Hero Reveal (Opal-style impact) ===== */
.hero-reveal {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.hero-reveal__inner {
    overflow: hidden;
    border-radius: 0;
    will-change: clip-path, transform;
    clip-path: inset(12% 8% 12% 8% round 8px);
}

.hero-reveal__inner img {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    transform: scale(1.15);
}

/* Full-width visual break */
.visual-break--full {
    width: 100%;
    overflow: hidden;
}

.visual-break--full img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== Product Specs ===== */
.product-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    margin: 56px 0;
}

.spec {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
}

.spec__value {
    display: block;
    font-family: "Noto Serif KR", serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.spec__label {
    font-size: 0.8rem;
    color: #8a9099;
}

/* ===== Tasting Hero Image ===== */
.tasting-hero {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 4px;
}

.tasting-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s var(--ease-o6);
}

/* ===== Tasting Notes ===== */
.tasting {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tasting__item {
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.35s var(--ease-o6), box-shadow 0.35s var(--ease-o6);
}

.tasting__item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.tasting__item h3 {
    font-family: "Noto Serif KR", serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tasting__item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Gift Set ===== */
.gift-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 80px;
    padding: 56px;
    background: #fafaf8;
    border-radius: 4px;
}

.gift-set__title {
    font-family: "Noto Serif KR", serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.gift-set__desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.gift-set__list {
    list-style: none;
    margin-bottom: 24px;
}

.gift-set__list li {
    font-size: 0.875rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-left: 16px;
    position: relative;
}

.gift-set__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

.gift-set__price {
    font-size: 0.9rem;
    color: var(--muted);
}

.gift-set__price span {
    font-family: "Noto Serif KR", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-right: 2px;
}

.gift-set__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-set__visual img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

/* ===== Gift Box Sub-visual ===== */
.gift-box-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
}

.gift-box-sub__copy {
    order: 1;
}

.gift-box-sub__image {
    order: 2;
    overflow: hidden;
    border-radius: 4px;
}

.gift-box-sub__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s var(--ease-o6);
}

.gift-box-sub__image:hover img {
    transform: scale(1.02);
}

.gift-box-sub__copy p {
    font-family: "Noto Serif KR", serif;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    line-height: 2;
    color: var(--muted);
}

/* ===== Drinking Guide ===== */
.drinking-guide {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.drinking-guide__title {
    font-family: "Noto Serif KR", serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.drinking-guide__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.drinking-guide__item {
    padding: 28px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.35s var(--ease-o6);
}

.drinking-guide__item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.drinking-guide__icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.drinking-guide__item h4 {
    font-family: "Noto Serif KR", serif;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.drinking-guide__item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Founder Intro (image section) ===== */
.founder-intro {
    padding-bottom: 0;
}

.founder-intro .founder__image {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Scroll Color-Fill Text (Opal-style) ===== */
.founder-section {
    overflow: visible;
}

.founder__text-fill {
    margin-bottom: 16px;
}

.founder__text-fill p {
    font-family: "Noto Serif KR", serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 2;
    color: transparent;
}

.founder__text-fill .fill-char {
    color: rgba(0, 0, 0, 0.12);
    transition: color 0.05s ease;
}

.founder__text-fill .fill-char.is-filled {
    color: var(--text);
}

/* ===== Visual Break ===== */
.visual-break {
    padding: 0;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: auto;
    object-fit: cover;
    will-change: transform;
}

.visual-break--contained {
    padding: 40px 0;
}

.visual-break--contained img {
    border-radius: 4px;
}

/* ===== ⑥ Process with video bg ===== */
#process {
    overflow: hidden;
}

.process__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.process__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s var(--ease-o3);
}

.process__video.is-playing {
    opacity: 0.15;
}

.process__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(10,10,10,0.8) 50%, var(--dark) 100%);
}

/* ===== Process Steps ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0 80px;
}

.step {
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.35s var(--ease-o6);
}

.step:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.step__number {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.step h3 {
    font-family: "Noto Serif KR", serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Ingredients ===== */
.ingredients {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 56px;
}

.ingredients__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Ingredient — horizontal: text left, media right */
.ingredient--media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s;
}

.ingredient--media:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.ingredient__media {
    position: relative;
    overflow: hidden;
    order: 2;
}

.ingredient__media img,
.ingredient__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-o6);
}

.ingredient--media:hover .ingredient__media img,
.ingredient--media:hover .ingredient__media video {
    transform: scale(1.04);
}

.ingredient__text {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.ingredient__text h3 {
    font-family: "Noto Serif KR", serif;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #e7e7e7;
}

.ingredient__text p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Story Origin (불영사) ===== */
.story-origin {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
    color: #fff;
}

.story-origin__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.story-origin__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-origin__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.8) 100%);
}

.story-origin__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    padding: 48px 40px;
    border-radius: 8px;
}

.story-origin .label {
    color: rgba(255, 255, 255, 0.5);
}

.story-origin .section__title {
    color: #fff;
}

.story-origin__quote {
    font-family: "Noto Serif KR", serif;
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin-top: 24px;
}

/* ===== Founder ===== */
.founder__copy {
    max-width: 600px;
}

.founder__image {
    overflow: hidden;
    border-radius: 4px;
}

.founder__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.6s var(--ease-o6);
}

.founder__image:hover img {
    transform: scale(1.02);
}

.founder__text p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.founder__text p:last-child {
    margin-bottom: 0;
}

.founder__attribution {
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

/* ===== Contact ===== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

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

.contact__info {
    padding-top: 8px;
}

.contact__info > div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__info > div:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__info dt {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #7a8894;
    margin-bottom: 4px;
}

.contact__info dd {
    font-size: 0.95rem;
    color: #d0ccc4;
}

.contact__info a {
    transition: color 0.2s;
}

.contact__info a:hover {
    color: #fff;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    height: 20px;
    width: auto;
    opacity: 0.4;
}

.footer p {
    font-size: 0.8rem;
    color: #8a9099;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 900px) {
    .container {
        width: calc(100% - 40px);
    }

    .section {
        padding: 72px 0;
    }

    .header__nav,
    .header__cta {
        display: none;
    }

    .header__menu {
        display: block;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero__copy {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

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

    .tasting {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 40px 0 56px;
    }

    .ingredient img {
        height: 200px;
    }

    /* Gift set */
    .gift-set {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px;
        margin-top: 56px;
    }

    .gift-set__visual {
        order: -1;
    }

    .gift-set__visual img {
        max-height: 200px;
    }

    /* Gift box sub - keep side by side */
    .gift-box-sub {
        gap: 20px;
    }

    /* Story origin */
    .story-origin {
        min-height: 60vh;
    }

    .story-origin__quote {
        font-size: 0.95rem;
        line-height: 1.85;
    }

    /* Founder */

    .contact {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 480px) {
    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 56px 0;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .hero__layout {
        gap: 24px;
    }

    .hero__title {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .hero__desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .hero__visual img {
        max-height: 300px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .contact__actions {
        flex-direction: column;
        gap: 10px;
    }

    .contact__actions .btn {
        width: 100%;
    }

    .section__title {
        font-size: 1.375rem;
        line-height: 1.35;
    }

    .section__desc {
        font-size: 0.875rem;
    }

    .label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .product-specs {
        margin: 36px 0;
    }

    .spec {
        padding: 20px 12px;
    }

    .spec__value {
        font-size: 1.25rem;
    }

    .spec__label {
        font-size: 0.7rem;
    }

    .tasting {
        margin-top: 36px;
        gap: 10px;
    }

    .tasting__item {
        padding: 20px;
    }

    .tasting__item h3 {
        font-size: 0.95rem;
    }

    .tasting__item p {
        font-size: 0.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 32px 0 48px;
    }

    .step {
        padding: 20px 16px;
    }

    .step h3 {
        font-size: 0.9rem;
    }

    .step p {
        font-size: 0.8rem;
    }

    .ingredients {
        padding-top: 40px;
    }

    .ingredient__text {
        padding: 16px;
    }

    .ingredient__text h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .ingredient__text p {
        font-size: 0.78rem;
    }

    /* Drinking guide mobile */
    .drinking-guide {
        margin-top: 40px;
        padding-top: 36px;
    }

    .drinking-guide__title {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .drinking-guide__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .drinking-guide__item {
        padding: 20px 16px;
    }

    .drinking-guide__item h4 {
        font-size: 0.85rem;
    }

    .drinking-guide__item p {
        font-size: 0.78rem;
    }

    /* Gift box sub mobile */
    .gift-box-sub {
        gap: 12px;
        margin-top: 32px;
    }

    /* Scroll fill text mobile */
    .founder__text-fill p {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    /* Gift set mobile */
    .gift-set {
        padding: 24px;
        margin-top: 40px;
        gap: 24px;
    }

    .gift-set__title {
        font-size: 1.2rem;
    }

    .gift-set__desc {
        font-size: 0.8rem;
    }

    .gift-set__list li {
        font-size: 0.8rem;
        padding: 6px 0 6px 14px;
    }

    .gift-set__price span {
        font-size: 1.5rem;
    }

    .gift-set__visual img {
        max-height: 160px;
    }

    /* Story origin mobile */
    .story-origin {
        min-height: 70vh;
        padding: 48px 0;
    }

    .story-origin__content {
        padding: 28px 20px;
    }

    .story-origin__quote {
        font-size: 0.85rem;
        line-height: 1.8;
        padding-left: 16px;
        margin-top: 16px;
    }

    /* Founder mobile */

    .founder__text p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .founder__attribution {
        font-size: 0.8rem;
    }

    .contact {
        gap: 28px;
    }

    .contact__info > div {
        padding: 16px 0;
    }

    .contact__info dd {
        font-size: 0.875rem;
    }

    .visual-break--contained {
        padding: 24px 0;
    }

    .footer {
        padding: 28px 0;
    }

    .footer p {
        font-size: 0.7rem;
    }
}
