:root {
    --brand-red: #ff7675;
    --brand-red-dark: #d63031;
    --ink-black: #0a0a0a;
    --charcoal: #2d3436;
    --paper-white: #ffffff;
    --soft-grey: #fcfcfc;
    --border-grey: #f0f0f0;
}

html { scroll-behavior: smooth; }

/* '*' alone does not match pseudo-elements — without the explicit
   ::before/::after entries they fall back to content-box and any
   bordered pseudo-element (e.g. the timeline dots) renders off-center. */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--paper-white);
    color: var(--charcoal);
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink-black);
    font-weight: 600;
}


/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-width: 85px;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-black);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-left: 30px;
    border-left: 1px solid var(--border-grey);
}

.nav-socials a, .footer-socials a {
    color: var(--ink-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.nav-socials a:hover svg {
    fill: var(--brand-red);
    transform: translateY(-2px);
}

/* --- Language Toggle --- */
.lang-switch {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--ink-black);
    border: 1px solid var(--border-grey);
    border-radius: 50px;
    padding: 6px 16px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

.lang-switch:hover {
    border-color: var(--brand-red);
    color: var(--brand-red-dark);
}

.lang-switch-mobile {
    color: var(--brand-red-dark) !important;
    font-weight: 600 !important;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* bottom padding must exceed the scroll cue footprint (28px + 64px) */
    padding: 160px 5% 130px;
    background: var(--ink-black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transform: scale(1.05);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0.75) 100%);
}

.hero-kanji {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Noto Serif JP', serif;
    writing-mode: vertical-rl;
    font-size: clamp(4rem, 9vw, 8rem);
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: 0.3em;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin: 0 auto;
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-badge {
    display: inline-block;
    padding: 7px 22px;
    border: 1px solid rgba(255, 118, 117, 0.55);
    color: #ffb3b2;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: var(--paper-white);
}

.hero h1 strong {
    font-weight: 600;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 42px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-primary {
    background: var(--brand-red-dark);
    color: var(--paper-white);
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.35);
}

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(214, 48, 49, 0.45);
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--paper-white);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    border-color: var(--paper-white);
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}

@keyframes heroDrift {
    from { transform: scale(1.05) translateX(0); }
    to { transform: scale(1.12) translateX(-1.5%); }
}

.hero-scroll {
    /* centered by layout (margin auto), not transform — a translated 1px
       hairline can snap off-center under pinch-zoom / fractional DPR */
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 2px;
    height: 64px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
}

.hero-scroll span {
    position: absolute;
    left: 0;
    top: -40%;
    width: 100%;
    height: 40%;
    background: var(--brand-red);
    animation: scrollCue 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollCue {
    to { top: 100%; }
}

/* --- Marquee Ticker --- */
.marquee {
    overflow: hidden;
    background: var(--ink-black);
    padding: 16px 0;
    border-bottom: 3px solid var(--brand-red-dark);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 48s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-right: 26px;
}

.marquee-track .marquee-jp {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--brand-red);
    letter-spacing: 2px;
    margin-right: 44px;
}

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

/* --- Now Serving --- */
.now-section {
    padding: 100px 5%;
    background: var(--paper-white);
}

.now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    position: relative;
    background: var(--soft-grey);
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 40px 35px 35px;
    text-align: left;
    transition: all 0.4s ease;
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.schedule-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 18px;
}

.schedule-card.is-live .schedule-status {
    color: var(--brand-red-dark);
}

.schedule-card.is-live {
    border-color: rgba(214, 48, 49, 0.25);
    background: linear-gradient(135deg, #fffafa 0%, var(--soft-grey) 100%);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #bbb;
    flex-shrink: 0;
}

.schedule-card.is-live .pulse-dot {
    background: var(--brand-red-dark);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.45); }
    50% { box-shadow: 0 0 0 8px rgba(214, 48, 49, 0); }
}

.schedule-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.schedule-meta {
    font-size: 0.85rem;
    color: var(--brand-red-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.schedule-dates {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 16px;
}

.schedule-card p.schedule-note {
    font-size: 0.95rem;
    color: #777;
}

/* --- Trust Bar / Stats --- */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 0;
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 18px 28px;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    fill: var(--brand-red);
    flex-shrink: 0;
}

/* --- Stats Band --- */
.stats-section {
    padding: 90px 5%;
    background: var(--soft-grey);
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

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

.stat-value {
    display: flex;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1;
    color: var(--ink-black);
    letter-spacing: -1px;
}

.stat-suffix {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1;
    color: var(--brand-red-dark);
    margin-top: 2px;
}

.stat-label {
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    max-width: 220px;
}

/* --- Story & Vision Section --- */
.story-section {
    padding: 100px 5%;
    background-color: var(--paper-white);
    text-align: center;
    position: relative;
}

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

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brand-red);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: 300;
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--brand-red);
    margin: 40px auto;
    opacity: 0.5;
}

/* --- Season Timeline --- */
.timeline-section {
    padding: 100px 5%;
    background: var(--ink-black);
}

.timeline-section .section-header h2 {
    color: var(--paper-white);
}

.timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

/* Alignment contract: the line (left 10px + 2px wide) and the dots
   (left -35px + 12px wide inside the 40px padding) share center x = 11px.
   Keep these numbers in lockstep — and identical at every breakpoint. */
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,118,117,0.6), rgba(255,255,255,0.12));
    transform: scaleY(var(--progress, 1));
    transform-origin: top;
}

.timeline-item {
    position: relative;
    padding-bottom: 45px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ink-black);
    border: 2px solid var(--brand-red);
}

