:root {
    --bg: #f3ede4;
    --bg-alt: #e8dfd1;
    --surface: rgba(255, 251, 245, 0.9);
    --surface-strong: #fffdf9;
    --surface-dark: #171717;
    --text: #1d1a16;
    --muted: #655d54;
    --line: rgba(57, 46, 31, 0.14);
    --line-strong: rgba(57, 46, 31, 0.22);
    --primary: #b44a24;
    --primary-deep: #8f3414;
    --accent: #13324c;
    --accent-soft: #214e75;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(17, 17, 17, 0.08);
    --shadow-strong: 0 30px 80px rgba(15, 15, 15, 0.16);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --transition: 240ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(180, 74, 36, 0.14), transparent 26%),
        radial-gradient(circle at top right, rgba(19, 50, 76, 0.16), transparent 32%),
        linear-gradient(180deg, #f6f1ea 0%, #f1eadf 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

body.home-page,
body.inner-page {
    min-height: 100vh;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section-contrast {
    background:
        linear-gradient(180deg, rgba(19, 50, 76, 0.96), rgba(11, 28, 43, 0.96)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    color: var(--white);
}

.section-works {
    padding-top: 90px;
}

.section-process {
    padding-top: 90px;
}

.section-company-brief {
    padding-top: 90px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(19, 50, 76, 0.08);
}

.section-contrast .eyebrow,
.cta-band .eyebrow,
.accent-panel .eyebrow {
    color: #ffe2d5;
    background: rgba(255, 255, 255, 0.08);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-title,
.hero-title,
.page-hero h1,
.cta-band h2,
.accent-panel h3,
.contact-card-emphasis h2 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.18;
}

.section-title {
    font-size: clamp(2.1rem, 3.3vw, 3.6rem);
    margin-bottom: 20px;
}

.section-title-left,
.section-lead-left {
    text-align: left;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--muted);
}

.section-contrast .section-lead,
.section-contrast .highlight-card p,
.section-contrast .highlight-card h3,
.section-contrast .timeline-content p,
.section-contrast .timeline-content h3 {
    color: rgba(255, 255, 255, 0.86);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    box-shadow: 0 18px 34px rgba(180, 74, 36, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 22px 40px rgba(180, 74, 36, 0.3);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(16px);
}

.btn-secondary:hover,
.btn-tertiary:hover {
    border-color: rgba(19, 50, 76, 0.28);
    background: rgba(255, 255, 255, 0.9);
}

.btn-tertiary {
    color: var(--text);
    border: 1px solid var(--line-strong);
    background: transparent;
}

.text-link {
    color: var(--primary);
    font-weight: 700;
}

.text-link:hover {
    color: var(--primary-deep);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 22px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled,
.site-header.is-solid {
    padding: 14px 0;
    background: rgba(255, 251, 245, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(28, 24, 20, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.site-header .brand {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: none;
}

.site-header .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(180, 74, 36, 0.96), rgba(143, 52, 20, 0.96));
    color: var(--white);
    font-family: "Zen Old Mincho", serif;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(180, 74, 36, 0.28);
}

.brand-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.site-header.scrolled .brand-kicker,
.site-header.is-solid .brand-kicker {
    color: var(--muted);
}

.brand-name {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.site-header .brand-name {
    font-size: 1.42rem;
}

.site-header.scrolled .brand-name,
.site-header.is-solid .brand-name {
    color: var(--text);
}

.brand-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.site-header.scrolled .brand-sub,
.site-header.is-solid .brand-sub {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    font-weight: 700;
}

.site-header.scrolled .nav-link,
.site-header.is-solid .nav-link {
    color: var(--text);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform var(--transition);
}

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

.nav-link-cta {
    padding: 12px 20px;
    border-radius: 999px;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    box-shadow: 0 14px 30px rgba(180, 74, 36, 0.22);
}

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

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-header.scrolled .hamburger,
.site-header.is-solid .hamburger {
    border-color: var(--line-strong);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.site-header.scrolled .hamburger span,
.site-header.is-solid .hamburger span {
    background: var(--text);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: 146px 0 76px;
    background:
        linear-gradient(120deg, rgba(8, 15, 24, 0.92), rgba(18, 34, 49, 0.75)),
        radial-gradient(circle at 20% 30%, rgba(180, 74, 36, 0.34), transparent 30%),
        url("../images/company-banner.jpg") center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
    --hero-shift-x: 0px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(243, 237, 228, 0), #f3ede4 90%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 110px 110px;
    opacity: 0.16;
    mix-blend-mode: screen;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 54px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.85rem, 4.6vw, 4.9rem);
    margin-bottom: 18px;
}

.hero-copy,
.split-copy,
.company-brief-copy,
.access-copy {
    position: relative;
    z-index: 1;
}

.hero-description {
    max-width: 600px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-pills span {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-points {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.hero-points li {
    position: relative;
    width: fit-content;
    max-width: 100%;
    padding: 10px 16px 10px 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb08f, #ffdfce);
    transform: translateY(-50%);
    box-shadow: 0 0 18px rgba(255, 176, 143, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-mini-proof span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-frame {
    position: absolute;
    inset: 64px 36px 34px 28px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(-4deg);
    animation: hero-frame-drift 8s ease-in-out infinite;
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-frame-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 20%),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 7px),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 22%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: hero-orbit-spin 16s linear infinite;
}

.hero-orbit-one {
    inset: 18px 52px 56px 18px;
}

.hero-orbit-two {
    inset: 98px 10px 8px 88px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 22s;
}

.hero-spark {
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.7;
}

.hero-spark-one {
    top: 102px;
    right: 18%;
    width: 180px;
    height: 180px;
    background: rgba(255, 176, 143, 0.22);
    animation: hero-pulse 4.8s ease-in-out infinite;
}

.hero-spark-two {
    bottom: 190px;
    left: 10%;
    width: 140px;
    height: 140px;
    background: rgba(83, 178, 255, 0.16);
    animation: hero-pulse 5.4s ease-in-out infinite reverse;
}

.hero-floating-card {
    position: absolute;
    width: min(280px, 78%);
    padding: 20px 22px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    animation: hero-card-float 5.8s ease-in-out infinite;
}

.hero-floating-card span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-floating-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.hero-floating-card p {
    font-size: 0.95rem;
}

.hero-floating-card-primary {
    top: 0;
    left: 0;
    color: var(--text);
    background: rgba(255, 251, 245, 0.92);
}

.hero-floating-card-secondary {
    right: 0;
    bottom: 64px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(19, 50, 76, 0.95), rgba(28, 78, 117, 0.95));
}

.hero-floating-card-tertiary {
    left: 52px;
    bottom: 0;
    color: var(--white);
    background: linear-gradient(135deg, rgba(180, 74, 36, 0.92), rgba(143, 52, 20, 0.92));
    animation-delay: 1.4s;
}

.hero-marquee {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding: 18px 0 0;
    overflow: hidden;
}

.hero-marquee-track {
    display: inline-flex;
    gap: 18px;
    min-width: max-content;
    padding-right: 18px;
    animation: hero-marquee-move 20s linear infinite;
}

.hero-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-marquee-track span::after {
    content: "•";
    color: rgba(255, 176, 143, 0.9);
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    padding-bottom: 20px;
}

@keyframes hero-card-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes hero-frame-drift {
    0%,
    100% {
        transform: rotate(-4deg) translateY(0);
    }
    50% {
        transform: rotate(-2deg) translateY(-8px);
    }
}

@keyframes hero-orbit-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes hero-marquee-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes hero-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.14);
        opacity: 0.9;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.trust-item {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.88);
    border: 1px solid rgba(57, 46, 31, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.trust-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.trust-item strong {
    font-size: 1rem;
}

.problem-grid,
.highlight-grid,
.works-grid,
.process-grid,
.team-grid {
    display: grid;
    gap: 22px;
}

.problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-card,
.highlight-card,
.work-card,
.process-card,
.team-card,
.details-card,
.contact-channel-card,
.guidance-card,
.support-card,
.contact-card-emphasis {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-card {
    display: block;
}

.problem-card {
    padding: 28px;
    background: rgba(255, 251, 245, 0.76);
    border: 1px solid rgba(57, 46, 31, 0.08);
}

.problem-card i,
.highlight-card i,
.contact-channel-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.problem-card h3,
.highlight-card h3,
.process-card h3,
.service-summary-item h3,
.team-card h3,
.work-card h3,
.support-card h2,
.guidance-card h2,
.details-card h2 {
    margin: 18px 0 12px;
    font-size: 1.25rem;
}

.problem-card p,
.work-card p,
.process-card p,
.team-card p,
.details-card p,
.contact-channel-card p,
.guidance-card p,
.support-card p {
    color: var(--muted);
}

.split-layout,
.company-overview-grid,
.company-brief,
.access-grid,
.contact-top-grid,
.contact-guidance-grid,
.contact-form-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.split-media,
.media-card {
    width: 100%;
}

.split-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split-layout-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.media-card-large {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.media-card-large img {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.feature-list li {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-left: 3px solid rgba(180, 74, 36, 0.4);
    border-radius: 0 18px 18px 0;
    background: rgba(255, 255, 255, 0.08);
}

.section:not(.section-contrast) .feature-list li,
.company-brief-panel .feature-list li {
    background: rgba(255, 251, 245, 0.68);
    border-left-color: rgba(180, 74, 36, 0.72);
}

.feature-list strong {
    font-size: 1rem;
}

.feature-list span {
    font-size: 0.95rem;
    color: inherit;
}

.feature-list-compact li {
    padding: 16px 18px;
}

.note-box {
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.accent-panel {
    padding: 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(19, 50, 76, 0.98), rgba(9, 21, 31, 0.98));
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.accent-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffcfba;
}

.accent-panel p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.accent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 26px;
}

.accent-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

.accent-panel img {
    width: 100%;
    height: 280px;
    border-radius: 24px;
    object-fit: cover;
}

.works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
    overflow: hidden;
    border: 1px solid rgba(57, 46, 31, 0.08);
    background: rgba(255, 251, 245, 0.82);
}

.work-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-image-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(180, 74, 36, 0.18), transparent 32%),
        linear-gradient(135deg, #fff6ef, #f0e3d4);
}

.logo-badge {
    padding: 18px 22px;
    border-radius: 20px;
    border: 1px solid rgba(57, 46, 31, 0.12);
    background: rgba(255, 255, 255, 0.78);
    font-family: "Zen Old Mincho", serif;
    font-size: 1.3rem;
    box-shadow: var(--shadow-soft);
}

.work-body {
    padding: 24px 24px 28px;
}

.work-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-footnote {
    margin-top: 26px;
    text-align: center;
    color: var(--muted);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    padding: 28px;
    background: rgba(255, 251, 245, 0.8);
    border: 1px solid rgba(57, 46, 31, 0.08);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(19, 50, 76, 0.08);
    color: var(--accent);
    font-weight: 700;
}

.company-brief {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.mini-facts {
    display: grid;
    gap: 16px;
    margin: 28px 0 34px;
}

.mini-facts div {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.mini-facts span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--muted);
}

.mini-facts strong {
    font-size: 1rem;
}

.company-brief-panel,
.form-shell,
.support-card,
.details-card,
.guidance-card,
.contact-card-emphasis {
    padding: 32px;
    background: rgba(255, 251, 245, 0.84);
    border: 1px solid rgba(57, 46, 31, 0.08);
}

.card-heading {
    margin-bottom: 24px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 40px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(19, 50, 76, 0.98), rgba(10, 20, 30, 0.98));
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    margin-top: 30px;
    background: #151515;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
    gap: 30px;
    padding: 60px 0 38px;
}

.brand-footer .brand-kicker,
.brand-footer .brand-name {
    color: var(--white);
}

.footer-copy {
    margin-top: 18px;
    max-width: 420px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0 24px;
}

.page-hero {
    position: relative;
    padding: 180px 0 90px;
    color: var(--white);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 26, 0.55), rgba(14, 20, 26, 0.72));
}

.page-hero-company {
    background:
        radial-gradient(circle at top left, rgba(180, 74, 36, 0.22), transparent 28%),
        url("../images/company-banner.jpg") center/cover no-repeat;
}

.page-hero-contact {
    background:
        radial-gradient(circle at top left, rgba(180, 74, 36, 0.18), transparent 26%),
        url("../images/contact-banner.jpg") center/cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero h1 {
    font-size: clamp(2.7rem, 4.7vw, 4.8rem);
    margin-bottom: 20px;
}

.page-hero p:last-child {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
}

.company-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-list {
    display: grid;
    gap: 0;
}

.detail-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.detail-row span {
    color: var(--muted);
    font-weight: 700;
}

.detail-row strong {
    font-size: 0.98rem;
}

.service-summary-list {
    display: grid;
    gap: 20px;
}

.service-summary-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
}

.service-summary-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
}

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

.highlight-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card i {
    color: #ffd9ca;
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
    overflow: hidden;
    background: rgba(255, 251, 245, 0.82);
    border: 1px solid rgba(57, 46, 31, 0.08);
}

.team-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-body {
    padding: 22px;
}

.team-role {
    margin-bottom: 12px;
    color: var(--primary) !important;
    font-weight: 700;
}

.section-timeline {
    background:
        linear-gradient(180deg, rgba(19, 50, 76, 0.96), rgba(11, 28, 43, 0.96)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    color: var(--white);
}

.timeline {
    display: grid;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffddcf;
    font-weight: 700;
}

.timeline-content {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.access-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.map-shell {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    min-height: 360px;
}

.map-shell iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
}

.contact-top-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.contact-card-emphasis {
    background:
        radial-gradient(circle at top right, rgba(180, 74, 36, 0.12), transparent 34%),
        rgba(255, 251, 245, 0.86);
}

.contact-button-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-channel-card {
    padding: 28px 24px;
    background: rgba(255, 251, 245, 0.84);
    border: 1px solid rgba(57, 46, 31, 0.08);
}

.contact-guidance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.contact-form-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
}

.form-shell iframe {
    width: 100%;
    border: none;
}

.contact-side-stack {
    display: grid;
    gap: 24px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.82);
    border: 1px solid rgba(57, 46, 31, 0.08);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    position: relative;
    width: 100%;
    padding: 22px 58px 22px 24px;
    text-align: left;
    font-weight: 700;
    color: var(--text);
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-question.is-open::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--muted);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-layout,
    .split-layout,
    .split-layout-reverse,
    .company-brief,
    .access-grid,
    .contact-top-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-frame {
        inset: 50px 18px 30px;
    }

    .hero-orbit-one {
        inset: 26px 38px 40px 12px;
    }

    .hero-orbit-two {
        inset: 92px 4px 6px 54px;
    }

    .company-overview-grid,
    .contact-guidance-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        width: min(340px, calc(100vw - 40px));
        padding: 20px;
        border-radius: 24px;
        background: rgba(255, 251, 245, 0.94);
        box-shadow: var(--shadow-strong);
        border: 1px solid rgba(57, 46, 31, 0.08);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav .nav-link,
    .site-header.scrolled .site-nav .nav-link,
    .site-header.is-solid .site-nav .nav-link {
        color: var(--text);
    }

    .hamburger {
        display: inline-flex;
    }

    .site-header .brand-sub {
        display: none;
    }

    .site-header .brand-name {
        font-size: 1.28rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-mini-proof,
    .trust-grid,
    .works-grid,
    .footer-grid,
    .contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .hero-marquee {
        margin-top: 18px;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 82px 0;
    }

    .hero {
        padding-top: 132px;
    }

    .hero-title {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-frame {
        inset: 52px 8px 84px;
    }

    .hero-pills {
        gap: 8px;
    }

    .hero-pills span,
    .hero-points li,
    .hero-mini-proof span {
        font-size: 0.78rem;
    }

    .hero-orbit {
        display: none;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
        animation: none;
    }

    .hero-floating-card-secondary {
        margin-top: 18px;
    }

    .hero-floating-card-tertiary {
        margin-top: 18px;
    }

    .hero-marquee-track {
        gap: 12px;
    }

    .hero-marquee-track span {
        letter-spacing: 0.12em;
    }

    .problem-grid,
    .process-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .media-card-large img {
        min-height: 360px;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .cta-band,
    .company-brief-panel,
    .form-shell,
    .support-card,
    .details-card,
    .guidance-card,
    .contact-card-emphasis {
        padding: 24px;
    }
}
