/* ==========================================================================
   GreeceTop — design tokens
   Mirrors the palette and type ramp from the Claude Design source.
   ========================================================================== */

:root {
    /* Surfaces */
    --bg: #FBFAF7;
    --surface: #ffffff;
    --navy-deep: #12324F;
    --navy: #1F4E79;
    --navy-hover: #173C5D;

    /* Accents */
    --gold: #F2A93B;
    --gold-dark: #E09A2C;
    --gold-light: #F7C46C;
    --terracotta: #C9603F;

    /* Text */
    --ink: #16202B;
    --slate: #3A4A5A;
    --muted: #5A6675;
    --faint: #8A94A0;

    /* Lines */
    --line: #E6E2D9;
    --line-soft: #EDE9E0;
    --line-faint: #F0ECE4;

    /* Type */
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

    /* Layout */
    --wrap: 1240px;
    --gutter: 20px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    /* Elevation */
    --shadow-card: 0 4px 14px rgba(18, 50, 79, 0.08);
    --shadow-card-hover: 0 12px 28px rgba(18, 50, 79, 0.18);
    --shadow-lift: 0 16px 34px rgba(18, 50, 79, 0.14);

    --section-gap: clamp(48px, 7vw, 84px);
}

/* Hebrew typography. The Latin families carry no Hebrew glyphs, so the whole ramp
   is swapped rather than relying on fallback. Heebo/Assistant are the Hebrew
   counterparts to Plus Jakarta Sans/Inter. There is no good Hebrew monospace for
   the kicker, so it uses Assistant with the letter-spacing doing the work. */
html[lang='he'] {
    --font-display: 'Heebo', system-ui, sans-serif;
    --font-body: 'Assistant', system-ui, -apple-system, sans-serif;
    --font-mono: 'Assistant', system-ui, sans-serif;
}

/* Hebrew has no capitals, so uppercasing does nothing but widen the text, and the
   tight negative tracking tuned for Latin display faces hurts legibility. */
html[lang='he'] .badge,
html[lang='he'] .kicker,
html[lang='he'] .biz-badge,
html[lang='he'] .footer-col-head,
html[lang='he'] .error-code {
    text-transform: none;
    letter-spacing: 0.02em;
}

html[lang='he'] h1,
html[lang='he'] h2,
html[lang='he'] h3 {
    letter-spacing: 0;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

a:hover {
    color: var(--terracotta);
}

::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

:where(a, button, input, [tabindex]):focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    margin: 0;
}

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

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

/* ==========================================================================
   Utilities
   ========================================================================== */

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

/* Logical properties throughout so the whole layout mirrors under dir="rtl"
   without a separate RTL stylesheet. */
.skip-link {
    position: absolute;
    inset-inline-start: -9999px;
    top: 0;
    z-index: 100;
    background: var(--navy-deep);
    color: #fff;
    padding: 12px 18px;
    border-radius: 0;
    border-end-end-radius: var(--radius-sm);
    font-weight: 600;
}

.skip-link:focus {
    inset-inline-start: 0;
    color: #fff;
}

.section {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: var(--section-gap) var(--gutter) 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-lg {
    font-size: 16px;
    padding: 15px 28px;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--navy-deep);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
}

.btn-navy:hover {
    background: var(--navy-hover);
    color: #fff;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ==========================================================================
   Header  (mobile first: hamburger visible, nav collapsed)
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    /* Casts onto the hero below so the image reads as passing under the header. */
    box-shadow: 0 6px 18px -4px rgba(9, 28, 46, 0.28);
}

.header-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-inline-end: auto;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.nav {
    display: none;
}

.header-cta {
    display: none;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: border-color 0.18s ease, color 0.18s ease;
}

.lang-switch:hover {
    border-color: var(--navy);
    color: var(--terracotta);
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: relative;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    top: 4px;
}

.menu-toggle[aria-expanded='true'] .menu-icon {
    background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    border-top: 1px solid var(--line);
    padding: 10px var(--gutter) 20px;
    background: var(--bg);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav-list li + li {
    border-top: 1px solid var(--line-soft);
}

.mobile-nav-list a {
    display: block;
    padding: 14px 2px;
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
}

.mobile-nav-cta {
    margin-top: 14px;
    width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

/* Full-bleed: the hero spans the whole viewport and tucks under the sticky header. */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    min-height: 560px;
    display: flex;
    align-items: flex-end;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(12, 35, 56, 0.88) 0%,
            rgba(12, 35, 56, 0.35) 45%,
            rgba(12, 35, 56, 0.15) 100%);
}

/* Content stays on the same 1240px column as the sections below, so the hero
   copy lines up with the headings further down the page. */
.hero-body {
    position: relative;
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 28px var(--gutter) 34px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 169, 59, 0.16);
    border: 1px solid rgba(242, 169, 59, 0.5);
    color: var(--gold-light);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin: 0 0 18px;
}

.hero-title {
    font-weight: 800;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0 0 14px;
    max-width: 15ch;
    text-wrap: balance;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px;
    max-width: 56ch;
    text-wrap: pretty;
}

.searchbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    max-width: 660px;
    box-shadow: 0 18px 40px rgba(9, 28, 46, 0.28);
}

.search-input {
    flex: 1 1 240px;
    min-width: 0;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px; /* 16px keeps iOS from zooming on focus */
    padding: 12px 14px;
    color: var(--ink);
    background: transparent;
}

.trending {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}

.trending-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.trending-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    transition: background-color 0.18s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.26);
    color: #fff;
}

/* ==========================================================================
   Section headings
   ========================================================================== */

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

.section-title {
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--navy-deep);
    margin: 0 0 8px;
    text-wrap: balance;
}

.section-title-spaced {
    margin-bottom: 22px;
}