.timeline-item.highlight::before {
    background: var(--brand-red-dark);
    box-shadow: 0 0 14px rgba(214, 48, 49, 0.6);
}

.timeline-period {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-red);
    display: block;
    margin-bottom: 6px;
}

.timeline-item h3 {
    color: var(--paper-white);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.timeline-type {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.timeline-item p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    max-width: 600px;
}

.timeline-item.highlight h3 {
    color: var(--brand-red);
}

/* --- Menu Section --- */
.menu-section {
    padding: 100px 5%;
    background: var(--soft-grey);
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    position: relative;
    background: var(--paper-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.menu-card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.menu-icon {
    font-size: 1.9rem;
    line-height: 1;
}

.menu-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 1px;
}

.menu-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

.menu-card p.menu-desc {
    font-size: 0.9rem;
    color: #777;
}

.menu-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--brand-red-dark);
    color: var(--paper-white);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-bottom-left-radius: 8px;
}

.menu-footnote {
    text-align: center;
    margin-top: 35px;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* --- Portfolio Gallery Section --- */
.gallery-section {
    padding: 100px 5%;
    background: var(--paper-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 50px auto 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    background: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

/* --- Services / Expertise --- */
.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.4rem;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--paper-white);
    padding: 50px 30px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: #777;
    font-weight: 300;
}

/* --- Map Section --- */
.map-section {
    background: var(--soft-grey);
    padding: 100px 0;
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

#singapore-map {
    height: 550px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
    margin-bottom: 35px;
    background: var(--paper-white);
}

.map-marker-dot {
    background-color: var(--brand-red-dark);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(214, 48, 49, 0.4);
}

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

.map-popup-type {
    color: #777;
    font-size: 0.8rem;
    margin-top: 4px;
    display: inline-block;
}

.map-caption {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
}

.map-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink-black);
    background: var(--paper-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-grey);
}

.map-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--brand-red);
    color: var(--brand-red-dark);
}

.map-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Partners Section --- */
.partners-section {
    padding: 70px 5%;
    text-align: center;
    background: var(--paper-white);
}

.partner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 50px;
}

.partner-logo-img {
    max-height: 110px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo-img:hover {
    transform: scale(1.05);
}

/* --- Contact CTA --- */
.cta-section {
    position: relative;
    padding: 110px 5%;
    background: var(--ink-black);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '祭';
    position: absolute;
    font-family: 'Noto Serif JP', serif;
    font-size: 22rem;
    color: rgba(255, 118, 117, 0.05);
    left: -3%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--paper-white);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.cta-content h2 strong {
    font-weight: 600;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--paper-white);
}

.btn-outline-light:hover {
    border-color: var(--paper-white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* --- Premium Footer --- */
footer {
    background: #050505;
    color: rgba(255,255,255,0.7);
    padding: 80px 5% 30px;
    font-weight: 300;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--paper-white);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-jp-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 15px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 15px;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-contact-list a:hover {
    color: var(--brand-red);
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--paper-white);
    transition: all 0.3s ease;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-socials a:hover {
    border-color: var(--brand-red);
    background: var(--brand-red);
    transform: translateY(-3px);
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

/* --- Nav scroll effect --- */
nav.scrolled {
    padding: 6px 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* --- Scroll-to-top button --- */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-red-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
}
#scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#scroll-top:hover {
    background: #b71c1c;
    box-shadow: 0 8px 20px rgba(214, 48, 49, 0.45);
    transform: translateY(-3px);
}

/* --- Section reveal animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cards inside a revealed section cascade in one after another */
.reveal .stagger {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible .stagger {
    opacity: 1;
    transform: translateY(0);
}
.reveal.visible .stagger:nth-child(2) { transition-delay: 0.08s; }
.reveal.visible .stagger:nth-child(3) { transition-delay: 0.16s; }
.reveal.visible .stagger:nth-child(4) { transition-delay: 0.24s; }
.reveal.visible .stagger:nth-child(5) { transition-delay: 0.32s; }
.reveal.visible .stagger:nth-child(6) { transition-delay: 0.4s; }
.reveal.visible .stagger:nth-child(7) { transition-delay: 0.48s; }
.reveal.visible .stagger:nth-child(8) { transition-delay: 0.56s; }

/* Nav scrollspy highlight */
.nav-links a.active {
    color: var(--brand-red-dark);
}
.nav-links a.active::after {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
    .reveal, .reveal .stagger { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
    .hero-scroll span { animation: none; }
    .timeline::before { transform: none; }
    html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-kanji { display: none; }
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-grey);
    padding: 20px 5%;
    z-index: 999;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    text-decoration: none;
    color: var(--ink-black);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-grey);
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu-socials {
    display: flex;
    gap: 20px;
    padding-top: 16px;
}

.mobile-menu-socials a {
    border-bottom: none !important;
    padding: 0 !important;
}

.mobile-menu-socials svg {
    width: 20px;
    height: 20px;
    fill: var(--ink-black);
}

@media (max-width: 768px) {
    .nav-content { display: none; }
    nav { padding: 15px 5%; justify-content: space-between; }
    .hamburger { display: flex; }
    .hero { min-height: 78vh; padding: 140px 5% 70px; }
    .hero h1 { font-size: 2.4rem; }
    /* the scroll cue collides with the stacked CTA buttons on small screens */
    .hero-scroll { display: none; }
    .trust-bar { flex-direction: column; align-items: flex-start; gap: 0; padding: 15px 5%; }
    .trust-item { padding: 12px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-contact-list a { justify-content: center; }
    .footer-socials { justify-content: center; }
    #singapore-map { height: 400px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }
    .cta-section::before { font-size: 14rem; }
}
