:root {
    --bg: #f5f8f6;
    --paper: #ffffff;
    --ink: #182522;
    --muted: #60706c;
    --line: #dce6e1;
    --sea: #087e8b;
    --sea-dark: #075b66;
    --leaf: #2f8f67;
    --sun: #f3b340;
    --coral: #c85f4a;
    --soft: #e9f5f3;
    --shadow: 0 20px 55px rgba(15, 55, 50, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.site-header,
.admin-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-shell,
.footer-shell,
.section,
.hero,
.route-hero,
.route-body-layout,
.metric-strip,
.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav-shell,
.admin-header {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-header {
    padding: 0 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sea-dark);
    text-decoration: none;
    font-weight: 900;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, var(--sea), var(--leaf));
    box-shadow: 0 10px 22px rgba(8, 126, 139, 0.2);
}

.logo-text {
    letter-spacing: 0;
}

.main-nav,
.admin-header nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.main-nav a,
.admin-header nav a,
.site-footer a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
    gap: 28px;
    padding: 58px 0;
}

.travel-hero {
    align-items: end;
    min-height: 620px;
    margin-top: 0;
    padding: 70px max(16px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(90deg, rgba(7, 59, 66, 0.84), rgba(7, 126, 139, 0.18)),
        url("/assets/images/articles/karadeniz-real.jpg");
    background-position: center;
    background-size: cover;
    width: 100%;
}

.travel-hero .hero-copy {
    justify-self: end;
    max-width: 720px;
    color: white;
}

.travel-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
}

.hero-search-panel {
    align-self: end;
    justify-self: start;
    display: grid;
    gap: 14px;
    max-width: 430px;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.app-hero .hero-copy {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    border-radius: 8px;
    color: white;
    background:
        linear-gradient(90deg, rgba(7, 59, 66, 0.88), rgba(7, 126, 139, 0.36)),
        url("/assets/images/hero-rota.png");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.hero-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: #ffd98d;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
}

h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

p {
    color: var(--muted);
}

.hero-actions,
.chip-row,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--sea);
    border-radius: 6px;
    color: var(--sea-dark);
    background: white;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.btn.primary {
    color: white;
    background: var(--sea);
}

.btn.soft {
    background: var(--soft);
}

.btn.tiny {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
}

.btn.danger {
    border-color: #b42318;
    color: #b42318;
}

.trust-panel,
.tool-card,
.tool-result,
.admin-card,
.side-box,
.route-card,
.install-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 10px 32px rgba(15, 55, 50, 0.06);
}

.trust-panel {
    align-self: end;
    padding: 28px;
}

.trust-panel ul,
.check-list,
.warning-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.trust-panel li,
.check-list li,
.warning-list li {
    margin-bottom: 8px;
    color: var(--muted);
}

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
}

.feature-card {
    min-height: 190px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 10px 32px rgba(15, 55, 50, 0.08);
}

.feature-card.large {
    grid-row: span 3;
}

.feature-card a {
    position: relative;
    display: block;
    height: 100%;
    min-height: inherit;
    color: white;
    text-decoration: none;
}

.feature-card img {
    position: absolute;
    inset: 0;
    height: 100%;
}

.feature-card a::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
}

.feature-card div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 22px;
}

.feature-card span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-card h3 {
    max-width: 720px;
    margin: 6px 0;
}

.feature-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
}

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

.category-tile {
    min-height: 122px;
    display: grid;
    align-content: space-between;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 55, 50, 0.05);
}

.category-tile strong {
    font-size: 20px;
}

.category-tile span {
    color: var(--muted);
    font-weight: 800;
}

.planning-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 8px;
    color: white;
    background: var(--sea-dark);
}

.planning-band h2,
.planning-band p {
    margin-bottom: 0;
}

.planning-band p {
    color: rgba(255, 255, 255, 0.82);
}

.planning-band .eyebrow {
    color: #ffd98d;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding-bottom: 30px;
}

.metric-strip div {
    padding: 18px;
    border-radius: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.metric-strip strong {
    display: block;
    color: var(--sea-dark);
    font-size: 26px;
}

.metric-strip span {
    color: var(--muted);
}

.section {
    padding: 58px 0;
}

.split-tool,
.route-tool-layout,
.route-body-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 30px;
}