.section-sub {
    margin: 0;
    font-size: 16px;
    color: var(--muted);
}

.section-sub-spaced {
    margin-bottom: 26px;
}

.link-underline {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

/* ==========================================================================
   Category grid
   ========================================================================== */

/* Mobile: two columns of five. Desktop flips to five across (two rows) at 900px. */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cat-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    background: #CBD8E3;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cat-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.cat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 35, 56, 0.82), rgba(12, 35, 56, 0.05) 65%);
}

.cat-body {
    position: absolute;
    inset-inline: 12px;
    bottom: 12px;
}

.cat-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.cat-count {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 2px;
}

/* ==========================================================================
   Featured grid
   ========================================================================== */

.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.feat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(18, 50, 79, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feat-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
}

.feat-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #CBD8E3;
}

.feat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-rank {
    position: absolute;
    inset-inline-start: 14px;
    bottom: -20px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(18, 50, 79, 0.22);
}

.feat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 22px 22px;
}

.kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 8px;
}

.feat-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy-deep);
    margin: 0 0 10px;
    text-wrap: balance;
}

.feat-title a {
    color: inherit;
}

/* Makes the whole card the click target while the link stays on the heading. */
.stretched::after {
    content: '';
    position: absolute;
    inset: 0;
}

.feat-blurb {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    text-wrap: pretty;
}

.feat-foot {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: auto 0 0;
    font-size: 13px;
    color: var(--faint);
    border-top: 1px solid var(--line-faint);
    padding-top: 14px;
}

.feat-cta {
    margin-inline-start: auto;
    font-weight: 600;
    color: var(--navy);
}

/* ==========================================================================
   Business CTA
   ========================================================================== */

.biz {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    border-radius: var(--radius-xl);
    padding: 26px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.biz::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg,
            rgba(255, 255, 255, 0.04) 0 10px,
            rgba(255, 255, 255, 0) 10px 24px);
}

.biz-copy,
.biz-stats {
    position: relative;
}

.biz-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin: 0 0 16px;
}

.biz-title {
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.06;
    color: #fff;
    margin: 0 0 14px;
    text-wrap: balance;
}

.biz-text {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 26px;
    max-width: 46ch;
    text-wrap: pretty;
}

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

.biz-actions .btn-gold:hover {
    background: var(--gold-light);
}

.biz-stats {
    display: grid;
    gap: 12px;
    align-content: center;
}

.stat {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.stat-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 30px;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ==========================================================================
   Destinations
   ========================================================================== */

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

.dest-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.dest-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-card);
}

.dest-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy-deep);
}

.dest-lists {
    font-size: 13px;
    color: var(--faint);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    margin-top: clamp(56px, 8vw, 100px);
    background: var(--navy-deep);
    color: #fff;
}

.footer-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: clamp(40px, 6vw, 72px) var(--gutter) 28px;
}

.newsletter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter-title {
    font-weight: 800;
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 10px;
    color: #fff;
    text-wrap: balance;
}

.newsletter-text {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 42ch;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-self: center;
}

.newsletter-input {
    flex: 1 1 200px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .btn {
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    font-size: 15px;
}

.newsletter-form .btn-gold:hover {
    background: var(--gold-light);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 32px 0;
}

.footer-col-head {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
}

/* ==========================================================================
   Error page
   ========================================================================== */

.error-page {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(60px, 12vw, 130px) var(--gutter);
    text-align: center;
}

.error-code {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 12px;
}

.error-title {
    font-weight: 800;
    font-size: clamp(30px, 6vw, 46px);
    color: var(--navy-deep);
    margin: 0 0 14px;
    text-wrap: balance;
}

.error-text {
    font-size: 17px;
    color: var(--muted);
    margin: 0 0 28px;
    text-wrap: pretty;
}

/* ==========================================================================
   >= 600px — roomier phones / small tablets
   ========================================================================== */

@media (min-width: 600px) {
    .cat-grid {
        gap: 14px;
    }

    .cat-name {
        font-size: 17px;
    }

    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-cols {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

/* ==========================================================================
   >= 900px — desktop: real nav, wider grids, taller hero
   ========================================================================== */

@media (min-width: 900px) {
    :root {
        --gutter: 20px;
    }

    .menu-toggle,
    .mobile-nav {
        display: none;
    }

    .nav {
        display: block;
        margin-inline-start: 12px;
        margin-inline-end: auto;
    }

    .brand {
        margin-inline-end: 0;
    }

    .header-inner {
        gap: 24px;
    }

    .nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 22px;
        font-size: 14.5px;
        font-weight: 500;
    }

    .nav-list a {
        color: var(--slate);
    }

    .nav-list a:hover {
        color: var(--terracotta);
    }

    .header-cta {
        display: inline-flex;
    }

    .hero {
        min-height: min(640px, 78vh);
    }

    .hero-body {
        padding: clamp(36px, 5vw, 64px) var(--gutter);
    }

    /* Desktop: five across, so the ten categories land in two rows.
       The card keeps the base 4/3.2 ratio — no override needed. */
    .cat-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .cat-card {
        border-radius: 20px;
    }

    .cat-body {
        inset-inline: 14px;
        bottom: 12px;
    }

    /* Cards run ~160px at 900px and ~227px at full width, while names go as long
       as "Attractions & Ancient Sites", so the label scales with the viewport. */
    .cat-name {
        font-size: clamp(14px, 1.35vw, 17px);
    }

    .cat-count {
        font-size: 12px;
    }

    .feat-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }

    .dest-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px;
    }

    .biz {
        padding: clamp(28px, 4.5vw, 56px);
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 36px;
        align-items: center;
    }

    .footer-cols {
        gap: 28px;
        padding: 36px 0;
    }

    .footer-legal-end {
        margin-inline-start: auto;
    }
}
