:root {
    --ink: #10243f;
    --muted: #617084;
    --sea: #047c89;
    --sea-dark: #07505c;
    --gold: #b89455;
    --coral: #d95f45;
    --mint: #edf7f4;
    --paper: #ffffff;
    --line: #dce5e8;
    --soft: #f6f8f7;
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
}

img {
    max-width: 100%;
}

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

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 14px;
    color: var(--paper);
    background: var(--sea-dark);
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 36, 63, 0.09);
    backdrop-filter: blur(14px);
}

.site-header .navbar {
    min-height: 76px;
    padding: 0;
}

.site-logo img {
    width: 164px;
    height: auto;
    display: block;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 14px;
    background-image: none;
    border-top: 2px solid var(--ink);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    content: "";
    background: var(--ink);
}

.navbar-toggler-icon::before {
    top: 4px;
}

.navbar-toggler-icon::after {
    top: 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(4, 124, 137, 0.18);
}

.navbar-nav {
    gap: 6px;
}

.navbar-nav .nav-link {
    padding: 10px 12px;
    color: var(--ink);
    font-weight: 700;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--sea);
}

.navbar-nav .nav-link.active {
    color: var(--sea-dark);
    background: var(--mint);
    border-radius: 8px;
}

.hero-section {
    position: relative;
    min-height: 78svh;
    overflow: hidden;
    color: var(--paper);
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background: url("../img/iskele/coast-north-cyprus-iskele.jpg") center / cover no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(8, 25, 45, 0.82) 0%, rgba(8, 25, 45, 0.55) 44%, rgba(8, 25, 45, 0.14) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    min-height: 78svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
    align-items: center;
    padding-top: 54px;
    padding-bottom: 54px;
}

.hero-content {
    max-width: 780px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--sea-dark);
    background: var(--mint);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-section .eyebrow {
    color: #123046;
    background: rgba(255, 255, 255, 0.88);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    color: inherit;
}

h1 {
    margin-top: 18px;
    font-size: clamp(58px, 9vw, 118px);
    line-height: 0.94;
    font-weight: 800;
}

.hero-lead {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
}

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

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 800;
    gap: 9px;
}

.primary-action {
    color: var(--paper);
    background: var(--sea);
}

.primary-action:hover,
.primary-action:focus {
    color: var(--paper);
    background: var(--sea-dark);
}

.secondary-action {
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

.secondary-action:hover,
.secondary-action:focus {
    color: var(--ink);
    background: var(--paper);
}

.hero-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.hero-panel div {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
}

.hero-panel strong,
.hero-panel span {
    display: block;
}

.hero-panel strong {
    color: var(--sea-dark);
    font-size: 13px;
    text-transform: uppercase;
}

.hero-panel span {
    margin-top: 5px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.45;
}

.quick-guide,
.content-section,
.faq-section {
    background: var(--paper);
}

.quick-guide,
.region-section,
.content-section,
.places-section,
.principles-section,
.faq-section {
    padding: 86px 0;
}

.guide-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 28px;
    align-items: end;
    margin-bottom: 30px;
}

.guide-search h2,
.section-heading h2,
.principles-grid h2 {
    margin-top: 12px;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 800;
}

.search-box {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    gap: 10px;
}

.search-box i {
    color: var(--sea);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-weight: 700;
}

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

.guide-card,
.content-card,
.feature-image-card,
.plan-list article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.guide-card {
    display: block;
    min-height: 230px;
    padding: 24px;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-card.is-hidden {
    display: none;
}

.guide-card:hover {
    border-color: rgba(4, 124, 137, 0.45);
    box-shadow: 0 18px 36px rgba(16, 36, 63, 0.08);
    transform: translateY(-3px);
}

.guide-card i,
.plan-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    color: var(--paper);
    border-radius: 8px;
    background: var(--sea);
}

.guide-card:nth-child(2) i {
    background: var(--gold);
}

