:root {
    --ink-950: #09131a;
    --ink-900: #0f1b23;
    --ink-800: #172833;
    --stone-50: #f7f3ec;
    --stone-100: #efe6d8;
    --stone-200: #dfd1bd;
    --stone-400: #a99784;
    --teal-300: #7accc0;
    --teal-500: #2f8d86;
    --teal-600: #236e69;
    --white: #ffffff;
    --text: #1b2428;
    --muted: #66747b;
    --line: rgba(12, 25, 33, 0.12);
    --line-light: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 20px 48px rgba(8, 18, 24, 0.12);
    --shadow-medium: 0 30px 72px rgba(8, 18, 24, 0.18);
    --shadow-heavy: 0 32px 120px rgba(0, 0, 0, 0.28);
    --radius: 26px;
    --radius-sm: 18px;
    --section-pad: 4.5rem;
    --section-pad-sm: 3.25rem;
    --grid-gap: 1.5rem;
    --shell: min(1160px, calc(100% - 2rem));
    --editorial: min(780px, calc(100% - 2rem));
    --narrow: min(640px, calc(100% - 2rem));
    --header-height: 76px;
    --hero-compact: 19rem;
    --hero-image: 34rem;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--stone-50);
}

body.drawer-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.theme-public {
    background:
        radial-gradient(circle at top left, rgba(122, 204, 192, 0.14), transparent 22%),
        linear-gradient(180deg, #081219 0%, #13232c 18%, var(--stone-50) 18%, var(--stone-50) 100%);
}

.theme-admin {
    background:
        radial-gradient(circle at top left, rgba(122, 204, 192, 0.12), transparent 18%),
        linear-gradient(180deg, #f6f0e7 0%, #f3eee7 100%);
}

.site-shell {
    min-height: 100vh;
}

.page-main--public {
    padding-bottom: 0;
}

.page-main--admin {
    width: min(calc(100% - 2rem), 1120px);
    margin: 0 auto;
    padding: calc(var(--header-height) + 1.75rem) 0 4rem;
}

.shell,
.editorial-shell {
    width: 100%;
    margin: 0 auto;
}

.shell {
    max-width: var(--shell);
}

.editorial-shell {
    max-width: var(--editorial);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 0.8rem 1rem;
}

.site-header__inner {
    width: min(calc(100% - 0rem), 1240px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.7rem 0.95rem;
    border-radius: 18px;
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header--overlay .site-header__inner {
    color: var(--white);
    background: rgba(8, 16, 22, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(20px);
}

.site-header--solid .site-header__inner {
    background: rgba(255, 250, 245, 0.68);
    border: 1px solid rgba(17, 29, 37, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 36px rgba(13, 20, 24, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand__mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    color: inherit;
}

.brand__mark-ring {
    position: absolute;
    inset: 0.14rem;
    border-radius: 999px;
    border: 1px solid currentColor;
    opacity: 0.18;
}

.brand__mark-glyph {
    position: relative;
    z-index: 2;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand__mark-accent {
    position: absolute;
    top: 0.28rem;
    right: 0.26rem;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: var(--teal-300);
    box-shadow: 0 0 0 3px rgba(122, 204, 192, 0.12);
    z-index: 3;
}

.brand__text {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 0.4rem;
}

.site-nav a {
    padding: 0.45rem 0.1rem;
    margin-inline: 0.5rem;
    border-radius: 0;
    color: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover {
    border-color: currentColor;
    transform: translateY(-1px);
}

.site-header--solid .site-nav a:hover {
    border-color: rgba(17, 29, 37, 0.42);
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.54rem 0.75rem;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background 0.24s ease, transform 0.24s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.site-header--solid .menu-toggle:hover {
    background: rgba(17, 29, 37, 0.06);
}

.menu-toggle__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu-toggle__bars {
    display: inline-flex;
    flex-direction: column;
    gap: 0.28rem;
}

.menu-toggle__bars span {
    display: block;
    width: 1.45rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(3, 10, 15, 0.52);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 60;
    width: min(420px, 100%);
    pointer-events: none;
}

.site-drawer__panel {
    height: 100%;
    padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
    background:
        linear-gradient(180deg, rgba(8, 19, 26, 0.96), rgba(13, 28, 36, 0.98)),
        radial-gradient(circle at top, rgba(122, 204, 192, 0.16), transparent 34%);
    color: var(--white);
    transform: translateX(104%);
    transition: transform 0.32s ease;
    box-shadow: var(--shadow-heavy);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-drawer__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.site-drawer__panel--minimal {
    gap: 0.75rem;
    overflow: hidden;
}

.site-drawer__panel--minimal .site-drawer__header {
    justify-content: flex-end;
    flex: 0 0 auto;
}

.site-drawer__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 0.95;
}

.drawer-close {
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line-light);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.drawer-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}

.drawer-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-drawer__nav {
    display: grid;
    flex: 1 1 auto;
    min-height: 0;
    gap: 0.45rem;
    overflow-y: auto;
    padding-right: 0.45rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.drawer-link,
.drawer-empty {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-link {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 4.5vw, 2.2rem);
    line-height: 1;
    transition: color 0.24s ease, transform 0.24s ease;
}

.drawer-link:hover {
    color: var(--teal-300);
    transform: translateX(0.3rem);
}

.drawer-link--subtle,
.drawer-empty,
.site-drawer__footer p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.68);
}

.site-drawer__footer {
    margin-top: auto;
}

.site-footer {
    position: relative;
    background:
        linear-gradient(180deg, #09131a 0%, #0d1b23 48%, #101f28 100%);
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 204, 192, 0.38), transparent);
}

.site-footer__inner {
    display: grid;
    gap: 2rem;
    padding: 4rem 0 2.2rem;
}

.site-footer__brand,
.site-footer__meta,
.site-footer__block {
    display: grid;
    gap: 0.9rem;
}

.site-footer__brand h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 0.95;
}

.site-footer__brand p,
.site-footer__block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.site-footer__meta {
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__nav {
    display: grid;
    gap: 0.7rem;
}

.site-footer__nav a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    transition: color 0.24s ease, transform 0.24s ease;
}

.site-footer__nav a:hover {
    color: var(--teal-300);
    transform: translateX(0.2rem);
}

.site-footer__admin-link {
    color: rgba(255, 255, 255, 0.56);
}

.site-footer__bottom {
    padding: 1.15rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

body.drawer-open .site-drawer {
    pointer-events: auto;
}

body.drawer-open .site-drawer-backdrop {
    opacity: 1;
    visibility: visible;
}

body.drawer-open .site-drawer__panel {
    transform: translateX(0);
}

.flash-stack {
    position: relative;
    z-index: 40;
    width: min(calc(100% - 2rem), 960px);
    margin: 0 auto;
}

.flash-stack--public {
    margin-top: calc(var(--header-height) + 1rem);
}

.flash {
    margin-bottom: 0.8rem;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid rgba(194, 65, 12, 0.18);
    color: #9a3412;
    box-shadow: 0 18px 40px rgba(14, 24, 29, 0.1);
}

.flash-success {
    background: #ecfdf3;
    border-color: rgba(18, 183, 106, 0.2);
    color: #067647;
}

.eyebrow,
.trip-kicker,
.card-label {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.74;
}

.display-title,
.section-title,
.story-heading h2,
.page-hero h1,
.auth-panel h1 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.display-title {
    margin: 0 0 0.75rem;
    font-size: clamp(3.3rem, 9vw, 6.7rem);
    line-height: 0.92;
}

.hero-lead,
.section-copy,
.story-summary p,
.trip-card__content p,
.destination-card__body p,
.story-copy p,
.photo-gallery-card figcaption,
.page-hero p,
.auth-panel p,
.empty-state p {
    margin: 0;
    color: inherit;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading--split {
    display: grid;
    gap: 1.1rem;
}

.section-heading--balanced {
    gap: 1.35rem;
}

.section-heading--balanced .section-copy {
    max-width: 30rem;
    align-self: end;
    padding-bottom: 0.25rem;
}

.section-heading--light {
    color: var(--white);
}

.section-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.95;
}

.section-copy,
.hero-lead {
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.72;
}

.hero-actions,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.hero-actions {
    margin-top: 0.95rem;
}

.landing-section,
.landing-intro,
.editorial-section--light {
    background: var(--stone-50);
    color: var(--text);
    padding: var(--section-pad) 0;
}

.meta-row {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.72;
}

.meta-row--light {
    color: var(--white);
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.button {
    border: 0;
    color: var(--ink-950);
    background: linear-gradient(145deg, #87d7cb, #54aaa0);
    box-shadow: 0 18px 40px rgba(47, 141, 134, 0.22);
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(47, 141, 134, 0.28);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
}

.theme-admin .button-secondary,
.theme-admin .button-secondary:hover {
    border-color: rgba(17, 29, 37, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

.button-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-600);
    transition: transform 0.24s ease, color 0.24s ease;
}

.text-link:hover {
    transform: translateX(0.2rem);
}

.text-link-light {
    color: var(--teal-300);
}

.landing-hero,
.country-hero,
.trip-hero {
    position: relative;
    isolation: isolate;
    color: var(--white);
    display: flex;
    align-items: end;
    background:
        linear-gradient(180deg, rgba(7, 14, 18, 0.52), rgba(7, 14, 18, 0.82)),
        linear-gradient(135deg, #071117 0%, #112833 56%, #173945 100%);
}

.landing-hero {
    min-height: min(88vh, 52rem);
    padding: calc(var(--header-height) + 3.9rem) 0 3.2rem;
}

.country-hero,
.trip-hero {
    min-height: 26rem;
    padding: calc(var(--header-height) + 2.6rem) 0 2.35rem;
}

.country-hero--image,
.trip-hero--image {
    min-height: var(--hero-image);
}

.country-hero--compact,
.trip-hero--compact {
    min-height: var(--hero-compact);
    background:
        radial-gradient(circle at top left, rgba(122, 204, 192, 0.18), transparent 28%),
        linear-gradient(160deg, #09131a 0%, #13232c 52%, #17313d 100%);
}

.landing-hero--image,
.country-hero--image,
.trip-hero--image {
    background:
        linear-gradient(180deg, rgba(4, 11, 15, 0.24), rgba(4, 11, 15, 0.84)),
        linear-gradient(135deg, rgba(4, 11, 15, 0.18), rgba(4, 11, 15, 0.58)),
        var(--hero-image) center/cover no-repeat;
}

.landing-hero__inner,
.country-hero__inner,
.trip-hero__inner {
    display: grid;
    gap: 1.15rem;
}

.landing-hero__copy {
    max-width: 44rem;
    display: grid;
    gap: 1rem;
}

.landing-hero__support {
    max-width: 40rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.7;
}

.landing-hero__copy .hero-lead {
    max-width: 36rem;
}

.featured-trip-card {
    max-width: 26rem;
    padding: 1.45rem;
    border-radius: var(--radius);
    background: rgba(9, 19, 26, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.featured-trip-card__meta,
.featured-trip-card__subtitle,
.trip-subtitle {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.featured-trip-card h2 {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 0.95;
}

.editorial-section--subtle {
    background: linear-gradient(180deg, rgba(9, 19, 26, 0.03), rgba(9, 19, 26, 0.06));
}

.landing-section--guide {
    position: relative;
    background:
        linear-gradient(180deg, rgba(9, 19, 26, 0.03) 0%, rgba(17, 31, 40, 0.06) 100%);
}

.countries-showcase {
    position: relative;
}

.latest-grid,
.country-grid,
.country-trip-grid,
.related-trips__grid {
    display: grid;
    gap: var(--grid-gap);
}

.countries-showcase__cta {
    display: flex;
    justify-content: center;
    margin-top: 2.6rem;
}

.trip-card,
.destination-card,
.guide-card,
.guide-link-card,
.empty-state,
.story-summary,
.related-trips,
.page-hero,
.auth-panel,
.admin-card,
.card,
.admin-form {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.trip-card,
.destination-card,
.guide-card,
.guide-link-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.trip-card--feature,
.trip-card--country,
.trip-card--compact {
    display: grid;
    background: var(--white);
}

.trip-card--compact .trip-card__media {
    min-height: 11rem;
}

.trip-card--compact .trip-card__content h3 {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.trip-card__media,
.destination-card__media,
.guide-card__media,
.guide-link-card__media {
    position: relative;
    display: block;
    min-height: 15rem;
    background:
        linear-gradient(160deg, rgba(18, 39, 49, 0.18), rgba(18, 39, 49, 0.62)),
        var(--card-image) center/cover no-repeat;
}

.trip-card__media--fallback,
.destination-card__media--fallback,
.guide-card__media--fallback,
.guide-link-card__media--fallback {
    background:
        radial-gradient(circle at top right, rgba(122, 204, 192, 0.34), transparent 32%),
        linear-gradient(145deg, #19313d 0%, #284c58 46%, #455e64 100%);
}

.trip-card__media--fallback::after,
.destination-card__media--fallback::after,
.guide-card__media--fallback::after,
.guide-link-card__media--fallback::after {
    content: "Photo coming soon";
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.trip-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 22, 0.08), rgba(8, 16, 22, 0.48));
}

.trip-card__content,
.destination-card__body,
.guide-card__content,
.guide-link-card__content {
    display: grid;
    gap: 0.75rem;
    padding: 1.4rem;
}

.destination-card__body h3 {
    font-size: clamp(1.95rem, 3vw, 2.55rem);
}

.trip-card__content h3,
.destination-card__body h3,
.empty-state h2,
.related-trips__header h2,
.story-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1;
}

.trip-card--empty,
.destination-card--empty,
.empty-state {
    background: linear-gradient(160deg, rgba(21, 39, 49, 0.06), rgba(21, 39, 49, 0.12));
    padding: 2rem;
}

.country-hero__inner,
.trip-hero__inner {
    max-width: 48rem;
}

.trip-hero--guide .trip-hero__inner,
.trip-hero--journal .trip-hero__inner,
.country-hero__inner {
    max-width: 43rem;
}

.empty-state {
    padding: 2rem;
    color: var(--text);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.35rem;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.back-link--light {
    color: rgba(255, 255, 255, 0.8);
}

.trip-story {
    background: var(--stone-50);
}

.story-summary {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
    padding: 1.55rem;
    background: rgba(255, 250, 245, 0.96);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.trip-hero--compact + .editorial-section .story-summary,
.country-hero--compact + .editorial-section .story-summary {
    margin-top: -1rem;
}

.trip-hero--guide + .editorial-section .editorial-shell,
.trip-hero--journal + .editorial-section .editorial-shell {
    display: grid;
    gap: 2.1rem;
}

.story-flow {
    display: grid;
    gap: 2.5rem;
    padding: 2.5rem 0 0;
}

.story-section {
    display: grid;
    gap: 1rem;
}

.story-copy,
.story-itinerary {
    display: grid;
    gap: 1rem;
}

.story-copy p,
.story-itinerary p,
.story-summary p {
    font-size: 1.04rem;
    line-height: 1.95;
    color: #324047;
}

.story-pull-quote {
    margin: 0;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(12, 29, 37, 0.05), rgba(122, 204, 192, 0.12));
    border-left: 4px solid var(--teal-500);
}

.story-pull-quote p:last-child {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1;
    color: var(--ink-900);
}

.story-media {
    margin: 0;
}

.story-media img,
.photo-gallery-card img {
    border-radius: var(--radius-sm);
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.story-media figcaption,
.photo-gallery-card figcaption {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.story-itinerary {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(47, 141, 134, 0.08), rgba(15, 27, 35, 0.04));
    border: 1px solid rgba(22, 37, 47, 0.08);
}

.itinerary-text {
    white-space: pre-line;
}

.photo-gallery-block,
.related-trips {
    margin-top: 2.75rem;
}

.must-see-grid {
    display: grid;
    gap: 1.3rem;
    margin-top: 1.5rem;
}

.must-see-card {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(122, 204, 192, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 242, 234, 0.98));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(16, 27, 34, 0.08);
    position: relative;
}

.must-see-card__media {
    margin: 0;
}

.must-see-card__media img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.must-see-card__body {
    display: grid;
    gap: 0.85rem;
    padding: 1.4rem;
}

.must-see-card__body h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1;
}

.must-see-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.must-see-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 27, 35, 0.08), rgba(122, 204, 192, 0.18));
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-900);
}

.must-see-card__category {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(47, 141, 134, 0.12);
    color: var(--teal-600);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.must-see-note {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(47, 141, 134, 0.08), rgba(10, 20, 26, 0.04));
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.must-see-note strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-600);
}

.must-see-card__body p {
    color: #324047;
    line-height: 1.72;
}

.photo-gallery-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.photo-gallery-card {
    margin: 0;
}

.related-trips {
    padding: 1.6rem;
    background: linear-gradient(160deg, rgba(9, 19, 26, 0.96), rgba(17, 36, 45, 0.96));
    color: var(--white);
}

.related-trips__header {
    margin-bottom: 1.2rem;
}

.guide-card {
    overflow: hidden;
    display: grid;
    background: rgba(255, 252, 248, 0.92);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.guide-card__media {
    min-height: 14rem;
}

.guide-card__overlay,
.guide-link-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 22, 0.08), rgba(8, 16, 22, 0.48));
}

.guide-card__badge,
.guide-link-card__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guide-card__content h3,
.guide-link-card__content h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1;
}

.guide-link-card {
    display: grid;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-link-card__media {
    min-height: 10rem;
}

.guide-link-card__content {
    background: rgba(255, 255, 255, 0.05);
}

.guide-link-card__content h3 {
    color: var(--white);
}

.guide-link-card__content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.guide-link-card .meta-row {
    color: rgba(255, 255, 255, 0.72);
}

.guide-link-card__content .text-link,
.related-trips .text-link {
    color: var(--teal-300);
}

.guide-link-card__content .meta-row {
    margin-top: -0.1rem;
}

.admin-toolbar,
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.page-hero,
.auth-panel,
.card,
.admin-card,
.admin-form {
    padding: 1.5rem;
    background: rgba(255, 251, 247, 0.92);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.page-hero,
.auth-panel {
    margin-top: 0;
}

.page-hero h1,
.auth-panel h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.92;
}

.stats-grid,
.admin-list,
.card-grid {
    display: grid;
    gap: 1rem;
}

.workflow-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.workflow-step {
    display: grid;
    gap: 0.85rem;
}

.workflow-step h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 0.98;
}

.admin-overview-card {
    display: grid;
    gap: 1rem;
}

.admin-overview-card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 0.98;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-card {
    display: grid;
    gap: 1rem;
}

.admin-form {
    margin-top: 0;
}

.section-heading--compact {
    margin-bottom: 1rem;
}

.section-heading--compact h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1;
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-field,
.checkbox-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label,
.checkbox-field span {
    font-weight: 700;
    color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select,
.auth-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(16, 27, 34, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
}

.form-field textarea {
    resize: vertical;
}

.field-note {
    font-size: 0.9rem;
    color: var(--muted);
}

.asset-guide {
    display: grid;
    gap: 0.55rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(15, 27, 35, 0.04);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.asset-guide--compact {
    padding: 0.85rem 0.95rem;
}

.asset-guide__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.asset-guide__path,
.asset-guide__filename {
    margin: 0;
    font-family: "SFMono-Regular", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.9rem;
    color: var(--ink-900);
    word-break: break-word;
}

.asset-guide__filename {
    color: var(--teal-600);
}

.asset-status {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.asset-status--has_image {
    background: rgba(18, 183, 106, 0.12);
    color: #067647;
}

.asset-status--local_file_available {
    background: rgba(47, 141, 134, 0.14);
    color: var(--teal-600);
}

.asset-status--missing {
    background: rgba(180, 35, 24, 0.1);
    color: #b42318;
}

.image-checklist-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.image-task-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.image-task-card--secondary {
    background: rgba(255, 249, 244, 0.9);
}

.image-task-card__summary {
    display: grid;
    gap: 0.8rem;
}

.image-task-card__summary p {
    margin: 0;
}

.image-upload-form {
    display: grid;
    gap: 0.9rem;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(16, 27, 34, 0.08);
}

.image-dropzone {
    position: relative;
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px dashed rgba(47, 141, 134, 0.38);
    background: rgba(47, 141, 134, 0.04);
    cursor: pointer;
    transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.image-dropzone:hover,
.image-dropzone.is-dragover {
    border-color: rgba(47, 141, 134, 0.62);
    background: rgba(47, 141, 134, 0.1);
    transform: translateY(-1px);
}

.image-dropzone--secondary {
    background: rgba(15, 27, 35, 0.03);
    border-color: rgba(16, 27, 34, 0.16);
}

.image-dropzone__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-dropzone__title {
    font-weight: 800;
    color: var(--ink-900);
}

.image-dropzone__copy,
.image-dropzone__filename {
    font-size: 0.9rem;
    color: var(--muted);
}

.image-dropzone__filename {
    font-family: "SFMono-Regular", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    color: var(--ink-900);
}

.checkbox-field {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.checkbox-field input {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.button-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--teal-600);
    font-weight: 700;
    cursor: pointer;
}

.button-link-danger {
    color: #b42318;
}

.inline-form {
    margin: 0;
}

.admin-image-preview {
    max-width: 320px;
    border-radius: 18px;
    border: 1px solid rgba(16, 27, 34, 0.08);
    box-shadow: 0 20px 50px rgba(10, 17, 21, 0.12);
}

.admin-image-preview-small {
    max-width: 180px;
    margin-bottom: 0.75rem;
}

.must-see-cropper {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: rgba(15, 27, 35, 0.03);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.must-see-image-panel {
    display: grid;
    gap: 1.1rem;
}

.must-see-image-panel__section {
    display: grid;
    gap: 0.75rem;
    padding: 1.1rem 1.15rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.must-see-image-panel__current {
    max-width: min(100%, 24rem);
}

.must-see-cropper__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.85rem;
}

.must-see-cropper__header h3 {
    margin: 0.35rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    line-height: 1;
}

.must-see-cropper__reset {
    align-self: flex-start;
}

.must-see-cropper__frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 42rem);
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(15, 27, 35, 0.06), rgba(47, 141, 134, 0.09)),
        rgba(242, 238, 230, 0.98);
    border: 1px solid rgba(16, 27, 34, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    touch-action: none;
    cursor: grab;
}

.must-see-cropper__frame.is-dragging {
    cursor: grabbing;
}

.must-see-cropper__image {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    max-width: none;
    height: auto;
    user-select: none;
    pointer-events: none;
    transform-origin: top left;
    will-change: transform, width, height;
}

.must-see-cropper__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 16, 22, 0.08), rgba(8, 16, 22, 0.28)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.06) 100%);
    pointer-events: none;
}

.must-see-cropper__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
    line-height: 1.7;
}

.must-see-cropper__controls {
    display: grid;
    gap: 0.75rem;
    width: min(100%, 42rem);
}

.must-see-cropper__controls input[type="range"] {
    width: 100%;
}

.must-see-cropper__controls .form-field {
    margin: 0;
}

.must-see-cropper__url-preview {
    display: grid;
    gap: 0.75rem;
}

.must-see-cropper__url-image {
    max-width: min(100%, 24rem);
}

.image-control-summary {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.image-control-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.image-control-grid--hero {
    grid-template-columns: minmax(0, 720px);
}

.image-control-card {
    display: grid;
    gap: 1rem;
}

.image-control-card--complete {
    background: rgba(255, 249, 244, 0.9);
}

.image-control-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.image-control-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.image-control-card__top h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1;
}

.image-control-card__context,
.image-control-card__usage,
.image-control-card__body p {
    margin: 0;
    color: var(--muted);
}

.image-control-card__usage {
    max-width: 34rem;
}

.image-control-card__body {
    display: grid;
    gap: 0.9rem;
}

.image-control-empty {
    display: grid;
    gap: 0.65rem;
}

.image-control-empty h3 {
    margin: 0;
}

.image-control-completed {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 251, 247, 0.88);
    border: 1px solid rgba(16, 27, 34, 0.08);
    border-radius: var(--radius);
}

.image-control-completed summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 800;
    color: var(--ink-900);
}

.image-control-completed[open] summary {
    margin-bottom: 1rem;
}

.image-control-grid--completed {
    padding-top: 0.25rem;
}

.asset-guide--details {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(15, 27, 35, 0.04);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.asset-guide--details summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink-900);
}

.asset-guide--details .asset-guide__path,
.asset-guide--details .asset-guide__filename {
    margin-top: 0.6rem;
}

.import-example {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(15, 27, 35, 0.04);
    border: 1px solid rgba(16, 27, 34, 0.08);
}

.import-example pre {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.7;
    color: var(--muted);
}

.summary-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.summary-list li + li {
    margin-top: 0.4rem;
}

.trip-list {
    display: grid;
    gap: 0.75rem;
}

.trip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(16, 27, 34, 0.08);
    color: var(--muted);
}

