:root {
    --accent-color: #af6565;
    --heading-color: #57575a;
    --text-color: #000000;
    --base-bg: #ffffff;
    --text-white: #ffffff;
    --sub-bg: #f8f8f8;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', 'Noto Sans JP', serif !important;
    color: var(--heading-color);
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    padding: 0 5%;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Custom UI Elements */
.btn-accent {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(175, 101, 101, 0.3);
}

/* Era Summary Header Style */
.era-summary-line {
    position: relative;
    padding-bottom: 2rem;
}

.era-summary-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
}

.era-summary-line span {
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.125rem;
}


.history-bg-text {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.15;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    /*color: var(--accent-color);*/
}

@media (max-width: 767px) {
    .history-bg-text {
        font-size: 3.5rem;
        top: -6rem;
    }
}

/* Timeline Center Line */
.timeline-wrapper {
    position: relative;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #e5e7eb;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .timeline-wrapper::before {
        left: 20px;
        transform: none;
    }

    .timeline-wrapper {
        padding-left: 32px;
    }
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border: 3px solid white;
}

@media (max-width: 767px) {
    .timeline-dot {
        left: -12px;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
    }

    .timeline-txt div {
        padding: 0 0 0 1rem;
    }
}

.img-overlay {
    position: relative;
    overflow: hidden;
}

/* Swiper Custom Styles */
.swiper-container-full {
    width: 100%;
    padding: 20px 0 60px;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s;
}

/* Voice Card Style (Compact) */
.voice-card {
    background-color: white;
    border-radius: 2px;
    padding: 1.25rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 3px solid var(--accent-color);
}

/**************************\
  MicroModal Styles
\**************************/

.modal {
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal__container {
    background-color: #fff;
    padding: 2rem;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
    width: 90%;
    position: relative;
}

.modal__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding-top: 0;
    width: fit-content;
}

.modal__close {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.modal__close:before {
    content: "\00d7";
    /* Multiplication sign */
    font-size: 2rem;
    line-height: 1;
    color: #333;
}

.modal__content {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

/* Animations */
.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

@media (max-width: 768px) {

    p.official-position-eng,
    span.official-position {
        min-height: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hamburger Menu Animation */
#menu-btn.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-btn.open div:nth-child(2) {
    opacity: 0;
}

#menu-btn.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

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

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

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

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.bg-white {
    background-color: #fff;
}

.bg-sub {
    background-color: var(--sub-bg);
}

/* =========================================
   Header & Navigation
   ================================********* */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        gap: 2rem;
        font-size: 0.875rem;
        font-weight: 500;
    }
}

.nav-link {
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hamburger & Mobile Menu */
.menu-btn {
    display: block;
    cursor: pointer;
    z-index: 50;
    background: none;
    border: none;
    outline: none;
}

@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
}

.menu-line {
    width: 34px;
    height: 2px;
    background-color: var(--heading-color);
    margin-bottom: 6px;
    transition: all 0.3s;
}

.menu-line:last-child {
    margin-bottom: 0;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: #ffffffdb;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s, transform 0.5s;
    top: 0;
    left: 20%;
    transform: translateX(100%);
    height: 100vh;
    width: 80%;
    backdrop-filter: blur(500px);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--accent-color);
}

/* =========================================
   Hero & Message Section
   ================================********* */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: white;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 12rem;
        padding-bottom: 10rem;
    }
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-logo-box {
    width: 8rem;
    padding: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-logo-box {
        width: 11rem;
    }
}

.greeting-text {
    color: var(--accent-color);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
}

@media (min-width: 768px) {
    .greeting-text {
        font-size: 1rem;
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.375;
    color: var(--heading-color);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 5rem;
    }
}

.profile-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    padding: 0 1em;
}

@media (min-width: 768px) {
    .profile-card-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .profile-card-container {
        gap: 0.5rem;
    }
}

.message-card {
    background-color: white;
    height: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    width: 100%;
    max-width: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .message-card {
        padding: 2rem;
    }
}

