:root {
    --brand-deep: #0c3443;
    --brand: #16546a;
    --brand-soft: #2f6d80;
    --accent: #ba6a18;
    --accent-soft: #f6e2c8;
    --text-strong: #17303d;
    --text-body: #314b57;
    --text-muted: #5d7480;
    --bg-page: #f4f7f6;
    --bg-surface: #ffffff;
    --bg-soft: #e9f0ef;
    --line: #c7d6d3;
    --shadow-soft: 0 18px 40px rgba(12, 52, 67, 0.08);
    --shadow-card: 0 12px 28px rgba(12, 52, 67, 0.12);
    --container-width: 1180px;
    --font-base: "BIZ UDPGothic", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    --font-size-base: 17px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--text-body);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0) 140px),
        var(--bg-page);
    line-height: 1.8;
    font-size: var(--font-size-base);
}

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

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
iframe:focus-visible {
    outline: 3px solid #ffbf47;
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    background: var(--brand-deep);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    z-index: 1000;
}

.skip-link:focus {
    top: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 84px 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--text-strong);
    line-height: 1.3;
}

p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(23, 48, 61, 0.08);
    backdrop-filter: blur(12px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 78px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-strong);
    text-decoration: none;
    min-width: 0;
}

.site-logo:hover {
    text-decoration: none;
}

.site-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.site-logo span {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-nav {
    margin-left: auto;
}

.mobile-nav-only {
    display: none;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(22, 84, 106, 0.16);
    border-radius: 14px;
    background: var(--bg-surface);
    color: var(--brand-deep);
    box-shadow: 0 8px 20px rgba(12, 52, 67, 0.08);
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.menu-toggle:hover {
    background: var(--bg-soft);
    border-color: rgba(22, 84, 106, 0.28);
    transform: translateY(-1px);
}

.menu-toggle-bars {
    display: grid;
    gap: 4px;
}

.menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition);
}

.site-header.nav-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--brand-deep);
    font-weight: 700;
    transition: background-color var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--bg-soft);
    color: var(--brand);
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--brand-deep);
    color: #fff;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.btn:hover {
    text-decoration: none;
    background: var(--brand);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.text-link,
.arrow-link {
    font-weight: 700;
    color: var(--brand);
}

.hero-top {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background-color: #102934;
    background-image: url("images/hero_top.png");
    background-size: cover;
    background-position: center center;
    padding: 96px 0 88px;
}

.hero-top::before,
.hero-top::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-top::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 28, 37, 0.9) 0%, rgba(10, 28, 37, 0.76) 34%, rgba(10, 28, 37, 0.5) 62%, rgba(10, 28, 37, 0.3) 100%),
        linear-gradient(180deg, rgba(10, 28, 37, 0.08) 0%, rgba(10, 28, 37, 0.44) 100%);
}

.hero-top::after {
    inset: auto 0 -16% auto;
    width: min(44vw, 480px);
    height: min(44vw, 480px);
    z-index: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(186, 106, 24, 0.24) 0%, rgba(186, 106, 24, 0.08) 42%, rgba(186, 106, 24, 0) 72%);
    filter: blur(16px);
}

.hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
    gap: 40px;
    align-items: end;
}

.hero-shell-single {
    grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
    max-width: 670px;
    animation: fade-up 0.8s ease both;
}

.hero-shell-single .hero-copy {
    max-width: 760px;
}

.hero-kicker,
.section-eyebrow,
.quick-link-label {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-top h1 {
    font-size: clamp(2.5rem, 5vw, 4.35rem);
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.01em;
}

.hero-lead {
    font-size: 1.14rem;
    max-width: 38rem;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-note {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
    animation: fade-up 0.95s ease both;
}

.hero-panel-title {
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.hero-panel-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.hero-panel-list li {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel-list strong {
    font-size: 1.18rem;
    color: #fff;
}

.hero-panel-list span {
    color: rgba(255, 255, 255, 0.8);
}

.home-links-section {
    padding: 24px 0 34px;
    margin-top: 0;
}

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

.quick-link {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 24px 24px 22px;
    border: 1px solid rgba(22, 84, 106, 0.12);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 6px;
    min-height: 164px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.quick-link strong {
    color: var(--text-strong);
    font-size: 1.24rem;
}

.quick-link span:last-child {
    color: var(--text-muted);
}

.quick-link:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 84, 106, 0.28);
    box-shadow: var(--shadow-card);
    text-decoration: none;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading-left {
    margin-bottom: 20px;
}

.section-eyebrow {
    color: var(--brand-soft);
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(1.95rem, 3vw, 3rem);
    margin-bottom: 14px;
}

.service-section {
    background: linear-gradient(180deg, rgba(233, 240, 239, 0.88) 0%, rgba(244, 247, 246, 1) 100%);
}

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

.consult-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    background: var(--bg-surface);
    padding: 26px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 84, 106, 0.12);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition);
}

.consult-item:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 84, 106, 0.26);
}

.consult-item img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.consult-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.consult-item p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.service-footnote {
    margin-top: 24px;
    color: var(--text-muted);
}

