:root {
    --lp-font: "Zen Old Mincho", "EB Garamond", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "HiraMinProN-W3", serif;
    --lp-font-serif: "EB Garamond", "Zen Old Mincho", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
    --lp-font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lp-container: 1120px;

    /* Luxury palette (ink / warm off-white / brass) */
    --lp-text: #14110f;
    --lp-muted: #6b675f;
    --lp-border: #e8e1d7;
    --lp-bg: #f6f3ee;
    --lp-bg-soft: #f1ece5;

    --lp-navy: #12110f;
    --lp-blue: #193b3b;
    --lp-blue-soft: #d4e3df;
    --lp-orange: #b08a3b;
    --lp-orange-deep: #8c6a26;
    --lp-gold: #d0b067;

    --lp-radius-sm: 8px;
    --lp-radius: 14px;
    --lp-shadow: 0 24px 80px rgba(15, 16, 18, 0.14);
    --lp-shadow-sm: 0 14px 36px rgba(15, 16, 18, 0.12);

    /* Token aliases (requested naming) */
    --font-base: var(--lp-font);
    --font-serif: var(--lp-font-serif);
    --font-ui: var(--lp-font-ui);
    --container-max: var(--lp-container);

    --color-text: var(--lp-text);
    --color-muted: var(--lp-muted);
    --color-border: var(--lp-border);
    --color-bg: var(--lp-bg);
    --color-bg-soft: var(--lp-bg-soft);

    --color-navy: var(--lp-navy);
    --color-blue: var(--lp-blue);
    --color-blue-soft: var(--lp-blue-soft);
    --color-orange: var(--lp-orange);
    --color-orange-deep: var(--lp-orange-deep);
    --color-gold: var(--lp-gold);

    --radius-sm: var(--lp-radius-sm);
    --radius-md: var(--lp-radius);
    --shadow-1: var(--lp-shadow);
    --shadow-2: var(--lp-shadow-sm);

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;

    --type-xxs: 14px;
    --type-xs: 15px;
    --type-sm: 17px;
    --type-base: 18px;
    --type-md: 20px;
    --type-lg: 24px;
    --type-xl: 30px;

    --leading-tight: 1.3;
    --leading-base: 1.9;
    --leading-loose: 2.1;

    --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
    --dur-fast: 180ms;
    --dur-base: 320ms;
    --dur-slow: 800ms;

    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.88);
    --hairline: rgba(18, 17, 15, 0.10);
    --gold-hairline: rgba(208, 176, 103, 0.22);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html {
    scroll-padding-top: 96px;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-text);
    background-color: var(--lp-bg);
    background-image:
        radial-gradient(1400px 700px at 12% -10%, rgba(208, 176, 103, 0.09), transparent 68%),
        radial-gradient(1000px 600px at 88% 10%, rgba(25, 59, 59, 0.06), transparent 65%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: var(--leading-base);
    font-size: var(--type-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }

.site-main { position: relative; }

.site-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(1000px 520px at 50% 0%, rgba(208, 176, 103, 0.08), transparent 65%),
        radial-gradient(760px 520px at 0% 40%, rgba(25, 59, 59, 0.06), transparent 62%);
    opacity: 0.75;
}

.site-main > * { position: relative; }

::selection {
    background: rgba(176, 138, 59, 0.28);
    color: rgba(18, 17, 15, 0.92);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 10px 12px;
    z-index: 10001;
}
.skip-link:focus { left: 12px; top: 12px; }

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid rgba(176, 138, 59, 0.55);
    outline-offset: 3px;
}

/* Motion (optional, respects reduced motion) */
.has-js .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.has-js .js-reveal.is-revealed {
    opacity: 1;
    transform: none;
}

/* Loader (non-blocking: scroll stays enabled) */
.lp-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
    background: rgba(246, 243, 238, 0.82);
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-slow) var(--ease-standard), visibility 0s linear var(--dur-slow);
}
.lp-is-loading .lp-loader {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--dur-slow) var(--ease-standard);
}

.lp-loader__inner { text-align: center; color: var(--lp-navy); max-width: 90vw; }
.lp-loader__line { margin: 0; overflow: visible; word-break: break-word; }
.lp-loader__line--en {
    font-family: var(--lp-font-serif);
    font-size: clamp(18px, 2.1vw, 28px);
    letter-spacing: 0.06em;
    line-height: 1.35;
}
.lp-loader__line--ja {
    margin-top: 10px;
    font-family: var(--lp-font);
    font-size: clamp(13px, 1.4vw, 16px);
    letter-spacing: 0.12em;
    color: rgba(18, 17, 15, 0.72);
}

.lp-is-loading .lp-loader__text {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    filter: blur(8px);
    will-change: transform, opacity, filter;
    animation: lp-loader-rise 1300ms var(--ease-standard) forwards;
}
.lp-is-loading .lp-loader__line--ja .lp-loader__text { animation-delay: 140ms; }

@keyframes lp-loader-rise {
    to {
        transform: translateY(0%);
        opacity: 1;
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .has-js .js-reveal { opacity: 1; transform: none; transition: none; }
    .lp-loader { transition: none; }
    .lp-is-loading .lp-loader__text { animation: none; transform: none; opacity: 1; filter: none; }
    * { scroll-behavior: auto !important; }
    body { background-attachment: scroll; }
    .lp-btn--primary::after { display: none; }
}

.container {
    width: min(calc(100% - 80px), var(--lp-container));
    margin: 0 auto;
}
@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 40px), var(--lp-container));
    }
}

/* Type */
.lp-pageHero__title,
.lp-hero__lead,
.lp-statsBox__num,
.lp-card__title,
.lp-panel__title,
.lp-tiles__title,
.lp-flow__title,
.lp-contact__title,
.archive-title,
.post-title,
.page-title,
.block-title,
.error-404 h1 {
    font-family: var(--lp-font-serif);
    letter-spacing: 0.04em;
}

.lp-nav__menu,
.lp-footer__brand {
    letter-spacing: 0.12em;
}

.lp-nav__menu,
.lp-heroNav__label,
.lp-label__text,
.post-meta,
.lp-footer__menu {
    font-size: var(--type-xs);
}

/* Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 243, 238, 0.94);
    border-bottom: 1px solid rgba(18, 17, 15, 0.06);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    box-shadow: 0 4px 24px rgba(18, 17, 15, 0.04), 0 1px 2px rgba(18, 17, 15, 0.02);
}
.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 168px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.lp-logo {
    display: inline-flex;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: none;
    height: 100%;
    align-items: center;
}
.lp-logo:hover { transform: none; box-shadow: none; }
.lp-logo__image {
    display: block;
    width: auto;
    max-width: min(560px, 46vw);
    height: auto;
    max-height: 140px;
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.92;
    filter: saturate(0.75) contrast(0.95) brightness(1.01);
    mix-blend-mode: multiply;
    transition: opacity var(--dur-fast) var(--ease-standard), filter var(--dur-fast) var(--ease-standard);
}
.lp-logo:hover .lp-logo__image {
    opacity: 1;
    filter: saturate(0.8) contrast(1) brightness(1);
}
.lp-logo__mark,
.lp-logo__text {
    display: none;
}

.lp-nav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    color: rgba(18, 17, 15, 0.88);
    font-weight: 600;
}
.lp-nav__menu li { position: relative; }
.lp-nav__menu li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(176, 138, 59, 0.65);
}
.lp-nav__menu a {
    display: inline-flex;
    padding: 12px 4px;
    border-bottom: 2px solid transparent;
    transition: border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.lp-nav__menu a:hover { border-bottom-color: var(--lp-orange); }
.lp-nav__menu .current-menu-item > a,
.lp-nav__menu .current_page_item > a {
    border-bottom-color: rgba(208, 176, 103, 0.7);
    color: rgba(18, 17, 15, 0.92);
}
.lp-nav__menu a:focus-visible {
    outline: 2px solid rgba(176, 138, 59, 0.65);
    outline-offset: 4px;
    border-radius: 4px;
}

.lp-navToggle {
    display: none;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(18, 17, 15, 0.12);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 10px;
    color: var(--lp-navy);
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(18, 17, 15, 0.14);
    transition: transform var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}
.lp-navToggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(18, 17, 15, 0.18);
}
.lp-navToggle:focus-visible {
    outline: 2px solid rgba(176, 138, 59, 0.65);
    outline-offset: 3px;
}
.lp-navToggle__icon {
    position: relative;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    display: inline-block;
    transition: background var(--dur-fast) var(--ease-standard);
}
.lp-navToggle__icon::before,
.lp-navToggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform var(--dur-fast) var(--ease-standard);
}
.lp-navToggle__icon::before { top: -6px; }
.lp-navToggle__icon::after { top: 6px; }

.lp-navOverlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 12, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-fast) var(--ease-standard);
    z-index: 55;
    backdrop-filter: blur(4px) saturate(0.9);
    -webkit-backdrop-filter: blur(4px) saturate(0.9);
}

html.lp-nav-open,
body.lp-nav-open {
    overflow: hidden;
}
html.lp-nav-open {
    overflow-x: hidden;
}
html.lp-nav-open .lp-navOverlay { opacity: 1; pointer-events: auto; }
html.lp-nav-open .lp-navToggle__icon { background: transparent; }
html.lp-nav-open .lp-navToggle__icon::before { transform: translateY(6px) rotate(45deg); }
html.lp-nav-open .lp-navToggle__icon::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.lp-hero {
    position: relative;
    min-height: 560px;
    overflow: visible;
    background: var(--lp-navy);
}
.lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(1400px 700px at 50% 35%, rgba(255, 255, 255, 0.08), transparent 70%),
        linear-gradient(180deg, rgba(18, 17, 15, 0.02), rgba(18, 17, 15, 0.22));
    mix-blend-mode: overlay;
    opacity: 0.8;
}
.lp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 17, 15, 0.15) 0%, rgba(18, 17, 15, 0.55) 55%, rgba(18, 17, 15, 0.88) 100%),
        radial-gradient(1200px 520px at 70% 20%, rgba(208, 176, 103, 0.22), transparent 62%),
        url("../img/top-hero.jpeg") center / cover no-repeat,
        linear-gradient(180deg, rgba(18, 17, 15, 0.12) 0%, rgba(18, 17, 15, 0.54) 48%, rgba(18, 17, 15, 0.86) 100%),
        radial-gradient(1300px 560px at 68% 28%, rgba(208, 176, 103, 0.18), transparent 68%),
        linear-gradient(135deg, #c2dbd9, #2d504e 56%, #0d0c0b);
}
.lp-hero__inner {
    position: relative;
    padding: 160px 0 180px;
}
.lp-hero__copy {
    color: #fff;
    max-width: 840px;
    display: grid;
    gap: 28px;
}
.lp-hero__eyebrow {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.38em;
    opacity: 0.78;
    font-weight: 500;
    text-transform: uppercase;
}
.lp-hero__lead {
    margin: 0;
    font-size: clamp(24px, 3.15vw, 39px);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.42;
    text-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
}
.lp-hero__leadLine { display: block; }
.lp-hero__leadLine--primary { white-space: nowrap; }
.lp-hero__desc {
    margin: 0;
    font-size: clamp(18px, 1.9vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.lp-hero__inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 48px;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, rgba(208, 176, 103, 0.85), rgba(208, 176, 103, 0));
    opacity: 0.9;
}

/* Highlights */
.lp-highlightGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lp-highlight {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 260px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 17, 15, 0.05);
    box-shadow: 0 4px 24px rgba(18, 17, 15, 0.06), 0 1px 2px rgba(18, 17, 15, 0.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(18, 17, 15, 0.12), 0 8px 20px rgba(18, 17, 15, 0.04);
    border-color: rgba(208, 176, 103, 0.20);
}
.lp-highlight .lp-heroNav__link {
    background: linear-gradient(135deg, rgba(18, 17, 15, 0.97), rgba(28, 26, 23, 0.95));
    color: #fff;
    min-height: 110px;
    transition: background 0.5s var(--ease-standard);
}
.lp-highlight .lp-heroNav__link:hover {
    background: linear-gradient(135deg, rgba(26, 24, 21, 0.98), rgba(38, 34, 30, 0.96));
}
.lp-highlight__stat {
    padding: 16px 14px 18px;
    text-align: center;
    border-top: 1px solid rgba(18, 17, 15, 0.08);
    background: #fff;
    min-height: 96px;
    display: grid;
    align-content: center;
    gap: 6px;
}
.lp-highlight .lp-heroNav__label {
    font-size: var(--type-xs);
    letter-spacing: 0.08em;
}
.lp-highlight .lp-statsBox__num {
    display: grid;
    gap: 6px;
    justify-items: center;
    text-align: center;
}
.lp-highlight .lp-statsBox__numMain {
    font-size: clamp(16px, 2.3vw, 24px);
    letter-spacing: 0.04em;
    line-height: 1.35;
}
.lp-statsBox__numMain--compact {
    font-size: clamp(13px, 2.1vw, 18px);
    letter-spacing: 0.03em;
}
.lp-statsBox__numSub {
    font-size: var(--type-xxs);
    line-height: 1.5;
    color: rgba(18, 17, 15, 0.62);
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-highlight__note {
    margin: 32px auto 0;
    max-width: 820px;
    text-align: center;
    color: rgba(18, 17, 15, 0.72);
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.8;
    font-weight: 500;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(208, 176, 103, 0.05), rgba(25, 59, 59, 0.04));
    border-radius: 12px;
    border: 1px solid rgba(208, 176, 103, 0.18);
}
.lp-heroNav__link {
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 16px 10px 14px;
    text-align: center;
    transition: background-color var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.lp-heroNav__link:hover { transform: translateY(-1px); }
.lp-heroNav__link:focus-visible {
    outline: 2px solid rgba(208, 176, 103, 0.65);
    outline-offset: -2px;
}
.lp-heroNav__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--lp-gold);
}
.lp-heroNav__label {
    letter-spacing: 0.12em;
    font-weight: 700;
    line-height: 1.35;
}

/* Stats */
.lp-stats {
    background: var(--lp-bg);
    padding: 100px 0 88px;
}
.lp-stats,
.lp-services,
.lp-tripanel,
.lp-tiles,
.lp-audience,
.lp-flow,
.lp-contact {
    position: relative;
}
.lp-stats::before,
.lp-services::before,
.lp-tripanel::before,
.lp-tiles::before,
.lp-audience::before,
.lp-flow::before,
.lp-contact::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 17, 15, 0.12), transparent);
    opacity: 0.9;
    pointer-events: none;
}
.lp-statsBox__num {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    color: var(--lp-gold);
    font-weight: 700;
    line-height: 1;
}
.lp-statsBox__numMain { font-size: 28px; }
.lp-statsBox__label {
    margin-top: 8px;
    color: rgba(18, 17, 15, 0.68);
    letter-spacing: 0.10em;
}