.guide-card:nth-child(3) i {
    background: var(--coral);
}

.guide-card:nth-child(4) i {
    background: #3f7b54;
}

.guide-card:nth-child(5) i {
    background: var(--ink);
}

.guide-card h3,
.region-list h3,
.content-card h3,
.plan-list h3 {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.guide-card p,
.section-heading p,
.feature-image-card p,
.region-list p,
.content-card p,
.plan-list p,
.principles-list p,
.accordion-body,
.site-footer p {
    color: var(--muted);
    line-height: 1.65;
}

.guide-card p {
    margin: 13px 0 0;
}

.region-section,
.places-section {
    background: var(--soft);
}

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

.section-heading.compact {
    max-width: 720px;
}

.section-heading.align-start {
    margin-bottom: 0;
}

.section-heading p {
    margin: 16px 0 0;
    font-size: 18px;
}

.region-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.feature-image-card {
    overflow: hidden;
}

.feature-image-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.feature-image-card div {
    padding: 24px;
}

.feature-image-card span,
.content-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--sea);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-image-card p,
.content-card p {
    margin: 12px 0 0;
}

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

.region-list article {
    display: flex;
    gap: 16px;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.region-list span {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 22px;
    font-weight: 800;
}

.region-list p {
    margin: 10px 0 0;
}

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

.content-card {
    overflow: hidden;
}

.content-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.content-card div {
    padding: 24px;
}

.content-card a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-top: 18px;
    color: var(--sea-dark);
    font-weight: 800;
}

.content-card a:hover,
.content-card a:focus {
    color: var(--coral);
}

.places-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

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

.plan-list article {
    min-height: 225px;
    padding: 24px;
}

.plan-list article:nth-child(2) i {
    background: var(--coral);
}

.plan-list article:nth-child(3) i {
    background: var(--ink);
}

.plan-list p {
    margin: 12px 0 0;
}

.principles-section {
    color: var(--paper);
    background: var(--ink);
}

.principles-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 42px;
}

.principles-grid .section-kicker {
    color: var(--ink);
    background: #f4ecd9;
}

.principles-grid h2,
.principles-list p {
    color: var(--paper);
}

.principles-list {
    display: grid;
    gap: 14px;
}

.principles-list p {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.iskele-accordion {
    max-width: 940px;
}

.iskele-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.iskele-accordion .accordion-button {
    color: var(--ink);
    background: var(--paper);
    font-weight: 800;
    line-height: 1.35;
}

.iskele-accordion .accordion-button:not(.collapsed) {
    color: var(--sea-dark);
    background: var(--mint);
    box-shadow: none;
}

.iskele-accordion .accordion-button:focus {
    border-color: var(--sea);
    box-shadow: 0 0 0 3px rgba(4, 124, 137, 0.16);
}

.site-footer {
    padding: 58px 0;
    color: var(--paper);
    background: #08192d;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 190px minmax(0, 0.9fr);
    gap: 36px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 16px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--paper);
}

.site-footer h2 {
    margin-bottom: 13px;
    font-size: 18px;
}

.site-footer a {
    display: block;
    width: max-content;
    min-height: 36px;
    margin-bottom: 2px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--paper);
}

.site-footer p {
    max-width: 540px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.76);
}

.image-credit {
    font-size: 13px;
}

.page-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    color: var(--paper);
}