.quick-route-form,
.stack-form,
.tool-card,
.archive-search {
    display: grid;
    gap: 14px;
}

.archive-search {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 24px;
}

label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: white;
    font: inherit;
}

textarea {
    resize: vertical;
}

.quick-route-form,
.tool-card,
.tool-result {
    padding: 24px;
}

.tool-result-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    margin: 10px 0 18px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 26px;
}

.text-link {
    color: var(--sea-dark);
    font-weight: 900;
}

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

.compact-grid {
    padding-top: 20px;
}

.route-card {
    overflow: hidden;
}

.route-card img {
    height: 210px;
}

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

.route-card span,
.mini-chip {
    color: var(--sea-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.route-card a {
    text-decoration: none;
}

.chip-row span,
.mini-chip {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--sea-dark);
    font-size: 12px;
    font-weight: 900;
}

.ad-slot {
    min-height: 108px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px dashed #b8aa91;
    border-radius: 8px;
    color: #75664d;
    background: #fff8e9;
    text-align: center;
}

.inline-ad {
    margin: 28px 0;
}

.page-head,
.page-content {
    max-width: 860px;
}

.route-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 34px;
    align-items: center;
    padding: 56px 0 34px;
}

.route-hero img {
    height: 420px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.content-flow {
    display: grid;
    gap: 24px;
}

.content-flow section,
.comment-form-section {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.transport-notes,
.two-col-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.transport-notes div {
    padding: 16px;
    border-radius: 8px;
    background: var(--soft);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline article {
    padding: 18px;
    border-left: 4px solid var(--sea);
    border-radius: 6px;
    background: #f8fbfa;
}

.stop-days {
    display: grid;
    gap: 24px;
}

.stop-day h3 {
    color: var(--sea-dark);
}

.day-points {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--ink);
    background: #f8fbfa;
}

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

.stop-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.stop-card img {
    height: 180px;
}

.stop-card.no-image {
    grid-template-columns: 1fr;
}

.stop-card div {
    padding: 16px;
}

.stop-card span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.stop-card h4 {
    margin: 6px 0 8px;
    font-size: 20px;
}

.route-sidebar {
    display: grid;
    align-content: start;
    gap: 16px;
}

.side-box {
    padding: 22px;
}

.side-ad {
    min-height: 250px;
}

.comments {
    display: grid;
    gap: 12px;
}

.comments article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.alert {
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.alert.success {
    color: #05603a;
    background: #ecfdf3;
    border: 1px solid #abefc6;
}

.alert.error {
    color: #b42318;
    background: #fff3f0;
    border: 1px solid #fecdca;
}

.site-footer {
    margin-top: 60px;
    color: white;
    background: var(--sea-dark);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 42px 0;
}

.footer-shell p,
.footer-shell a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-shell a {
    display: block;
    margin-bottom: 8px;
}

.footer-logo {
    color: white;
    margin-bottom: 12px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.7);
}

.install-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.install-card {
    width: min(560px, 100%);
    padding: 30px;
}

.install-logo {
    margin-bottom: 18px;
}

.admin-body {
    background: #f7faf9;
}

.admin-shell {
    padding: 36px 0 70px;
}

.admin-title {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.admin-title h1 {
    font-size: 42px;
}

.admin-title p {
    max-width: 760px;
}

.admin-card {
    padding: 24px;
}

.admin-metrics {
    width: 100%;
    padding-bottom: 22px;
}

.table-card {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.analytics-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.analytics-filter label {
    color: var(--muted);
    font-size: 14px;
}

.analytics-filter select {
    min-width: 128px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 800;
}

.analytics-metrics {
    grid-template-columns: repeat(6, 1fr);
}

.analytics-card,
.analytics-grid {
    margin-top: 22px;
}

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

.analytics-grid-small {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.analytics-card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.analytics-card-title h2 {
    margin: 0;
    font-size: 24px;
}

.analytics-card-title span {
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.analytics-bars {
    display: grid;
    grid-template-columns: repeat(14, minmax(34px, 1fr));
    gap: 10px;
    align-items: end;
    min-height: 170px;
    padding-top: 8px;
}

.analytics-bar-item {
    display: grid;
    gap: 8px;
    justify-items: center;
    align-items: end;
    color: var(--muted);
    font-size: 12px;
}

.analytics-bar {
    display: block;
    width: 100%;
    max-width: 34px;
    min-height: 8px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--primary), #0a5c5b);
}

.analytics-bar-count {
    color: var(--ink);
    font-weight: 800;
}

.compact-table th,
.compact-table td {
    padding: 12px 10px;
}

.compact-table small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    word-break: break-word;
}

.analytics-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.analytics-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: var(--muted);
}

.analytics-pills strong {
    color: var(--ink);
    font-size: 18px;
}

.wide-form {
    max-width: 920px;
}

.comment-moderation {
    display: grid;
    gap: 14px;
}

.comment-moderation article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.city-home-hero,
.city-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.city-home-copy,
.city-hero-copy,
.city-home-photo,
.city-hero-media,
.city-pilot-band,
.place-card,
.guesthouse-card,
.city-overview-grid a,
.food-grid article,
.famous-grid article,
.mini-plan-list,
.city-facts div {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.city-home-copy,
.city-hero-copy {
    padding: clamp(28px, 4vw, 54px);
    border-radius: 8px;
}

.city-home-copy h1,
.city-hero-copy h1 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
}

.city-home-copy p,
.city-hero-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.city-home-photo,
.city-hero-media {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 8px;
}

.city-home-photo img,
.city-hero-media img {
    height: 100%;
}

.city-home-photo figcaption,
.city-hero-media figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    color: var(--paper);
    background: rgba(0, 0, 0, 0.58);
    border-radius: 6px;
    font-size: 14px;
}

.city-home-search,
.city-search {
    position: relative;
    margin-top: 28px;
}

.city-home-search label,
.city-search label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 800;
}

.city-home-search div,
.city-search div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.city-suggest-form .city-suggestions {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 8px);
    z-index: 20;
    display: grid;
    gap: 6px;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.city-suggest-form .city-suggestions[hidden] {
    display: none;
}

.city-suggest-form .city-suggestions button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.city-suggest-form .city-suggestions button:hover,
.city-suggest-form .city-suggestions button:focus {
    background: var(--soft);
    outline: none;
}

.city-suggest-form .city-suggestions strong {
    color: var(--sea-dark);
}

.city-suggest-form .city-suggestions span {
    color: var(--muted);
    font-size: 13px;
}

.guesthouse-search-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 24px;
    align-items: end;
    padding: 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.guesthouse-search-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.guesthouse-search-hero p {
    color: var(--muted);
}

.city-home-search input,
.city-search input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
}