/* Service cards - Clean Typography */
.lp-services {
    background: linear-gradient(180deg, rgba(241, 236, 229, 0.94), rgba(246, 243, 238, 0.94));
    padding: 100px 0 112px;
}
.lp-servicesIntro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.lp-servicesIntro__main {
    position: relative;
    padding-left: 24px;
}
.lp-servicesIntro__main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--lp-gold), var(--lp-blue));
}
.lp-servicesIntro__eyebrow {
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--lp-gold);
    font-weight: 700;
}
.lp-servicesIntro__title {
    margin: 0 0 24px;
    font-family: var(--lp-font-serif);
    font-size: clamp(26px, 3.2vw, 36px);
    letter-spacing: 0.02em;
    color: var(--lp-navy);
    line-height: 1.35;
    font-weight: 700;
}
.lp-servicesIntro__lead {
    margin: 0 0 16px;
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(18, 17, 15, 0.85);
    line-height: 1.85;
}
.lp-servicesIntro__lead:last-child {
    margin-bottom: 0;
}
.lp-servicesIntro__details {
    display: grid;
    gap: 24px;
}
.lp-servicesIntro__subtitle {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--lp-navy);
    font-size: clamp(16px, 1.8vw, 19px);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(208, 176, 103, 0.25);
}
.lp-servicesIntro__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
}
.lp-servicesIntro__item {
    display: grid;
    gap: 8px;
}
.lp-servicesIntro__item h3 {
    margin: 0;
    font-size: clamp(16px, 1.7vw, 18px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lp-navy);
    line-height: 1.4;
}
.lp-servicesIntro__item p {
    margin: 0;
    color: rgba(18, 17, 15, 0.82);
    font-size: 15px;
    line-height: 1.75;
}
.lp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: clamp(32px, 5vw, 64px);
}
.lp-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(18, 17, 15, 0.06), 0 1px 2px rgba(18, 17, 15, 0.02);
    overflow: hidden;
    border: 1px solid rgba(18, 17, 15, 0.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 80px rgba(18, 17, 15, 0.12), 0 10px 28px rgba(18, 17, 15, 0.06);
    border-color: rgba(208, 176, 103, 0.22);
}
.lp-thumb {
    height: 148px;
    position: relative;
    background: linear-gradient(135deg, #e6e0d7, #7a8b89 55%, #12110f);
    transition: transform var(--dur-slow) var(--ease-standard);
    overflow: hidden;
}
.lp-card:hover .lp-thumb { transform: scale(1.02); }
.lp-thumb--stay { background: linear-gradient(135deg, #efe9df, #8aa4a1 58%, #12110f); }
.lp-thumb--transport { background: linear-gradient(135deg, #efe9df, #86a3c1 55%, #12110f); }
.lp-thumb--activity { background: linear-gradient(135deg, #efe9df, #b4976b 55%, #12110f); }
.lp-thumb--mice { background: linear-gradient(135deg, #efe9df, #7a7f86 58%, #12110f); }
.lp-thumb--support { background: linear-gradient(135deg, #efe9df, #6e8d78 55%, #12110f); }
.lp-thumb--consulting { background: linear-gradient(135deg, #efe9df, #7a7392 55%, #12110f); }
.lp-thumb--dining { background: linear-gradient(135deg, #efe9df, #c27a48 55%, #12110f); }
.lp-thumb--guide { background: linear-gradient(135deg, #efe9df, #3c5f63 55%, #12110f); }
.lp-thumb--ticket { background: linear-gradient(135deg, #efe9df, #5d4a82 55%, #12110f); }
.lp-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 17, 15, 0.00), rgba(18, 17, 15, 0.48)),
        radial-gradient(520px 120px at 20% 110%, rgba(255, 255, 255, 0.14), transparent 60%);
    opacity: 1;
    z-index: 1;
}
.lp-thumb__badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(18, 17, 15, 0.66);
    color: #fff;
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: 0.10em;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.lp-thumb__action {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 17, 15, 0.10);
    color: #1f2937;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 26px rgba(18, 17, 15, 0.18);
    transition: transform var(--dur-base) var(--ease-standard), background-color var(--dur-base) var(--ease-standard);
}
.lp-card:hover .lp-thumb__action { transform: scale(1.04); background: rgba(255, 255, 255, 0.98); }
.lp-thumb__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
    transition: transform var(--dur-slow) var(--ease-standard);
}
.lp-card:hover .lp-thumb__media { transform: scale(1.04); }
.lp-card__body { padding: 14px 14px 16px; }
.lp-card__title { margin: 0 0 10px; font-size: var(--type-md); line-height: var(--leading-tight); }
.lp-card__list { list-style: none; display: grid; gap: 8px; color: rgba(18, 17, 15, 0.72); }
.lp-card__list li {
    padding-left: 12px;
    position: relative;
}
.lp-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(176, 138, 59, 0.9);
}
.lp-card__text {
    margin: 0;
    font-size: var(--type-sm);
    line-height: 1.6;
    color: rgba(18, 17, 15, 0.72);
}

.lp-card--featured .lp-card__body {
    background: linear-gradient(180deg, #ffffff 0%, #faf7f1 40%, #efe7da 100%);
}

/* 3 panels */
.lp-tripanel { padding: 100px 0; background: var(--lp-bg); }
.lp-tripanel__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp-panel {
    border-radius: 14px;
    overflow: hidden;
    min-height: 170px;
    box-shadow: 0 18px 56px rgba(18, 17, 15, 0.12);
    transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.lp-panel:hover { transform: translateY(-2px); box-shadow: 0 30px 90px rgba(18, 17, 15, 0.16); }
.lp-panel__inner {
    height: 100%;
    padding: 22px 22px 20px;
    display: grid;
    align-content: space-between;
}
.lp-panel--dark {
    background: radial-gradient(740px 260px at 20% 30%, rgba(208, 176, 103, 0.12), transparent 55%), var(--lp-navy);
    color: #fff;
}
.lp-panel--center { background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(18, 17, 15, 0.10); }
.lp-panel--light { background: var(--lp-blue-soft); border: 1px solid rgba(18, 17, 15, 0.06); }
.lp-panel__eyebrow {
    letter-spacing: 0.14em;
    font-weight: 700;
    opacity: 0.88;
}
.lp-panel__eyebrow--dark { color: rgba(18, 17, 15, 0.82); opacity: 0.92; }
.lp-panel__title {
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 0.10em;
    font-size: 18px;
    line-height: 1.1;
}
.lp-panel__graphic { margin-top: 10px; opacity: 0.92; }
.lp-centerBadge {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(176, 138, 59, 0.45);
    color: var(--lp-navy);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 auto;
    box-shadow: 0 18px 36px rgba(18, 17, 15, 0.12);
}
.lp-panel__centerMeta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(18, 17, 15, 0.54);
    letter-spacing: 0.10em;
}
.lp-iconGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    margin-top: 10px;
}
.lp-iconGrid__item {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(18, 17, 15, 0.10);
    border-radius: 10px;
    padding: 12px 12px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--lp-navy);
}

/* Tiles */
.lp-tiles { padding: 0 0 100px; background: var(--lp-bg); }
.lp-tiles__group { margin-top: clamp(22px, 4vw, 36px); }
.lp-tiles__title {
    font-weight: 700;
    color: var(--lp-navy);
    padding-left: 0;
    margin-bottom: 32px;
    font-size: clamp(20px, 2.5vw, 28px);
    letter-spacing: 0.06em;
    text-align: center;
    font-family: var(--lp-font-serif);
    margin: 0 0 32px;
}
.lp-tileGrid { display: grid; gap: 24px; }
.lp-tileGrid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-tile { display: grid; gap: 14px; }
.lp-tile__img,
.lp-tile__cap { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.lp-tile:hover .lp-tile__img { transform: translateY(-6px) scale(1.02); box-shadow: 0 28px 80px rgba(18, 17, 15, 0.14), 0 8px 24px rgba(18, 17, 15, 0.06); }
.lp-tile:hover .lp-tile__cap { color: rgba(18, 17, 15, 0.95); }
.lp-tile__img {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(18, 17, 15, 0.08), 0 1px 2px rgba(18, 17, 15, 0.03);
    border: 1px solid rgba(18, 17, 15, 0.04);
    background-color: #efe9df;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.lp-tile__cap {
    color: rgba(18, 17, 15, 0.72);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.lp-tiles__cta {
    margin-top: clamp(18px, 3vw, 28px);
    display: flex;
    justify-content: center;
}
.lp-btn--ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--lp-navy);
    border: 1px solid rgba(18, 17, 15, 0.14);
    box-shadow: 0 14px 36px rgba(18, 17, 15, 0.08);
}
.lp-btn--ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(208, 176, 103, 0.55);
    box-shadow: 0 18px 48px rgba(18, 17, 15, 0.12);
}
.lp-btn--ghost:focus-visible { outline: 3px solid rgba(176, 138, 59, 0.55); outline-offset: 3px; }
.lp-tiles__cta .lp-btn {
    padding: 14px 26px;
    font-size: 14px;
    letter-spacing: 0.08em;
}
.lp-tile__img--l1 { background-image: url("../img/tiles/tailored-tours-fit.png"); }
.lp-tile__img--l2 { background-image: url("../img/tiles/luxury-boutique-itb.png"); }
.lp-tile__img--l3 { background-image: url("../img/tiles/incentive-tour.png"); }

/* Audience - Clean Typography */
.lp-audience {
    padding: 100px 0 112px;
    background: linear-gradient(180deg, rgba(241, 236, 229, 0.94), rgba(246, 243, 238, 0.94));
}
.lp-audience__content {
    max-width: 920px;
    margin: 0 auto;
}
.lp-audience__heading {
    margin-bottom: 40px;
    text-align: center;
}
.lp-audience__eyebrow {
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--lp-gold);
    font-weight: 700;
}
.lp-audience__title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 36px);
    font-family: var(--lp-font-serif);
    letter-spacing: 0.02em;
    color: var(--lp-navy);
    line-height: 1.35;
    font-weight: 700;
}
.lp-audience__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}
.lp-audience__list li {
    position: relative;
    padding-left: 28px;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.8;
    color: rgba(18, 17, 15, 0.82);
}
.lp-audience__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-orange));
    border-radius: 50%;
}
.lp-audience__list strong {
    font-weight: 700;
    color: var(--lp-navy);
}

/* Flow */
.lp-flow { padding: 112px 0 120px; background: linear-gradient(180deg, rgba(241, 236, 229, 0.94), rgba(246, 243, 238, 0.94)); }
.lp-flow__title {
    margin: 0;
    text-align: center;
    color: rgba(18, 17, 15, 0.94);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: clamp(26px, 3.2vw, 36px);
}
.lp-flow__lead {
    margin: 8px 0 48px;
    text-align: center;
    color: rgba(18, 17, 15, 0.56);
}
.lp-flowGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.lp-step {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(18, 17, 15, 0.05), 0 1px 2px rgba(18, 17, 15, 0.02);
    padding: 36px 24px 24px;
    border: 1px solid rgba(18, 17, 15, 0.04);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 160px;
}
.lp-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(18, 17, 15, 0.10), 0 6px 16px rgba(18, 17, 15, 0.04);
    border-color: rgba(208, 176, 103, 0.18);
}
.lp-step__no {
    position: absolute;
    left: 12px;
    top: -18px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--lp-blue);
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    letter-spacing: 0.12em;
    box-shadow: 0 18px 36px rgba(25, 59, 59, 0.24);
}
.lp-step__title {
    margin: 0 0 8px;
    font-weight: 700;
    color: rgba(18, 17, 15, 0.92);
    letter-spacing: 0.06em;
    font-size: 16px;
    line-height: 1.4;
}
.lp-step__desc {
    margin: 0;
    color: rgba(18, 17, 15, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ */
.lp-faq {
    padding: 100px 0 112px;
    background: var(--lp-bg);
}
.lp-faq__title {
    margin: 0 0 48px;
    text-align: center;
    font-size: clamp(26px, 3.2vw, 36px);
    font-family: var(--lp-font-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lp-navy);
}
.lp-faq__list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}
.lp-faq__item {
    display: grid;
    gap: 24px;
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    border: 1px solid rgba(18, 17, 15, 0.04);
    box-shadow: 0 4px 20px rgba(18, 17, 15, 0.04), 0 1px 2px rgba(18, 17, 15, 0.01);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-faq__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(18, 17, 15, 0.08), 0 4px 12px rgba(18, 17, 15, 0.03);
    border-color: rgba(208, 176, 103, 0.14);
}
.lp-faq__question,
.lp-faq__answer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}
.lp-faq__mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    flex-shrink: 0;
}
.lp-faq__question .lp-faq__mark {
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-orange));
    color: #fff;
}
.lp-faq__answer .lp-faq__mark {
    background: rgba(208, 176, 103, 0.12);
    color: var(--lp-gold);
    font-weight: 700;
}
.lp-faq__question h3 {
    margin: 0;
    font-size: clamp(17px, 1.9vw, 19px);
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.5;
}
.lp-faq__answer p {
    margin: 0;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.8;
    color: rgba(18, 17, 15, 0.80);
}

/* CTA */
.lp-cta {
    padding: 112px 0 120px;
    background: linear-gradient(180deg, rgba(241, 236, 229, 0.94), rgba(246, 243, 238, 0.94));
}
.lp-cta__content {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}
.lp-cta__title {
    margin: 0 0 36px;
    font-size: clamp(28px, 3.4vw, 38px);
    font-family: var(--lp-font-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lp-navy);
    line-height: 1.35;
}
.lp-cta__quote {
    position: relative;
    padding: 32px 0;
    margin-bottom: 40px;
}
.lp-cta__quote::before,
.lp-cta__quote::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
}
.lp-cta__quote::before { top: 0; }
.lp-cta__quote::after { bottom: 0; }
.lp-cta__quote p {
    margin: 0;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.9;
    color: rgba(18, 17, 15, 0.82);
    font-style: italic;
}
.lp-cta__info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.lp-cta__lead {
    margin: 0 0 16px;
    font-weight: 700;
    color: var(--lp-navy);
    font-size: clamp(15px, 1.6vw, 17px);
}
.lp-cta__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.lp-cta__list li {
    position: relative;
    padding-left: 28px;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.7;
    color: rgba(18, 17, 15, 0.80);
}
.lp-cta__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-orange));
    border-radius: 50%;
}

