:root {
    --ink: #07111f;
    --ink-soft: #182536;
    --paper: #f5f3ed;
    --white: #fff;
    --line: rgba(7, 17, 31, 0.14);
    --blue: #15d8f4;
    --blue-deep: #0866ff;
    --lime: #c9ff42;
    --max: 1240px;
    --sans: "Noto Sans JP", sans-serif;
    --latin: "DM Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
select,
input {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 18px;
    color: var(--white);
    background: var(--blue-deep);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    background: rgba(7, 17, 31, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
    color: var(--white);
    background: rgba(7, 17, 31, 0.985);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 34px rgba(3, 9, 19, 0.14);
}

.header-inner {
    display: flex;
    width: min(calc(100% - 48px), 1380px);
    min-height: 82px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 34px;
    height: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    transform: skewX(-12deg);
}

.brand-mark i {
    display: block;
    background: var(--blue);
}

.brand-mark i:nth-child(2) {
    opacity: 0.7;
}

.brand-mark i:nth-child(3) {
    opacity: 0.38;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--latin);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 7px;
    font-family: var(--latin);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.21em;
}

.primary-nav,
.primary-nav ul {
    display: flex;
    align-items: center;
}

.primary-nav {
    gap: 35px;
}

.primary-nav ul {
    gap: 29px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.primary-nav a:hover {
    opacity: 0.65;
}

.primary-nav .header-cta {
    display: inline-flex;
    min-height: 43px;
    padding: 0 21px;
    color: var(--ink);
    background: var(--blue);
    align-items: center;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background: #06101f;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url("../img/mice-hero.png") center 44% / cover no-repeat;
    transform: scale(1.015);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 9, 19, 0.98) 0%, rgba(3, 9, 19, 0.86) 31%, rgba(3, 9, 19, 0.36) 58%, rgba(3, 9, 19, 0.08) 100%),
        linear-gradient(0deg, rgba(3, 9, 19, 0.65) 0%, transparent 45%);
}

.hero-grid,
.about-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 110px 110px;
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 720px;
    padding-top: 105px;
    align-items: center;
    justify-content: space-between;
}

.hero-copy {
    max-width: 820px;
}

.eyebrow,
.section-label {
    margin: 0 0 23px;
    font-family: var(--latin);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.19em;
}

.eyebrow span {
    display: inline-flex;
    padding: 7px 11px;
    color: var(--blue);
    border: 1px solid rgba(21, 216, 244, 0.48);
    background: rgba(21, 216, 244, 0.08);
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 5.25vw, 76px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.055em;
}

.hero h1 em {
    position: relative;
    color: var(--blue);
    font-style: normal;
}

.hero h1 em::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: skewX(-24deg);
}

.hero-lead {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    gap: 28px;
}

.button {
    display: inline-flex;
    min-height: 58px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    color: var(--ink);
    background: var(--blue);
}

.button-primary:hover {
    background: #72ecff;
}

.text-button {
    padding: 6px 0;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.text-button span {
    margin-left: 22px;
}

.hero-meta {
    position: absolute;
    right: 0;
    bottom: 64px;
    display: flex;
    padding: 18px 0;
    align-items: center;
    gap: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-family: var(--latin);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.hero-meta p {
    margin: 0;
    line-height: 1.45;
}

.hero-meta strong {
    font-size: 15px;
    letter-spacing: 0.04em;
}

.hero-ticker {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    min-height: 41px;
    color: var(--ink);
    background: var(--blue);
    font-family: var(--latin);
}

.hero-ticker div {
    display: flex;
    width: max-content;
    min-height: 41px;
    align-items: center;
    animation: marquee 26s linear infinite;
}

.hero-ticker span {
    margin: 0 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.hero-ticker i {
    width: 4px;
    height: 4px;
    background: var(--ink);
    transform: rotate(45deg);
}

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

.venue-search-section {
    padding: 90px 0 105px;
    background: var(--paper);
}

.search-intro {
    display: grid;
    margin-bottom: 50px;
    grid-template-columns: 0.75fr 2fr;
    gap: 60px;
}

.section-label {
    display: flex;
    color: #596372;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    width: 30px;
    height: 1px;
    content: "";
    background: currentColor;
}

.section-label span {
    margin-left: auto;
    color: #9ba1a9;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.62);
}

.search-intro h2,
.section-head h2,
.criteria-intro h2,
.editorial-head h2,
.about-inner h2,
.contact-panel h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.045em;
}

.search-intro > div > p {
    margin: 18px 0 0;
    color: #596372;
}

.venue-filter {
    display: grid;
    border: 1px solid var(--line);
    background: var(--white);
    grid-template-columns: repeat(3, 1fr) 0.9fr;
}

.venue-filter label {
    position: relative;
    display: flex;
    min-height: 104px;
    padding: 19px 24px;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.venue-filter label > span {
    color: #77808c;
    font-size: 11px;
    font-weight: 600;
}

.venue-filter select {
    width: 100%;
    margin-top: 6px;
    padding: 0 25px 0 0;
    color: var(--ink);
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.venue-filter button {
    color: var(--white);
    border: 0;
    background: var(--ink);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.venue-filter button span {
    margin-left: 22px;
    color: var(--blue);
}

.venue-filter button:hover {
    background: var(--blue-deep);
}

.search-note {
    margin: 13px 0 0;
    color: #848b95;
    font-size: 11px;
}

.venue-section {
    padding: 110px 0 125px;
    color: var(--white);
    background: var(--ink);
}

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

.section-head .section-label {
    width: 270px;
}

.result-count {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--latin);
    font-size: 11px;
    letter-spacing: 0.16em;
}

.result-count strong {
    margin-right: 10px;
    color: var(--blue);
    font-size: 34px;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.venue-card {
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: #0a1625;
    transition: transform 0.3s ease, background 0.3s ease;
}

.venue-card:hover {
    z-index: 2;
    background: #0e1e31;
    transform: translateY(-7px);
}

.venue-card[hidden] {
    display: none;
}

.venue-visual {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 20px;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.24), transparent 26%),
        linear-gradient(135deg, #0f83a4, #0b263f 75%);
}

.tone-blue {
    background: radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.22), transparent 27%), linear-gradient(135deg, #1164c6, #0a1e45 75%);
}

.tone-violet {
    background: radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.22), transparent 27%), linear-gradient(135deg, #7855db, #261955 75%);
}

.tone-orange {
    background: radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.22), transparent 27%), linear-gradient(135deg, #e6782d, #50200f 75%);
}

.tone-green {
    background: radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.22), transparent 27%), linear-gradient(135deg, #26a47e, #0a3a32 75%);
}

.tone-rose {
    background: radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.22), transparent 27%), linear-gradient(135deg, #d25175, #4d1830 75%);
}

.venue-index,
.venue-area,
.venue-initial {
    position: absolute;
    z-index: 2;
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
}