.auth-panel {
    max-width: 32rem;
    margin-inline: auto;
}

.auth-form {
    display: grid;
    gap: 0.85rem;
}

.section {
    margin-top: 2rem;
}

.guide-steps {
    display: grid;
    gap: var(--grid-gap);
}

.guide-step {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 27, 34, 0.08);
    box-shadow: var(--shadow-soft);
}

.guide-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-width: 2.7rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(47, 141, 134, 0.12);
    color: var(--teal-600);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guide-step h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    line-height: 1;
}

.guide-step p {
    margin: 0;
    color: #324047;
    line-height: 1.72;
}

.country-index {
    display: grid;
    gap: 1.15rem;
}

.continent-panel {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 0 1.5rem;
    border-top: 1px solid rgba(16, 27, 34, 0.1);
}

.continent-panel:last-child {
    border-bottom: 1px solid rgba(16, 27, 34, 0.1);
}

.continent-panel__intro {
    display: grid;
    gap: 0.25rem;
}

.continent-panel__count {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.continent-panel__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.8rem;
    align-items: center;
}

.continent-index-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(16, 27, 34, 0.08);
    color: var(--ink-900);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.continent-index-link:hover {
    transform: translateY(-1px);
    border-color: rgba(47, 141, 134, 0.26);
    background: rgba(122, 204, 192, 0.1);
    color: var(--teal-600);
}

