@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Sans+SC:wght@300;400;500&family=Noto+Serif+JP:wght@400;500;600&family=Noto+Serif+SC:wght@400;500;600&display=swap');

        :root {
            --ink: #17211d;
            --forest: #10231c;
            --deep: #07130f;
            --gold: #ffffff;
            --logo-gold: #c4a36a;
            --pale: #f4f1e9;
            --paper: #fbfaf6;
            --line: rgba(23, 33, 29, .16);
            --serif: "Noto Serif JP", "Yu Mincho", YuMincho, serif;
            --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif
        }

        html[lang="zh-CN"] {
            --serif: "Noto Serif SC", "Noto Serif JP", "Songti SC", serif;
            --sans: "Noto Sans SC", "Noto Sans JP", "PingFang SC", sans-serif
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            color: var(--ink);
            background: var(--paper);
            font-family: var(--sans);
            font-weight: 300;
            line-height: 1.9;
            letter-spacing: .045em
        }

        body.menu-open {
            overflow: hidden
        }

        img {
            display: block;
            width: 100%
        }

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

        button {
            font: inherit
        }

        .container {
            width: min(1160px, calc(100% - 48px));
            margin: auto
        }

        .eyebrow {
            margin: 0 0 12px;
            color: var(--gold);
            font-size: .72rem;
            font-weight: 500;
            letter-spacing: .25em;
            text-transform: uppercase
        }

        .section-title {
            margin: 0;
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.6rem);
            font-weight: 400;
            line-height: 1.3;
            letter-spacing: .08em
        }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 48px
        }

        .section-head p:last-child {
            max-width: 500px;
            margin: 0;
            color: #65706b;
            font-size: .9rem
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 194px;
            min-height: 50px;
            padding: 13px 28px;
            border: 1px solid #191919;
            border-radius: 999px;
            background: #191919;
            color: #fff;
            font-size: .82rem;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: .08em;
            transition: background-color .25s, color .25s, border-color .25s, border-width .25s, box-shadow .25s
        }

        .btn::after {
            display: none
        }

        .btn:hover {
            border-color: #4a4a4a;
            background: #4a4a4a;
            color: #fff
        }

        .btn:focus-visible {
            outline: 2px solid currentColor;
            outline-offset: 3px
        }

        .skip {
            position: fixed;
            top: -60px;
            left: 20px;
            z-index: 1000;
            padding: 10px;
            background: white
        }

        .skip:focus {
            top: 20px
        }

        header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 50;
            height: 88px;
            color: white;
            background: linear-gradient(180deg, rgba(5, 7, 6, .78) 0%, rgba(5, 7, 6, .52) 62%, rgba(5, 7, 6, .3) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            box-shadow: 0 6px 30px rgba(0, 0, 0, .12);
            backdrop-filter: blur(18px) saturate(130%);
            -webkit-backdrop-filter: blur(18px) saturate(130%);
            transition: height .35s, background .35s, box-shadow .35s
        }

        header.scrolled {
            height: 72px;
            background: linear-gradient(180deg, rgba(4, 5, 5, .92), rgba(8, 10, 9, .78));
            box-shadow: 0 8px 28px rgba(0, 0, 0, .2)
        }

        .nav-wrap {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 13px;
            z-index: 2;
            transition: filter .35s
        }

        .brand:hover {
            filter: drop-shadow(0 0 8px rgba(235, 221, 181, .38))
        }

        .brand-mark {
            position: relative;
            width: 48px;
            height: 48px;
            overflow: visible;
            flex: none;
            background: transparent
        }

        .brand:hover .brand-mark {
            box-shadow: none
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain
        }

        .brand-name {
            font-family: var(--serif);
            font-size: 1.3rem;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: .19em;
            white-space: nowrap
        }

        .brand-name small {
            display: block;
            margin-top: 5px;
            color: var(--logo-gold);
            font-family: "Times New Roman", "Noto Serif JP", serif;
            font-size: .5rem;
            font-weight: 400;
            line-height: 1;
            letter-spacing: .24em
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px
        }

        .nav-links a {
            position: relative;
            font-size: .96rem;
            letter-spacing: .14em
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -8px;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: .3s
        }

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

        .lang {
            position: relative;
            display: flex;
            align-items: center
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 8px 0;
            border: 0;
            background: none;
            color: rgba(255, 255, 255, .82);
            font-size: .86rem;
            letter-spacing: .06em;
            cursor: pointer;
            transition: color .25s
        }

        .lang-toggle:hover {
            color: #fff
        }

        .lang-icon {
            font-size: 16px;
            line-height: 1
        }

        .lang-chevron {
            width: 9px;
            height: 9px;
            margin-left: 2px;
            border-right: 1px solid currentColor;
            border-bottom: 1px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            transition: transform .25s
        }

        .lang.open .lang-chevron {
            transform: rotate(225deg) translate(-2px, -1px)
        }

        .lang-menu {
            position: absolute;
            top: calc(100% + 14px);
            right: 0;
            width: 154px;
            padding: 8px;
            background: rgba(15, 15, 15, .96);
            border: 1px solid rgba(255, 255, 255, .16);
            box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: .22s
        }

        .lang.open .lang-menu {
            opacity: 1;
            visibility: visible;
            transform: none
        }

        .lang-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 11px 12px;
            border: 0;
            background: none;
            color: rgba(255, 255, 255, .72);
            font-size: .88rem;
            text-align: left;
            cursor: pointer
        }

        .lang-option:hover,
        .lang-option.active {
            background: rgba(255, 255, 255, .1);
            color: #fff
        }

        .lang-option.active::after {
            content: "✓";
            font-size: .75rem
        }

        .menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            background: none;
            color: white;
            font-size: 1.55rem
        }

        /* Header styling aligned with the Gemini reference */
        header {
            z-index: 100;
            height: 88px;
            background: linear-gradient(180deg, rgba(8, 17, 14, .75) 0%, rgba(8, 17, 14, .35) 60%, transparent 100%);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            box-shadow: none;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all .4s ease
        }

        header.scrolled {
            height: 72px;
            background: rgba(8, 17, 14, .88);
            border-bottom-color: rgba(255, 255, 255, .12);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
        }

        .brand {
            gap: 16px;
            filter: none
        }

        .brand:hover {
            filter: none
        }

        .brand-mark {
            position: relative;
            width: 54px;
            height: 54px;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none
        }

        .brand:hover .brand-mark {
            box-shadow: none
        }

        .brand-mark img {
            position: static;
            width: 100%;
            height: 100%;
            max-width: 100%;
            object-fit: contain;
            transform: none
        }

        .brand-name {
            font-size: 1.22rem;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: .2em
        }

        .brand-name small {
            margin-top: 5px;
            color: var(--logo-gold);
            font-size: .52rem;
            letter-spacing: .26em
        }

        .nav-links {
            gap: 40px
        }

        .nav-links a {
            color: rgba(255, 255, 255, .85);
            font-size: .88rem;
            letter-spacing: .12em;
            transition: color .3s
        }

        .nav-links a:hover {
            color: #fff
        }

        .nav-links a::after {
            left: 50%;
            right: auto;
            bottom: -6px;
            background: #fff;
            transform: translateX(-50%);
            transition: all .3s ease
        }

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

        .lang-toggle {
            gap: 6px;
            padding: 4px 8px;
            border-radius: 4px;
            color: rgba(255, 255, 255, .85);
            font-size: .82rem;
            letter-spacing: .08em;
            transition: background .3s, color .3s
        }

        .lang-toggle:hover {
            background: rgba(255, 255, 255, .1);
            color: #fff
        }

        .lang-icon {
            font-size: 16px
        }

        .lang-chevron {
            width: 6px;
            height: 6px
        }

        .menu-btn {
            font-size: 1.5rem
        }

        .hero {
            position: relative;
            height: 100svh;
            min-height: 680px;
            overflow: hidden;
            background: var(--deep);
            color: white
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: scale(1.04);
            transition: opacity 1.2s, transform 7s
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1)
        }

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

        .hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(4, 12, 9, .78) 0%, rgba(4, 12, 9, .38) 48%, rgba(4, 12, 9, .08)), linear-gradient(0deg, var(--paper) 0%, rgba(251, 250, 246, .38) 3%, rgba(4, 12, 9, .42) 13%, transparent 42%)
        }

        .hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 72px
        }

        .hero h1 {
            max-width: 720px;
            margin: 15px 0 24px;
            font-family: var(--serif);
            font-size: clamp(2.4rem, 5vw, 4.8rem);
            font-weight: 400;
            line-height: 1.35;
            letter-spacing: .12em
        }

        .hero-copy {
            max-width: 620px;
            margin: 0;
            color: rgba(255, 255, 255, .82);
            font-size: clamp(.82rem, 1.4vw, 1rem);
            line-height: 2
        }

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

        .hero .btn {
            min-width: 190px;
            min-height: 50px;
            padding: 13px 30px;
            border: 1px solid rgba(255, 255, 255, .88);
            border-radius: 999px;
            background: rgba(9, 12, 11, .12);
            color: #fff;
            font-family: var(--serif);
            font-size: .82rem;
            font-weight: 400;
            letter-spacing: .14em;
            backdrop-filter: blur(5px)
        }

        .hero .btn-solid {
            border-color: #fff;
            background: #fff;
            color: #171717
        }

        .hero .btn-solid:hover {
            border-color: #fff;
            background: transparent;
            color: #fff
        }

        .hero .btn-ghost:hover {
            border-color: #fff;
            background: #fff;
            color: #171717
        }

        .hero-dots {
            position: absolute;
            z-index: 4;
            right: 4vw;
            bottom: 44px;
            display: flex;
            gap: 10px
        }

        .hero-dots button {
            width: 34px;
            height: 2px;
            padding: 0;
            border: 0;
            background: rgba(255, 255, 255, .4);
            cursor: pointer
        }

        .hero-dots button.active {
            background: var(--gold)
        }

        .scroll-cue {
            position: absolute;
            z-index: 4;
            left: 50%;
            bottom: 27px;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, .62);
            border-radius: 50%;
            transform: translateX(-50%);
            font-size: 0;
            transition: background .25s, border-color .25s
        }

        .scroll-cue::before {
            content: "";
            position: absolute;
            top: 12px;
            left: 13px;
            width: 9px;
            height: 9px;
            border-right: 1.5px solid #fff;
            border-bottom: 1.5px solid #fff;
            transform: rotate(45deg);
            animation: arrowDown 1.8s ease-in-out infinite
        }

        .scroll-cue::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: calc(100% + 10px);
            width: 1px;
            height: 36px;
            background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .78));
            transform: translateX(-50%)
        }

        .scroll-cue:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, .14)
        }

        @keyframes arrowDown {

            0%,
            100% {
                transform: translateY(-2px) rotate(45deg);
                opacity: .55
            }

            50% {
                transform: translateY(3px) rotate(45deg);
                opacity: 1
            }
        }

        .intro {
            height: auto;
            padding: 120px 0;
            background: var(--paper)
        }

        .intro-grid {
            display: flex;
            justify-content: center;
            text-align: center
        }

        .intro-copy {
            position: relative;
            width: min(100%, 820px);
            color: #35413c;
            font-family: var(--serif);
            font-size: clamp(1rem, 1.55vw, 1.22rem);
            line-height: 2.3;
            letter-spacing: .1em
        }

        .intro-copy p {
            margin: 0 0 8px
        }

        .intro-copy p:last-child {
            margin-bottom: 0
        }

        .collections {
            padding: 120px 0;
            background: #f1efec;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 22px
        }

        .collection-card {
            position: relative;
            min-height: 380px;
            overflow: hidden;
            color: white
        }

        .collection-card:nth-child(1),
        .collection-card:nth-child(2) {
            grid-column: span 6
        }

        .collection-card:nth-child(n+3) {
            grid-column: span 4
        }

        .collection-media {
            position: absolute;
            inset: 0;
            overflow: hidden;
            background: #101713
        }

        .collection-media img {
            position: absolute;
            inset: 0;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.02);
            transition: opacity .7s ease, transform 1.5s cubic-bezier(.16, 1, .3, 1)
        }

        .collection-media img.active {
            opacity: 1;
            transform: scale(1)
        }

        .collection-panels {
            position: absolute;
            z-index: 4;
            inset: 0;
            display: flex;
            overflow: hidden;
            background: #0b110e;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            will-change: opacity;
            transition: opacity .28s cubic-bezier(.22, 1, .36, 1), visibility .28s
        }

        .collection-card:hover .collection-panels,
        .collection-card:focus-within .collection-panels {
            opacity: 1;
            visibility: visible;
            pointer-events: auto
        }

        .collection-panel {
            position: relative;
            flex: 1 1 0;
            min-width: 42px;
            height: 100%;
            overflow: hidden;
            cursor: crosshair;
            border-right: 1px solid rgba(255, 255, 255, .28);
            filter: brightness(.72) saturate(.86);
            will-change: flex-grow, filter;
            transition: flex-grow .72s cubic-bezier(.22, 1, .36, 1), filter .42s ease
        }

        .collection-panel:last-child {
            border-right: 0
        }

        .collection-panel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.06);
            will-change: transform;
            transition: transform .9s cubic-bezier(.22, 1, .36, 1)
        }

        .collection-panels.has-active .collection-panel {
            flex-grow: .68;
            filter: brightness(.58) saturate(.76)
        }

        .collection-panels.has-active .collection-panel.active {
            flex-grow: 3.6;
            filter: brightness(1) saturate(1)
        }

        .collection-panel.active img {
            transform: scale(1)
        }

        .collection-panel::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,.1), transparent 16%, transparent 84%, rgba(0,0,0,.2));
            opacity: .6;
            transition: opacity .38s ease
        }

        .collection-panel.active::after {
            opacity: 0
        }

        .collection-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(4, 12, 9, .8), transparent 65%)
        }

        .collection-card:hover .collection-media img.active,
        .collection-card:focus-visible .collection-media img.active {
            transform: scale(1.055)
        }

        .collection-card::before {
            content: "";
            position: absolute;
            z-index: 2;
            inset: 0;
            pointer-events: none;
            opacity: 0;
            background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, .16) 48%, transparent 70%);
            transform: translateX(-100%);
            transition: opacity .3s
        }

        .collection-card:hover::before {
            opacity: 1;
            animation: collectionShine 2.4s ease-in-out infinite
        }

        @keyframes collectionShine {
            0%, 28% { transform: translateX(-110%) }
            72%, 100% { transform: translateX(110%) }
        }

        .card-copy {
            position: absolute;
            z-index: 6;
            inset: auto 28px 26px;
            transition: opacity .35s ease, transform .35s ease
        }

        .collection-card:hover .card-copy {
            opacity: 0;
            transform: translateY(12px)
        }

        .card-copy h3 {
            margin: 0;
            font-family: var(--serif);
            font-size: 1.5rem;
            font-weight: 400
        }

        .card-copy p {
            margin: 5px 0 0;
            color: rgba(255, 255, 255, .75);
            font-size: .74rem
        }

        .card-arrow {
            position: absolute;
            right: 0;
            bottom: 5px;
            font-size: 1.2rem
        }

        .collection-mobile {
            display: none
        }

        .story {
            padding: 130px 0
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 8vw
        }

        .story-image {
            position: relative;
            z-index: 0
        }

        .story-image img {
            position: relative;
            z-index: 1;
            height: 650px;
            object-fit: cover
        }

        .story-image::before {
            content: "";
            position: absolute;
            z-index: 0;
            inset: 32px -32px -32px 32px;
            border: 1px solid rgba(23, 33, 29, .28);
            pointer-events: none
        }

        .story-copy h2 {
            margin: 12px 0 30px;
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 400
        }

        .story-copy p {
            color: #59645f
        }

        .facts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin: 34px 0;
            border-top: 1px solid var(--line)
        }

        .fact {
            padding: 17px 0;
            border-bottom: 1px solid var(--line);
            font-size: .8rem
        }

        .fact:nth-child(odd) {
            color: #7a827e
        }

        .fact:nth-child(even) {
            font-weight: 400
        }

        .story-copy .btn {
            margin-top: 10px
        }

        .products {
            padding: 120px 0;
            background: var(--forest);
            color: white
        }

        .product-block {
            display: grid;
            grid-template-columns: minmax(380px, 1.05fr) .95fr;
            align-items: center;
            gap: 64px;
            padding: 70px 0;
            border-top: 1px solid rgba(255, 255, 255, .15);
            scroll-margin-top: 70px
        }

        .product-info h2,
        .product-info h3 {
            margin: 0 0 28px;
            font-family: var(--serif);
            font-size: clamp(2.2rem, 3.6vw, 3.1rem);
            font-weight: 400;
            line-height: 1.3;
            letter-spacing: .1em
        }

        .product-info p {
            margin: 0;
            max-width: 36em;
            color: rgba(255, 255, 255, .86);
            font-family: var(--serif);
            font-size: clamp(1rem, 1.35vw, 1.18rem);
            font-weight: 400;
            line-height: 2.15;
            letter-spacing: .08em
        }

        .product-carousel {
            position: relative;
            overflow: hidden;
            height: 480px;
            background: #101713
        }

        .product-carousel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity .8s ease
        }

        .product-carousel img.active {
            opacity: 1
        }

        .product-carousel-dots {
            position: absolute;
            z-index: 2;
            left: 50%;
            bottom: 18px;
            display: flex;
            gap: 8px;
            transform: translateX(-50%)
        }

        .product-carousel-dots button {
            width: 28px;
            height: 2px;
            padding: 0;
            border: 0;
            background: rgba(255, 255, 255, .38);
            cursor: pointer
        }

        .product-carousel-dots button.active {
            background: #fff
        }

        .product-visual {
            display: flex;
            flex-direction: column;
            gap: 18px
        }

        .product-caption {
            margin: 0;
            color: rgba(255, 255, 255, .86);
            font-family: var(--serif);
            font-size: .92rem;
            font-weight: 400;
            letter-spacing: .16em;
            text-align: center
        }

        .contact {
            padding: 130px 0;
            background: var(--paper)
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 56px;
            align-items: stretch
        }

        .contact-copy {
            display: flex;
            flex-direction: column
        }

        .contact h2 {
            margin: 10px 0 25px;
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 400
        }

        .contact-lead {
            max-width: 28em;
            margin: 0 0 28px;
            color: var(--forest);
            font-family: var(--serif);
            font-size: clamp(1rem, 1.4vw, 1.16rem);
            line-height: 2.15;
            letter-spacing: .08em
        }

        .contact-copy .contact-icons {
            margin: 0 0 36px
        }

        .contact-list {
            margin-top: 42px;
            border-top: 1px solid var(--line)
        }

        .contact-row {
            display: grid;
            grid-template-columns: 110px 1fr;
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
            font-size: .82rem
        }

        .contact-row span:first-child {
            color: #7c837f
        }

        .contact-row a:hover {
            color: #8c713d
        }

        .map {
            min-height: 520px
        }

        .map iframe {
            width: 100%;
            height: 100%;
            min-height: 520px;
            border: 0
        }

        .contact .contact-list {
            display: flex;
            flex-direction: column;
            flex: none;
            margin-top: 8px
        }

        .contact .contact-row {
            flex: none;
            align-items: center;
            padding: 16px 0;
            font-size: 1rem;
            font-weight: 400
        }

        .contact .contact-row span:first-child {
            font-weight: 500
        }

        .contact .contact-row a:hover {
            color: #8c713d
        }

        .contact-map {
            position: relative;
            z-index: 0;
            min-height: 520px
        }

        .contact-map iframe {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
            min-height: 520px;
            border: 0
        }

        .contact-map::before {
            content: "";
            position: absolute;
            z-index: 0;
            inset: 24px -24px -24px 24px;
            border: 1px solid rgba(23, 33, 29, .28);
            pointer-events: none
        }

        footer {
            padding: 55px 0 25px;
            background: var(--deep);
            color: white
        }

        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 45px;
            border-bottom: 1px solid rgba(255, 255, 255, .14)
        }

        .footer-brand {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 18px;
            color: inherit
        }

        .footer-brand-mark {
            width: 88px;
            height: 88px;
            object-fit: contain
        }

        .footer-lockup {
            display: flex;
            flex-direction: column;
            align-items: flex-start
        }

        .footer-lockup-jp {
            font-family: var(--serif);
            font-size: 1.42rem;
            font-weight: 500;
            letter-spacing: .22em;
            line-height: 1.2
        }

        .footer-lockup-rule {
            position: relative;
            width: 168px;
            height: 1px;
            margin: 8px 0 8px;
            background: linear-gradient(90deg, var(--logo-gold), var(--logo-gold) 42%, transparent 42%, transparent 58%, var(--logo-gold) 58%, var(--logo-gold))
        }

        .footer-lockup-rule::after {
            content: "◆";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: var(--logo-gold);
            font-size: .42rem;
            line-height: 1
        }

        .footer-lockup-en {
            color: var(--logo-gold);
            font-family: "Times New Roman", "Noto Serif JP", serif;
            font-size: .62rem;
            letter-spacing: .28em
        }

        .footer-lockup-tag {
            margin-top: 8px;
            color: rgba(255, 255, 255, .72);
            font-family: var(--serif);
            font-size: .72rem;
            letter-spacing: .14em
        }

        .footer-lockup-sub {
            margin-top: 4px;
            color: var(--logo-gold);
            font-family: "Times New Roman", "Noto Serif JP", serif;
            font-size: .5rem;
            letter-spacing: .2em
        }

        .socials {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 24px;
            font-size: 1.1rem;
            letter-spacing: .08em;
            white-space: nowrap
        }

        .socials a {
            flex: none
        }

        .socials a:hover {
            color: var(--gold)
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px
        }

        footer .contact-icon {
            color: #fff
        }

        footer .contact-icon:hover {
            background-color: #fff;
            color: var(--deep)
        }

        .copyright {
            display: flex;
            justify-content: space-between;
            margin-top: 24px;
            color: rgba(255, 255, 255, .38);
            font-size: .62rem;
            letter-spacing: .1em
        }

        .copyright a:hover {
            color: rgba(255, 255, 255, .7)
        }

        .intro .eyebrow,
        .collections .eyebrow,
        .story .eyebrow,
        .contact .eyebrow,
        .signature {
            color: var(--forest)
        }

        .story-image::before {
            border-color: rgba(16, 35, 28, .24)
        }

        /* Header, Hero and Intro: direct styling from the Gemini reference */
        .nav-wrap,
        .hero-content,
        .intro .container {
            width: min(1200px, calc(100% - 64px))
        }

        .hero {
            height: 100vh;
            min-height: 650px
        }

        .hero-slide {
            transform: scale(1.06);
            transition: opacity 1.5s ease, transform 8s ease
        }

        .hero-slide img {
            object-position: center
        }

        .hero-slide::after {
            background: radial-gradient(circle at center, rgba(8, 17, 14, .2) 0%, rgba(8, 17, 14, .6) 100%), linear-gradient(180deg, rgba(8, 17, 14, .5) 0%, transparent 30%, transparent 70%, var(--paper) 100%)
        }

        .hero-content {
            align-items: flex-start;
            padding-top: 0;
            padding-bottom: 40px
        }

        .hero h1 {
            margin: 28px 0 0;
            font-size: clamp(2.6rem, 5.5vw, 4.5rem);
            font-weight: 300;
            line-height: 1.7;
            letter-spacing: .15em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, .3)
        }

        .hero-copy {
            max-width: 540px;
            margin: 14px 0 35px;
            color: rgba(255, 255, 255, .85);
            font-size: clamp(.88rem, 1.2vw, .98rem);
            font-weight: 300;
            font-size: 16px;
            line-height: 3
        }

        .hero-actions {
            gap: 16px;
            margin-top: 0
        }

        .hero .btn {
            min-width: 200px;
            padding: 14px 32px;
            border: 1px solid rgba(255, 255, 255, .4);
            border-radius: 999px;
            background: rgba(255, 255, 255, .05);
            color: #fff;
            font-family: var(--sans);
            font-size: .8rem;
            font-weight: 400;
            letter-spacing: .15em;
            backdrop-filter: blur(8px);
            transition: all .4s cubic-bezier(.16, 1, .3, 1)
        }

        .hero .btn-solid {
            border-color: #fff;
            background: #fff;
            color: var(--deep)
        }

        .hero .btn-solid:hover {
            border-color: #fff;
            background: transparent;
            color: #fff;
            transform: translateY(-2px)
        }

        .hero .btn-ghost:hover {
            border-color: #fff;
            background: #fff;
            color: var(--deep);
            transform: translateY(-2px)
        }

        .hero-dots {
            right: 5%;
            bottom: 48px;
            gap: 12px
        }

        .hero-dots button {
            width: 28px;
            background: rgba(255, 255, 255, .3);
            transition: background .3s, width .3s
        }

        .hero-dots button.active {
            width: 42px;
            background: #fff
        }

        .scroll-cue {
            left: 50%;
            bottom: 30px;
            width: auto;
            height: auto;
            border: 0;
            border-radius: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .6);
            font-family: "Times New Roman", serif;
            font-size: .65rem;
            letter-spacing: .2em;
            transition: color .3s
        }

        .scroll-cue::before {
            display: none
        }

        .scroll-cue::after {
            content: "";
            position: static;
            width: 1px;
            height: 36px;
            background: linear-gradient(180deg, rgba(255, 255, 255, .8), transparent);
            transform: none;
            animation: scrollLine 2s infinite
        }

        .scroll-cue:hover {
            border: 0;
            background: transparent;
            color: #fff
        }

        @keyframes scrollLine {
            0% {
                transform: scaleY(0);
                transform-origin: top
            }

            50% {
                transform: scaleY(1);
                transform-origin: top
            }

            50.1% {
                transform: scaleY(1);
                transform-origin: bottom
            }

            100% {
                transform: scaleY(0);
                transform-origin: bottom
            }
        }

        .intro {
            position: relative;
            padding: 120px 0 100px;
            background: var(--paper);
            text-align: center
        }

        .intro-grid {
            display: block
        }

        .intro-decor {
            width: 1px;
            height: 48px;
            margin: 0 auto 36px;
            background: rgba(23, 33, 29, .45);
            opacity: .6
        }

        .intro-copy {
            max-width: 920px;
            margin: auto;
            color: var(--ink);
            font-family: var(--serif);
            font-size: clamp(1.05rem, 1.8vw, 1.35rem);
            font-weight: 300;
            line-height: 2.4;
            letter-spacing: .1em
        }

        .intro-copy p {
            margin: 0 0 12px
        }

        .intro-copy p:last-child {
            margin-top: 24px;
            margin-bottom: 0;
            color: var(--forest);
            font-weight: 400
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: .8s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: none
        }

        @media(max-width:850px) {
            .container {
                width: min(100% - 40px, 680px)
            }

            header,
            header.scrolled {
                height: 72px;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                transition: height .35s, background .35s, box-shadow .35s, border-color .35s
            }

            body.menu-open header,
            body.menu-open header.scrolled {
                background: transparent;
                border-bottom-color: transparent;
                box-shadow: none;
                transition: none
            }

            .nav-links {
                position: fixed;
                inset: 0;
                z-index: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2px;
                padding: 96px 28px 40px;
                background: #0b1411;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity .3s, visibility .3s
            }

            .menu-open .nav-links {
                opacity: 1;
                visibility: visible;
                pointer-events: auto
            }

            header .nav-links a {
                display: block;
                width: 100%;
                max-width: 280px;
                padding: 16px 8px;
                color: rgba(255, 255, 255, .82);
                font-family: var(--serif);
                font-size: 1.4rem;
                font-weight: 400;
                letter-spacing: .18em;
                text-align: center
            }

            header .nav-links a.active {
                color: #fff
            }

            header .nav-links a::after,
            header .nav-links a.active::after {
                display: none
            }

            .nav-links .lang {
                margin-top: 28px;
                justify-content: center
            }

            .nav-links .lang-toggle {
                color: rgba(255, 255, 255, .7);
                font-size: .9rem
            }

            .nav-links .lang-menu {
                left: 50%;
                right: auto;
                transform: translateX(-50%) translateY(-6px)
            }

            .nav-links .lang.open .lang-menu {
                transform: translateX(-50%)
            }

            .menu-btn {
                display: block;
                position: relative;
                z-index: 2
            }

            .hero {
                height: 72svh;
                min-height: 0
            }

            .hero-slide,
            .hero-slide.active {
                transform: none;
                transition: opacity 1s ease
            }

            .hero-slide img {
                object-position: 64% 38%
            }

            .hero-slide:nth-child(2) img {
                object-position: 72% 48%
            }

            .hero-slide:nth-child(3) img {
                object-position: 86% 52%
            }

            .hero-slide::after {
                background: linear-gradient(180deg, rgba(8, 17, 14, .48) 0%, rgba(8, 17, 14, .18) 24%, rgba(8, 17, 14, .42) 52%, rgba(8, 17, 14, .82) 84%, var(--paper) 100%)
            }

            .hero-content {
                width: calc(100% - 40px);
                justify-content: flex-end;
                align-items: stretch;
                padding-top: 88px;
                padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px))
            }

            .hero h1 {
                max-width: none;
                margin: 0;
                font-size: 2.15rem;
                line-height: 1.45;
                letter-spacing: .08em
            }

            .hero-copy {
                max-width: none;
                margin: 12px 0 20px;
                font-size: .88rem;
                line-height: 1.8;
                letter-spacing: .04em
            }

            .hero-actions {
                width: 100%;
                flex-direction: row;
                gap: 8px
            }

            .hero .btn {
                flex: 1;
                width: auto;
                min-width: 0;
                min-height: 44px;
                padding: 11px 10px;
                font-size: .74rem;
                letter-spacing: .08em;
                white-space: nowrap;
                text-align: center
            }

            .hero-dots {
                left: 20px;
                right: auto;
                bottom: calc(14px + env(safe-area-inset-bottom, 0px));
                gap: 8px
            }

            .hero-dots button {
                width: 22px
            }

            .hero-dots button.active {
                width: 32px
            }

            .hero .scroll-cue {
                display: none
            }

            .intro {
                padding: 64px 0;
                text-align: left
            }

            .intro .container {
                width: calc(100% - 40px)
            }

            .intro-copy {
                width: 100%;
                max-width: none;
                margin: 0;
                font-size: 1.05rem;
                font-weight: 400;
                line-height: 2.05;
                letter-spacing: .06em;
                text-align: left;
                word-break: keep-all;
                line-break: strict;
                overflow-wrap: break-word
            }

            .intro-copy p {
                margin: 0 0 1.1em
            }

            .intro-copy p:last-child {
                margin: 0;
                color: inherit;
                font-weight: inherit
            }

            .story,
            .contact {
                padding: 90px 0
            }

            .collections,
            .products {
                padding: 85px 0
            }

            .intro-grid,
            .story-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 55px
            }

            .contact-map,
            .contact-map iframe {
                min-height: 320px
            }

            .contact-map::before {
                inset: 16px -10px -16px 16px
            }

            .story-image {
                order: 2
            }

            .story-image img {
                height: 480px
            }

            .collection-grid {
                display: none
            }

            .collection-mobile {
                display: block
            }

            .collection-mobile-name {
                margin: 0 0 12px;
                font-family: var(--serif);
                font-size: 1.35rem;
                font-weight: 400;
                letter-spacing: .12em;
                text-align: center
            }

            .collection-mobile-split {
                display: grid;
                grid-template-columns: 52px 1fr;
                gap: 8px;
                align-items: stretch;
                height: min(58vw, 42vh, 250px)
            }

            .collection-mobile-thumbs {
                display: grid;
                grid-template-rows: repeat(5, minmax(0, 1fr));
                gap: 6px
            }

            .collection-mobile-thumbs button {
                display: block;
                appearance: none;
                width: 100%;
                height: 100%;
                min-height: 0;
                padding: 0;
                border: 0;
                background: transparent;
                overflow: hidden;
                cursor: pointer
            }

            .collection-mobile-thumbs button.active {
                box-shadow: inset 0 0 0 1px #111
            }

            .collection-mobile-thumbs img {
                width: 100%;
                height: 100%;
                object-fit: cover
            }

            .collection-mobile-preview {
                position: relative;
                min-width: 0;
                height: 100%;
                overflow: hidden;
                background: #101713
            }

            .collection-mobile-preview img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0;
                transition: opacity .8s ease
            }

            .collection-mobile-preview img.active {
                opacity: 1
            }

            .product-block {
                grid-template-columns: 1fr;
                gap: 28px
            }

            .map {
                min-height: 390px
            }

            .map iframe {
                min-height: 390px
            }

            .section-head {
                display: block
            }

            .section-head p:last-child {
                margin-top: 20px
            }
        }

        @media(max-width:540px) {
            body {
                line-height: 1.8
            }

            .brand {
                gap: 10px
            }

            .brand-name {
                font-size: 1.02rem;
                letter-spacing: .13em
            }

            .brand-name small {
                margin-top: 4px;
                font-size: .42rem;
                letter-spacing: .15em
            }

            .brand-mark {
                width: 40px;
                height: 40px
            }

            .brand-mark img {
                position: static;
                width: 100%;
                height: 100%;
                object-fit: contain;
                transform: none
            }

            .hero {
                height: 68svh
            }

            .hero h1 {
                font-size: 1.95rem;
                letter-spacing: .06em
            }

            .hero-copy {
                font-size: .84rem;
                line-height: 1.75
            }

            .hero-content {
                width: calc(100% - 32px)
            }

            .hero-dots {
                left: 16px
            }

            .intro-grid {
                gap: 22px
            }

            .intro {
                padding: 52px 0
            }

            .intro .container {
                width: calc(100% - 32px)
            }

            .intro-copy {
                font-size: 1rem;
                letter-spacing: .04em
            }

            .collection-mobile-name {
                margin: 0 0 10px;
                font-size: 1.25rem
            }

            .collection-mobile-split {
                grid-template-columns: 46px 1fr;
                gap: 6px;
                height: min(62vw, 38vh, 220px)
            }

            .story-image img {
                height: 410px
            }

            .story-image::before {
                inset: 18px -8px -18px 18px
            }

            .facts {
                grid-template-columns: 90px 1fr
            }

            .product-carousel {
                height: 360px
            }

            .contact-row {
                grid-template-columns: 90px 1fr
            }

            .footer-top,
            .copyright {
                align-items: flex-start;
                flex-direction: column;
                gap: 24px
            }

            .footer-nav {
                width: 100%;
                align-items: flex-end
            }

            .socials {
                width: 100%;
                justify-content: flex-end;
                flex-wrap: nowrap;
                gap: 12px;
                font-size: .98rem;
                letter-spacing: .04em
            }
        }

        @media(prefers-reduced-motion:reduce) {
            html {
                scroll-behavior: auto
            }

            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important
            }

            .reveal {
                opacity: 1;
                transform: none
            }
        }

        .nav-links a.active {
            color: #fff
        }

        .nav-links a.active::after {
            left: 50%;
            width: 100%
        }

        body.subpage header,
        body.subpage header.scrolled {
            height: 72px;
            background: rgba(8, 17, 14, .92);
            border-bottom-color: rgba(255, 255, 255, .12);
            box-shadow: none
        }

        body.theme-dark {
            background: var(--deep);
            color: #fff
        }

        .skip {
            color: var(--ink)
        }

        .page-block {
            padding: 150px 0 120px
        }

        .contact.page-block {
            min-height: unset;
            padding-bottom: 40px
        }

        body.contact-page {
            height: 100svh;
            max-height: 100svh;
            overflow: hidden;
            display: flex;
            flex-direction: column
        }

        body.contact-page #main {
            flex: 1 1 auto;
            min-height: 0
        }

        body.contact-page .contact.page-block {
            flex: none;
            min-height: 0;
            padding-bottom: 0
        }

        body.contact-page .contact-grid {
            align-items: stretch;
            margin-top: 0;
            margin-bottom: 0
        }

        body.contact-page .contact-map,
        body.contact-page .contact-map iframe {
            min-height: 0;
            height: 100%
        }

        body.contact-page footer {
            flex: none
        }

        .about-page {
            background: var(--paper)
        }

        .about-page .eyebrow,
        .home-profile .eyebrow {
            color: var(--forest)
        }

        .about-page h1 {
            margin: 12px 0 28px;
            font-family: var(--serif);
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 400
        }

        .contact h1 {
            margin: 0 0 24px;
            font-family: var(--serif);
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 400
        }

        .about-message-block {
            max-width: 1160px;
            margin: 0 auto 108px;
            text-align: center
        }

        .about-message-block h1 {
            margin: 0 0 48px
        }

        .about-message {
            color: var(--forest);
            font-family: var(--serif);
            font-size: clamp(1.12rem, 2vw, 1.42rem);
            font-weight: 400;
            line-height: 2.05;
            letter-spacing: .12em;
            text-align: center
        }

        .about-message p {
            margin: 0 auto;
            text-align: center
        }

        .about-message p + p::before {
            content: "";
            display: block;
            width: 40px;
            height: 1px;
            margin: 28px auto;
            background: var(--logo-gold)
        }

        .about-message p:nth-child(1) {
            max-width: 100%;
            white-space: nowrap
        }

        html[lang="ja"] .about-message p:nth-child(1) {
            white-space: normal
        }

        .about-message p:nth-child(2) {
            max-width: 92%;
            white-space: nowrap
        }

        .about-message p:nth-child(3) {
            max-width: 58%
        }

        .about-page .story-grid {
            align-items: stretch;
            margin: 64px 0 80px
        }

        .about-info {
            display: flex;
            flex-direction: column;
            align-self: stretch;
            height: 100%;
            min-height: 650px
        }

        .about-page h2 {
            margin: 12px 0 24px;
            font-family: var(--serif);
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 400
        }

        .about-page .contact-list {
            display: flex;
            flex-direction: column;
            flex: 1;
            margin-top: 8px
        }

        .about-page .contact-row {
            flex: 1;
            align-items: center;
            font-size: 1rem;
            font-weight: 400
        }

        .about-page .contact-row span:first-child {
            font-weight: 500
        }

        .about-access {
            margin-top: 160px
        }

        .about-access h2 {
            margin: 0
        }

        .about-access-grid {
            display: grid;
            grid-template-columns: minmax(220px, .72fr) 1.28fr;
            gap: 40px 56px;
            align-items: stretch
        }

        .about-access-copy {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            gap: 28px;
            padding: 0 0 8px
        }

        .about-access-zip {
            margin: 0 0 14px;
            color: var(--logo-gold);
            font-family: "Times New Roman", "Noto Serif JP", serif;
            font-size: .82rem;
            letter-spacing: .22em
        }

        .about-access-copy p:last-of-type {
            margin: 0;
            font-family: var(--serif);
            font-size: clamp(1.05rem, 1.6vw, 1.28rem);
            font-weight: 400;
            line-height: 2;
            letter-spacing: .08em
        }

        .about-access .btn {
            margin-top: 28px;
            align-self: flex-start;
            background: transparent;
            color: #191919
        }

        .about-access .btn:hover {
            background: #191919;
            color: #fff;
            border-width: 2px
        }

        .about-access-map {
            position: relative;
            z-index: 0;
            min-height: 420px
        }

        .about-access-map iframe {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
            min-height: 420px;
            border: 0
        }

        .about-access-map::before {
            content: "";
            position: absolute;
            z-index: 0;
            inset: 24px -24px -24px 24px;
            border: 1px solid rgba(23, 33, 29, .28);
            pointer-events: none
        }

        .home-profile {
            padding: 100px 0 72px;
            background: var(--paper)
        }

        .home-profile-head {
            max-width: 640px;
            margin-bottom: 48px
        }

        .home-profile-head h2 {
            margin: 0 0 16px;
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 400;
            line-height: 1.45
        }

        .home-profile-head p {
            margin: 0;
            color: #59645f
        }

        .home-profile-grid {
            display: grid;
            grid-template-columns: minmax(260px, .85fr) 1.15fr;
            gap: 40px 56px;
            align-items: stretch
        }

        .home-profile-info {
            display: flex;
            flex-direction: column;
            align-self: stretch;
            height: 100%;
            min-height: 340px
        }

        .home-profile .contact-list {
            display: flex;
            flex-direction: column;
            flex: 1;
            margin-top: 8px
        }

        .home-profile .contact-row {
            flex: 1;
            align-items: center;
            font-size: 1rem;
            font-weight: 400
        }

        .home-profile .contact-row span:first-child {
            font-weight: 500
        }

        .home-profile .contact-row a:hover {
            color: #8c713d
        }

        .contact-row-icons {
            align-items: center
        }

        .contact-icons {
            display: flex;
            align-items: center;
            gap: 16px
        }

        .contact-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            color: #000;
            font-size: 24px;
            line-height: 1;
            transition: background-color .25s ease-in-out, color .25s ease-out
        }

        .contact-icon .bi {
            font-size: inherit;
            line-height: 1
        }

        .contact-icon:hover,
        .contact-row a.contact-icon:hover {
            background-color: #000;
            color: #fff
        }

        @media (min-width: 768px) {
            .contact-icons {
                gap: 24px
            }
        }

        .home-profile .map {
            position: relative;
            z-index: 0;
            min-height: 340px;
            height: 100%
        }

        .home-profile .map iframe {
            position: relative;
            z-index: 1;
            display: block;
            min-height: 340px;
            height: 100%
        }

        .home-profile .map::before {
            content: "";
            position: absolute;
            z-index: 0;
            inset: 24px -24px -24px 24px;
            border: 1px solid rgba(23, 33, 29, .28);
            pointer-events: none
        }

        .btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 30px
        }

        .home-cta {
            padding: 0 0 100px;
            background: var(--paper)
        }

        .home-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            padding: 36px 48px;
            background: var(--forest);
            color: #fff
        }

        .home-cta h2 {
            margin: 0 0 8px;
            font-family: var(--serif);
            font-size: clamp(1.35rem, 2.2vw, 1.85rem);
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: .06em
        }

        .home-cta p {
            max-width: 520px;
            margin: 0;
            color: rgba(255, 255, 255, .62);
            font-size: .86rem;
            line-height: 1.9
        }

        .home-cta .btn {
            flex: none;
            border-color: #fff;
            background: #fff;
            color: var(--deep)
        }

        .home-cta .btn:hover {
            border-width: 2px;
            border-color: #fff;
            background: transparent;
            color: #fff
        }

        body.theme-dark .products {
            padding: 150px 0 120px;
            background: transparent
        }

        .product-block {
            scroll-margin-top: 90px
        }

        @media(max-width:850px) {
            .page-block {
                padding: 120px 0 90px
            }

            body.theme-dark .products {
                padding-bottom: 40px
            }

            .products .product-block:last-child {
                padding-bottom: 20px
            }

            body.contact-page {
                height: auto;
                max-height: none;
                overflow: visible;
                display: block
            }

            body.contact-page #main,
            body.contact-page .contact.page-block {
                display: block;
                min-height: 0
            }

            body.contact-page .contact-map,
            body.contact-page .contact-map iframe {
                min-height: 320px;
                height: auto
            }

            .home-profile-grid {
                grid-template-columns: 1fr;
                gap: 32px
            }

            .home-profile-info {
                min-height: 0
            }

            .home-profile .map,
            .home-profile .map iframe {
                min-height: 300px
            }

            .home-profile .map::before {
                inset: 16px -10px -16px 16px
            }

            .home-cta {
                padding-bottom: 40px
            }

            .home-cta-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
                padding: 32px 28px
            }

            .home-cta .btn {
                width: 100%
            }

            .about-page .story-grid {
                margin: 48px 0 56px
            }

            .about-info {
                min-height: 0
            }

            .about-message-block {
                margin-bottom: 72px
            }

            .about-message p:nth-child(1),
            .about-message p:nth-child(2) {
                max-width: 100%;
                white-space: normal
            }

            .about-message p:nth-child(3) {
                max-width: 78%
            }

            .about-access-grid {
                grid-template-columns: 1fr;
                gap: 28px
            }

            .about-access-copy {
                padding: 0
            }

            .about-access-map,
            .about-access-map iframe {
                min-height: 320px
            }

            .about-access-map::before {
                inset: 16px -10px -16px 16px
            }

            .btn-row {
                flex-direction: column
            }

            .btn-row .btn {
                width: 100%;
                min-width: 0
            }
        }