/* Contact */
.lp-contact {
    padding: 100px 0 120px;
    background:
        radial-gradient(1200px 520px at 12% -5%, rgba(208, 176, 103, 0.10), transparent 60%),
        radial-gradient(900px 520px at 92% 10%, rgba(25, 59, 59, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(246, 243, 238, 0.96), rgba(241, 236, 229, 0.98));
}
.lp-contact__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}
.lp-contact__info {
    padding: 8px 0;
}
.lp-contact__eyebrow {
    margin: 0 0 8px;
    font-family: var(--lp-font-serif);
    font-size: var(--type-xs);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-orange);
    font-weight: 500;
}
.lp-contact__title {
    margin: 0 0 28px;
    font-family: var(--lp-font-serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: var(--lp-navy);
}
.lp-contact__brand {
    position: relative;
    padding: 20px 0 20px 20px;
    margin: 0 0 24px;
    border-left: 2px solid var(--lp-gold);
    background: linear-gradient(90deg, rgba(208, 176, 103, 0.06), transparent 70%);
}
.lp-contact__brandName {
    margin: 0 0 6px;
    font-family: var(--lp-font-serif);
    font-size: clamp(18px, 1.9vw, 22px);
    letter-spacing: 0.16em;
    font-weight: 400;
    color: var(--lp-navy);
}
.lp-contact__brandSub {
    margin: 0;
    color: var(--lp-muted);
    font-size: var(--type-sm);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.03em;
}
.lp-contact__desc {
    margin: 0 0 28px;
    color: var(--lp-muted);
    font-size: var(--type-base);
    line-height: 1.9;
}
.lp-contactList {
    display: grid;
    gap: 16px;
}
.lp-contactList__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s var(--ease-standard);
}
a.lp-contactList__item:hover { opacity: 0.7; }
.lp-contactList__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    color: var(--lp-orange);
    border-radius: 10px;
    border: 1px solid rgba(208, 176, 103, 0.2);
    box-shadow: 0 2px 8px rgba(18, 17, 15, 0.04);
}
.lp-contactList__icon svg {
    width: 18px;
    height: 18px;
}
.lp-contactList__text {
    color: var(--lp-text);
    font-size: var(--type-base);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
a.lp-contactList__item .lp-contactList__text {
    color: var(--lp-text);
    text-decoration: none;
}
.lp-contact__formWrap {
    position: relative;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(208, 176, 103, 0.2), rgba(208, 176, 103, 0.05) 50%, rgba(25, 59, 59, 0.08));
    box-shadow: 0 30px 80px rgba(18, 17, 15, 0.10), 0 0 0 1px rgba(208, 176, 103, 0.12);
}

.lp-form {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 18px;
    padding: 32px;
    display: grid;
    gap: 18px;
    position: relative;
    backdrop-filter: blur(12px);
}
.lp-formNotice {
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.lp-formNotice--success {
    background: rgba(25, 59, 59, 0.10);
    border: 1px solid rgba(25, 59, 59, 0.22);
    color: rgba(18, 17, 15, 0.86);
}
.lp-formNotice--error {
    background: rgba(211, 47, 47, 0.10);
    border: 1px solid rgba(211, 47, 47, 0.22);
    color: rgba(18, 17, 15, 0.86);
}
.lp-help {
    font-size: var(--type-xxs);
    color: rgba(18, 17, 15, 0.58);
}
/* Custom file upload */
.lp-fileUpload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(18, 17, 15, 0.12);
    border-radius: 12px;
    background: rgba(246, 243, 238, 0.5);
    transition: border-color 0.2s;
}
.lp-fileUpload:hover {
    border-color: rgba(18, 17, 15, 0.22);
}
.lp-fileUpload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.lp-fileUpload__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    border: 1px solid rgba(18, 17, 15, 0.14);
    border-radius: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    font-family: var(--lp-font-ui);
    font-size: var(--type-xxs);
    font-weight: 600;
    color: var(--lp-ink);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.lp-fileUpload__btn:hover {
    background: #fff;
    border-color: rgba(18, 17, 15, 0.24);
}
.lp-fileUpload__btn svg {
    opacity: 0.55;
}
.lp-fileUpload__status {
    font-family: var(--lp-font-ui);
    font-size: var(--type-xxs);
    color: rgba(18, 17, 15, 0.42);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lp-fileUpload__status--has-files {
    color: var(--lp-ink);
}
.lp-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.lp-formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lp-label { display: grid; gap: 7px; }
.lp-label__text {
    font-size: var(--type-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-muted);
    font-weight: 500;
}
.lp-input, .lp-textarea, .lp-select {
    width: 100%;
    border: 1px solid rgba(18, 17, 15, 0.10);
    border-radius: 10px;
    padding: 14px 14px;
    font-family: var(--lp-font-ui);
    font-size: var(--type-base);
    background: rgba(246, 243, 238, 0.5);
    outline: none;
    transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard), background-color var(--dur-fast) var(--ease-standard);
}
.lp-input:focus, .lp-textarea:focus, .lp-select:focus {
    border-color: rgba(176, 138, 59, 0.6);
    box-shadow: 0 0 0 3px rgba(176, 138, 59, 0.08);
    background: rgba(255, 255, 255, 0.9);
}
.lp-input::placeholder, .lp-textarea::placeholder {
    color: rgba(18, 17, 15, 0.28);
}
.lp-btn {
    border: 0;
    border-radius: 12px;
    padding: 18px 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-size: 15px;
    transition: transform 0.4s var(--ease-standard), box-shadow 0.4s var(--ease-standard), background 0.4s var(--ease-standard), border-color 0.4s var(--ease-standard);
}
.lp-btn--primary {
    background: linear-gradient(135deg, #12110f 0%, #1f1d18 50%, #12110f 100%);
    color: #fff;
    border: 1px solid rgba(208, 176, 103, 0.32);
    position: relative;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    box-shadow: 0 8px 24px rgba(18, 17, 15, 0.20), 0 2px 6px rgba(18, 17, 15, 0.10);
}
.lp-btn--primary::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(110deg, transparent 0%, rgba(208, 176, 103, 0.22) 46%, transparent 66%);
    transform: translateX(-80%);
    transition: transform var(--dur-slow) var(--ease-standard);
    pointer-events: none;
    z-index: -1;
}
.lp-btn--primary:hover::after { transform: translateX(80%); }
.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(18, 17, 15, 0.28), 0 4px 12px rgba(18, 17, 15, 0.14);
    border-color: rgba(208, 176, 103, 0.45);
}
.lp-btn--primary:focus-visible { outline: 3px solid rgba(176, 138, 59, 0.55); outline-offset: 3px; }

/* Footer */
.lp-footer {
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.98), rgba(241, 236, 229, 0.98));
    border-top: 1px solid rgba(18, 17, 15, 0.10);
    padding: 28px 0 34px;
}
.lp-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(18, 17, 15, 0.10);
}
.lp-footer__brand { font-weight: 700; letter-spacing: 0.10em; color: var(--lp-navy); text-transform: uppercase; font-size: 12px; }
.lp-footer__menu {
    list-style: none;
    display: flex;
    gap: 18px;
    color: rgba(18, 17, 15, 0.72);
}
.lp-footer__menu a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.lp-footer__menu a:hover { text-decoration: underline; }
.lp-footer__bottom {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(18, 17, 15, 0.52);
    font-size: var(--type-xxs);
}
.lp-footer__note, .lp-footer__copy { margin: 0; }

/* Page hero (inner pages) */
.lp-pageHero {
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.98), rgba(241, 236, 229, 0.98));
    border-bottom: 1px solid rgba(18, 17, 15, 0.10);
    padding: 34px 0;
}
.lp-pageHero__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: rgba(18, 17, 15, 0.92);
}

/* Archives / posts (News) */
.archive-content, .post-content, .page-content, .page-block { padding: 46px 0 74px; background: var(--lp-bg); }
.archive-title, .post-title, .page-title, .block-title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--lp-navy);
}
.archive-description { color: rgba(18, 17, 15, 0.56); margin-top: -8px; }
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 14px;
}
.post-card {
    background: #fff;
    border: 1px solid rgba(18, 17, 15, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 56px rgba(18, 17, 15, 0.10);
    transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 30px 90px rgba(18, 17, 15, 0.14); border-color: rgba(176, 138, 59, 0.22); }
.post-card h3 a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post-card h3 a:hover { text-decoration: underline; }
.post-thumb { height: 150px; background: linear-gradient(135deg, #efe9df, #7a8b89 55%, #12110f); }
.post-meta { padding: 12px 14px 0; color: rgba(18, 17, 15, 0.56); }
.post-card h3 { margin: 8px 14px 10px; font-size: var(--type-md); line-height: var(--leading-tight); letter-spacing: 0.04em; }
.post-excerpt { padding: 0 14px 18px; color: rgba(18, 17, 15, 0.62); }
.post-navigation { margin-top: 20px; }
.the_posts_pagination { margin-top: 18px; }
.the_posts_pagination .nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
.the_posts_pagination a, .the_posts_pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(18, 17, 15, 0.14);
    color: rgba(18, 17, 15, 0.72);
    background: rgba(255, 255, 255, 0.70);
    transition: transform var(--dur-base) var(--ease-standard), background-color var(--dur-base) var(--ease-standard);
}
.the_posts_pagination a:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.92); }
.the_posts_pagination .current {
    background: var(--lp-navy);
    border-color: rgba(208, 176, 103, 0.28);
    color: #fff;
}