.city-tabs {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.city-tabs a {
    flex: 0 0 auto;
    padding: 10px 14px;
    color: var(--sea-dark);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
}

.city-tabs a.active {
    color: var(--paper);
    background: var(--sea);
    border-color: var(--sea);
}

.city-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.city-facts div {
    padding: 18px;
    border-radius: 8px;
}

.city-facts span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.city-facts strong {
    display: block;
    margin-top: 4px;
    color: var(--sea-dark);
    font-size: 18px;
}

.city-overview-grid,
.city-list-grid,
.food-grid,
.famous-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.city-list-grid a,
.city-overview-grid a,
.food-grid article,
.famous-grid article {
    padding: 22px;
    border-radius: 8px;
    text-decoration: none;
}

.city-overview-grid strong,
.city-list-grid strong,
.food-grid h2,
.famous-grid h2 {
    display: block;
    margin: 0 0 8px;
    color: var(--sea-dark);
    font-size: 20px;
}

.city-overview-grid span,
.city-list-grid span,
.food-grid p,
.famous-grid p {
    color: var(--muted);
}

.city-pilot-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 8px;
}

.city-pilot-band h2 {
    margin-top: 0;
}

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

.place-card {
    overflow: hidden;
    border-radius: 8px;
}

.place-card img {
    aspect-ratio: 16 / 10;
}

.place-card div {
    padding: 20px;
}

.place-card span {
    color: var(--muted);
    font-size: 13px;
}

