@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&display=swap');

:root {
    --color-bg: #050807;
    --color-bg-light: #0d1211;
    --color-gold: #d4af37;
    --color-gold-light: #f9e29b;
    --color-gold-dark: #8b6b23;
    --color-text: #f0ede5;
    --color-text-muted: #b0aa99;
    
    --font-heading: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
    --font-body: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
    --font-hand: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
    
    --spacing-section: 10rem;
    --card-bg: #0d1211;
    --glass-border: #4a3d16;
    --nav-height: 74px;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border);
    background: #050807;
    color: var(--color-gold);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--color-gold-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--color-bg); /* Pure solid background */
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: calc(var(--nav-height) + 24px);
}

body.loading {
    overflow: hidden;
}

/* Opening Overlay */
#opening-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s;
    overflow: hidden;
}

#opening-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration, 3s) infinite ease-in-out var(--delay, 0s);
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1); }
}

.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: rotateZ(45deg);
}

.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, #cfaa70, #cfaa7088, #cfaa7044, transparent);
    filter: drop-shadow(0 0 6px #cfaa70cc);
    animation: shoot var(--duration, 3s) infinite ease-in-out var(--delay, 0s);
    opacity: 0;
}

@keyframes shoot {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateX(300px); opacity: 0; }
    100% { transform: translateX(300px); opacity: 0; }
}

.logo-container {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.logo-container.show {
    opacity: 1;
    transform: scale(1);
}

.opening-logo {
    max-width: 300px;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: none;
}

#main-content {
    opacity: 0;
    transition: opacity 0.6s ease;
}

#main-content.visible {
    opacity: 1;
}

/* Header & Navigation */
.site-header {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--nav-height);
    z-index: 1000;
    padding: 0 1.2rem;
    background: #050807f5;
    border-top: 1px solid #665322;
    box-shadow: 0 -10px 30px #000b;
    backdrop-filter: blur(12px);
}

.site-header.scrolled {
    display: flex;
    background: #020403fa;
}

.nav-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    list-style: none;
    gap: 0;
    width: min(1400px, 100%);
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.55rem 0.45rem;
    border-left: 1px solid #d4af3724;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 8px;
    height: 1px;
    background: var(--color-gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.nav-list li:last-child .nav-link {
    border-right: 1px solid #d4af3724;
}

.nav-link:hover {
    color: var(--color-gold-light);
    background: #d4af370e;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--color-gold);
}

.site-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem calc(var(--nav-height) + 4rem);
    position: relative;
    z-index: 2;
}

.mobile-top-button {
    display: none;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: var(--spacing-section);
}

.breadcrumbs {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.breadcrumbs .divider {
    color: var(--color-gold-dark);
    margin: 0 0.5rem;
    font-size: 0.6rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold-light);
    letter-spacing: 0.3em;
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 10px #000;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
    letter-spacing: 0.2em;
    font-weight: 300;
}

/* Ornament line */
.ornament {
    width: 150px;
    height: 1px;
    background: var(--color-gold);
    margin: 3rem auto;
    position: relative;
}

.ornament::after {
    content: '◇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-gold);
    font-size: 12px;
    background-color: var(--color-bg);
    padding: 0 10px;
}

/* Sections */
.section {
    margin-bottom: var(--spacing-section);
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-height: 500px;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease-out;
}

.image-wrapper:hover .section-image {
    transform: scale(1.03);
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    margin-bottom: 6rem;
    min-height: calc(100vh - var(--nav-height) - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy,
.story-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.hero-copy p,
.story-block p,
.article-grid p,
.feature-list p,
.timeline-list p,
.faq-list p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 2.15;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
}

.story-block.narrow {
    max-width: 720px;
    margin-top: 3rem;
}

.section-kicker {
    color: var(--color-gold);
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}

.story-section {
    padding-top: 1rem;
}

.story-section > .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.visual-section {
    margin-bottom: 6rem;
}

.jump-section {
    margin-bottom: 8rem;
}

.jump-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}