/* Company */
.lp-company__section { margin-bottom: 48px; }
.lp-company__section:last-child { margin-bottom: 0; }
.lp-company__heading { display: grid; gap: 6px; margin-bottom: 18px; }
.lp-company__eyebrow {
    margin: 0;
    font-size: var(--type-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(18, 17, 15, 0.56);
}
.lp-company__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}
.lp-company__copy p { margin: 0 0 12px; color: rgba(18, 17, 15, 0.72); }
.lp-company__copy p:last-child { margin-bottom: 0; }
.lp-company__lead {
    font-size: var(--type-md);
    font-weight: 700;
    color: rgba(18, 17, 15, 0.92);
}
.lp-company__media { margin: 0; }
.lp-company__media img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(18, 17, 15, 0.10);
    box-shadow: 0 20px 60px rgba(18, 17, 15, 0.12);
}
.lp-company__tableWrap {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 56px rgba(18, 17, 15, 0.08);
}
.lp-company__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--type-sm);
}
.lp-company__table th,
.lp-company__table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(18, 17, 15, 0.08);
    vertical-align: top;
}
.lp-company__table th {
    width: 28%;
    text-align: left;
    background: rgba(18, 17, 15, 0.04);
    color: rgba(18, 17, 15, 0.72);
    font-weight: 700;
    letter-spacing: 0.06em;
}
.lp-company__table td { color: rgba(18, 17, 15, 0.72); }
.lp-company__table tr:last-child th,
.lp-company__table tr:last-child td { border-bottom: 0; }
.lp-company__sign {
    margin-top: 18px;
    text-align: right;
    color: rgba(18, 17, 15, 0.72);
}
.lp-company__sign p { margin: 0 0 6px; }
.lp-company__signature {
    display: inline-block;
    max-width: 180px;
    height: auto;
    margin-top: 6px;
}
.lp-company__accessGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}
.lp-company__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(18, 17, 15, 0.10);
    box-shadow: 0 24px 70px rgba(18, 17, 15, 0.12);
    aspect-ratio: 4 / 3;
    background: #fff;
}
.lp-company__map iframe { width: 100%; height: 100%; border: 0; }
.lp-company__accessCard {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 18px 18px 20px;
    display: grid;
    gap: 12px;
    box-shadow: 0 18px 56px rgba(18, 17, 15, 0.08);
}
.lp-company__accessTitle {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(18, 17, 15, 0.92);
}
.lp-company__address {
    margin: 0;
    font-style: normal;
    color: rgba(18, 17, 15, 0.72);
}
.lp-company__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}
.lp-company__note {
    margin: 0;
    font-size: var(--type-xs);
    color: rgba(18, 17, 15, 0.58);
}

/* 404 */
.error-404 { text-align: center; padding: 90px 0 110px; background: var(--lp-bg); }
.error-404 .container {
    max-width: 720px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 17, 15, 0.10);
    border-radius: 16px;
    padding: 34px 24px;
    box-shadow: 0 24px 70px rgba(18, 17, 15, 0.12);
}
.error-404 h1 { font-size: 56px; margin: 0; color: var(--lp-navy); letter-spacing: 0.10em; }
.error-404 h2 { margin: 10px 0 10px; font-size: 16px; color: rgba(18, 17, 15, 0.92); letter-spacing: 0.08em; }
.error-404 p { margin: 0 0 14px; color: rgba(18, 17, 15, 0.58); }
.error-404 a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.error-404 a:hover { text-decoration-color: rgba(176, 138, 59, 0.8); }

/* Debug overlay (only when ?debug=1 adds body.debug-outline) */
body.debug-outline { position: relative; }
body.debug-outline::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image:
        /* baseline grid */
        repeating-linear-gradient(
            to bottom,
            rgba(37, 99, 235, 0.12),
            rgba(37, 99, 235, 0.12) 1px,
            transparent 1px,
            transparent 8px
        ),
        /* 12-col vertical grid */
        linear-gradient(to right, rgba(245, 158, 11, 0.18) 1px, transparent 1px);
    background-size: 100% 8px, calc(100% / 12) 100%;
    mix-blend-mode: multiply;
}
body.debug-outline::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(calc(100% - 40px), var(--lp-container));
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
    outline: 2px solid rgba(255, 0, 0, 0.25);
}
body.debug-outline .container,
body.debug-outline .lp-highlight,
body.debug-outline .lp-audience__card,
body.debug-outline .lp-servicesIntro__item,
body.debug-outline .lp-card,
body.debug-outline .lp-panel,
body.debug-outline .lp-tile__img,
body.debug-outline .lp-step,
body.debug-outline .lp-form {
    outline: 1px dashed rgba(0, 0, 0, 0.35);
    outline-offset: -1px;
}