.place-card h2 {
    margin: 6px 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.place-card p {
    color: var(--muted);
}

.place-tip {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--ink) !important;
    font-weight: 700;
}

.mini-plan-list {
    margin: 0;
    padding: 22px 22px 22px 44px;
    border-radius: 8px;
}

.mini-plan-list li + li {
    margin-top: 12px;
}

.guesthouse-list {
    display: grid;
    gap: 18px;
}

.guesthouse-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 10px 32px rgba(15, 55, 50, 0.06);
}

.guesthouse-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--sea-dark);
    font-weight: 800;
    font-size: 13px;
}

.guesthouse-card h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.12;
}

.guesthouse-card p,
.guesthouse-card dd {
    color: var(--muted);
    line-height: 1.55;
}

.guesthouse-card dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

.guesthouse-card dl > div {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.guesthouse-card dt {
    color: var(--ink);
    font-weight: 900;
    font-size: 13px;
}

.guesthouse-card dd {
    margin: 4px 0 0;
}

.guesthouse-card dd p {
    margin: 0;
}

.guesthouse-price-grid {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.guesthouse-price-row {
    display: grid;
    grid-template-columns: minmax(95px, 0.8fr) minmax(120px, 1.2fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #d8ebe6;
    border-radius: 8px;
    background: #f7fbfa;
}

.guesthouse-price-row span {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.guesthouse-price-row strong {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.3;
}

.guesthouse-price-row b {
    color: var(--sea-dark);
    font-size: 16px;
    white-space: nowrap;
}

.guesthouse-price-note {
    display: grid;
    gap: 6px;
    margin-top: 8px;
    padding: 12px;
    border: 1px solid #d8ebe6;
    border-radius: 8px;
    background: #f7fbfa;
}

.guesthouse-price-note span {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--sea-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.guesthouse-price-note strong {
    color: var(--ink);
    font-size: 14px;
}

.guesthouse-price-note p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.guesthouse-source {
    margin-top: 10px !important;
    color: var(--muted);
    font-size: 13px;
}

.guesthouse-card .text-link {
    grid-column: 1 / -1;
}

.source-note {
    margin-top: 18px;
    padding: 16px;
    color: var(--muted);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

@media (max-width: 900px) {
    .nav-shell,
    .admin-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
    }

    .admin-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .city-home-hero,
    .city-hero,
    .city-pilot-band,
    .guesthouse-search-hero,
    .guesthouse-card,
    .split-tool,
    .route-tool-layout,
    .route-hero,
    .route-body-layout,
    .featured-grid,
    .planning-band,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .metric-strip,
    .analytics-metrics,
    .city-facts,
    .city-overview-grid,
    .city-list-grid,
    .place-grid,
    .food-grid,
    .famous-grid,
    .route-grid,
    .stop-grid,
    .transport-notes,
    .two-col-lists,
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .analytics-grid,
    .analytics-grid-small {
        grid-template-columns: 1fr;
    }

    .travel-hero {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .travel-hero .hero-copy {
        justify-self: stretch;
    }

    .hero-search-panel {
        max-width: none;
    }

    .app-hero .hero-copy {
        min-height: 500px;
        padding: 28px;
    }
}

@media (max-width: 620px) {
    .metric-strip,
    .analytics-metrics,
    .city-facts,
    .city-overview-grid,
    .city-list-grid,
    .place-grid,
    .food-grid,
    .famous-grid,
    .route-grid,
    .stop-grid,
    .transport-notes,
    .two-col-lists,
    .category-grid,
    .form-row,
    .archive-search,
    .comment-moderation article {
        grid-template-columns: 1fr;
    }

    .analytics-bars {
        grid-template-columns: repeat(7, minmax(28px, 1fr));
    }

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

    .guesthouse-price-row {
        grid-template-columns: 1fr auto;
    }

    .guesthouse-price-row span {
        grid-column: 1 / -1;
    }

    .route-hero img {
        height: 280px;
    }

    .city-home-search div,
    .city-search div {
        grid-template-columns: 1fr;
    }

    .city-home-photo,
    .city-hero-media {
        min-height: 280px;
    }
}