.page-hero-bg,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-bg {
    background-image: var(--page-hero-image, url("../img/iskele/coast-north-cyprus-iskele.jpg"));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    background: linear-gradient(90deg, rgba(8, 25, 45, 0.86), rgba(8, 25, 45, 0.46));
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 430px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.breadcrumb-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb-line a {
    color: var(--paper);
}

.breadcrumb-line a:hover,
.breadcrumb-line a:focus {
    color: #dbeee9;
}

.page-hero h1 {
    max-width: 820px;
    color: var(--paper);
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1;
    font-weight: 800;
}

.page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.page-section {
    padding: 76px 0;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

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

.text-panel,
.sidebar-box,
.route-card,
.source-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.text-panel {
    padding: 28px;
}

.text-panel h2,
.sidebar-box h2,
.route-card h2,
.source-note h2 {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
}

.text-panel p,
.sidebar-box p,
.route-card p,
.source-note p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.sidebar-box {
    position: sticky;
    top: 98px;
    padding: 24px;
}

.sidebar-box ul,
.check-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.sidebar-box li,
.check-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    line-height: 1.5;
}

.sidebar-box li::before,
.check-list li::before {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    content: "";
    background: var(--sea);
}

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

.route-card {
    overflow: hidden;
}

.route-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.route-card div {
    padding: 22px;
}

.source-note {
    padding: 24px;
    background: var(--mint);
}

.article-feed-section {
    background: var(--soft);
}

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

.business-filter-bar {
    margin-bottom: 14px;
}

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

.business-card,
.business-empty {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.business-card {
    overflow: hidden;
}

.business-card-cover {
    display: block;
}

.business-card-cover img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.business-card-body {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.business-card-top,
.business-detail-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.business-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.business-logo-wrap.large {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
}

.business-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.business-logo-fallback {
    color: var(--paper);
    border-color: transparent;
    background: linear-gradient(135deg, var(--sea-dark), var(--sea));
}

.business-logo-fallback span {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.business-card h3,
.business-empty h2,
.business-empty h3 {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
}

.business-card p,
.business-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.business-state {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
}

.business-state strong {
    font-weight: 800;
}

.business-state span {
    color: inherit;
}

.business-state-open {
    color: #145a38;
    background: #eaf7ef;
}

.business-state-closed {
    color: #8a3d2c;
    background: #fff0ed;
}

.business-state-unknown {
    color: var(--sea-dark);
    background: var(--mint);
}

.business-highlight-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.business-feature-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.business-feature {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: var(--mint);
    font-size: 13px;
    font-weight: 700;
}

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

.business-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--sea-dark);
    font-weight: 800;
    background: var(--paper);
}

.business-actions a:hover,
.business-actions a:focus {
    color: var(--paper);
    border-color: var(--sea-dark);
    background: var(--sea-dark);
}

.business-empty {
    padding: 28px;
}

.business-detail-panel h2 {
    margin-top: 28px;
}

.article-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.article-filter {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--paper);
    font-weight: 800;
}

.article-filter.active,
.article-filter:hover,
.article-filter:focus {
    color: var(--sea-dark);
    border-color: rgba(4, 124, 137, 0.35);
    background: var(--mint);
}

.article-card,
.article-prose,
.article-meta-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.article-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
}

.article-card-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.article-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: var(--mint);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-chip.muted {
    color: var(--muted);
    background: var(--soft);
}

.article-card h3,
.article-prose h2,
.article-prose h3,
.article-meta-box h2,
.article-meta-box h3 {
    color: var(--ink);
    font-weight: 800;
}

.article-card h3 {
    font-size: 26px;
    line-height: 1.18;
}

.article-card p,
.article-prose p,
.article-prose li,
.article-meta-box p,
.article-meta-box li {
    color: var(--muted);
    line-height: 1.7;
}

.article-card p {
    margin: 14px 0 0;
}

.article-prose a,
.text-panel a,
.faq-list a,
.article-meta-box a {
    color: var(--sea-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 700;
}

.article-prose a:hover,
.article-prose a:focus,
.text-panel a:hover,
.text-panel a:focus,
.faq-list a:hover,
.faq-list a:focus,
.article-meta-box a:hover,
.article-meta-box a:focus {
    color: var(--coral);
}

.article-card a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--sea-dark);
    font-weight: 800;
}

.article-card a:hover,
.article-card a:focus {
    color: var(--coral);
}

.article-prose {
    padding: 30px;
}

