@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Noto+Serif+JP:wght@400;700&family=Outfit:wght@300;400;700&display=swap');

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

:root {
    /* Colors */
    --color-bg-dark: #16110E;
    /* Base dark from feedback */
    --color-bg-header: #031D17;
    --color-main-gold: #B08F4F;
    --color-bg-list: #3E3332;
    --color-text-white: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border: rgba(176, 143, 79, 0.3);

    /* Typography */
    --font-serif: "Noto Serif JP", serif;
    --font-heading: "Noto Serif JP", serif;
    /* Consistent use of Noto Serif JP */
    --font-sans: "Noto Serif JP", serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 240px;
}

@media (max-width: 768px) {
    :root {
        --header-height: 140px;
        --spacing-xl: 4rem;
    }
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 400;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.uppercase {
    text-transform: uppercase;
}

.letter-spacing {
    letter-spacing: 0.3em;
}

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

.font-gold {
    color: var(--color-main-gold);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-bg-header);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    transition: all 0.3s ease;
}

/* Section Anchor Spacing for Smooth Scroll */
section[id] {
    scroll-margin-top: 120px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 80px;
    }
}

.site-header.scrolled {
    height: 200px;
    background-color: rgba(3, 29, 23, 0.95);
}

.site-header.scrolled .main-nav {
    background-color: rgba(3, 29, 23, 0.95);
}

@media (max-width: 768px) {
    .site-header.scrolled {
        height: 80px !important;
    }

    .parallax-divider {
        height: 120px !important;
        background-size: cover;
    }

    .site-header.scrolled .header-logo img {
        height: 60px !important;
    }

    .site-header.scrolled .menu-toggle {
        top: 50%;
        transform: translateY(-50%);
    }
}

.header-logo {
    margin-bottom: 2rem;
}

.header-logo img {
    height: 120px;
    width: 160px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-white);
}

.main-nav a:hover {
    color: var(--color-gold);
}

/* Burger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-main-gold);
    transition: all 0.3s ease;
}

/* Header Responsive */
@media (max-width: 768px) {
    .site-header {
        height: var(--header-height);
        padding: 0;
        flex-direction: row;
        justify-content: center;
    }

    .header-logo {
        margin-bottom: 0;
    }

    .header-logo img {
        height: 128px !important;
        width: auto !important;
        max-height: none !important;
    }

    .menu-toggle {
        display: flex;
        top: 30px;
        transform: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-bg-header);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    /* Burger Menu Active State */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Footer */
.site-footer {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: #B08F4F;
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 120px;
    margin: 0 auto;
}

.footer-nav ul {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
    margin-bottom: 1rem;
    list-style: none;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    color: #B08F4F;
}

.footer-nav .sep {
    color: var(--color-main-gold);
    opacity: 0.5;
    font-size: 0.8rem;
}

.copyright {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: #B08F4F;
    letter-spacing: 0.1em;
    border-top: 1px solid rgba(176, 143, 79, 0.3);
    padding-top: 2rem;
}

main {
    padding-top: var(--header-height);
}

/* Hero Area */
.hero {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    background-color: var(--color-bg-dark);
    background-image: linear-gradient(rgba(22, 17, 14, 0.4), rgba(22, 17, 14, 0.4)), url('../img/hero_top.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(rgba(22, 17, 14, 0.4), rgba(22, 17, 14, 0.4)), url('../img/hero_top.jpg');
        /* Using same image but could support hero_top@2x.jpg if needed via image-set */
        height: auto;
        min-height: 800px;
        padding-bottom: 4rem;
    }

    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
        .hero {
            background-image: linear-gradient(rgba(22, 17, 14, 0.4), rgba(22, 17, 14, 0.4)), url('../img/hero_top@2x.jpg');
        }
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    font-size: 32px;
    color: #fff;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.hero-main-title {
    font-size: 58px;
    color: var(--color-main-gold);
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
}

/* SP-only utility class */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

.hero-description {
    font-size: 30px;
    color: #fff;
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    gap: 35px;
    letter-spacing: 0.05em;
}

.hero-description::before,
.hero-description::after {
    content: "";
    width: 35px;
    height: 1px;
    background-color: #fff;
}

/* Remove old hero styles */
.hero-sub,
.hero-tagline,
.hero-desc-fr,
.hero-copy-ja {
    display: none;
}

/* News Section */
.news {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-xl) 0;
}

.news .section-header .section-title,
.news .section-header .section-en {
    color: var(--color-main-gold);
}