.venue-index {
    top: 20px;
    left: 20px;
}

.venue-area {
    right: 20px;
    bottom: 17px;
    padding: 3px 9px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
}

.venue-initial {
    bottom: 13px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    letter-spacing: 0.04em;
}

.venue-architecture {
    position: absolute;
    right: 8%;
    bottom: 15%;
    left: 8%;
    display: flex;
    height: 54%;
    align-items: flex-end;
    gap: 4px;
    transform: perspective(500px) rotateX(58deg) rotateZ(-8deg);
    transform-origin: bottom;
}

.venue-architecture i {
    flex: 1;
    height: 70%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        rgba(4, 14, 30, 0.35);
    background-size: 17px 17px;
}

.venue-architecture i:nth-child(2) {
    height: 95%;
}

.venue-architecture i:nth-child(3) {
    height: 82%;
}

.venue-architecture i:nth-child(4) {
    height: 65%;
}

.venue-card-body {
    padding: 28px 28px 30px;
}

.venue-location {
    margin: 0 0 9px;
    color: #8895a5;
    font-size: 11px;
}

.venue-location span {
    color: var(--blue);
    font-size: 7px;
}

.venue-card h3 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -0.03em;
}

.venue-stat {
    display: flex;
    margin: 19px 0 18px;
    padding: 14px 0;
    align-items: center;
    gap: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.venue-stat strong {
    color: var(--blue);
    font-family: var(--latin);
    font-size: 21px;
}

.venue-stat span {
    color: #8c98a8;
    font-size: 10px;
}

.venue-description {
    min-height: 78px;
    margin: 0;
    color: #a9b2be;
    font-size: 13px;
    line-height: 1.9;
}

.venue-card ul {
    display: flex;
    margin: 20px 0 24px;
    padding: 0;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.venue-card li {
    padding: 3px 8px;
    color: #b8c2ce;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 10px;
}

.venue-card-body > a {
    display: flex;
    padding-top: 15px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 600;
}

.venue-card-body > a span {
    color: var(--blue);
    font-size: 16px;
}

.no-results {
    padding: 65px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.no-results strong {
    font-size: 24px;
}

.no-results p {
    color: #94a0af;
}

.no-results button {
    padding: 12px 20px;
    color: var(--ink);
    border: 0;
    background: var(--blue);
    font-weight: 700;
}

.criteria-section {
    padding: 125px 0;
    background:
        linear-gradient(rgba(7, 17, 31, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.055) 1px, transparent 1px),
        var(--paper);
    background-size: 72px 72px;
}

.criteria-intro {
    display: grid;
    margin-bottom: 65px;
    grid-template-columns: 0.8fr 1.7fr 1fr;
    align-items: start;
    gap: 55px;
}

.criteria-intro h2 em {
    color: var(--blue-deep);
    font-style: normal;
}

.criteria-intro > p:last-child {
    margin: 8px 0 0;
    color: #596372;
    font-size: 14px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.criteria-grid article {
    position: relative;
    min-height: 370px;
    padding: 24px 26px 27px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
}

.criteria-grid article > span {
    font-family: var(--latin);
    font-size: 11px;
    font-weight: 700;
}

.criteria-icon {
    position: relative;
    width: 120px;
    height: 95px;
    margin: 43px auto 36px;
    transform: perspective(300px) rotateX(55deg) rotateZ(-28deg);
}

.criteria-icon i {
    position: absolute;
    border: 2px solid var(--blue-deep);
}

.criteria-icon i:nth-child(1) {
    inset: 7px 17px 22px 2px;
}

.criteria-icon i:nth-child(2) {
    inset: 22px 0 8px 23px;
}

.criteria-icon i:nth-child(3) {
    top: -1px;
    right: 38px;
    bottom: 0;
    width: 2px;
    border: 0;
    background: var(--blue-deep);
}

.criteria-icon.route i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.criteria-icon.route i:nth-child(1) {
    top: 5px;
    right: auto;
    bottom: auto;
    left: 8px;
}

.criteria-icon.route i:nth-child(2) {
    inset: auto 5px 8px auto;
}

.criteria-icon.route i:nth-child(3) {
    top: 35px;
    right: 27px;
    bottom: auto;
    width: 65px;
    height: 2px;
    transform: rotate(15deg);
}

.criteria-icon.signal {
    transform: none;
}

.criteria-icon.signal i {
    right: 50%;
    bottom: 13px;
    left: auto;
    border: 2px solid var(--blue-deep);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 100% 0 0;
    transform: translateX(50%) rotate(45deg);
}

.criteria-icon.signal i:nth-child(1) {
    width: 82px;
    height: 82px;
}

.criteria-icon.signal i:nth-child(2) {
    width: 54px;
    height: 54px;
}

.criteria-icon.signal i:nth-child(3) {
    width: 24px;
    height: 24px;
    background: transparent;
}

.criteria-icon.rooms i:nth-child(1) {
    inset: 2px 37px 27px 0;
}

.criteria-icon.rooms i:nth-child(2) {
    inset: 23px 6px 5px 31px;
}

.criteria-grid h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.criteria-grid p {
    margin: 0;
    color: #647080;
    font-size: 13px;
    line-height: 1.85;
}

.criteria-grid small {
    position: absolute;
    bottom: 17px;
    left: 26px;
    color: #a3a8af;
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.insights-section {
    padding: 125px 0;
    background: #ebe9e2;
}

.editorial-head {
    align-items: flex-start;
}

.editorial-head > p {
    max-width: 400px;
    margin: 54px 0 0;
    color: #647080;
    font-size: 14px;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.insight-grid article {
    min-height: 430px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.insight-featured {
    display: grid;
    grid-template-rows: 190px 1fr;
}

.insight-graphic {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: -28px -28px 26px;
    padding: 30px;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(21, 216, 244, 0.18), transparent 50%),
        var(--ink);
    align-items: center;
    justify-content: space-between;
    font-family: var(--latin);
    font-size: 25px;
    font-weight: 700;
}

.insight-graphic::before,
.insight-graphic::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(21, 216, 244, 0.55);
    transform: perspective(400px) rotateX(62deg) rotateZ(-18deg);
}

.insight-graphic::before {
    inset: 25px 15%;
}

.insight-graphic::after {
    inset: 52px 27%;
}

.insight-graphic span,
.insight-graphic i {
    position: relative;
    z-index: 2;
}

.insight-graphic i {
    height: 1px;
    flex: 1;
    margin: 0 14px;
    background: rgba(255, 255, 255, 0.38);
}

.insight-grid article > p:first-child,
.insight-featured > div:last-child > p:first-child {
    display: flex;
    margin: 0 0 17px;
    color: #7d8590;
    align-items: center;
    justify-content: space-between;
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.insight-grid h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: -0.025em;
}

.insight-featured h3 {
    font-size: 24px;
}

.insight-grid article > p:not(:first-child),
.insight-featured > div:last-child > p:not(:first-child) {
    color: #667180;
    font-size: 13px;
}

.insight-grid a {
    display: flex;
    margin-top: 26px;
    padding-top: 15px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.insight-card.dark {
    color: var(--white);
    background: var(--ink);
}

.insight-card.dark > p:not(:first-child) {
    color: #9ca8b7;
}

.insight-card.dark a {
    border-top-color: rgba(255, 255, 255, 0.16);
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(21, 216, 244, 0.2), transparent 30%),
        #07111f;
}

.about-grid {
    opacity: 0.12;
    mask-image: linear-gradient(90deg, transparent, #000);
}

.about-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
}

.about-copy {
    padding-top: 42px;
}

.about-copy > p {
    margin: 0 0 22px;
    color: #b0bac7;
    font-size: 14px;
}

.about-principles {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-principles span {
    display: flex;
    padding: 15px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
}

.about-principles strong {
    width: 50px;
    color: var(--blue);
    font-family: var(--latin);
    font-size: 11px;
}

.contact-section {
    padding: 95px 0;
    background: var(--blue);
}

.contact-panel {
    display: grid;
    padding: 58px 62px;
    color: var(--white);
    background: var(--blue-deep);
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 80px;
    box-shadow: 22px 22px 0 rgba(7, 17, 31, 0.11);
}

.contact-panel > div:first-child > p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.64);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.contact-panel h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.contact-panel > div:last-child > p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.button-light {
    color: var(--ink);
    background: var(--white);
}

.site-footer {
    padding: 75px max(24px, calc((100vw - var(--max)) / 2)) 25px;
    color: var(--white);
    background: #040a12;
}

.footer-main {
    display: grid;
    padding-bottom: 65px;
    grid-template-columns: 1.2fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-footer {
    margin-bottom: 24px;
}

.footer-main > div:first-child > p {
    color: #7e8997;
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links strong {
    margin-bottom: 10px;
    color: #687382;
    font-family: var(--latin);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.footer-links a {
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    padding-top: 20px;
    color: #56616f;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    font-size: 9px;
}

.footer-bottom p {
    max-width: 700px;
    margin: 0;
}

.footer-bottom small {
    font-family: var(--latin);
}

.content-page {
    min-height: 70vh;
    padding: 160px 0 110px;
}

.content-shell,
.article-shell {
    max-width: 920px;
}

.archive-header,
.article-header {
    margin-bottom: 60px;
}

.archive-header h1,
.article-header h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.35;
    letter-spacing: -0.04em;
}

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

.post-card {
    padding: 26px;
    border: 1px solid var(--line);
    background: var(--white);
}

.post-card p {
    color: #697482;
    font-size: 12px;
}

.post-card h2 {
    font-size: 20px;
    line-height: 1.55;
}

.article-date,
.article-meta {
    color: #7b8490;
    font-family: var(--latin);
    font-size: 11px;
}

.article-meta {
    display: flex;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px 22px;
    letter-spacing: 0.04em;
}

.article-hero {
    margin-bottom: 40px;
}

.entry-content {
    font-size: 16px;
}

.entry-content h2 {
    margin-top: 2.5em;
    font-size: 30px;
}

.entry-content h3 {
    margin-top: 2em;
    font-size: 23px;
}

.entry-content a {
    color: var(--blue-deep);
    text-decoration: underline;
}

.breadcrumbs {
    display: flex;
    margin-bottom: 52px;
    color: rgba(255, 255, 255, 0.55);
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.content-page .breadcrumbs,
.subpage-hero-light .breadcrumbs {
    color: #7e8792;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.subpage-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
}

.subpage-hero-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 25%, rgba(21, 216, 244, 0.2), transparent 28%),
        var(--ink);
}

.subpage-hero-light {
    padding-bottom: 92px;
    background:
        linear-gradient(rgba(7, 17, 31, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.05) 1px, transparent 1px),
        var(--paper);
    background-size: 80px 80px;
}

.subpage-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(90deg, transparent 15%, #000);
}

.subpage-hero .container {
    position: relative;
}

.subpage-hero .section-label {
    width: 300px;
}

.subpage-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.25;
    letter-spacing: -0.055em;
}

.subpage-hero h1 em {
    color: var(--blue);
    font-style: normal;
}

.subpage-hero-light h1 em {
    color: var(--blue-deep);
}

.subpage-hero .container > p:last-child,
.term-description {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.subpage-hero-light .container > p:last-child {
    color: #687382;
}

.archive-filter-section {
    position: relative;
    z-index: 5;
    margin-bottom: -45px;
    padding: 0 0 1px;
    background: var(--paper);
}

.archive-filter-section .container {
    position: relative;
    top: -45px;
}

.venue-filter-extended {
    grid-template-columns: 1.2fr repeat(3, 1fr) 0.8fr;
    box-shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
}

.venue-filter input[type="search"] {
    width: 100%;
    margin-top: 6px;
    padding: 0;
    color: var(--ink);
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
}

.filter-subactions {
    display: flex;
    padding: 14px 18px 0;
    color: #66717e;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    font-size: 12px;
}

.filter-subactions label {
    cursor: pointer;
}

.filter-subactions button {
    padding: 0;
    color: var(--blue-deep);
    border: 0;
    background: transparent;
    cursor: pointer;
}

.venue-archive-results {
    padding-top: 130px;
}

.related-venue-section {
    padding-top: 95px;
}

.related-venue-section .section-more {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.venue-seo-guide {
    padding: 100px 0;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.venue-seo-guide-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.venue-seo-guide h2 {
    margin: 0;
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.3;
    letter-spacing: -0.045em;
}

.venue-seo-guide-grid > div:last-child > p {
    margin: 0 0 32px;
    color: #566271;
}

.venue-seo-links {
    display: grid;
    border-top: 1px solid var(--line);
}

.venue-seo-links a {
    display: flex;
    min-height: 60px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    font-weight: 700;
}

.venue-seo-links span {
    color: var(--blue-deep);
}

.compact-head h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.favorite-button {
    position: absolute;
    z-index: 4;
    top: 15px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(5, 14, 26, 0.28);
    place-items: center;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.favorite-button.is-active {
    color: var(--ink);
    border-color: var(--blue);
    background: var(--blue);
}

.venue-card-actions {
    display: grid;
    padding-top: 15px;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.venue-card-actions > a {
    padding: 0;
    border: 0;
}

.compare-check {
    display: flex;
    color: #97a3b1;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    cursor: pointer;
}

.compare-check input {
    width: 15px;
    height: 15px;
    accent-color: var(--blue);
}

.compare-drawer {
    position: fixed;
    z-index: 95;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    width: min(calc(100% - 48px), 900px);
    min-height: 84px;
    margin: 0 auto;
    padding: 16px 18px 16px 25px;
    color: var(--white);
    background: var(--blue-deep);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.compare-drawer[hidden] {
    display: none;
}

.compare-drawer p {
    margin: 0;
    font-size: 11px;
}

.compare-drawer p strong {
    color: var(--blue);
    font-size: 20px;
}

.compare-drawer [data-compare-names] {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.compare-drawer a {
    padding: 14px 20px;
    color: var(--ink);
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.venue-all-link {
    display: flex;
    margin-top: 38px;
    justify-content: flex-end;
}

.venue-all-link a {
    display: inline-flex;
    padding: 13px 0;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.venue-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 82px;
    color: var(--white);
    background: linear-gradient(135deg, #0f83a4, #07111f 75%);
}

.venue-detail-hero.tone-blue { background: linear-gradient(135deg, #1164c6, #07111f 75%); }
.venue-detail-hero.tone-violet { background: linear-gradient(135deg, #7855db, #17102f 75%); }
.venue-detail-hero.tone-orange { background: linear-gradient(135deg, #e6782d, #281109 75%); }
.venue-detail-hero.tone-green,
.venue-detail-hero.tone-emerald { background: linear-gradient(135deg, #26a47e, #07231e 75%); }
.venue-detail-hero.tone-rose { background: linear-gradient(135deg, #d25175, #28101a 75%); }
.venue-detail-hero.tone-indigo { background: linear-gradient(135deg, #4f62d9, #0f163c 75%); }
.venue-detail-hero.tone-lime { background: linear-gradient(135deg, #78a935, #17230a 75%); }
.venue-detail-hero.tone-sky,
.venue-detail-hero.tone-aqua { background: linear-gradient(135deg, #1c9fc9, #082432 75%); }
.venue-detail-hero.tone-amber { background: linear-gradient(135deg, #d58a2b, #2e1b07 75%); }

.venue-detail-architecture {
    position: absolute;
    right: 4%;
    bottom: -18%;
    display: flex;
    width: 48%;
    height: 78%;
    opacity: 0.36;
    align-items: flex-end;
    gap: 7px;
    transform: perspective(600px) rotateX(58deg) rotateZ(-8deg);
}

.venue-detail-architecture i {
    flex: 1;
    height: 70%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 24px 24px;
}

.venue-detail-architecture i:nth-child(2) { height: 95%; }
.venue-detail-architecture i:nth-child(3) { height: 82%; }
.venue-detail-architecture i:nth-child(4) { height: 62%; }

.venue-detail-hero .container {
    position: relative;
    z-index: 2;
}

.venue-detail-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.venue-detail-heading p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.venue-detail-heading h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.2;
    letter-spacing: -0.055em;
}

.venue-detail-heading > div:first-child > span {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.venue-detail-stat {
    min-width: 210px;
    padding: 24px 0 5px 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.venue-detail-stat strong,
.venue-detail-stat span {
    display: block;
}

.venue-detail-stat strong {
    color: var(--blue);
    font-family: var(--latin);
    font-size: 34px;
    line-height: 1.2;
}

.venue-detail-stat span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 11px;
}

.venue-detail-content {
    padding: 100px 0 120px;
    background: var(--paper);
}

.venue-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 85px;
}

.venue-detail-layout > article,
.venue-detail-section,
.entry-content,
.entry-table-wrap {
    min-width: 0;
}

.venue-lead {
    margin: 0 0 45px;
    font-size: 19px;
    font-weight: 500;
    line-height: 2;
}

.venue-spec-grid {
    display: grid;
    margin-bottom: 85px;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.venue-spec-grid > div {
    min-height: 130px;
    padding: 23px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
}

.venue-spec-grid span,
.venue-spec-grid strong {
    display: block;
}

.venue-spec-grid span {
    margin-bottom: 17px;
    color: #7a8491;
    font-size: 10px;
}

.venue-spec-grid strong {
    font-size: 18px;
    line-height: 1.55;
}

.venue-detail-section {
    margin-top: 82px;
}

.venue-detail-section h2 {
    margin: 0 0 28px;
    font-size: 32px;
    letter-spacing: -0.035em;
}

.event-type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.event-type-tags a {
    padding: 12px 17px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.planning-note {
    display: grid;
    padding: 28px;
    color: var(--white);
    background: var(--ink);
    grid-template-columns: 90px 1fr;
    gap: 25px;
}

.planning-note span {
    color: var(--blue);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.planning-note p {
    margin: 0;
    color: #b3bdc9;
    font-size: 14px;
}

.source-note {
    margin-top: 70px;
    padding-top: 20px;
    color: #88919d;
    border-top: 1px solid var(--line);
    font-size: 10px;
}

.venue-detail-aside {
    position: sticky;
    top: 115px;
    height: max-content;
}

.detail-action-card {
    padding: 28px;
    color: var(--white);
    background: var(--ink);
}

.detail-action-card > p {
    margin: 0 0 17px;
    color: var(--blue);
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.detail-action-card h2 {
    margin: 0 0 26px;
    font-size: 22px;
}

.detail-action-card button {
    width: 100%;
    min-height: 50px;
    margin-top: 9px;
    color: var(--ink);
    border: 0;
    background: var(--blue);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.detail-action-card button.secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
}

.detail-action-card button.is-active {
    color: var(--white);
    background: var(--blue-deep);
}

.official-link,
.consult-link {
    display: flex;
    margin-top: 12px;
    padding: 17px 19px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.consult-link {
    color: var(--white);
    border-color: var(--blue-deep);
    background: var(--blue-deep);
}

.related-actions {
    padding: 0 0 110px;
    background: var(--paper);
}

.related-actions .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.related-actions a {
    display: grid;
    min-height: 155px;
    padding: 22px;
    grid-template-columns: 1fr auto;
    align-content: space-between;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.related-actions span {
    color: #9ba2aa;
    font-family: var(--latin);
    font-size: 10px;
}

.related-actions strong {
    grid-column: 1;
    font-size: 17px;
}

.related-actions em {
    color: var(--blue-deep);
    grid-column: 2;
    grid-row: 2;
    font-style: normal;
}

.guides-list-section {
    padding: 0 0 120px;
    background: #ebe9e2;
}

.guide-category-strip {
    display: flex;
    min-height: 72px;
    margin-bottom: 45px;
    padding: 0 24px;
    background: var(--ink);
    align-items: center;
    gap: 32px;
}

.guide-category-strip span {
    margin-right: auto;
    color: var(--blue);
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.guide-category-strip a {
    color: #b1bbc7;
    font-size: 11px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.guide-card {
    display: grid;
    min-height: 360px;
    padding: 28px;
    grid-template-columns: 55px 1fr;
    gap: 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.guide-number {
    color: var(--blue-deep);
    font-family: var(--latin);
    font-size: 12px;
    font-weight: 700;
}

.guide-card > div:last-child > p:first-child {
    display: flex;
    margin: 0 0 26px;
    color: #7c8591;
    align-items: center;
    justify-content: space-between;
    font-family: var(--latin);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.guide-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: -0.035em;
}

.guide-card .wp-block-post-excerpt,
.guide-card > div:last-child > p:not(:first-child) {
    color: #687382;
    font-size: 13px;
}

.guide-read {
    display: flex;
    margin-top: 25px;
    padding-top: 15px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.guide-cta-section {
    padding: 50px 0;
    color: var(--white);
    background: var(--blue-deep);
}

.guide-cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.guide-cta-section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.guide-cta-section a {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.checklist-content {
    padding: 100px 0 120px;
    background: var(--paper);
}

.checklist-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: start;
    gap: 75px;
}

.checklist-progress {
    position: sticky;
    top: 112px;
    padding: 27px;
    color: var(--white);
    background: var(--ink);
}

.checklist-progress > p {
    margin: 0;
    color: var(--blue);
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.checklist-progress > strong {
    display: block;
    margin: 18px 0 13px;
    font-family: var(--latin);
    font-size: 50px;
    line-height: 1;
}

.checklist-progress > div {
    height: 4px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.16);
}

.checklist-progress i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blue);
    transition: width 0.25s ease;
}

.checklist-progress small {
    color: #9ea9b6;
    font-size: 10px;
}

.checklist-progress button {
    width: 100%;
    margin-top: 24px;
    padding: 11px;
    color: #aeb7c2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    font-size: 10px;
    cursor: pointer;
}

.checklist-groups {
    border-top: 1px solid var(--line);
}

.checklist-groups > section {
    padding: 36px 0 48px;
    border-bottom: 1px solid var(--line);
}

.checklist-group-head {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 19px;
}

.checklist-group-head span {
    color: var(--blue-deep);
    font-family: var(--latin);
    font-size: 11px;
    font-weight: 700;
}

.checklist-group-head h2 {
    margin: 0;
    font-size: 26px;
}

.checklist-item {
    display: grid;
    min-height: 64px;
    margin-top: 8px;
    padding: 14px 18px;
    background: var(--white);
    grid-template-columns: 26px 1fr;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.checklist-item input {
    position: absolute;
    opacity: 0;
}

.checklist-item > span {
    position: relative;
    width: 23px;
    height: 23px;
    border: 1px solid #aeb5be;
}

.checklist-item.is-checked {
    background: #e5fbff;
}

.checklist-item.is-checked > span {
    border-color: var(--blue-deep);
    background: var(--blue-deep);
}

.checklist-item.is-checked > span::after {
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 11px;
    content: "";
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checklist-item strong {
    font-size: 14px;
}

.checklist-next {
    padding: 70px 0;
    color: var(--white);
    background: var(--blue-deep);
}

.checklist-next .container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 18px;
}

.checklist-next p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--latin);
    font-size: 9px;
    letter-spacing: 0.15em;
}

.checklist-next h2 {
    margin: 8px 0 0;
    font-size: 25px;
}

.checklist-next a {
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
}

.checklist-next a:last-child {
    color: var(--ink);
    border-color: var(--white);
    background: var(--white);
}

.compare-content {
    padding: 90px 0 120px;
    background: var(--paper);
}

.compare-picker {
    display: flex;
    margin-bottom: 50px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.compare-picker label {
    display: flex;
    width: min(100%, 520px);
    flex-direction: column;
}

.compare-picker label span {
    margin-bottom: 8px;
    color: #697482;
    font-size: 11px;
    font-weight: 600;
}

.compare-picker select {
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid var(--line);
    background: var(--white);
    font-weight: 700;
}

.compare-picker > a {
    padding-bottom: 8px;
    color: var(--blue-deep);
    border-bottom: 1px solid var(--blue-deep);
    font-size: 12px;
    font-weight: 700;
}

.compare-empty {
    padding: 80px 30px;
    text-align: center;
    border: 1px dashed #aab1ba;
    background: rgba(255, 255, 255, 0.5);
}

.compare-empty strong {
    font-size: 24px;
}

.compare-empty p {
    color: #737e8c;
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table-wrap[hidden],
.compare-share[hidden] {
    display: none;
}

.compare-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
    background: var(--white);
}

.compare-table th,
.compare-table td {
    width: 27%;
    padding: 22px;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--line);
    font-size: 13px;
}

.compare-table tr > th:first-child {
    width: 19%;
    color: #6e7885;
    background: #eceae4;
    font-size: 11px;
}

.compare-table thead th:not(:first-child) {
    position: relative;
    color: var(--white);
    background: var(--ink);
}

.compare-table thead a {
    display: block;
    color: var(--blue);
    font-size: 18px;
    line-height: 1.45;
}

.compare-table thead small {
    display: block;
    margin-top: 7px;
    color: #9aa5b3;
    font-size: 9px;
}

.compare-table thead button {
    position: absolute;
    top: 7px;
    right: 8px;
    color: #94a0af;
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.compare-share {
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.compare-share button,
.compare-share a {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.compare-share button {
    cursor: pointer;
}

.compare-share a {
    display: inline-flex;
    color: var(--white);
    border-color: var(--blue-deep);
    background: var(--blue-deep);
    align-items: center;
}

.request-content {
    padding: 100px 0 120px;
    background: var(--paper);
}

.request-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
    gap: 80px;
}

.request-layout > aside {
    position: sticky;
    top: 112px;
    padding: 28px;
    color: var(--white);
    background: var(--ink);
}

.request-layout > aside > p {
    margin: 0;
    color: var(--blue);
    font-family: var(--latin);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.request-layout > aside h2 {
    margin: 15px 0 26px;
    font-size: 22px;
}

.request-layout ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.request-layout li {
    display: flex;
    padding: 11px 0;
    color: #acb7c5;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 11px;
}

.request-layout li span {
    color: var(--blue);
    font-family: var(--latin);
    font-size: 9px;
}

.request-layout > aside a {
    display: block;
    margin-top: 25px;
    color: var(--blue);
    font-size: 11px;
}

.form-message {
    margin-bottom: 25px;
    padding: 16px 18px;
    font-size: 13px;
}

.form-message.success {
    color: #164c35;
    border: 1px solid #7bd2a7;
    background: #e3f8ed;
}

.form-message.error {
    color: #792c2c;
    border: 1px solid #df9999;
    background: #fff0f0;
}

.request-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
}

.request-form label {
    display: flex;
    flex-direction: column;
}

.request-form label > span {
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
}

.request-form em {
    margin-left: 6px;
    color: var(--blue-deep);
    font-size: 9px;
    font-style: normal;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--line);
    outline: 0;
    background: var(--white);
}

.request-form input,
.request-form select {
    min-height: 52px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 2px rgba(8, 102, 255, 0.12);
}

.request-form .field-full {
    grid-column: 1 / -1;
}

.request-form .consent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.request-form .consent input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--blue-deep);
}

.request-form .consent span {
    margin: 0;
    font-weight: 500;
}

.request-form .consent a {
    color: var(--blue-deep);
    text-decoration: underline;
}

.form-submit {
    min-height: 62px;
    color: var(--white);
    border: 0;
    background: var(--blue-deep);
    font-weight: 700;
    cursor: pointer;
}

.form-submit:disabled {
    opacity: 0.6;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.content-values {
    display: grid;
    margin: 45px 0 70px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.content-values article {
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.content-values strong {
    color: var(--blue-deep);
    font-family: var(--latin);
    font-size: 11px;
}

.content-values h3 {
    margin: 40px 0 10px;
    font-size: 17px;
}

.content-values p {
    color: #6b7684;
    font-size: 12px;
}

.entry-content .lead {
    font-size: 19px;
    font-weight: 500;
    line-height: 2;
}

.entry-content ul {
    padding-left: 1.4em;
}

.entry-content li {
    margin: 8px 0;
}

.inline-cta {
    display: inline-flex;
    margin-top: 10px;
    padding: 14px 20px;
    color: var(--white) !important;
    background: var(--blue-deep);
    text-decoration: none !important;
}

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

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 24px 45px 24px 0;
    font-weight: 700;
    cursor: pointer;
}

.faq-list summary::after {
    position: absolute;
    top: 22px;
    right: 5px;
    color: var(--blue-deep);
    content: "+";
    font-family: var(--latin);
    font-size: 22px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 0 24px 25px;
    color: #687382;
    border-left: 2px solid var(--blue);
}

.site-search-form {
    display: flex;
    margin-bottom: 45px;
}

.site-search-form input {
    min-height: 54px;
    padding: 0 16px;
    flex: 1;
    border: 1px solid var(--line);
}

.site-search-form button {
    width: 110px;
    color: var(--white);
    border: 0;
    background: var(--blue-deep);
}

.not-found-page {
    display: flex;
    min-height: 80vh;
    padding: 150px 0 100px;
    align-items: center;
    background:
        linear-gradient(rgba(7, 17, 31, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.05) 1px, transparent 1px),
        var(--paper);
    background-size: 80px 80px;
}

.not-found-page .container > p:first-child {
    color: var(--blue-deep);
    font-family: var(--latin);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.not-found-page h1 {
    margin: 12px 0 18px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.not-found-page .container > p:not(:first-child) {
    color: #6e7885;
}

.not-found-page .container > div {
    display: flex;
    margin-top: 35px;
    align-items: center;
    gap: 30px;
}

.dark-text {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

@media (max-width: 1050px) {
    .primary-nav ul {
        gap: 17px;
    }

    .primary-nav {
        gap: 20px;
    }

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

    .criteria-intro {
        grid-template-columns: 0.65fr 1.7fr;
    }

    .criteria-intro > p:last-child {
        grid-column: 2;
    }

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

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

    .insight-featured {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    .container,
    .header-inner {
        width: min(calc(100% - 32px), var(--max));
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-copy strong {
        font-size: 20px;
    }

    .menu-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        padding: 8px;
        color: currentColor;
        border: 0;
        background: transparent;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .menu-toggle span {
        width: 25px;
        height: 1px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-toggle em {
        margin-top: 3px;
        font-family: var(--latin);
        font-size: 7px;
        font-style: normal;
        letter-spacing: 0.12em;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 38px 24px;
        color: var(--white);
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        transform: translateX(100%);
        transition: transform 0.25s ease;
    }

    .menu-open .primary-nav {
        transform: translateX(0);
    }

    .primary-nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .primary-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .primary-nav li a {
        display: block;
        padding: 17px 3px;
        font-size: 17px;
    }

    .primary-nav .header-cta {
        margin-top: 22px;
        justify-content: center;
    }

    .hero {
        min-height: 780px;
    }

    .hero-media {
        background-position: 62% 50%;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(3, 9, 19, 0.95) 0%, rgba(3, 9, 19, 0.68) 70%, rgba(3, 9, 19, 0.35) 100%),
            linear-gradient(0deg, rgba(3, 9, 19, 0.8) 0%, transparent 60%);
    }

    .hero-inner {
        min-height: 740px;
        padding-top: 70px;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(39px, 10vw, 60px);
    }

    .hero-meta {
        right: auto;
        bottom: 55px;
        left: 0;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 19px;
    }

    .search-intro,
    .criteria-intro,
    .about-inner,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .search-intro {
        gap: 8px;
    }

    .venue-filter {
        grid-template-columns: 1fr 1fr;
    }

    .venue-filter label:nth-of-type(2) {
        border-right: 0;
    }

    .venue-filter label:nth-of-type(3) {
        border-top: 1px solid var(--line);
    }

    .venue-filter button {
        border-top: 1px solid var(--line);
    }

    .criteria-intro {
        gap: 20px;
    }

    .criteria-intro > p:last-child {
        grid-column: auto;
    }

    .editorial-head {
        flex-direction: column;
    }

    .editorial-head > p {
        margin-top: 0;
    }

    .about-inner {
        gap: 25px;
    }

    .about-copy {
        padding-top: 0;
    }

    .contact-panel {
        gap: 35px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .venue-filter-extended {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-filter-extended label:nth-of-type(2),
    .venue-filter-extended label:nth-of-type(4) {
        border-right: 0;
    }

    .venue-filter-extended button {
        grid-column: 1 / -1;
        min-height: 70px;
    }

    .venue-detail-layout,
    .request-layout,
    .venue-seo-guide-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .venue-detail-aside,
    .request-layout > aside {
        position: static;
    }

    .checklist-layout {
        grid-template-columns: 210px 1fr;
        gap: 40px;
    }

    .checklist-next .container {
        grid-template-columns: 1fr 1fr;
    }

    .checklist-next .container > div {
        grid-column: 1 / -1;
    }
}

@media (max-width: 590px) {
    .desktop-only {
        display: none;
    }

    .hero h1 {
        letter-spacing: -0.06em;
    }

    .hero-lead {
        font-size: 14px;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        display: none;
    }

    .venue-search-section,
    .venue-section,
    .criteria-section,
    .insights-section,
    .about-section,
    .venue-seo-guide {
        padding: 80px 0;
    }

    .venue-filter {
        grid-template-columns: 1fr;
    }

    .venue-filter label {
        min-height: 89px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .venue-filter label:nth-of-type(3) {
        border-top: 0;
    }

    .venue-filter button {
        min-height: 70px;
        border-top: 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head .section-label {
        width: 100%;
    }

    .venue-grid,
    .criteria-grid,
    .insight-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .insight-featured {
        grid-column: auto;
    }

    .venue-description {
        min-height: 0;
    }

    .criteria-grid article {
        min-height: 330px;
    }

    .insight-grid article {
        min-height: 0;
    }

    .insight-featured {
        grid-template-rows: 170px 1fr;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-panel {
        padding: 37px 25px;
        box-shadow: 10px 10px 0 rgba(7, 17, 31, 0.11);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 13px;
    }

    .subpage-hero {
        padding: 120px 0 75px;
    }

    .subpage-hero h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .subpage-hero .section-label {
        width: 100%;
    }

    .archive-filter-section {
        margin-bottom: 0;
    }

    .archive-filter-section .container {
        top: -25px;
    }

    .venue-filter-extended {
        grid-template-columns: 1fr;
    }

    .venue-filter-extended button {
        grid-column: auto;
    }

    .filter-subactions {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .venue-card-actions {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .compare-drawer {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 14px;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .compare-drawer a {
        text-align: center;
    }

    .venue-detail-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .venue-detail-stat {
        padding-left: 0;
        border-left: 0;
    }

    .venue-detail-architecture {
        right: -25%;
        width: 100%;
        opacity: 0.22;
    }

    .venue-spec-grid,
    .related-actions .container,
    .guides-grid,
    .content-values {
        grid-template-columns: 1fr;
    }

    .planning-note {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .guide-category-strip {
        overflow-x: auto;
        padding: 0 18px;
        gap: 22px;
    }

    .guide-category-strip span {
        margin-right: 8px;
    }

    .guide-card {
        min-height: 0;
        padding: 24px;
        grid-template-columns: 36px 1fr;
    }

    .guide-card h2 {
        font-size: 20px;
    }

    .guide-cta-section .container,
    .compare-picker {
        align-items: flex-start;
        flex-direction: column;
    }

    .checklist-layout {
        grid-template-columns: 1fr;
    }

    .checklist-progress {
        position: static;
    }

    .checklist-next .container {
        grid-template-columns: 1fr;
    }

    .checklist-next .container > div {
        grid-column: auto;
    }

    .compare-share {
        align-items: stretch;
        flex-direction: column;
    }

    .compare-share button,
    .compare-share a {
        justify-content: center;
    }

    .request-form {
        grid-template-columns: 1fr;
    }

    .request-form .field-full {
        grid-column: auto;
    }

    .not-found-page .container > div {
        align-items: flex-start;
        flex-direction: column;
    }
}

.entry-content p {
    line-height: 1.95;
}

.entry-content ol {
    padding-left: 1.5em;
}

.summary-box,
.warning-box {
    margin: 34px 0;
    padding: 24px 26px;
    border-left: 4px solid var(--blue-deep);
    background: #eef5ff;
}

.warning-box {
    border-left-color: #ef7f48;
    background: #fff4ee;
}

.summary-box > strong,
.warning-box > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.summary-box p,
.warning-box p,
.warning-box ul {
    margin-top: 0;
    margin-bottom: 0;
}

.entry-table-wrap {
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.entry-table-wrap table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 13px;
}

.entry-table-wrap th,
.entry-table-wrap td {
    padding: 15px 17px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    line-height: 1.75;
}

.entry-table-wrap thead th {
    color: var(--white);
    background: var(--ink);
    font-size: 11px;
}

.entry-table-wrap tbody th {
    width: 22%;
    background: #f5f7fa;
}

.decision-list,
.warning-list {
    display: grid;
    margin: 28px 0;
    padding: 0 !important;
    list-style: none;
    gap: 10px;
}

.decision-list li,
.warning-list li {
    position: relative;
    margin: 0 !important;
    padding: 15px 18px 15px 44px;
    border: 1px solid var(--line);
    background: var(--white);
}

.decision-list li::before,
.warning-list li::before {
    position: absolute;
    top: 15px;
    left: 17px;
    color: var(--blue-deep);
    content: "✓";
    font-weight: 800;
}

.warning-list li::before {
    color: #e4662d;
    content: "!";
}

.process-list {
    margin: 30px 0;
    padding: 0 !important;
    list-style: none;
    border-top: 1px solid var(--line);
}

.process-list li {
    display: grid;
    margin: 0 !important;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 50px 1fr;
    align-items: start;
}

.process-list span {
    color: var(--blue-deep);
    font-family: var(--latin);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.process-list p {
    margin: 0;
}

.editorial-block {
    margin-top: 76px;
}

.editorial-block:first-child {
    margin-top: 0;
}

.editorial-block > h2 {
    margin-top: 0;
}

.editorial-points {
    display: grid;
    margin: 28px 0;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.editorial-points article {
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.editorial-points h3 {
    margin: 0 0 12px;
    font-size: 17px;
}

.editorial-points p {
    margin: 0;
    color: #596575;
    font-size: 13px;
}

.venue-status-notice {
    margin: 0 0 64px;
    padding: 26px 28px;
    border: 1px solid rgba(207, 70, 39, 0.3);
    border-left: 5px solid #cf4627;
    background: #fff4ee;
}

.venue-status-notice + .editorial-block {
    margin-top: 0;
}

.venue-status-label {
    margin: 0 0 8px !important;
    color: #b7351a;
    font-family: var(--latin);
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.venue-status-notice h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.venue-status-notice p:not(.venue-status-label) {
    margin: 0 0 14px;
}

.venue-status-notice a {
    color: #9e2d17;
    font-size: 12px;
    font-weight: 800;
}

.venue-selection-conclusion {
    padding: 30px;
    border: 1px solid rgba(15, 79, 255, 0.2);
    background: #f3f7ff;
}

.venue-selection-conclusion p:last-child {
    margin-bottom: 0;
}

.venue-fact-table table {
    min-width: 860px;
}

.venue-fact-table tbody th {
    width: 18%;
}

.fact-source {
    display: block;
    margin-top: 8px;
    color: var(--blue-deep);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.venue-scenario-grid,
.venue-operation-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.venue-scenario-grid article,
.venue-operation-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--white);
}

.venue-scenario-grid h3,
.venue-operation-grid h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.venue-scenario-grid dl {
    margin: 0;
}

.venue-scenario-grid dl > div {
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.venue-scenario-grid dt {
    margin-bottom: 5px;
    color: var(--blue-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.venue-scenario-grid dd,
.venue-operation-grid p {
    margin: 0;
    color: #4f5d6d;
    font-size: 13px;
    line-height: 1.85;
}

.venue-scenario-grid .scenario-caution {
    border-top-color: rgba(228, 102, 45, 0.35);
}

.venue-scenario-grid .scenario-caution dt {
    color: #c84f1b;
}

.venue-operation-grid .fact-source {
    margin-top: 16px;
}

.venue-booking-table table {
    min-width: 800px;
}

.venue-fact-disclaimer {
    margin-top: -12px !important;
    padding: 14px 16px;
    border-left: 3px solid #e4662d;
    background: #fff7f1;
    color: #596575;
    font-size: 12px !important;
}

.venue-not-suitable {
    padding: 30px;
    border: 1px solid rgba(228, 102, 45, 0.25);
    background: #fffaf6;
}

.venue-not-suitable .warning-list {
    margin-bottom: 0;
}

.venue-faq-list {
    border-top: 1px solid var(--line);
}

.venue-faq-list details {
    border-bottom: 1px solid var(--line);
}

.venue-faq-list summary {
    position: relative;
    padding: 20px 44px 20px 0;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.venue-faq-list summary::-webkit-details-marker {
    display: none;
}

.venue-faq-list summary::after {
    position: absolute;
    top: 20px;
    right: 2px;
    color: var(--blue-deep);
    content: "+";
    font-size: 20px;
}

.venue-faq-list details[open] summary::after {
    content: "−";
}

.venue-faq-list details p {
    margin: -4px 0 20px;
    color: #526070;
}

.editorial-next {
    padding: 30px;
    border: 1px solid rgba(15, 79, 255, 0.24);
    background: #f3f7ff;
}

.venue-source-section ul {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.venue-source-section a {
    display: flex;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: var(--white);
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.search-area-grid,
.seo-landing-hub-grid {
    display: grid;
    margin: 30px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.search-area-grid article,
.seo-landing-hub-grid article {
    padding: 25px;
    border: 1px solid var(--line);
    background: var(--white);
}

.search-area-grid h3,
.seo-landing-hub-grid h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.55;
}

.search-area-grid p,
.seo-landing-hub-grid span {
    margin: 0;
    color: #526070;
    font-size: 13px;
    line-height: 1.85;
}

.seo-landing-hub-grid article > p {
    margin: 0 0 8px;
    color: var(--blue-deep);
    font-family: var(--latin);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.seo-landing-hub-grid a {
    color: var(--ink);
}

.search-source-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.search-source-list a {
    display: flex;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: var(--white);
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.regional-guide-cta {
    display: flex;
    margin: 0 0 42px;
    padding: 30px 34px;
    background: var(--blue-deep);
    color: var(--white);
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
}

.regional-guide-cta h2 {
    margin: 8px 0 10px;
    color: var(--white);
    font-size: clamp(22px, 3vw, 34px);
}

.regional-guide-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.regional-guide-cta .section-label {
    color: var(--yellow);
}

.regional-guide-cta > a {
    display: inline-flex;
    min-width: 220px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
    gap: 22px;
}

.recommendation-method {
    margin: 28px 0;
    padding: 26px 28px;
    border: 1px solid #cbd9eb;
    background: linear-gradient(135deg, #f5f9ff 0%, #eef4fb 100%);
}

.recommendation-method-label {
    margin: 0 0 6px !important;
    color: var(--blue-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.recommendation-method h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.recommendation-method p:not(.recommendation-method-label) {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
}

.recommendation-method ul {
    display: flex;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 8px;
}

.recommendation-method li {
    padding: 7px 10px;
    border: 1px solid #d5e0ed;
    background: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.recommendation-summary-table td:first-child {
    width: 76px;
    text-align: center;
}

.article-venue-candidates {
    margin-top: 64px;
}

.article-venue-candidates .recommendation-summary-table table {
    min-width: 860px;
}

.article-venue-candidates .recommendation-summary-table tbody th {
    width: 210px;
}

.venue-table-area {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.venue-table-scroll-note {
    display: none;
}

@media (max-width: 760px) {
    .venue-table-scroll-note {
        display: block;
        margin: 18px 0 -18px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 700;
    }
}

.recommendation-rank {
    display: inline-grid;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.venue-recommendation-list {
    display: grid;
    margin: 36px 0 52px;
    gap: 16px;
}

.venue-recommendation-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    grid-template-columns: 116px minmax(0, 1fr);
}

.venue-recommendation-rank {
    display: flex;
    padding: 24px 18px;
    background: var(--ink);
    color: var(--white);
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.venue-recommendation-rank span {
    color: var(--yellow);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    writing-mode: vertical-rl;
}

.venue-recommendation-rank strong {
    margin-top: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.venue-recommendation-copy {
    padding: 26px 28px;
}

.venue-recommendation-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(20px, 3vw, 27px);
}

.venue-recommendation-copy h3 a {
    color: var(--ink);
}

.venue-recommendation-reason {
    margin: 0 0 17px !important;
    font-size: 14px;
    line-height: 1.9;
}

.venue-recommendation-copy dl {
    display: grid;
    margin: 0;
    gap: 8px;
}

.venue-recommendation-copy dl > div {
    display: grid;
    padding: 11px 13px;
    background: #f5f7fa;
    grid-template-columns: 130px 1fr;
    gap: 14px;
}

.venue-recommendation-copy dt {
    font-size: 11px;
    font-weight: 800;
}

.venue-recommendation-copy dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.venue-recommendation-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue-deep);
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    gap: 14px;
}

.venue-guide-links > div {
    display: grid;
    margin-top: 22px;
    gap: 10px;
}

.venue-guide-links > div > a {
    display: grid;
    padding: 17px 18px;
    border: 1px solid var(--line);
    background: #f5f7fa;
    color: var(--ink);
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 24px;
}

.venue-guide-links a span {
    display: block;
    grid-column: 1;
    color: var(--blue-deep);
    font-size: 10px;
    font-weight: 800;
}

.venue-guide-links a strong {
    display: block;
    margin-top: 3px;
    grid-column: 1;
    font-size: 13px;
}

.venue-guide-links a em {
    grid-row: 1 / 3;
    grid-column: 2;
    font-style: normal;
}

@media (max-width: 720px) {
    .editorial-points {
        grid-template-columns: 1fr;
    }

    .venue-scenario-grid,
    .venue-operation-grid {
        grid-template-columns: 1fr;
    }

    .entry-content h2 {
        font-size: 25px;
    }

    .summary-box,
    .warning-box,
    .venue-selection-conclusion,
    .venue-not-suitable,
    .editorial-next {
        padding: 20px;
    }

    .venue-status-notice {
        margin-bottom: 48px;
        padding: 22px 20px;
    }

    .venue-status-notice h2 {
        font-size: 21px;
    }

    .search-area-grid,
    .seo-landing-hub-grid {
        grid-template-columns: 1fr;
    }

    .regional-guide-cta {
        padding: 24px 22px;
        align-items: stretch;
        flex-direction: column;
        gap: 22px;
    }

    .regional-guide-cta > a {
        min-width: 0;
    }

    .recommendation-method {
        padding: 21px 19px;
    }

    .recommendation-method ul {
        align-items: stretch;
        flex-direction: column;
    }

    .venue-recommendation-card {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .venue-recommendation-rank {
        padding: 20px 10px;
    }

    .venue-recommendation-rank strong {
        font-size: 25px;
    }

    .venue-recommendation-copy {
        padding: 21px 18px;
    }

    .venue-recommendation-copy dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