.message-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.profile-img-box {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border: 2px solid #f9fafb;
    background-color: #f9fafb;
    pointer-events: none;
}

@media (min-width: 768px) {
    .profile-img-box {
        width: 9rem;
        height: 9rem;
        margin-bottom: 1.5rem;
    }
}

.official-position-eng {
    font-size: 0.5rem;
    /* 8px */
    color: #9ca3af;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (min-width: 768px) {
    .official-position-eng {
        font-size: 0.75rem;
    }
}

.official-position {
    font-size: 0.5625rem;
    /* 9px */
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .official-position {
        font-size: 0.875rem;
    }
}

.profile-name {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--heading-color);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .profile-name {
        font-size: 1.5rem;
        line-height: normal;
    }
}

.read-msg-btn {
    margin-top: auto;
    padding: 0.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 9999px;
    pointer-events: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    transform: scale(0.8);
    transform-origin: center;
    width: 100%;
    max-width: 150px;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .read-msg-btn {
        font-size: 0.875rem;
        transform: scale(1);
    }
}

/* =========================================
   History Section
   ================================********* */
.history-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fbfbfb;
    overflow: hidden;
    border-top: 1px solid #f3f4f6;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
    line-height: 1;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: var(--accent-color);
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
}

.history-block+.history-block {
    margin-top: 8rem;
}

@media (min-width: 768px) {
    .history-block+.history-block {
        margin-top: 12rem;
    }
}

.timeline-row {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .timeline-row {
        margin-bottom: 6rem;
        flex-direction: row;
    }

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

.timeline-content-col {
    width: 100%;
}

@media (min-width: 768px) {
    .timeline-content-col {
        width: 50%;
    }

    .timeline-col-left {
        padding-right: 4rem;
    }

    .timeline-col-right {
        padding-left: 4rem;
    }

    .timeline-row.reverse .timeline-col-left {
        padding-left: 4rem;
        padding-right: 0;
    }

    .timeline-row.reverse .timeline-col-right {
        padding-right: 4rem;
        padding-left: 0;
    }
}

.timeline-text-inner {
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

@media (min-width: 768px) {
    .timeline-row.reverse .timeline-text-inner {
        padding-right: 1rem;
        padding-left: 0;
        border-right: 2px solid var(--accent-color);
        border-left: none;
        text-align: right;
    }
}

.timeline-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .timeline-text {
        font-size: 1rem;
    }
}

.timeline-head {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .timeline-head {
        font-size: 1.875rem;
    }
}


.timeline-year {
    font-size: 0.875rem;
    font-family: serif;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    line-height: 1;
}

/* =========================================
   Logo Intro Section
   ================================********* */
.logo-intro-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: white;
    overflow: hidden;
}

.logo-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .logo-content-wrapper {
        flex-direction: row;
        gap: 5rem;
    }
}

.logo-display-box {
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f9fafb;
    width: 100%;
}

/* Width utility for logo box wrapper */
.w-full-md-2-5 {
    width: 100%;
}

.w-full-md-3-5 {
    width: 100%;
}

@media (min-width: 768px) {
    .w-full-md-2-5 {
        width: 40%;
    }

    .w-full-md-3-5 {
        width: 60%;
    }
}

.logo-desc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .logo-desc-title {
        font-size: 1.875rem;
    }
}

/* =========================================
   Products Section
   ================================********* */
.products-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fbfbfb;
    border-top: 1px solid #f3f4f6;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

.product-item {
    width: 100%;
}

@media (min-width: 768px) {
    .product-item {
        width: calc(50% - 1.5rem);
    }
}

.product-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.product-price {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* =========================================
   Novelty Section
   ================================********* */
.novelty-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.novelty-wrap {
    background-color: white;
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .novelty-wrap {
        padding: 4rem;
        flex-direction: row;
    }
}

.novelty-col-half {
    width: 100%;
}

@media (min-width: 768px) {
    .novelty-col-half {
        width: 50%;
    }
}

/* =========================================
   Voice Section
   ================================********* */
.voice-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #57575a;
    color: white;
    position: relative;
    overflow: hidden;
}