.title-border {
    width: 60px;
    height: 5px;
    background-color: #E7DDCA;
    margin: 1.5rem auto 0;
}

.news-list {
    max-width: 1000px;
    margin: 4rem auto 0;
}

.news-item {
    background-color: var(--color-bg-list);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.news-link-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 3rem;
    color: #fff;
    text-decoration: none;
    width: 100%;
}

.news-item:first-child {
    border-left: 8px solid var(--color-main-gold);
}

.news-item:first-child .news-link-wrapper {
    padding-left: calc(3rem - 8px);
}

.news-item:hover {
    transform: translateX(10px);
}

.news-date {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    min-width: 120px;
}

.news-content-box {
    flex: 1;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.news-content {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    opacity: 0.9;
}

.news-link {
    display: block;
    color: #fff;
}

.news-link:hover {
    opacity: 0.8;
    color: #fff;
}

/* About (Our Story) */
.about {
    padding: var(--spacing-xl) 0;
    background-color: #031D17;
    color: var(--color-main-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: flex-start;
}

.about-main-title {
    font-size: 32px;
    line-height: 1.5;
    color: var(--color-main-gold);
    margin-bottom: 4rem;
    font-family: var(--font-serif);
}

.about-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: inherit;
    font-family: var(--font-serif);
}

.about-note {
    font-size: 14px !important;
    opacity: 0.8;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.image-row img {
    width: 100%;
    height: auto;
    display: block;
}

.bold {
    font-weight: 700;
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.about .section-header,
.history .section-header,
.access .section-header,
.page-hero {
    background-image: linear-gradient(rgba(2, 37, 29, 0.5), rgba(2, 37, 29, 0.5)), url('../img/hero_privacy.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.page-hero-label {
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.3em;
    font-family: var(--font-sans);
}

/* Page Hero - PC */
.page-hero-title {
    font-size: 72px;
    margin: 0.5rem 0;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
}

.page-hero-sub {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
    position: relative;
}

.page-hero-sub::before,
.page-hero-sub::after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

.page-hero-sub::before {
    position: absolute;
    top: 50%;
    left: -80px;
}

.page-hero-sub::after {
    position: absolute;
    top: 50%;
    right: -80px;
}


/* Page Hero - SP */
@media (max-width: 768px) {
    .page-hero {
        background-image: linear-gradient(rgba(2, 37, 29, 0.5), rgba(2, 37, 29, 0.5)), url('../img/hero_privacy.jpg');
        height: 300px;
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .page-hero-content {
        width: 100%;
    }

    .page-hero-label {
        font-size: 14px;
    }

    .page-hero-title {
        font-size: 42px;
        margin: 0.3rem 0;
    }

    .page-hero-sub {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1rem;
        font-size: 14px;
    }

    .page-hero-sub .sep {
        display: none;
    }

    .page-hero-sub a,
    .page-hero-sub>span:not(.sep) {
        flex-basis: 100%;
        text-align: center;
    }

    .page-hero-sub::before,
    .page-hero-sub::after {
        content: "";
        width: 40px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.6);
    }

    .page-hero-sub::before {
        position: absolute;
        top: 50%;
        left: 0;
    }

    .page-hero-sub::after {
        position: absolute;
        top: 50%;
        right: 0;
    }


    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
        .page-hero {
            background-image: linear-gradient(rgba(2, 37, 29, 0.5), rgba(2, 37, 29, 0.5)), url('../img/hero_privacy@2x.jpg');
        }
    }
}

.section-en {
    font-size: 20px;
    color: var(--color-main-gold);
    letter-spacing: 0.15em;
    font-weight: 400;
}

.section-title {
    font-size: 40px;
    color: var(--color-main-gold);
    margin: 0;
    line-height: 1.2;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Pralines & Chocolate Bar Common Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: var(--spacing-lg);
}

.bars-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    text-align: center;
    padding: 3rem;
    background-color: var(--color-bg-list);
    /* Consistent with news list item bg */
    border: 1px solid var(--color-border);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

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

.product-image {
    width: 100%;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
}

.description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price {
    color: var(--color-main-gold);
    font-weight: 500;
    font-size: 1.3rem;
}

.tax {
    font-size: 0.75rem;
    margin-left: 0.3rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

/* Spec Table for Chocolate Bar */
.spec-table {
    width: 100%;
    margin: 2rem 0;
    font-size: 0.8rem;
    border-collapse: collapse;
    font-family: var(--font-sans);
}

.spec-table th,
.spec-table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
}

.spec-table th {
    text-align: left;
    color: var(--color-text-muted);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.spec-table td {
    text-align: right;
    color: var(--color-text-white);
    font-weight: 400;
}

/* Mini Chocolate Bar */
/* Mini Chocolate Bar Section Refinement */
.minibars {
    background-color: #031D17;
}

.minibar-list-v2 {
    max-width: 1000px;
    margin: 6rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.minibar-row {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.minibar-row.reverse {
    flex-direction: row-reverse;
}

.minibar-image {
    flex: 1.2;
}

.minibar-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.minibar-info {
    flex: 1;
}

.minibar-name {
    font-size: 20px;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.minibar-details {
    list-style: none;
    padding: 0;
}

.minibar-details li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-main-gold);
    opacity: 0.9;
}


/* Pralines Section Refinement */
.pralines {
    background-color: #031D17;
    background-image: url('../img/bg_pralines_1.png'), url('../img/bg_pralines_2.png');
    background-position: calc(100% + 20px) 50px, left bottom;
    background-repeat: no-repeat;
    background-size: 500px auto;
    color: var(--color-main-gold);
}

.pralines-header-img {
    margin: 4rem auto 0;
    max-width: 800px;
}

.pralines-header-img img {
    width: 100%;
    height: auto;
}

.pralines-list {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-bottom: 5rem;
}

.praline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.praline-item.reverse {
    flex-direction: row-reverse;
}

.praline-image {
    flex: 1;
    max-width: 550px;
}

.praline-image img {
    width: 100%;
    height: auto;
}

.praline-info {
    flex: 1;
    max-width: 450px;
    text-align: left;
}

.praline-en {
    font-size: 18px;
    font-family: var(--font-sans);
}

.praline-jp {
    font-size: 18px;
    color: var(--color-main-gold);
    margin-bottom: 0;
    font-family: var(--font-serif);
    font-weight: 500;
}

.praline-desc {
    font-size: 12px;
    color: var(--color-main-gold);
    line-height: 2;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.praline-price {
    font-size: 24px;
    color: var(--color-main-gold);
    font-weight: 700;
}


/* Chocolate Bar Section Overhaul */
.chocolate-bars {
    background-color: #031D17;
    background-image: url('../img/bg_chocolate_1.png'), url('../img/bg_chocolate_2.png');
    background-position: left top, right bottom;
    background-repeat: no-repeat;
    background-size: 500px auto;
    color: var(--color-main-gold);
}

.bars-description-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 6rem auto 10rem;
    padding: 0 2rem;
}

.bars-desc-image {
    flex: 1.2;
}

.bars-desc-image img {
    width: 100%;
    height: auto;
}

.bars-desc-text {
    flex: 1;
}

.bars-desc-text h3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.bars-desc-text p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--color-main-gold);
    opacity: 0.9;
}

.bars-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 10rem;
}

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

.bar-image {
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.bar-item:hover .bar-image {
    transform: translateY(-10px);
}

.bar-image img {
    width: 100%;
    height: auto;
}

.bar-info {
    padding: 0 1rem;
}

.bar-name {
    font-size: 16px;
    color: var(--color-main-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-price {
    font-size: 16px;
    color: var(--color-main-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.bar-origin {
    font-size: 12px;
    color: var(--color-main-gold);
    margin-bottom: 0.5rem;
}

.bar-note {
    font-size: 11px;
    color: var(--color-main-gold);
    line-height: 1.6;
    opacity: 0.8;
}

/* History & Concept */
.history {
    background-image: linear-gradient(rgba(2, 37, 29, 0.6), rgba(2, 37, 29, 0.6)), url('../img/pallax-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.history .section-header {
    margin-bottom: 3rem;
}

.history .section-header h2,
.history .section-header p {
    color: var(--color-gold);
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

.history-content h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text-white);
}

/* Access Section */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.shop-info {
    margin-top: 2.5rem;
}

.shop-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.shop-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.access-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.page-template .site-header {
    background-color: #031D17;
}

.page-header {
    border-bottom: 1px solid rgba(169, 139, 80, 0.2);
}

.page-title {
    font-size: 2.5rem;
    margin-top: 1rem;
}

/* Company Profile */
.company-profile {
    background-color: rgba(255, 255, 255, 0.02);
}

.company-name {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
}

.company-address {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* Privacy Content */
.privacy-content {
    background-color: #031D17;
    color: #B08F4F;
    position: relative;
}

.privacy-decoration {
    position: absolute;
    top: -10%;
    left: 0;
    width: 500px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 9999;
}

.narrow-container {
    max-width: 800px;
}

.policy-intro {
    margin-bottom: 3rem;
    line-height: 2;
}

.policy-item {
    margin-bottom: 4rem;
}

.policy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #B08F4F;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.policy-item p {
    line-height: 2;
}

.policy-item ul {
    margin-top: 1rem;
    list-style-type: disc;
    padding-left: 1.5rem;
}

.policy-item li {
    margin-bottom: 0.8rem;
    color: #B08F4F;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-gold {
    background-color: var(--color-text-gold);
    color: var(--color-bg-dark);
    font-weight: 700;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--color-text-gold);
    border-color: var(--color-text-gold);
    opacity: 1;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .header-logo img {
        height: 40px;
    }

    .main-nav ul {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
    }

    .container {
        padding: 0 20px;
    }

    .section-en {
        font-size: 18px;
        font-weight: 700;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-label {
        font-size: 20px;
    }

    .hero-main-title {
        font-size: 54px;
        line-height: 60px;
    }

    .hero-description {
        font-size: 24px;
        line-height: 30px;
        gap: 20px;
    }

    .hero-description::before,
    .hero-description::after {
        content: "";
        width: 25px;
        height: 1px;
        background-color: #fff;
        display: block;
    }

    .news-link-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem;
    }

    .news-item:first-child .news-link-wrapper {
        padding-left: calc(2rem - 8px);
    }

    .news-date {
        font-size: 12px;
        text-align: left;
    }

    .news-content-box {
        flex: 1;
    }

    .news-title {
        font-size: 18px;
        margin-bottom: 0.5rem;
    }

    .news-content {
        font-size: 14px;
        line-height: 22px;
    }

    .about-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-main-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 2rem;
    }

    .about-content p {
        font-size: 15px !important;
        line-height: 28px !important;
    }

    .praline-item,
    .praline-item.reverse {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .praline-image {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .praline-image img {
        width: 70% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .praline-info {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .praline-en {
        font-size: 18px;
        line-height: 30px;
    }

    .praline-jp {
        font-size: 30px;
        line-height: 60px;
    }

    .bars-description-block {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .bars-grid-v2 {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .bar-item {
        max-width: 50%;
        margin: 0 auto;
        text-align: center;
    }

    .bar-image img {
        height: 300px;
        object-fit: contain;
        width: 100%;
    }

    .minibar-row,
    .minibar-row.reverse {
        flex-direction: column;
        gap: 4rem;
        align-items: center;
    }

    .minibar-info {
        text-align: left;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-inquiry {
        min-width: 100%;
        padding: 1.2rem 2rem;
    }
}

/* Parallax Divider */
.parallax-divider {
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.divider-1 {
    background-image: url('../img/pallax-1.jpg');
}

.divider-2 {
    background-image: url('../img/pallax-2.jpg');
}

.divider-3 {
    background-image: url('../img/pallax-3.jpg');
}

/* Company Profile Section */
.company-profile {
    background-color: var(--color-bg-dark);
    position: relative;
    /* overflow: hidden; */
}

.company-profile::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0px;
    width: 600px;
    height: 800px;
    background: url('../img/bg_company_1.png') no-repeat;
    background-size: contain;
    background-position: top right;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.company-profile::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -50px;
    width: 600px;
    height: 800px;
    background: url('../img/bg_company_2.png') no-repeat;
    background-size: contain;
    background-position: left center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 10;
}

.company-visual {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.company-visual img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.company-info {
    margin-bottom: 4rem;
}

.company-text {
    font-size: 1.1rem;
    color: var(--color-main-gold);
    margin-bottom: 0.5rem;
}

.company-action {
    display: flex;
    justify-content: center;
}

.btn-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #B08F4F;
    color: #fff;
    padding: 1.2rem 4rem;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    transition: background-color 0.3s ease;
    min-width: 300px;
}

.btn-inquiry:hover {
    background-color: #9c7d42;
}

.icon-mail {
    display: inline-block;
    width: 20px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ========================================
   Scroll Fade-in Animations
   ======================================== */

/* Base state - hidden */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state - triggered by JS */
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-up.visible,
.fade-in-scale.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for child elements */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .fade-in-up,
    .fade-in-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}