/* Responsive */
@media (max-width: 1024px) {
    body { background-attachment: scroll; }
    .lp-header__inner { height: 140px; gap: 20px; }
    .lp-logo__image { max-width: min(460px, 42vw); max-height: 110px; }
    .lp-nav__menu { gap: 20px; }
    .lp-cards { grid-template-columns: repeat(2, 1fr); }
    .lp-tripanel__grid { grid-template-columns: 1fr; }
    .lp-panel { border-radius: 14px; }
    .lp-panel__inner { padding: 18px; }
    .lp-highlightGrid { grid-template-columns: repeat(2, 1fr); }
    .lp-servicesIntro { grid-template-columns: 1fr; gap: 32px; }
    .lp-servicesIntro__grid { grid-template-columns: 1fr; }
    .lp-flowGrid { grid-template-columns: repeat(3, 1fr); }
    .lp-contact__grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    /* ── Global mobile reset ── */
    html { scroll-padding-top: 56px; }
    body { font-size: 14px; line-height: 1.7; letter-spacing: 0.01em; }

    /* ── Loader: responsive text ── */
    .lp-loader { padding: 16px; }
    .lp-loader__inner {
        width: min(100%, 22rem);
        max-width: 100%;
    }
    .lp-loader__line {
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .lp-loader__line--en {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0.02em;
    }
    .lp-loader__line--ja {
        font-size: 13px;
        line-height: 1.5;
        letter-spacing: 0.08em;
        margin-top: 8px;
    }
    .lp-loader__text { display: block; }

    /* ── Header: compact + hamburger ── */
    .lp-header__inner {
        height: auto;
        padding: 12px 0 14px;
        gap: 10px 12px;
        flex-wrap: wrap;
        align-items: center;
    }
    .lp-logo { flex-shrink: 0; }
    .lp-logo__image { max-width: 170px; max-height: 44px; }
    .lp-nav {
        display: none !important;
    }
    .lp-navToggle,
    .lp-navOverlay { display: none; }

    /* ── Hero ── */
    .lp-hero { min-height: 75vh; display: flex; align-items: center; }
    .lp-hero__inner { padding: 72px 0 64px; }
    .lp-hero__copy { gap: 20px; }
    .lp-hero__eyebrow {
        font-size: 11px;
        letter-spacing: 0.42em;
        opacity: 0.65;
        position: relative;
        padding-bottom: 14px;
    }
    .lp-hero__eyebrow::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 32px;
        height: 1px;
        background: linear-gradient(90deg, var(--lp-gold), transparent);
    }
    .lp-hero__lead {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.3;
        letter-spacing: -0.01em;
        font-weight: 700;
    }
    .lp-hero__desc {
        font-size: 14px;
        line-height: 1.85;
        opacity: 0.8;
        max-width: 320px;
    }
    .lp-hero__inner::after { bottom: 24px; width: 60px; }
    .lp-hero__cta { gap: 10px; margin-top: 4px; }
    .lp-btn--hero { font-size: 13px; padding: 15px 28px; letter-spacing: 0.06em; }

    /* ── Stats / Highlights ── */
    .lp-stats { padding: 40px 0 36px; }
    .lp-sectionTitle { font-size: 20px; margin-bottom: 20px; }
    .lp-highlightGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .lp-highlight { min-height: auto; border-radius: 14px; }
    .lp-highlight .lp-heroNav__link { min-height: auto; padding: 12px 8px 10px; gap: 6px; }
    .lp-highlight .lp-heroNav__icon { width: 20px; height: 20px; }
    .lp-highlight .lp-heroNav__label { font-size: 10px; letter-spacing: 0.04em; }
    .lp-highlight__stat { min-height: auto; padding: 10px 8px 12px; gap: 3px; }
    .lp-highlight .lp-statsBox__numMain { font-size: 17px; font-weight: 700; }
    .lp-statsBox__label { font-size: 10px; letter-spacing: 0.06em; }
    .lp-stats__sub { font-size: 13px; margin-top: 6px; }
    .lp-stats__tagline { font-size: 14px; }
    .lp-highlight__note { margin-top: 16px; padding: 12px 14px; font-size: 13px; }

    /* ── Tiles ── */
    .lp-tiles { padding: 0 0 40px; }
    .lp-tiles__title { font-size: 20px; margin-bottom: 20px; }
    .lp-tileGrid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .lp-tile { gap: 10px; }
    .lp-tile__img { border-radius: 12px; }
    .lp-tile__cap { font-size: 13px; text-align: center; }
    .lp-tiles__cta { justify-content: center; margin-top: 20px; }
    .lp-tiles__cta .lp-btn { width: 100%; max-width: 320px; text-align: center; font-size: 14px; }

    /* ── Audience ── */
    .lp-audience { padding: 40px 0 44px; }
    .lp-audience__heading { margin-bottom: 24px; }
    .lp-audience__eyebrow { font-size: 11px; margin-bottom: 10px; }
    .lp-audience__title { font-size: 20px; }
    .lp-audience__list { gap: 14px; }
    .lp-audience__list li { font-size: 14px; line-height: 1.7; padding-left: 20px; }
    .lp-audience__list li::before { top: 0.6em; width: 6px; height: 6px; }

    /* ── Tripanel ── */
    .lp-tripanel { padding: 40px 0; }
    .lp-tripanel__grid { grid-template-columns: 1fr; gap: 12px; }
    .lp-panel { min-height: auto; border-radius: 12px; }
    .lp-panel__inner { padding: 16px; }
    .lp-panel__eyebrow { font-size: 10px; }
    .lp-panel__title { font-size: 14px; letter-spacing: 0.06em; margin-top: 6px; }
    .lp-panel__graphic { margin-top: 8px; }
    .lp-panel__graphic svg { width: 60px; height: 60px; }
    .lp-centerBadge { width: 64px; height: 64px; font-size: 10px; }
    .lp-panel__centerMeta { font-size: 10px; }
    .lp-iconGrid { gap: 8px; margin-top: 10px; }
    .lp-iconGrid__item { padding: 8px 10px; font-size: 11px; border-radius: 8px; }

    /* ── Services ── */
    .lp-services { padding: 44px 0 48px; }
    .lp-servicesIntro { gap: 32px; }
    .lp-servicesIntro__main { padding-left: 16px; }
    .lp-servicesIntro__main::before { width: 3px; }
    .lp-servicesIntro__eyebrow { font-size: 11px; margin-bottom: 10px; }
    .lp-servicesIntro__title { margin-bottom: 12px; font-size: 20px; }
    .lp-servicesIntro__lead { font-size: 14px; line-height: 1.75; margin-bottom: 10px; color: rgba(18, 17, 15, 0.85); }
    .lp-servicesIntro__details { gap: 18px; }
    .lp-servicesIntro__subtitle { font-size: 16px; padding-bottom: 12px; }
    .lp-servicesIntro__grid { grid-template-columns: 1fr; gap: 0; }
    .lp-servicesIntro__item {
        gap: 4px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(18, 17, 15, 0.08);
    }
    .lp-servicesIntro__item:first-child { padding-top: 0; }
    .lp-servicesIntro__item:last-child { border-bottom: none; }
    .lp-servicesIntro__item h3 { font-size: 15px; font-weight: 700; }
    .lp-servicesIntro__item p { font-size: 13px; line-height: 1.7; color: rgba(18, 17, 15, 0.78); }

    /* ── Cards ── */
    .lp-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
    .lp-card { border-radius: 14px; }
    .lp-thumb { height: 100px; }
    .lp-thumb__badge { font-size: 10px; padding: 4px 8px; left: 8px; bottom: 8px; letter-spacing: 0.06em; }
    .lp-thumb__action { width: 24px; height: 24px; right: 8px; top: 8px; }
    .lp-card__body { padding: 12px 12px 14px; }
    .lp-card__title { font-size: 14px; margin-bottom: 6px; font-weight: 700; }
    .lp-card__list { gap: 5px; font-size: 13px; }
    .lp-card__text { font-size: 13px; line-height: 1.65; }

    /* ── Flow ── */
    .lp-flow { padding: 40px 0 48px; }
    .lp-flow__title { font-size: 20px; }
    .lp-flow__lead { font-size: 13px; margin: 6px 0 18px; line-height: 1.6; }
    .lp-flowGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .lp-step { padding: 24px 14px 16px; min-height: auto; border-radius: 12px; }
    .lp-step__no { left: 10px; top: -13px; width: 28px; height: 28px; font-size: 11px; }
    .lp-step__title { font-size: 14px; margin-bottom: 5px; letter-spacing: 0.04em; font-weight: 700; }
    .lp-step__desc { font-size: 13px; line-height: 1.6; }

    /* ── FAQ ── */
    .lp-faq { padding: 40px 0 44px; }
    .lp-faq__title { margin-bottom: 20px; font-size: 20px; }
    .lp-faq__list { gap: 14px; }
    .lp-faq__item { padding: 18px 16px; gap: 14px; border-radius: 14px; }
    .lp-faq__mark { width: 26px; height: 26px; font-size: 12px; border-radius: 6px; }
    .lp-faq__question, .lp-faq__answer { gap: 10px; }
    .lp-faq__question h3 { font-size: 14px; line-height: 1.5; font-weight: 700; }
    .lp-faq__answer p { font-size: 13px; line-height: 1.75; }

    /* ── CTA ── */
    .lp-cta { padding: 40px 0 44px; }
    .lp-cta__title { margin-bottom: 16px; font-size: 20px; font-weight: 700; }
    .lp-cta__quote { padding: 20px 0; margin-bottom: 20px; }
    .lp-cta__quote::before, .lp-cta__quote::after { width: 48px; }
    .lp-cta__quote p { font-size: 14px; line-height: 1.85; }
    .lp-cta__lead { font-size: 14px; margin-bottom: 14px; }
    .lp-cta__list { gap: 10px; }
    .lp-cta__list li { font-size: 14px; padding-left: 20px; line-height: 1.65; }
    .lp-cta__list li::before { width: 6px; height: 6px; }

    /* ── Contact ── */
    .lp-contact { padding: 48px 0 56px; }
    .lp-contact__grid { gap: 28px; }
    .lp-contact__info { padding: 0; }
    .lp-contact__eyebrow { font-size: 11px; }
    .lp-contact__title { font-size: 22px; margin-bottom: 18px; font-weight: 700; }
    .lp-contact__brand { padding: 16px 0 16px 18px; margin-bottom: 18px; }
    .lp-contact__brandName { font-size: 16px; letter-spacing: 0.12em; }
    .lp-contact__brandSub { font-size: 13px; margin-top: 4px; }
    .lp-contact__desc { font-size: 14px; margin-bottom: 22px; line-height: 1.75; }
    .lp-contactList { gap: 14px; }
    .lp-contactList__item { grid-template-columns: 40px 1fr; gap: 12px; }
    .lp-contactList__icon { width: 40px; height: 40px; border-radius: 10px; }
    .lp-contactList__icon svg { width: 18px; height: 18px; }
    .lp-contactList__text { font-size: 14px; line-height: 1.65; }
    .lp-contact__formWrap { padding: 2px; border-radius: 16px; }
    .lp-form { padding: 24px; gap: 18px; border-radius: 15px; }
    .lp-formRow { grid-template-columns: 1fr; gap: 16px; }
    .lp-label__text { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
    .lp-input, .lp-textarea, .lp-select { padding: 14px; font-size: 15px; border-radius: 10px; }
    .lp-btn { padding: 16px 22px; font-size: 15px; border-radius: 10px; }
    .lp-help { font-size: 12px; }

    /* ── Footer ── */
    .lp-footer { padding: 24px 0 28px; }
    .lp-footer__top, .lp-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .lp-footer__top { padding-bottom: 14px; }
    .lp-footer__brand { font-size: 12px; }
    .lp-footer__menu { gap: 16px; font-size: 12px; }
    .lp-footer__bottom { margin-top: 12px; font-size: 11px; }

    /* ── Archive / Posts ── */
    .posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .post-thumb { height: 110px; }
    .post-card h3 { margin: 8px 12px 8px; font-size: 14px; font-weight: 700; }
    .post-meta { padding: 10px 12px 0; font-size: 12px; }
    .post-excerpt { padding: 0 12px 12px; font-size: 13px; line-height: 1.6; }

    /* ── Company ── */
    .lp-company__grid,
    .lp-company__accessGrid { grid-template-columns: 1fr; }

    .lp-langSwitch { top: 8px; right: 16px; font-size: 12px; padding: 5px 14px; }
    .lp-cta__buttons { flex-direction: column; align-items: stretch; }
}

/* ── Language Switcher ── */
.lp-langSwitch {
    position: absolute;
    top: 16px;
    right: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--lp-navy);
    border: 1.5px solid var(--lp-gold);
    border-radius: 4px;
    background: transparent;
    text-decoration: none;
    transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
    z-index: 10;
}
.lp-langSwitch:hover {
    background: var(--lp-gold);
    color: #fff;
}

/* ── Section Title (EN Track Record) ── */
.lp-sectionTitle {
    font-family: var(--lp-font-serif);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--lp-navy);
    margin-bottom: 32px;
}

/* ── Stats Subtexts ── */
.lp-stats__sub {
    text-align: center;
    font-size: var(--type-sm);
    color: rgba(18, 17, 15, 0.62);
    letter-spacing: 0.04em;
    margin-top: 12px;
    line-height: 1.6;
}
.lp-stats__tagline {
    text-align: center;
    font-size: var(--type-base);
    font-weight: 600;
    color: var(--lp-navy);
    margin-top: 20px;
    letter-spacing: 0.02em;
}

/* ── CTA Buttons Group ── */
.lp-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

/* ══════════════════════════════════════════════════
   Tour Examples Page
   readability-first refinement (structure unchanged)
   ══════════════════════════════════════════════════ */

.lp-toursPage--premium {
    background: #f5f3ef;
    color: #181715;
}