.about-spotlight {
    background: var(--bg-surface);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 40px;
    align-items: center;
}

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

.spotlight-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    margin-bottom: 18px;
}

.spotlight-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.spotlight-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-image-wrap {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 760px;
}

.about-image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.summary-points {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.summary-points li {
    position: relative;
    padding-left: 18px;
}

.summary-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.news-section {
    padding-top: 40px;
}

.news-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: start;
}

.news-column,
.cta-panel {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 84, 106, 0.12);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.news-column .section-heading h2 {
    font-size: 1.7rem;
}

.cta-stack {
    display: grid;
    gap: 18px;
}

.cta-panel h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.contact-panel {
    background: linear-gradient(135deg, rgba(233, 240, 239, 0.88) 0%, rgba(255, 255, 255, 1) 100%);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
}

.news-list {
    list-style: none;
}

.news-list li {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.news-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.news-list .date {
    font-weight: 700;
    color: var(--brand-soft);
}

.news-list .title {
    color: var(--text-strong);
    font-weight: 700;
}

.page-header {
    background:
        linear-gradient(180deg, rgba(233, 240, 239, 0.96) 0%, rgba(244, 247, 246, 1) 100%);
    padding: 62px 0 46px;
    border-bottom: 1px solid rgba(23, 48, 61, 0.08);
}

.page-header h1,
.page-header h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.page-header p {
    margin: 0;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.content-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.mapWrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(22, 84, 106, 0.08);
    background: #dbe6e3;
}

.mapWrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.shops,
.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.shops th,
.shops td,
.overview-table th,
.overview-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(22, 84, 106, 0.1);
    vertical-align: top;
}

.shops th,
.overview-table th {
    background: rgba(233, 240, 239, 0.9);
    color: var(--text-strong);
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.overview-table th {
    width: 180px;
}

.form-embed-wrap {
    margin-top: 26px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(22, 84, 106, 0.1);
    background: var(--bg-surface);
}

.form-embed-wrap iframe {
    display: block;
    width: 100%;
    min-height: 820px;
    border: 0;
}

.contact-form {
    max-width: 720px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group .required {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #b42318;
    color: #fff;
    font-size: 0.72rem;
    margin-left: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(22, 84, 106, 0.18);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 30px;
}

.news-article {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(22, 84, 106, 0.08);
}

.news-article-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.news-article-title {
    font-size: clamp(1.7rem, 2.7vw, 2.4rem);
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(22, 84, 106, 0.12);
}

.news-article-back {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(22, 84, 106, 0.1);
}

.site-footer {
    background: var(--brand-deep);
    color: rgba(255, 255, 255, 0.88);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.footer-title {
    margin-bottom: 6px;
    color: #fff;
    font-weight: 700;
}

.footer-copy,
.footer-credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner-compact {
    justify-content: space-between;
    align-items: center;
}

.related-preview-card {
    background: var(--bg-surface);
    border: 1px solid rgba(22, 84, 106, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.related-preview-card h3 {
    margin-bottom: 14px;
}

.related-sites-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.related-site-card {
    background: var(--bg-surface);
    border: 1px solid rgba(22, 84, 106, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.related-site-card-priority {
    border-color: rgba(22, 84, 106, 0.2);
}

.related-site-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 88px;
    padding: 14px 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(244, 247, 246, 0.96) 0%, rgba(233, 240, 239, 0.84) 100%);
    border: 1px solid rgba(22, 84, 106, 0.08);
}

.related-site-logo img {
    max-width: 100%;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.related-site-card h3 {
    margin-bottom: 10px;
}

.related-site-card p {
    margin-bottom: 10px;
}

.related-site-domain {
    display: block;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.92rem;
    word-break: break-all;
}

.about-page .page-header {
    position: relative;
    overflow: hidden;
}

.about-page .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(47, 109, 128, 0.14) 0, rgba(47, 109, 128, 0) 180px),
        radial-gradient(circle at 82% 32%, rgba(186, 106, 24, 0.12) 0, rgba(186, 106, 24, 0) 220px);
    pointer-events: none;
}

.about-header-inner {
    position: relative;
    z-index: 1;
}

.about-page .page-header h1 {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 4px solid rgba(22, 84, 106, 0.18);
}

.about-intro-section {
    position: relative;
}

.about-intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(233, 240, 239, 0.35) 100%);
    pointer-events: none;
}

.about-story {
    position: relative;
    display: grid;
    gap: 28px;
    z-index: 1;
}

.about-lead-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(233, 240, 239, 0.88) 100%);
    border: 1px solid rgba(22, 84, 106, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 34px;
}

.about-copy-flow {
    display: grid;
    gap: 20px;
}

.about-copy-block {
    background: var(--bg-surface);
    border: 1px solid rgba(22, 84, 106, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 28px 30px;
}

.about-section-title {
    position: relative;
    padding-left: 18px;
    margin-bottom: 16px;
}

.about-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--accent) 100%);
}