.voice-nav-container {
    display: none;
}

@media (min-width: 768px) {
    .voice-nav-container {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        justify-content: space-between;
        padding: 0 1.5rem;
        transform: translateY(-50%);
        z-index: 20;
        pointer-events: none;
    }
}

.voice-nav-btn {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    pointer-events: auto;
    border: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.voice-nav-btn:hover {
    background-color: var(--accent-color);
}

/* =========================================
   Footer
   ================================********* */
.site-footer {
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
}

/* Modal Internal Styles */
.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.375;
    color: var(--heading-color);
}

@media (min-width: 768px) {
    .modal-title {
        font-size: 1.5rem;
    }
}

.modal-text-body {
    color: #1f2937;
    /* gray-800 */
    line-height: 1.625;
    font-size: 0.875rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.modal-text-body p {
    margin-bottom: 2rem;
}

.modal-text-body p:last-child {
    margin-bottom: 0;
}

.modal-profile-img-box {
    width: 7rem;
    height: 7rem;
    border-radius: 9999px;
    /* full */
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border: 2px solid #f9fafb;
    background-color: #f9fafb;
    margin-left: auto;
    margin-right: auto;
}

/* History Image Styles */
.history-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.history-img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    transition: transform 0.7s;
}

.history-img-box:hover .history-img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .history-img {
        height: 20rem;
    }
}

/* Utilities */
.text-accent {
    color: var(--accent-color);
}

.font-bold {
    font-weight: 700;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.uppercase {
    text-transform: uppercase;
}

/* Product & Novelty */
.product-item {
    width: 100%;
}

@media (min-width: 768px) {
    .product-item {
        width: calc(50% - 1.5rem);
    }
}

.product-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item:hover .product-img {
    transform: scale(1.1);
}

.novelty-wrap {
    background-color: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .novelty-wrap {
        padding: 4rem;
        flex-direction: row;
    }
}

.novelty-col {
    width: 100%;
}

@media (min-width: 768px) {
    .novelty-col {
        width: 50%;
    }
}

/* Logo Section */
.logo-display-box {
    background-color: #f8f8f8;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    aspect-ratio: 1/1;
    border: 1px solid #f9fafb;
}

@media (min-width: 768px) {
    .logo-display-box {
        padding: 4rem;
    }
}

@media (max-width: 767px) {
    .logo-display-box {
        aspect-ratio: unset;
        width: 80%;
        margin: 0 auto;
    }
}

.logo-img-wrapper {
    width: 11rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

/* Voice & CTA */
.voice-card-title {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.375rem;
}

.voice-label {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    font-size: 0.7rem;
    /* 8px */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.voice-label-customer {
    background-color: #f8f8f8;
    color: var(--heading-color);
}

.voice-label-staff {
    background-color: var(--accent-color);
    color: #fff;
}

.voice-text {
    font-size: 0.75rem;
    /* 11px */
    line-height: 1.625;
}

.voice-text-italic {
    font-style: italic;
    color: #1f2937;
}

.voice-customer-area {
    min-height: 6rem;
    margin-bottom: 0.75rem;
}

.voice-staff-area {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px dashed #f3f4f6;
    color: #1f2937;
}

.cta-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
}

.cta-section .footer-copy {
    font-size: 0.625rem;
    /* 10px */
    letter-spacing: 0.1em;
    color: #9ca3af;
    /* gray-400 */
}

/* Dynamic Profile JavaScript Styles */
.nav-btn-profile {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #fff;
    color: #af6565;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.nav-btn-profile:hover {
    background-color: #af6565;
    color: #fff;
}

.profile-grid-single {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

/* Logo Intro Section (Fixed Layout) */
.logo-intro-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .logo-intro-content-wrapper {
        flex-direction: row;
        gap: 5rem;
    }
}

.logo-intro-left {
    width: 100%;
}

@media (min-width: 768px) {
    .logo-intro-left {
        width: 40%;
    }
}

.logo-intro-right {
    width: 100%;
}

@media (min-width: 768px) {
    .logo-intro-right {
        width: 60%;
    }
}

.logo-intro-title {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .logo-intro-title {
        font-size: 1.875rem;
        /* text-3xl */
    }
}

.logo-intro-br-desktop {
    display: none;
}

@media (min-width: 768px) {
    .logo-intro-br-desktop {
        display: block;
    }
}

.logo-intro-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 equivalent */
    color: #374151;
    /* text-gray-700 */
    line-height: 2;
    /* leading-loose */
    font-size: 0.875rem;
    /* text-sm */
}

@media (min-width: 768px) {
    .logo-intro-text-box {
        font-size: 1rem;
        /* text-base */
    }
}

.logo-intro-text-bold {
    font-weight: 700;
    color: var(--heading-color);
    padding-top: 1rem;
}

/* Products Section (Fixed) */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    /* gap-12 */
    margin: 0 auto;
}