/* ─── Navigation ─── */
.lp-tourNav {
    position: sticky;
    top: 64px;
    z-index: 40;
    background: rgba(245, 243, 239, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(24, 23, 21, 0.1);
}

.lp-tourNav__list {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lp-tourNav__list::-webkit-scrollbar { display: none; }
.lp-tourNav__list li { flex-shrink: 0; }

.lp-tourNav__list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    border-bottom: 1px solid transparent;
    color: rgba(24, 23, 21, 0.58);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.lp-tourNav__list a span {
    font-family: var(--lp-font-serif);
    font-size: 14px;
    line-height: 1;
    color: rgba(24, 23, 21, 0.46);
}

.lp-tourNav__list a:hover {
    color: rgba(24, 23, 21, 0.82);
    border-color: rgba(176, 138, 59, 0.2);
    background: rgba(176, 138, 59, 0.08);
}

.lp-tourNav__list a.is-active {
    color: #181715;
    border-color: rgba(176, 138, 59, 0.4);
    background: rgba(176, 138, 59, 0.14);
    box-shadow: inset 0 0 0 1px rgba(176, 138, 59, 0.2);
}

.lp-tourNav__list a.is-active span {
    color: var(--lp-orange-deep);
}

/* ─── Tour section rhythm ─── */
.lp-tourSection {
    position: relative;
}

#tour-golden-route { padding: 110px 0 92px; }
#tour-tohoku       { padding: 88px 0 96px; }
#tour-cruise1      { padding: 102px 0 92px; }
#tour-cruise2      { padding: 88px 0 102px; }
#tour-hokkaido     { padding: 96px 0 120px; }

.lp-tourSection + .lp-tourSection::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(calc(100% - 80px), var(--lp-container));
    border-top: 1px solid rgba(24, 23, 21, 0.1);
}

.lp-tourSection--dark {
    background: #171613;
    color: #f8f6f2;
}

.lp-tourSection--dark::before {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* ─── Header ─── */
.lp-tourSection__header {
    position: relative;
    margin-bottom: 34px;
}

.lp-tourSection__header::before {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: -8px;
    font-family: var(--lp-font-serif);
    font-size: clamp(88px, 13vw, 160px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.03em;
    color: rgba(24, 23, 21, 0.06);
    pointer-events: none;
}

.lp-tourSection--dark .lp-tourSection__header::before {
    color: rgba(255, 255, 255, 0.08);
}

.lp-tourSection__badge {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-orange-deep);
}

.lp-tourSection--dark .lp-tourSection__badge {
    color: rgba(208, 176, 103, 0.85);
}

.lp-tourSection__title {
    margin: 10px 0 0;
    font-family: var(--lp-font-serif);
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: 1.14;
    letter-spacing: 0.03em;
    color: #151412;
}

.lp-tourSection--dark .lp-tourSection__title {
    color: #ffffff;
}

.lp-tourSection__subtitle {
    margin: 12px 0 0;
    max-width: 860px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(24, 23, 21, 0.72);
}

.lp-tourSection--dark .lp-tourSection__subtitle {
    color: rgba(255, 255, 255, 0.82);
}

/* ─── Hero image ─── */
.lp-tourSection__image {
    width: 100%;
    height: clamp(280px, 36vw, 460px);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 20px 58px rgba(24, 23, 21, 0.15);
    margin-bottom: 28px;
}

.lp-tourSection--dark .lp-tourSection__image {
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
}

/* ─── Content area ─── */
.lp-tourSection__body {
    max-width: 980px;
}

.lp-tourSection__block {
    margin: 0 0 14px;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid rgba(24, 23, 21, 0.1);
    background: rgba(255, 255, 255, 0.72);
}

.lp-tourSection__block:last-of-type {
    margin-bottom: 0;
}

.lp-tourSection--dark .lp-tourSection__block {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.05);
}

.lp-tourSection__block h3 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(24, 23, 21, 0.72);
}

.lp-tourSection--dark .lp-tourSection__block h3 {
    color: rgba(255, 255, 255, 0.84);
}

/* ─── Text readability ─── */
.lp-tourSection__conceptText {
    margin: 0;
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.01em;
    color: rgba(24, 23, 21, 0.9);
}

.lp-tourSection--dark .lp-tourSection__conceptText {
    color: rgba(255, 255, 255, 0.92);
}

.lp-tourSection__routeArrows {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(24, 23, 21, 0.9);
}

.lp-tourSection--dark .lp-tourSection__routeArrows {
    color: rgba(255, 255, 255, 0.9);
}

.lp-tourSection__expGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 12px;
}

.lp-tourSection__expGrid > div {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(24, 23, 21, 0.1);
    background: rgba(24, 23, 21, 0.03);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(24, 23, 21, 0.86);
}

.lp-tourSection--dark .lp-tourSection__expGrid > div {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
}

.lp-tourSection__expText {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(24, 23, 21, 0.82);
}

.lp-tourSection--dark .lp-tourSection__expText {
    color: rgba(255, 255, 255, 0.86);
}

.lp-tourSection__featureList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.lp-tourSection__featureList li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(24, 23, 21, 0.9);
}

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

.lp-tourSection--dark .lp-tourSection__featureList li {
    color: rgba(255, 255, 255, 0.9);
}

.lp-tourSection--dark .lp-tourSection__featureList li::before {
    background: rgba(208, 176, 103, 0.94);
}

.lp-tourSection__note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(24, 23, 21, 0.72);
}

.lp-tourSection--dark .lp-tourSection__note {
    color: rgba(255, 255, 255, 0.72);
}

/* ─── CTA ─── */
.lp-tourCta {
    padding: 0 0 102px;
}

.lp-tourCta__content {
    padding: 40px 34px;
    border-radius: 14px;
    background: #1b1a17;
}

.lp-tourCta__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(208, 176, 103, 0.9);
}

.lp-tourCta__title {
    margin: 10px 0 0;
    font-family: var(--lp-font-serif);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.24;
    letter-spacing: 0.03em;
    color: #fff;
}

.lp-tourCta__lead {
    margin: 12px 0 0;
    max-width: 760px;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.84);
}

.lp-tourCta__buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-tourCta__buttons .lp-btn {
    min-width: 180px;
    justify-content: center;
}

.lp-tourCta__buttons .lp-btn--ghost {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.lp-tourCta__buttons .lp-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
}

/* ─── Reveal ─── */
.lp-toursPage--premium .js-reveal {
    opacity: 0;
    transition: opacity 520ms ease;
}

.lp-toursPage--premium .js-reveal.is-revealed {
    opacity: 1;
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
    #tour-golden-route,
    #tour-tohoku,
    #tour-cruise1,
    #tour-cruise2,
    #tour-hokkaido {
        padding: 68px 0 62px;
    }

    .lp-tourSection__header {
        margin-bottom: 24px;
    }

    .lp-tourSection__image {
        height: clamp(210px, 38vw, 320px);
        margin-bottom: 20px;
    }

    .lp-tourSection__expGrid {
        grid-template-columns: 1fr;
    }

    .lp-tourCta {
        padding-bottom: 74px;
    }

    .lp-tourCta__content {
        padding: 28px 22px;
    }
}

@media (max-width: 720px) {
    .lp-tourNav {
        top: 56px;
    }

    .lp-tourNav__list {
        padding: 6px 0;
    }

    .lp-tourNav__list a {
        padding: 8px 11px;
        font-size: 11px;
    }

    .lp-tourNav__list a span {
        font-size: 12px;
    }

    #tour-golden-route,
    #tour-tohoku,
    #tour-cruise1,
    #tour-cruise2,
    #tour-hokkaido {
        padding: 56px 0 52px;
    }

    .lp-tourSection__header::before {
        top: -10px;
        right: -2px;
        font-size: 70px;
    }

    .lp-tourSection__title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .lp-tourSection__subtitle {
        font-size: 14px;
    }

    .lp-tourSection__block {
        padding: 14px;
    }

    .lp-tourSection__conceptText {
        font-size: 15px;
    }

    .lp-tourSection__routeArrows,
    .lp-tourSection__expText,
    .lp-tourSection__featureList li {
        font-size: 13px;
    }

    .lp-tourSection__expGrid > div {
        font-size: 13px;
    }

    .lp-tourSection__note {
        font-size: 12px;
    }

    .lp-tourCta {
        padding-bottom: 62px;
    }

    .lp-tourCta__content {
        padding: 20px 16px;
    }

    .lp-tourCta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-tourCta__buttons .lp-btn {
        width: 100%;
    }
}

/* ══════════════════════════════════════════════════
   UI/UX Enhancements
   ══════════════════════════════════════════════════ */

/* ─── Hero CTA Buttons ─── */
.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.lp-btn--hero {
    padding: 16px 32px;
    font-size: 15px;
    letter-spacing: 0.08em;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-hero__cta .lp-btn--ghost {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lp-hero__cta .lp-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

@media (max-width: 720px) {
    .lp-hero__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 6px;
    }
    .lp-btn--hero {
        padding: 13px 20px;
        font-size: 13px;
        text-align: center;
    }
}

/* ─── FAQ Accordion ─── */
.lp-faq__item {
    cursor: default;
}

details.lp-faq__item summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

details.lp-faq__item summary::-webkit-details-marker { display: none; }
details.lp-faq__item summary::marker { display: none; content: ""; }

.lp-faq__toggle {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(208, 176, 103, 0.12);
    border: 1px solid rgba(208, 176, 103, 0.25);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s var(--ease-standard), background 0.3s var(--ease-standard);
}

.lp-faq__toggle::before,
.lp-faq__toggle::after {
    content: "";
    position: absolute;
    background: var(--lp-gold);
    border-radius: 2px;
}

.lp-faq__toggle::before {
    width: 12px;
    height: 2px;
}

.lp-faq__toggle::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s var(--ease-standard), opacity 0.3s var(--ease-standard);
}

details.lp-faq__item[open] .lp-faq__toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

details.lp-faq__item[open] .lp-faq__toggle {
    background: rgba(208, 176, 103, 0.2);
}

details.lp-faq__item .lp-faq__answer {
    animation: lp-faq-open 0.35s var(--ease-standard);
}

@keyframes lp-faq-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

details.lp-faq__item summary:hover .lp-faq__toggle {
    background: rgba(208, 176, 103, 0.22);
    border-color: rgba(208, 176, 103, 0.4);
}

@media (max-width: 720px) {
    .lp-faq__toggle { width: 22px; height: 22px; }
    .lp-faq__toggle::before { width: 10px; }
    .lp-faq__toggle::after { height: 10px; }
    details.lp-faq__item summary { gap: 8px; }
}

/* ─── Back to Top Button ─── */
.lp-backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(208, 176, 103, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: var(--lp-navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(18, 17, 15, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease-standard), visibility 0s linear 0.4s, transform 0.4s var(--ease-standard), box-shadow 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard);
}

.lp-backToTop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.4s var(--ease-standard), visibility 0s, transform 0.4s var(--ease-standard), box-shadow 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard);
}