.about-signature {
    margin-top: 20px;
    text-align: right;
    font-weight: 700;
    color: var(--text-strong);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@media (max-width: 980px) {
    .site-header .container,
    .hero-shell,
    .spotlight-grid,
    .news-split,
    .footer-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

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

    .consult-grid,
    .related-sites-grid {
        grid-template-columns: 1fr;
    }

    .hero-top {
        padding-top: 74px;
    }

    .hero-shell,
    .spotlight-grid,
    .news-split {
        gap: 28px;
    }

    .hero-panel {
        padding-top: 22px;
    }
}

@media (max-width: 768px) {
    main#main-content {
        display: flex;
        flex-direction: column;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 18px;
    }

    section {
        padding: 68px 0;
    }

    .site-header .container {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        flex-wrap: nowrap;
        justify-content: stretch;
        align-items: center;
        min-height: 76px;
        column-gap: 12px;
        row-gap: 0;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-header {
        background: linear-gradient(90deg, #092330 0%, #0c3443 58%, #155a73 100%);
        border-bottom: 4px solid var(--accent);
        backdrop-filter: none;
        box-shadow: 0 8px 24px rgba(7, 26, 36, 0.22);
    }

    .site-logo {
        grid-column: 1;
        min-width: 0;
        align-items: center;
        gap: 10px;
        padding-right: 0;
        color: #fff;
    }

    .site-logo img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .site-logo span {
        display: block;
        min-width: 0;
        font-size: 0.83rem;
        line-height: 1.3;
        color: #fff;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 2;
        flex: 0 0 auto;
        width: 60px;
        height: 52px;
        margin-left: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: #fff;
        flex-direction: column;
        gap: 6px;
        position: relative;
    }

    .menu-toggle::after {
        content: "MENU";
        display: block;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        line-height: 1;
    }

    .site-nav {
        order: 3;
        grid-column: 1 / -1;
        width: 100%;
        margin-left: 0;
    }

    .mobile-nav-only {
        display: list-item;
    }

    html.js-ready .site-nav {
        display: none;
    }

    html.js-ready .site-header.nav-open .site-nav {
        display: block;
    }

    .site-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 12px;
    }

    .site-nav a {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.08);
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        color: #fff;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
    }

    .site-header.nav-open .site-nav {
        padding-bottom: 6px;
    }

    .hero-top {
        order: 1;
        padding: 54px 0 46px;
        background-position: 62% center;
    }

    .home-links-section {
        display: none;
    }

    .about-spotlight {
        order: 2;
    }

    .service-section {
        order: 3;
    }

    .news-section {
        order: 4;
    }

    .hero-shell {
        gap: 24px;
    }

    .hero-top h1 {
        font-size: 1.96rem;
        line-height: 1.22;
    }

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-secondary {
        width: 100%;
    }

    .hero-panel {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .hero-panel-list strong {
        font-size: 1.04rem;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .consult-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
    }

    .consult-item img {
        width: 64px;
        height: 64px;
    }

    .spotlight-grid,
    .news-split {
        gap: 24px;
    }

    .spotlight-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-image-wrap {
        margin-bottom: 28px;
    }

    .about-image-wrap img,
    .spotlight-media img {
        aspect-ratio: 4 / 3;
    }

    .cta-panel {
        padding: 24px 20px;
    }

    .related-preview-card,
    .related-site-card {
        padding: 22px 18px;
    }

    .related-site-logo {
        min-height: 78px;
        padding: 12px 14px;
        margin-bottom: 16px;
    }

    .related-site-logo img {
        max-height: 34px;
    }

    .about-lead-card,
    .about-copy-block {
        padding: 24px 20px;
    }

    .page-header {
        padding: 52px 0 38px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        margin-bottom: 0;
    }

    .mapWrap iframe {
        min-height: 300px;
    }

    .news-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .shops thead {
        display: none;
    }

    .shops,
    .shops tbody,
    .shops tr,
    .shops td {
        display: block;
        width: 100%;
    }

    .shops {
        background: transparent;
        box-shadow: none;
    }

    .shops tr {
        background: var(--bg-surface);
        border: 1px solid rgba(22, 84, 106, 0.12);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-bottom: 18px;
        box-shadow: var(--shadow-soft);
    }

    .shops td {
        display: flex;
        flex-direction: column;
        padding: 8px 0;
        border: 0;
    }

    .shops td::before {
        content: attr(data-label);
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--text-muted);
        margin-bottom: 4px;
    }

    .overview-table,
    .overview-table tbody,
    .overview-table tr,
    .overview-table th,
    .overview-table td {
        display: block;
        width: 100%;
    }

    .overview-table {
        overflow: visible;
        margin-top: 16px;
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(22, 84, 106, 0.12);
    }

    .overview-table tr {
        padding: 0;
        border-bottom: 1px solid rgba(22, 84, 106, 0.12);
        background: rgba(255, 255, 255, 0.98);
    }

    .overview-table th {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(22, 84, 106, 0.08);
        background: rgba(220, 233, 230, 0.92);
        font-size: 0.9rem;
    }

    .overview-table td {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 14px 16px 16px;
        border-bottom: 0;
        background: #fff;
    }

    .overview-table tr:last-child {
        border-bottom: 0;
    }

    .news-article {
        padding: 28px 20px;
    }
}