.article-prose h2 {
    margin-top: 26px;
    font-size: 30px;
    line-height: 1.14;
}

.article-prose h2:first-child {
    margin-top: 0;
}

.article-prose h3 {
    margin-top: 22px;
    font-size: 22px;
    line-height: 1.2;
}

.article-prose p,
.article-prose ul,
.article-prose ol {
    margin: 14px 0 0;
}

.article-quote {
    margin: 22px 0 0;
    padding: 22px 24px;
    border-left: 4px solid var(--sea);
    border-radius: 8px;
    background: var(--mint);
}

.article-quote p {
    margin: 0;
    color: var(--sea-dark);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
}

.article-figure {
    margin: 24px 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.article-figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.article-figure figcaption {
    padding: 12px 16px 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.article-prose-list {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.article-prose-list.ordered {
    padding-left: 24px;
}

.article-prose code,
.article-meta-box code {
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--sea-dark);
    background: var(--mint);
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.95em;
}

.article-meta-box {
    padding: 24px;
}

.article-meta-box + .article-meta-box {
    margin-top: 16px;
}

.article-meta-box h2,
.article-meta-box h3 {
    font-size: 20px;
    line-height: 1.2;
}

.article-meta-box ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 20px;
}

.cta-band {
    color: var(--paper);
    background: var(--sea-dark);
}

.cta-band .container {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.cta-band h2 {
    max-width: 700px;
    color: var(--paper);
    font-size: clamp(30px, 4vw, 48px);
}

.cta-band p {
    max-width: 720px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.cta-band a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    font-weight: 800;
    white-space: nowrap;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
}

.faq-list article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.faq-list h2 {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.25;
}

.faq-list p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .guide-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-container {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (max-width: 991px) {
    .site-header .navbar {
        min-height: 68px;
    }

    .site-logo img {
        width: 144px;
    }

    .navbar-collapse {
        padding: 12px 0 16px;
    }

    .hero-section,
    .hero-container {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 62px;
        padding-bottom: 54px;
    }

    .hero-panel {
        max-width: 600px;
    }

    .guide-search,
    .region-layout,
    .places-grid,
    .principles-grid,
    .footer-grid,
    .detail-layout,
    .cta-band .container {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .plan-list,
    .route-grid,
    .article-card-grid,
    .business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band .container {
        display: grid;
    }

    .sidebar-box {
        position: static;
    }
}

@media (max-width: 767px) {
    .quick-guide,
    .region-section,
    .content-section,
    .places-section,
    .principles-section,
    .faq-section,
    .page-section {
        padding: 58px 0;
    }

    h1 {
        font-size: clamp(52px, 17vw, 76px);
    }

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

    .hero-panel {
        display: none;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .primary-action,
    .secondary-action {
        width: 100%;
    }

    .guide-grid,
    .region-list,
    .content-grid,
    .plan-list,
    .route-grid,
    .article-card-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card-top,
    .business-detail-top {
        flex-direction: column;
    }

    .guide-card,
    .region-list article,
    .plan-list article,
    .text-panel,
    .sidebar-box,
    .source-note,
    .article-card,
    .article-prose,
    .article-meta-box {
        min-height: auto;
    }

    .feature-image-card img,
    .content-card img,
    .route-card img {
        height: 230px;
    }

    .page-hero,
    .page-hero-inner {
        min-height: 370px;
    }

    .text-panel,
    .sidebar-box,
    .source-note,
    .article-prose,
    .article-meta-box {
        padding: 22px;
    }
}

@media (max-width: 420px) {
    .container {
        --bs-gutter-x: 1.3rem;
    }

    .site-logo img {
        width: 132px;
    }

    .hero-container {
        padding-top: 58px;
    }

    .hero-panel {
        padding: 12px;
    }

    .guide-search h2,
    .section-heading h2,
    .principles-grid h2 {
        font-size: 30px;
    }
}