.jump-grid a {
    position: relative;
    display: flex;
    min-height: 142px;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 2.2rem;
    border: 1px solid #b7953c;
    background:
        linear-gradient(135deg, #082451 0%, #061535 52%, #02081a 100%);
    color: #fffaf0;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.5;
    box-shadow: inset 0 0 0 4px #0000003d, 0 18px 42px #000;
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.jump-grid a::before,
.jump-grid a::after {
    content: '';
    position: absolute;
    inset: 12px;
    pointer-events: none;
    z-index: 0;
}

.jump-grid a::before {
    border: 1px solid #d9c06a;
    box-shadow: inset 0 0 18px #d9c06a25;
}

.jump-grid a::after {
    background:
        radial-gradient(circle at 0 0, transparent 0 20px, #d9c06a 21px 22px, transparent 23px),
        radial-gradient(circle at 100% 0, transparent 0 20px, #d9c06a 21px 22px, transparent 23px),
        radial-gradient(circle at 0 100%, transparent 0 20px, #d9c06a 21px 22px, transparent 23px),
        radial-gradient(circle at 100% 100%, transparent 0 20px, #d9c06a 21px 22px, transparent 23px);
}

.jump-grid a span {
    position: relative;
    z-index: 2;
}

.jump-grid a:hover {
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 4px #0000004a, 0 24px 60px #000, 0 0 28px #d4af3736;
}

.page-card-menu {
    margin-top: 8rem;
}

.page-card-menu .section-title {
    margin-bottom: 0;
}

.article-grid,
.feature-list,
.timeline-list,
.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.article-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid article,
.feature-list article,
.timeline-list article,
.recommend-box,
.faq-list details,
.voice-grid blockquote {
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
}

.article-grid h3,
.feature-list h3,
.timeline-list h3,
.recommend-box h3 {
    color: var(--color-gold-light);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.image-text {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.compact-image {
    height: 420px;
    margin-bottom: 0;
}

.timeline-list {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-list article {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 1.5rem;
    align-items: start;
}

.timeline-list span {
    grid-row: span 2;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.recommend-box {
    max-width: 820px;
    margin: 3rem auto 0;
}

.recommend-box ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    padding-left: 1.2rem;
}

.voice-grid blockquote {
    color: var(--color-text);
    line-height: 1.9;
    letter-spacing: 0.08em;
    position: relative;
}

.voice-grid blockquote::before {
    content: '"';
    color: var(--color-gold);
    font-size: 2rem;
    line-height: 0;
    margin-right: 0.2rem;
}

.note {
    color: var(--color-gold-light) !important;
    font-size: 0.95rem !important;
}

.article-news {
    margin-top: 2.5rem;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-list details {
    padding: 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--color-gold-light);
    padding: 1.4rem 1.6rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.faq-list details p {
    padding: 0 1.6rem 1.6rem;
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-gold-light);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.text-center {
    text-align: center;
}

/* Product Section */
.product-intro {
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.product-card {
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    background: var(--card-bg);
    box-shadow: 0 10px 30px #000;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border-radius: 4px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 5px; right: 5px; bottom: 5px; left: 5px;
    border: 1px solid #1a1509;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold-dark);
}

.product-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.box-ornament {
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    border-top: 1px solid var(--color-gold);
    border-left: 1px solid var(--color-gold);
    pointer-events: none;
    transition: all 0.6s ease;
}

.product-card:hover .box-ornament {
    transform: translateX(-50%) rotate(225deg);
}

.product-details {
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-text);
    min-height: 3em;
    text-shadow: 0 2px 4px #000;
}

.product-price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-gold-light);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px #000;
}

.currency {
    font-size: 1.2rem;
    margin-left: 0.2rem;
}

.cart-btn {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.8rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.cart-btn:hover {
    color: #000;
    background: var(--color-gold-light);
    box-shadow: 0 0 20px #d4af37;
    transform: translateY(-2px);
}

.cart-btn.active {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 2rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* --- Animations --- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

.anim-delay-1 { transition-delay: 0.2s; }
.anim-delay-2 { transition-delay: 0.4s; }

/* News Section */
.news-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    border-bottom: 1px solid #1a1509;
    padding: 1.5rem 0;
    display: flex;
    gap: 2rem;
    align-items: baseline;
}

.news-date {
    font-size: 0.9rem;
    color: var(--color-gold);
    min-width: 100px;
}

.news-title {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: var(--color-gold-light);
}

/* Contact Section */
.contact-container {
    text-align: center;
    padding: 4rem;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
}

.contact-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--color-gold);
    color: #000;
}

/* Change 1 additions */
.home-wrapper {
    max-width: 1180px;
}

.home-hero {
    min-height: 42vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
}

.handwritten-panel {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 8rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px #000;
}

.handwritten-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(#0008, #0007), url('images/001.png') center / cover;
    filter: blur(4px) saturate(0.9) brightness(0.72);
    transform: scale(1.03);
}

.handwritten-copy {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 3rem;
    color: #fffaf0;
    font-family: var(--font-hand);
    font-size: 1.42rem;
    line-height: 2.15;
    letter-spacing: 0.05em;
    text-shadow: 0 3px 14px #000;
}

.handwritten-copy p {
    margin-bottom: 1.2rem;
}

.typewriter-section {
    margin-top: -2rem;
}

.typewriter-paper,
.letter-paper {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem;
    color: #2b2319;
    background:
        linear-gradient(90deg, #f6e4d3 0 1px, transparent 1px) 4rem 0 / 1px 100% no-repeat,
        repeating-linear-gradient(#fff8ea, #fff8ea 35px, #eadbc3 36px);
    border-radius: 4px;
    box-shadow: 0 18px 45px #000;
    font-family: var(--font-hand);
}

.typewriter-text {
    min-height: 12em;
    font-size: 1.25rem;
    line-height: 2.05;
    letter-spacing: 0.04em;
    white-space: pre-wrap;
}

.typewriter-text::after {
    content: '';
    display: inline-block;
    width: 0.08em;
    height: 1.1em;
    margin-left: 0.12em;
    background: #2b2319;
    vertical-align: -0.15em;
    animation: caretBlink 0.8s steps(1) infinite;
}

@keyframes caretBlink {
    50% { opacity: 0; }
}

.watermelon-roadmap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 4rem;
}

.watermelon-roadmap::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, #695c28, var(--color-gold), #276c39);
    z-index: -1;
}

.road-step {
    position: relative;
    padding: 6.2rem 1.3rem 1.6rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px 100px 12px 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    animation: roadFade 0.9s ease forwards;
}

.road-step:nth-child(2) { animation-delay: 0.18s; }
.road-step:nth-child(3) { animation-delay: 0.36s; }
.road-step:nth-child(4) { animation-delay: 0.54s; }

@keyframes roadFade {
    to { opacity: 1; transform: translateY(0); }
}

.road-icon {
    position: absolute;
    top: 1.1rem;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translateX(-50%);
}

.road-step.sprout .road-icon::before {
    content: '';
    position: absolute;
    inset: 20px 18px 2px;
    background: #5fb75f;
    border-radius: 50% 50% 4px 4px;
}

.road-step.sprout .road-icon::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    width: 36px;
    height: 25px;
    border-radius: 50% 0 50% 0;
    border: 2px solid #8bd680;
    transform: rotate(-18deg);
}

.road-step.leaf .road-icon,
.road-step.flower .road-icon {
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, #9edc8f, #3d8a45);
    transform: translateX(-50%) rotate(-18deg);
}

.road-step.flower .road-icon {
    background: radial-gradient(circle at center, #f9e29b 0 22%, #e8b6d3 23% 52%, transparent 53%);
    transform: translateX(-50%);
}

.road-step.fruit .road-icon {
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 34%, #fff8 0 10%, transparent 11%),
        repeating-linear-gradient(90deg, #1e8d46 0 7px, #0d6c37 7px 14px);
    border: 2px solid #86c46c;
}

.road-step h3,
.info-card h2 {
    color: var(--color-gold-light);
    font-size: 1.12rem;
    line-height: 1.7;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-bottom: 1rem;
}

.road-step p,
.info-card p,
.letter-paper p {
    color: var(--color-text-muted);
    line-height: 2;
    letter-spacing: 0.05em;
}

.letter-paper h2 {
    color: #4b321f;
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.letter-paper p {
    color: #443524;
    font-size: 1.12rem;
}

.card-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-card {
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(135deg, #ffffff08, transparent 42%),
        var(--card-bg);
    border-radius: 6px;
    padding: 2.2rem;
    min-height: 260px;
    box-shadow: 0 14px 34px #000;
    transition: transform 0.45s ease, border-color 0.45s ease, opacity 0.8s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-dark);
}

.info-card.wide {
    grid-column: 1 / -1;
    min-height: auto;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}

.page-transition.is-closing,
.page-transition.is-opening {
    opacity: 1;
    visibility: visible;
}

.page-transition .crt-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 2px;
    background: #fffbe5;
    border-radius: 999px;
    box-shadow: 0 0 12px #fff, 0 0 32px #f9e29b, 0 0 58px #d4af37;
    transform: translate(-50%, -50%) scaleX(0);
    transform-origin: center;
    pointer-events: none;
}

.page-transition.is-closing .crt-line {
    animation: crtLineClose 0.34s cubic-bezier(0.72, 0, 0.24, 1) forwards;
}

.page-transition.is-opening .crt-line {
    animation: crtLineOpen 0.32s cubic-bezier(0.24, 0.72, 0.18, 1) forwards;
}

body.crt-closing #main-content,
body.crt-closing .site-header {
    animation: pageCollapse 0.34s cubic-bezier(0.72, 0, 0.24, 1) forwards;
    transform-origin: center;
}

body.crt-opening #main-content,
body.crt-opening .site-header {
    animation: pageExpand 0.32s cubic-bezier(0.24, 0.72, 0.18, 1) forwards;
    transform-origin: center;
}

@keyframes pageCollapse {
    0% { transform: scaleY(1); opacity: 1; filter: brightness(1); }
    72% { transform: scaleY(0.025); opacity: 0.92; filter: brightness(1.35); }
    100% { transform: scaleY(0.002); opacity: 0; filter: brightness(2); }
}

@keyframes pageExpand {
    0% { transform: scaleY(0.002); opacity: 0; filter: brightness(2); }
    34% { transform: scaleY(0.025); opacity: 0.88; filter: brightness(1.35); }
    100% { transform: scaleY(1); opacity: 1; filter: brightness(1); }
}

@keyframes crtLineClose {
    0% { transform: translate(-50%, -50%) scaleX(1); opacity: 0; }
    12% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scaleX(0); opacity: 1; }
}

@keyframes crtLineOpen {
    0% { transform: translate(-50%, -50%) scaleX(0); opacity: 1; }
    72% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scaleX(1); opacity: 0; }
}

/* Footer info */
.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: left;
    margin-bottom: 4rem;
    padding: 4rem 0;
    border-top: 1px solid #1a1509;
}

.footer-col h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Footers and SNS Banners */
.sns-banners {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.sns-banner-link {
    display: block;
    width: 150px;
    height: 45px;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
    border: 1px solid var(--glass-border);
}

.sns-banner-link:hover {
    transform: translateY(-5px);
}

.sns-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll to Top Button */
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: #000;
    border: none;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px #000;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    background: var(--color-gold-light);
}

/* Page Specific Overrides */
.visible .anim-fade-up, .visible .anim-scale-in {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
        --spacing-section: 6rem;
    }

    .site-header {
        display: flex;
        position: fixed;
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: var(--nav-height);
        z-index: 1000;
        background: linear-gradient(180deg, #050807f2, #05080799);
        padding: 0 1rem;
        overflow: visible;
        justify-content: center;
        border-top: 0;
        border-bottom: 1px solid #4a3d164f;
        backdrop-filter: blur(8px);
    }

    .site-header.scrolled {
        display: flex;
        height: var(--nav-height);
        background: linear-gradient(180deg, #020403f7, #020403b8);
    }

    .nav-container {
        justify-content: space-between;
        max-width: none;
    }

    .mobile-top-button {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--glass-border);
        border-radius: 4px;
        background: #050807;
        color: var(--color-gold-light);
        cursor: pointer;
        font: inherit;
    }

    .mobile-top-button::before {
        content: '';
        width: 11px;
        height: 11px;
        border-top: 1px solid currentColor;
        border-left: 1px solid currentColor;
        transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
        flex: 0 0 auto;
    }

    .nav-list {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        min-width: 0;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        padding: 0.35rem 1rem 1rem;
        background:
            linear-gradient(135deg, #061535f7, #020817f5 55%, #050807f7);
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .site-header.menu-open .nav-list {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list li {
        border-bottom: 1px solid #d9c06a25;
    }

    .nav-list li:last-child {
        border-bottom: 0;
    }

    .nav-list .nav-item-top {
        display: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        height: auto;
        border-left: 0;
        padding: 1rem 0.65rem;
        font-size: 0.9rem;
        letter-spacing: 0;
        white-space: nowrap;
        color: #fffaf0;
        text-align: left;
        overflow: visible;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-arrow {
        flex: 0 0 auto;
        width: 1.5rem;
        color: var(--color-gold-light);
        font-size: 1rem;
        line-height: 1;
        text-align: right;
        transition: transform 0.25s ease;
    }

    .nav-link:hover .nav-link-arrow,
    .nav-link:focus-visible .nav-link-arrow {
        transform: translateX(4px);
    }

    .site-wrapper {
        padding: calc(var(--nav-height) + 2rem) 1.2rem 3rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 3rem;
        margin-bottom: 4rem;
    }

    .main-title {
        font-size: clamp(2rem, 10vw, 2.7rem);
        letter-spacing: 0.12em;
        overflow-wrap: anywhere;
    }

    .section-title {
        font-size: 1.45rem;
        letter-spacing: 0.08em;
    }

    .subtitle,
    .section-text,
    .hero-copy p,
    .story-block p,
    .article-grid p,
    .feature-list p,
    .timeline-list p,
    .faq-list p {
        font-size: 0.95rem;
        line-height: 2;
        letter-spacing: 0.03em;
    }

    .image-wrapper {
        height: 320px;
    }

    .jump-grid,
    .article-grid,
    .article-grid.three-col,
    .feature-list,
    .voice-grid,
    .image-text,
    .recommend-box ul,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .jump-grid {
        gap: 0.75rem;
    }

    .jump-grid a {
        min-height: 96px;
        padding: 1.2rem 1.4rem;
        font-size: 1rem;
    }

    .article-grid article,
    .feature-list article,
    .timeline-list article,
    .recommend-box,
    .faq-list summary,
    .voice-grid blockquote {
        padding: 1.4rem;
    }

    .timeline-list article {
        grid-template-columns: 1fr;
    }

    .timeline-list span {
        grid-row: auto;
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .compact-image {
        height: 300px;
    }

    .contact-container {
        padding: 2rem 1.2rem;
    }

    .home-hero {
        min-height: 34vh;
    }

    .handwritten-panel {
        min-height: 460px;
        margin-bottom: 5rem;
    }

    .handwritten-copy {
        padding: 1.4rem;
        font-size: 1.08rem;
        line-height: 2;
    }

    .typewriter-paper,
    .letter-paper {
        padding: 2rem 1.2rem 2rem 1.6rem;
        background:
            linear-gradient(90deg, #f6e4d3 0 1px, transparent 1px) 2.4rem 0 / 1px 100% no-repeat,
            repeating-linear-gradient(#fff8ea, #fff8ea 35px, #eadbc3 36px);
    }

    .typewriter-text,
    .letter-paper p {
        font-size: 1rem;
    }

    .watermelon-roadmap,
    .card-page-grid {
        grid-template-columns: 1fr;
    }

    .watermelon-roadmap::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(#695c28, var(--color-gold), #276c39);
    }

    .road-step {
        border-radius: 58px 58px 10px 10px;
        padding: 5.8rem 1.2rem 1.5rem;
    }

    .info-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .footer-info {
        gap: 2rem;
        text-align: center;
    }

    .sns-banners {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .page-border { padding: 10px; }
}

/* Consolidated navigation and motion-led home page */
:root {
    --motion-blur: 0px;
    --motion-dim: 0.18;
}

.home-motion-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #050807;
    pointer-events: none;
}

.home-motion-background picture,
.home-motion-background img,
.home-motion-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-motion-background img {
    object-fit: cover;
    object-position: center;
    filter: blur(var(--motion-blur)) saturate(0.9) brightness(0.82);
    transform: scale(1.08);
    animation: farmMotion 18s ease-in-out infinite alternate;
    transition: filter 0.18s linear;
    will-change: transform, filter;
}

.home-motion-shade {
    background: linear-gradient(180deg, rgb(2 5 4 / 0.26), rgb(2 5 4 / var(--motion-dim)) 55%, #050807 100%);
    transition: background 0.18s linear;
}

@keyframes farmMotion {
    0% { transform: scale(1.08) translate3d(-1.5%, -0.5%, 0); }
    50% { transform: scale(1.14) translate3d(1%, 0.5%, 0); }
    100% { transform: scale(1.1) translate3d(1.5%, -1%, 0); }
}

.home-page #main-content,
.home-page .site-wrapper {
    background: transparent;
}

.home-wrapper {
    max-width: 1080px;
    padding-top: 0;
}

.home-hero {
    min-height: calc(100svh - var(--nav-height));
    margin-bottom: 0;
    align-items: center;
    position: relative;
}

.hero-eyebrow,
.section-kicker {
    color: var(--color-gold-light);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.home-title {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 3px 22px #000;
}

.home-hero .subtitle {
    text-shadow: 0 2px 12px #000;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #f9e29b99;
    border-radius: 50%;
}

.hero-scroll span {
    width: 9px;
    height: 9px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-2px) rotate(45deg);
    animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
    50% { transform: translateY(4px) rotate(45deg); }
}

.home-intro {
    max-width: 920px;
    margin: 0 auto 7rem;
    padding: 4rem 2rem;
    border-top: 1px solid #d4af3750;
    border-bottom: 1px solid #d4af3750;
    background: rgb(5 8 7 / 0.62);
    backdrop-filter: blur(1px);
}

.home-intro p {
    margin: 0 auto 1.3rem;
    color: #f6f2e8;
    font-size: 1.25rem;
    line-height: 2.1;
}

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

.home-link-stack {
    display: grid;
    gap: 1rem;
    margin-bottom: 8rem;
    scroll-margin-top: 2rem;
}

.home-link-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 44px;
    align-items: center;
    min-height: 132px;
    padding: 1.5rem 2rem;
    border: 1px solid #d4af375c;
    border-radius: 4px;
    background: rgb(5 12 11 / 0.88);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    overflow: hidden;
}

.home-link-card:hover,
.home-link-card:focus-visible {
    transform: translateX(10px);
    border-color: var(--color-gold-light);
    background: rgb(11 24 20 / 0.95);
}

.home-link-number {
    color: var(--color-gold);
    font-size: 0.76rem;
}

.home-link-copy {
    display: grid;
    gap: 0.45rem;
}

.home-link-copy strong {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
}

.home-link-copy small {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.home-link-arrow {
    color: var(--color-gold-light);
    font-size: 1.4rem;
    transition: transform 0.35s ease;
}

.home-link-card:hover .home-link-arrow,
.home-link-card:focus-visible .home-link-arrow { transform: translateX(8px); }

.home-footer {
    padding: 2rem;
    background: rgb(5 8 7 / 0.82);
    backdrop-filter: blur(12px);
}

.merged-section {
    padding-top: 7rem;
    border-top: 1px solid #d4af3740;
}

.section-heading-block {
    max-width: 760px;
    margin: 0 auto 4rem;
}

@media (max-width: 768px) {
    .home-wrapper {
        padding-top: var(--nav-height);
    }

    .home-hero {
        min-height: calc(100svh - var(--nav-height));
    }

    .home-title {
        width: 100%;
        font-size: 1.7rem;
        line-height: 1.2;
        letter-spacing: 0;
        white-space: nowrap;
        overflow-wrap: normal;
    }

    .home-hero .subtitle {
        max-width: 290px;
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .home-intro {
        margin-bottom: 4rem;
        padding: 2.2rem 1.1rem;
    }

    .home-intro p { font-size: 0.92rem; }

    .home-link-stack {
        gap: 0.7rem;
        margin-bottom: 5rem;
    }

    .home-link-card {
        grid-template-columns: 34px minmax(0, 1fr) 24px;
        min-height: 104px;
        padding: 1rem 0.9rem;
    }

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

    .home-link-copy strong {
        font-size: 1.08rem;
        line-height: 1.5;
    }

    .home-link-copy small {
        font-size: 0.72rem;
        line-height: 1.6;
    }

    .home-link-arrow { font-size: 1rem; }

    .home-footer { padding: 1rem; }

    .merged-section {
        padding-top: 5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-motion-background img,
    .hero-scroll span {
        animation: none;
    }
}

/* 2026-07-05 editorial home sections */
.home-intro-lead {
    color: var(--color-gold-light) !important;
    font-size: clamp(1.35rem, 2.4vw, 2rem) !important;
    font-weight: 500;
    line-height: 1.6 !important;
}

.home-story-list {
    position: relative;
    width: 100%;
    margin-bottom: 8rem;
    background: rgb(5 8 7 / 0.72);
    backdrop-filter: blur(14px);
}

.home-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7.5rem);
    width: min(calc(100% - 4rem), 1180px);
    min-height: 760px;
    margin: 0 auto;
    padding: 7rem 0;
    border-top: 1px solid rgb(212 175 55 / 0.28);
}

.home-story.is-reverse {
    grid-template-columns: minmax(340px, 1.1fr) minmax(0, 0.9fr);
}

.home-story-copy {
    position: relative;
    z-index: 1;
}

.home-story-number {
    margin: 0 0 1.4rem !important;
    color: var(--color-gold) !important;
    font-size: 0.76rem !important;
    letter-spacing: 0;
}

.home-story h2 {
    margin: 0 0 2.2rem;
    color: #fff;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0;
}

.home-story-copy > p:not(.home-story-number) {
    margin: 0 0 1.3rem;
    color: #eeeae1;
    font-size: 1rem;
    line-height: 2.05;
}

.home-story-media {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #101712;
}

.home-story-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgb(249 226 155 / 0.24);
    pointer-events: none;
}

.home-story-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.home-story:hover .home-story-media img {
    transform: scale(1.035);
    filter: saturate(1.06);
}

.home-story-link {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    min-height: 48px;
    margin-top: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--color-gold);
    color: var(--color-gold-light);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.home-story-link:hover,
.home-story-link:focus-visible {
    gap: 1.7rem;
    color: #fff;
}

.home-story-list + .home-link-stack {
    margin-top: 0;
}

@media (max-width: 768px) {
    .home-story-list {
        margin-bottom: 5rem;
    }

    .home-story,
    .home-story.is-reverse {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        width: min(calc(100% - 1.5rem), 600px);
        min-height: 0;
        padding: 4.5rem 0;
    }

    .home-story-media {
        grid-row: 1;
        aspect-ratio: 5 / 4;
    }

    .home-story-copy {
        grid-row: 2;
    }

    .home-story h2 {
        margin-bottom: 1.5rem;
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }

    .home-story-copy > p:not(.home-story-number) {
        font-size: 0.94rem;
        line-height: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-story-media img,
    .home-story-link {
        transition: none;
    }
}

/* 2026-07-04 home visual and interaction update */
.home-page .home-motion-background img {
    object-position: center center;
    filter: blur(var(--motion-blur)) saturate(1.04) brightness(0.9);
    transform: scale(1.055);
    animation: homeWatermelonDrift 16s ease-in-out infinite alternate;
}

@keyframes homeWatermelonDrift {
    from { transform: scale(1.055) translate3d(-0.7%, 0, 0); }
    to { transform: scale(1.095) translate3d(0.7%, -0.5%, 0); }
}

.home-page .home-motion-shade {
    background:
        linear-gradient(180deg, rgb(2 7 12 / 0.05) 0%, rgb(2 7 12 / 0.12) 58%, rgb(3 7 8 / var(--motion-dim)) 78%, #050807 100%);
}

.home-wrapper {
    width: 100%;
    max-width: none;
    padding-inline: 0;
}

.home-hero {
    width: min(100%, 1600px);
    min-height: calc(100svh - var(--nav-height));
    margin-inline: auto;
    padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 5vw, 5rem);
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.home-title {
    display: grid;
    gap: 0;
    margin: 0;
    color: #fff;
    font-size: clamp(5rem, 11.5vw, 11rem);
    font-weight: 500;
    line-height: 0.83;
    letter-spacing: 0;
    white-space: normal;
    text-shadow: 0 3px 28px rgb(0 24 53 / 0.22);
}

.home-title span {
    display: block;
}

.home-hero .subtitle {
    position: absolute;
    left: clamp(1.4rem, 5.4vw, 5.4rem);
    bottom: clamp(5.6rem, 11vh, 8rem);
    margin: 0;
    color: #fff;
    font-size: clamp(1.25rem, 2.7vw, 2.4rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: left;
    text-shadow: 0 2px 18px rgb(0 24 53 / 0.32);
}

.hero-scroll {
    right: clamp(1.3rem, 4vw, 4rem);
    bottom: 2rem;
}

.home-intro,
.home-film,
.home-link-stack,
.home-footer {
    width: min(calc(100% - 3rem), 1080px);
    margin-inline: auto;
}

.home-intro {
    scroll-margin-top: 3rem;
    margin-bottom: 3.5rem;
}

.home-film {
    position: relative;
    margin-bottom: 7rem;
    overflow: hidden;
    border: 1px solid rgb(249 226 155 / 0.32);
    background: #020403;
    box-shadow: 0 24px 60px rgb(0 0 0 / 0.42);
}

.scroll-focus-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #020403;
}

.home-link-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 74px;
    color: var(--color-gold-light);
    overflow: hidden;
}

.home-link-action span {
    position: absolute;
    right: 1.7rem;
    font-size: 0.72rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.28s ease, transform 0.35s ease;
}

.home-link-action b {
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.35s ease;
}

.home-link-card {
    grid-template-columns: 64px minmax(0, 1fr) 74px;
}

.home-link-card:hover .home-link-action span,
.home-link-card:focus-visible .home-link-action span {
    opacity: 1;
    transform: translateX(0);
}

.home-link-card:hover .home-link-action b,
.home-link-card:focus-visible .home-link-action b {
    transform: translateX(8px);
}

body.page-arriving #main-content,
body.page-arriving .site-header {
    animation: pageSoftFade 0.46s ease-out both;
}

@keyframes pageSoftFade {
    from { opacity: 0; filter: brightness(0.82); }
    to { opacity: 1; filter: brightness(1); }
}

@media (max-width: 768px) {
    .home-page .home-motion-background img {
        object-position: center center;
        transform: scaleX(-1) scale(1.06);
        animation: none;
    }

    .home-wrapper {
        padding-top: var(--nav-height);
    }

    .home-hero {
        min-height: calc(100svh - var(--nav-height));
        padding: 1.6rem 1rem;
    }

    .home-title {
        width: auto;
        margin-left: clamp(3.8rem, 18vw, 5rem);
        font-size: clamp(3.4rem, 15.8vw, 5rem);
        line-height: 0.98;
        white-space: normal;
    }

    .home-hero .subtitle {
        left: clamp(4.8rem, 22vw, 6.5rem);
        right: 0.9rem;
        bottom: 19vh;
        max-width: none;
        font-size: clamp(1rem, 4.5vw, 1.35rem);
        line-height: 1.55;
    }

    .hero-scroll {
        right: 1rem;
        bottom: 1.2rem;
    }

    .home-intro,
    .home-film,
    .home-link-stack,
    .home-footer {
        width: min(calc(100% - 1.5rem), 1080px);
    }

    .home-film {
        margin-bottom: 4.5rem;
    }

    .scroll-focus-video {
        aspect-ratio: 4 / 5;
    }

    .home-link-card {
        grid-template-columns: 34px minmax(0, 1fr) 48px;
    }

    .home-link-action {
        width: 48px;
    }

    .home-link-action span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .home-motion-background img,
    body.page-arriving #main-content,
    body.page-arriving .site-header,
    .home-link-action span,
    .home-link-action b {
        animation: none;
        transition: none;
    }
}
