:root {
    --wine: #850000;
    --wine-dark: #5e0000;
    --ink: #171717;
    --muted: #666;
    --line: #e7e2e2;
    --soft: #f7f5f5;
    --white: #fff;
    --max: 1180px;
    --shadow: 0 18px 45px rgba(55, 20, 20, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    line-height: 1.8
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(133, 0, 0, .1);
    backdrop-filter: blur(12px)
}

.header-inner {
    max-width: 1320px;
    min-height: 88px;
    margin: auto;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand img {
    width: 220px
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    font-weight: 700
}

.global-nav a {
    padding: 9px 0;
    border-bottom: 2px solid transparent
}

.global-nav a:hover {
    border-color: var(--wine)
}

.global-nav .nav-contact {
    padding: 11px 17px;
    color: #fff;
    background: var(--wine);
    border: 0
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent;
    border: 1px solid var(--line)
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink)
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 30%, rgba(133, 0, 0, .08), transparent 24%), linear-gradient(120deg, #fff 0%, #fbfafa 48%, #f3f0f0 100%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image: linear-gradient(rgba(133, 0, 0, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(133, 0, 0, .05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, black, transparent 75%)
}

.hero-inner {
    position: relative;
    max-width: var(--max);
    min-height: 620px;
    margin: auto;
    padding: 72px 28px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 58px
}

.eyebrow,
.section-kicker,
.feature-label {
    color: var(--wine);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .14em
}

.hero h1 {
    margin: 12px 0 24px;
    font-size: clamp(44px, 5.4vw, 74px);
    line-height: 1.25
}

.hero h1 span {
    color: var(--wine)
}

.hero-lead {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600
}

.photo-placeholder {
    min-height: 420px;
    border: 1px solid rgba(133, 0, 0, .15);
    background: radial-gradient(circle at 65% 45%, rgba(133, 0, 0, .20), transparent 12%), radial-gradient(circle at 50% 55%, rgba(0, 70, 110, .12), transparent 24%), linear-gradient(145deg, #fff, #e9e5e5);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    color: var(--wine-dark);
    text-align: center
}

.photo-placeholder strong,
.photo-placeholder span {
    display: block
}

.photo-placeholder strong {
    font-size: 22px
}

.photo-placeholder span {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted)
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 24px;
    font-weight: 800;
    transition: .2s
}

.button.primary {
    color: #fff;
    background: var(--wine)
}

.button.primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px)
}

.section {
    padding: 92px 28px
}

.section-soft {
    background: var(--soft)
}

.section-inner {
    max-width: var(--max);
    margin: auto
}

.two-column {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.section h2 {
    margin: 8px 0 18px;
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.4
}

.body-copy {
    color: #3e3e3e;
    font-size: 17px
}

.section-heading {
    margin-bottom: 34px
}

.section-heading>p:last-child {
    color: var(--muted)
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    min-height: 230px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .2s
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(133, 0, 0, .28)
}

.card-number {
    color: var(--wine);
    font-size: 13px;
    font-weight: 900
}

.card h3 {
    margin: 22px 0 10px;
    font-size: 21px
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden
}

.feature-image {
    aspect-ratio: 16/9;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(133, 0, 0, .11), rgba(0, 70, 110, .08)), #efeded;
    color: var(--wine-dark);
    font-weight: 800
}

.feature-body {
    padding: 24px
}

.feature-body h3 {
    margin: 5px 0 12px;
    line-height: 1.55
}

.feature-body p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px
}

.research-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center
}

.research-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.research-gallery div {
    aspect-ratio: 4/3;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: radial-gradient(circle at 40% 45%, rgba(255, 255, 255, .28), transparent 8%), linear-gradient(135deg, #7c7777, #1b1b1b)
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--wine);
    font-weight: 800;
    border-bottom: 1px solid var(--wine)
}

.news-list {
    border-top: 1px solid var(--line)
}

.news-list article {
    display: grid;
    grid-template-columns: 130px 100px 1fr;
    gap: 16px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line)
}

.news-list time {
    color: var(--muted)
}

.news-list span {
    padding: 3px 8px;
    color: var(--wine);
    border: 1px solid rgba(133, 0, 0, .25);
    font-size: 12px;
    font-weight: 800;
    text-align: center
}

.news-list p {
    margin: 0
}

.statement {
    background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .78)), radial-gradient(circle at 82% 50%, rgba(133, 0, 0, .16), transparent 24%)
}

.contact-section {
    padding-top: 60px;
    padding-bottom: 90px;
    background: var(--wine-dark);
    color: #fff
}

.contact-section .section-kicker {
    color: #eac8c8
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.contact-box .button.primary {
    background: #fff;
    color: var(--wine-dark);
    position: relative;
    top: 40px;
}

.contact-note {
    max-width: var(--max);
    margin: 18px auto 0;
    color: #d7bebe;
    font-size: 12px
}

.contact-kicker{
    margin-top: -10px;
}

.site-footer {
    padding: 42px 28px 22px;
    background: #fff;
    border-top: 1px solid var(--line)
}

.footer-inner {
    max-width: var(--max);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 42px
}

.footer-inner img {
    width: 230px
}

.footer-inner p{
    margin: 3px 0 0;
    color: var(--muted)
}

.copyright {
    max-width: var(--max);
    margin: 35px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #888;
    font-size: 12px;
    text-align: center
}

/* ==========================
   OUR MISSION
========================== */


.mission-pillars {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.mission-item {
    width: 320px;
    text-align: center;
    color: #000;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.mission-item span {
    margin-top: 3px;
    font-size: 38px;
    font-weight: 500;
    color: var(--black);
}

.mission-cross {
    width: 320px;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--wine);
}

.body-copy{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.body-copy p:nth-of-type(1){
    margin-bottom: 25px;
}

.body-copy p:nth-of-type(2){
    margin-bottom: 30px;
}


.mission-kicker{
    margin-top: -10px;
}


.body-copy2{
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

@media(max-width:1000px) {
    .menu-button {
        display: block
    }

    .global-nav {
        display: none;
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        padding: 18px 28px 26px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 4px
    }

    .global-nav.is-open {
        display: flex
    }

    .global-nav a {
        padding: 10px 0
    }

    .global-nav .nav-contact {
        margin-top: 8px;
        text-align: center
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .photo-placeholder {
        min-height: 330px
    }

    .card-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .two-column,
    .research-layout {
        gap: 40px
    }
}

@media(max-width:680px) {
    .header-inner {
        min-height: 74px;
        padding: 8px 18px
    }

    .brand img {
        width: 175px
    }

    .global-nav {
        top: 74px
    }

    .hero-inner {
        padding: 40px 20px 58px;
        gap: 34px
    }

    .hero h1 {
        font-size: 48px
    }

    .hero-lead {
        font-size: 16px
    }

    .photo-placeholder {
        min-height: 245px
    }

    .section {
        padding: 66px 20px
    }

    .two-column,
    .research-layout {
        grid-template-columns: 1fr
    }

    .card-grid,
    .feature-grid,
    .research-gallery {
        grid-template-columns: 1fr
    }

    .news-list article {
        grid-template-columns: 95px 85px;
        gap: 8px 12px
    }

    .news-list p {
        grid-column: 1/-1
    }

    .contact-box,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start
    }
}