.img-overlay {
    margin-bottom: 1.5rem;
    /* mb-6 */
    overflow: hidden;
    border-radius: 0.5rem;
    /* rounded-lg */
}

.price-strike {
    text-decoration: line-through;
    color: #9ca3af;
    /* text-gray-400 */
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 400;
    /* font-normal */
    margin-left: 0.25rem;
}

.product-desc {
    font-size: 0.875rem;
    /* text-sm */
    color: #4b5563;
    /* text-gray-600 */
    line-height: 1.625;
    /* leading-relaxed */
}

/* Novelty Section (Fixed) */
.novelty-tag {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.625rem;
    /* text-[10px] */
    padding: 0.25rem 1rem;
    margin-bottom: 1rem;
}

.novelty-title {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.novelty-desc {
    font-size: 0.875rem;
    /* text-sm */
    color: #374151;
    /* text-gray-700 */
    line-height: 2;
    /* leading-loose */
    margin-bottom: 2rem;
}

/* Coming Soon Box (Restored) */
.coming-soon-box,
.novelty-coming-soon-box {
    background-color: #e5e7eb;
    /* bg-gray-200 */
    color: var(--heading-color);
    padding-top: 10rem;
    /* py-40 approx */
    padding-bottom: 10rem;
    text-align: center;
    margin-bottom: 3rem;
    /* mb-12 */
    max-width: 56rem;
    /* max-w-4xl */
    letter-spacing: 0.1em;
    /* tracking-widest */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
    /* text-2xl */
    margin-left: auto;
    margin-right: auto;
    font-family: serif;
    /* font-serif */
    border-radius: 0.5rem;
    /* rounded-lg */
}

/* CTA Section (Fixed) */
.cta-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    /* gap-8 */
}

.cta-social-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* gap-8 */
}

.cta-icon-svg {
    width: 2rem;
    /* w-8 */
    height: 2rem;
    /* h-8 */
}

.cta-social-link {
    color: var(--heading-color);
    transition: color 0.3s;
}

.cta-social-link:hover {
    color: var(--accent-color);
}

.cta-icon-svg-large {
    width: 2.5rem;
    /* w-10 equivalent */
    height: 2.5rem;
    /* h-10 equivalent */
}


.section-title-box {
    margin-bottom: 88px;
}

/* Section Inner Containers (Replacing Tailwind Utilities) */
.history-section-inner {
    max-width: 56rem;
    /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    /* mb-24 */
    position: relative;
    text-align: center;
}

/* Voice Slider Wrapper */
.voice-slider {
    position: relative;
    /* overflow-hidden is handled by voice-section or container if needed, 
       but voice-slider usually needs to contain the nav arrows absolutely positioned */
}

/* Products Section Base */
.products-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    background-color: var(--sub-bg);
    /* bg-[#fbfbfb] */
    border-top: 1px solid #f3f4f6;
    /* border-gray-100 */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Logo Intro Section Base */
.logo-intro-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    background-color: white;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
}

/* Voice Section Base */
.voice-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    background-color: #57575a;
    color: white;
    overflow: hidden;
    position: relative;
}

.text-white {
    color: white;
}