.lp-backToTop:hover {
    border-color: var(--lp-gold);
    box-shadow: 0 12px 40px rgba(18, 17, 15, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 720px) {
    .lp-backToTop {
        width: 40px;
        height: 40px;
        bottom: 18px;
        right: 18px;
    }
    .lp-backToTop svg { width: 16px; height: 16px; }
}

/* ─── Tour Route Timeline ─── */
.lp-tourSection__routeStrip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    position: relative;
}

.lp-tourSection__routeStrip span {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px 8px 12px;
    border-radius: 0;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--lp-navy);
}

.lp-tourSection__routeStrip span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-orange));
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(208, 176, 103, 0.18);
}

.lp-tourSection__routeStrip span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(208, 176, 103, 0.6), rgba(208, 176, 103, 0.15));
}

.lp-tourSection--dark .lp-tourSection__routeStrip span {
    color: rgba(255, 255, 255, 0.94);
}

.lp-tourSection--dark .lp-tourSection__routeStrip span::before {
    box-shadow: 0 0 0 3px rgba(208, 176, 103, 0.25);
}

.lp-tourSection--dark .lp-tourSection__routeStrip span:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(208, 176, 103, 0.5), rgba(208, 176, 103, 0.1));
}

@media (max-width: 720px) {
    .lp-tourSection__routeStrip span {
        padding: 6px 12px 6px 8px;
        font-size: 11px;
    }
    .lp-tourSection__routeStrip span::before {
        width: 7px;
        height: 7px;
        margin-right: 7px;
        box-shadow: 0 0 0 2px rgba(208, 176, 103, 0.18);
    }
    .lp-tourSection__routeStrip span:not(:last-child)::after {
        width: 12px;
        right: -2px;
    }
}

/* ─── Nav Active State (Scroll Spy) ─── */
.lp-nav__menu a.is-scrollspy-active {
    border-bottom-color: rgba(208, 176, 103, 0.85);
    color: rgba(18, 17, 15, 0.95);
}

/* ══════════════════════════════════════════════════
   Design Polish & Cohesion Pass
   ══════════════════════════════════════════════════ */

/* ─── Refined Body Background ─── */
body {
    background-image:
        radial-gradient(ellipse 1600px 800px at 8% -8%, rgba(208, 176, 103, 0.06), transparent 60%),
        radial-gradient(ellipse 1200px 600px at 92% 5%, rgba(25, 59, 59, 0.04), transparent 55%);
}

/* ─── Header: tighter, more refined ─── */
.lp-header {
    background: rgba(246, 243, 238, 0.88);
    border-bottom-color: rgba(208, 176, 103, 0.12);
    box-shadow: 0 1px 0 rgba(208, 176, 103, 0.08), 0 4px 20px rgba(18, 17, 15, 0.03);
}

.lp-nav__menu {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.lp-nav__menu a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
}

/* ─── Hero: more dramatic and premium ─── */
.lp-hero {
    min-height: 620px;
}

.lp-hero__bg {
    background:
        linear-gradient(180deg, rgba(18, 17, 15, 0.08) 0%, rgba(18, 17, 15, 0.42) 40%, rgba(18, 17, 15, 0.82) 100%),
        radial-gradient(1200px 520px at 70% 20%, rgba(208, 176, 103, 0.18), transparent 62%),
        url("../img/top-hero.jpeg") center / cover no-repeat,
        linear-gradient(135deg, #c2dbd9, #2d504e 56%, #0d0c0b);
}

.lp-hero__eyebrow {
    font-family: var(--lp-font-serif);
    font-size: 13px;
    letter-spacing: 0.32em;
    opacity: 0.85;
    font-weight: 500;
}

.lp-hero__lead {
    font-family: var(--lp-font-serif);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.38;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.lp-hero__desc {
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.88;
}

.lp-hero__inner::after {
    width: 120px;
    background: linear-gradient(90deg, var(--lp-gold), transparent);
    opacity: 0.7;
}

/* ─── Section dividers: elegant gold hairline ─── */
.lp-stats::before,
.lp-services::before,
.lp-tripanel::before,
.lp-tiles::before,
.lp-audience::before,
.lp-flow::before,
.lp-contact::before {
    background: linear-gradient(90deg, transparent 5%, rgba(208, 176, 103, 0.25) 30%, rgba(208, 176, 103, 0.25) 70%, transparent 95%);
    opacity: 1;
}

/* ─── Highlight cards: unified radius & feel ─── */
.lp-highlight {
    border-radius: 16px;
    border: 1px solid rgba(208, 176, 103, 0.1);
    box-shadow: 0 2px 16px rgba(18, 17, 15, 0.04);
}

.lp-highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(18, 17, 15, 0.10);
    border-color: rgba(208, 176, 103, 0.25);
}

.lp-highlight .lp-heroNav__link {
    background: linear-gradient(145deg, rgba(20, 18, 15, 0.97), rgba(30, 28, 24, 0.94));
    border-radius: 15px 15px 0 0;
}

/* ─── Service cards: consistent with highlights ─── */
.lp-card {
    border-radius: 16px;
    border: 1px solid rgba(208, 176, 103, 0.08);
    box-shadow: 0 2px 16px rgba(18, 17, 15, 0.04);
}

.lp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(18, 17, 15, 0.10);
    border-color: rgba(208, 176, 103, 0.2);
}

.lp-card__title {
    font-family: var(--lp-font-serif);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.lp-card__text {
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* ─── Tiles: refine image cards ─── */
.lp-tile__img {
    border-radius: 14px;
    border: 1px solid rgba(208, 176, 103, 0.08);
}

.lp-tile__cap {
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ─── Panels: unified border-radius ─── */
.lp-panel {
    border-radius: 16px;
}

.lp-centerBadge {
    font-family: var(--lp-font-serif);
    font-size: 14px;
    letter-spacing: 0.06em;
    border: 1.5px solid rgba(208, 176, 103, 0.5);
    box-shadow: 0 12px 32px rgba(18, 17, 15, 0.08);
}

/* ─── Services intro: refined typography ─── */
.lp-servicesIntro__eyebrow {
    font-family: var(--lp-font-serif);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.18em;
}

.lp-servicesIntro__title {
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lp-servicesIntro__subtitle {
    letter-spacing: 0.04em;
}

.lp-servicesIntro__item h3 {
    font-weight: 700;
}

/* ─── Audience: match premium feel ─── */
.lp-audience__eyebrow {
    font-family: var(--lp-font-serif);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.18em;
}

.lp-audience__title {
    font-weight: 700;
}

/* ─── Flow steps: unified card look ─── */
.lp-step {
    border-radius: 16px;
    border: 1px solid rgba(208, 176, 103, 0.08);
    box-shadow: 0 2px 16px rgba(18, 17, 15, 0.04);
}

.lp-step:hover {
    border-color: rgba(208, 176, 103, 0.2);
    box-shadow: 0 20px 56px rgba(18, 17, 15, 0.08);
}

.lp-step__no {
    background: linear-gradient(135deg, var(--lp-blue), #2a5a5a);
    box-shadow: 0 6px 20px rgba(25, 59, 59, 0.28);
}

.lp-step__title {
    letter-spacing: 0.04em;
}

.lp-flow__title {
    font-weight: 700;
}

/* ─── FAQ: unified item styling ─── */
.lp-faq__title {
    font-weight: 700;
}

.lp-faq__item {
    border-radius: 16px;
    border: 1px solid rgba(208, 176, 103, 0.08);
    box-shadow: 0 2px 16px rgba(18, 17, 15, 0.03);
}

.lp-faq__item:hover {
    border-color: rgba(208, 176, 103, 0.18);
    box-shadow: 0 12px 40px rgba(18, 17, 15, 0.06);
}

/* ─── CTA: refined ─── */
.lp-cta__title {
    font-weight: 700;
}

.lp-cta__quote p {
    font-family: var(--lp-font-serif);
    font-style: italic;
    font-size: clamp(16px, 1.9vw, 19px);
    letter-spacing: 0.02em;
}

/* ─── Buttons: refined with consistent radius ─── */
.lp-btn {
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.lp-btn--primary {
    background: linear-gradient(145deg, #14120f 0%, #1e1c18 50%, #14120f 100%);
    border: 1px solid rgba(208, 176, 103, 0.28);
    box-shadow: 0 6px 20px rgba(18, 17, 15, 0.18);
}

.lp-btn--primary:hover {
    box-shadow: 0 12px 40px rgba(18, 17, 15, 0.24);
    border-color: rgba(208, 176, 103, 0.5);
}

.lp-btn--ghost {
    border-radius: 10px;
    border: 1px solid rgba(18, 17, 15, 0.12);
    box-shadow: 0 4px 16px rgba(18, 17, 15, 0.05);
}

/* ─── Footer: refined ─── */
.lp-footer {
    border-top: 1px solid rgba(208, 176, 103, 0.15);
}

.lp-footer__brand {
    font-family: var(--lp-font-serif);
    letter-spacing: 0.14em;
}

/* ─── Section title styling (EN page) ─── */
.lp-sectionTitle {
    font-family: var(--lp-font-serif);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* ─── Tour page: unified with main site ─── */
.lp-tourSection__title {
    font-family: var(--lp-font-serif);
}

.lp-tourSection__badge {
    font-family: var(--lp-font-serif);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.lp-tourSection__block {
    border-radius: 14px;
    border: 1px solid rgba(208, 176, 103, 0.1);
}

.lp-tourSection--dark .lp-tourSection__block {
    border-color: rgba(208, 176, 103, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.lp-tourNav__list a {
    border-radius: 10px;
}

.lp-tourCta__eyebrow {
    font-family: var(--lp-font-serif);
    font-weight: 500;
    font-size: 13px;
}

.lp-tourCta__content {
    border-radius: 18px;
    background: linear-gradient(145deg, #1a1916, #222018);
    border: 1px solid rgba(208, 176, 103, 0.12);
}