@media (min-width: 720px) {
    .landing-hero__inner,
    .section-heading--split,
    .latest-grid,
    .country-grid,
    .country-trip-grid,
    .photo-gallery-grid,
    .related-trips__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-trip-card {
        justify-self: end;
        align-self: end;
    }

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

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

    .site-footer__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 2rem;
        align-items: start;
    }

    .admin-overview-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .section-heading--balanced {
        grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
        align-items: end;
        column-gap: 2rem;
    }

    .continent-panel {
        grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
        gap: 1.5rem 2rem;
        align-items: start;
    }
}

@media (min-width: 960px) {
    .site-nav {
        display: inline-flex;
    }

    .site-header {
        padding-inline: 1.35rem;
    }

    .landing-hero__inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
        align-items: end;
    }

    .latest-grid,
    .country-trip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

    .guide-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-footer__inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        gap: 3rem;
        align-items: start;
    }

    .site-footer__meta {
        padding-top: 0;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 2.5rem;
    }
}

@media (max-width: 959px) {
    .site-nav {
        display: none;
    }
}

@media (max-width: 719px) {
    .site-header {
        padding: 0.7rem;
    }

    .site-header__inner {
        padding: 0.72rem 0.9rem;
    }

    .brand__text {
        font-size: 0.78rem;
        letter-spacing: 0.11em;
    }

    .landing-hero,
    .country-hero,
    .trip-hero {
        padding-bottom: 2.25rem;
    }

    .landing-hero {
        min-height: 42rem;
        padding-top: calc(var(--header-height) + 3.2rem);
    }

    .country-hero,
    .trip-hero {
        min-height: 19rem;
        padding-top: calc(var(--header-height) + 2.1rem);
    }

    .country-hero--image,
    .trip-hero--image {
        min-height: 26rem;
    }

    .display-title {
        font-size: clamp(2.9rem, 15vw, 4.5rem);
    }

    .hero-actions {
        margin-top: 0.45rem;
        gap: 0.9rem;
    }

    .featured-trip-card,
    .story-summary,
    .related-trips {
        padding: 1.25rem;
    }

    .landing-section,
    .landing-intro,
    .editorial-section--light,
    .countries-showcase {
        padding: var(--section-pad-sm) 0;
    }

    .trip-card__media,
    .destination-card__media,
    .guide-card__media,
    .guide-link-card__media {
        min-height: 13rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0.55rem;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .section-heading--balanced .section-copy {
        max-width: 100%;
        padding-bottom: 0;
    }

    .continent-panel {
        gap: 0.85rem;
        padding: 1.2rem 0 1.3rem;
    }

    .image-control-card__top,
    .image-control-completed summary,
    .must-see-cropper__header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .must-see-cropper__frame,
    .must-see-cropper__controls,
    .must-see-image-panel__current {
        width: 100%;
    }

    .site-footer__inner {
        padding-top: 3.2rem;
    }
}