/* CTA Section Base */
/* Already has cta-section? Check. */
.cta-section {
    padding-top: 8rem;
    /* py-32 */
    padding-bottom: 8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Novelty Section Base */
.novelty-section {
    padding-top: 5rem;
    /* py-20 */
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
}

/* Utilities for compatibility */
.mb-24 {
    margin-bottom: 6rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Header Logo Helper */
.header-logo {
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--heading-color);
    z-index: 50;
    position: relative;
}

/* Utilities (Restored) */
.block {
    display: block;
}

.relative {
    position: relative;
}

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

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-auto {
    height: auto;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.leading-loose {
    line-height: 2;
}

.leading-relaxed {
    line-height: 1.625;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.object-cover {
    object-fit: cover;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.opacity-70 {
    opacity: 0.7;
}

.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}

/* History Section Text Responsive */
.history-text-p {
    color: #4b5563;
    line-height: 2;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .history-text-p {
        font-size: 1rem;
    }
}

/* Timeline Column Responsive Margin */
.timeline-col-mb {
    margin-bottom: 2rem;
    /* mb-8 */
}

@media (min-width: 768px) {
    .timeline-col-mb {
        margin-bottom: 0;
    }
}

/* Header Logo Fix */
.header-logo img {
    /* styles were inline on wrapper, let's keep wrapper styles but maybe help img? */
}

/* Final Utilities */
.text-heading {
    color: var(--heading-color);
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

/* Final Utilities Round 2 */
.max-w-6xl {
    max-width: 72rem;
}

.max-w-lg {
    max-width: 32rem;
}

@media (min-width: 768px) {
    .md-w-auto {
        width: auto;
    }
}

/* Profile Carousel Override */
.profile-card-container.swiper {
    display: block !important;
    width: 100%;
    padding: 0 0 2rem 0;
}

@media (max-width: 768px) {
    .profile-card-container.swiper {
        padding: 0 2em 2rem;
    }
}

.profile-card-container.swiper .swiper-wrapper {
    display: flex;
    /* Ensure wrapper is flex */
}

.profile-card-container.swiper .swiper-slide {
    height: auto;
    /* Allow height to adapt */
    width: auto;
    /* Let Swiper calculate width */
}

header.site-header {
    display: block;
    padding: 0;
}

#Journal h2.hero-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.375;
    color: var(--heading-color);
    text-align: center;
    border: none;
    padding: 0;
}

@media (min-width: 768px) {
    #Journal h2.hero-title {
        font-size: 3rem;
        margin-bottom: 5rem;
    }
}

#Journal h2.section-title {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
    line-height: 1;
    border: none;
    text-align: center;
    padding: 0;
}

#Journal h2.section-title.text-white {
    color: var(--text-white);
}

@media (min-width: 768px) {
    #Journal h2.section-title {
        font-size: 2.25rem;
    }
}

.journal-cont h3.timeline-head {
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .journal-cont h3.timeline-head {
        font-size: 1.875rem;
    }
}

.journal-cont h3.logo-intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .journal-cont h3.logo-intro-title {
        font-size: 1.875rem;
    }
}

article .voice-section,
article .voice-section p {
    color: var(--text-white);
}

article .voice-section p.voice-text {
    color: #1f2937;
}

.cta-content-wrapper a.btn-accent,
.cta-content-wrapper a.btn-accent:link,
.cta-content-wrapper a.btn-accent:visited,
.cta-content-wrapper a.btn-accent:hover,
.cta-content-wrapper a.btn-accent:active {
    color: #fff;
}

#Journal a.cta-social-link:hover {
    color: var(--accent-color);
}

#main-column .group {
    margin: 0;
    padding: 0;
}

#Journal h2.modal-title {
    display: block;
    border: none;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.375;
    color: var(--heading-color);
    padding: 0;
}

@media (min-width: 768px) {
    #Journal h2.modal-title {
        font-size: 1.5rem;
    }
}
/* Loading Screen Animation */
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.loaded #loading-screen {
    opacity: 0;
    visibility: hidden;
}
