/* ==========================================================================
   Tropical Realty Costa Rica — public site theme
   Kept separate from theme.css (admin panel) so the two can evolve apart.
   Palette is taken from the logo: teal fronds -> blue wordmark.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand — sampled from the logo */
    --tr-blue: #0090d2;
    --tr-blue-600: #0079b4;
    --tr-blue-800: #005c8a;
    --tr-teal: #16b5a8;
    --tr-teal-600: #0f9a8f;

    /* Ink / neutrals — deep sea navy rather than pure black */
    --tr-ink: #0d2e3d;
    --tr-ink-700: #2b5265;
    --tr-muted: #64808e;
    --tr-line: #e2edf2;
    --tr-surface: #ffffff;
    --tr-sand: #f7f4ee;
    --tr-mist: #f2f8fb;

    /* Warm accent — used sparingly (ratings, price emphasis) */
    --tr-sun: #f0a032;

    --tr-brand-gradient: linear-gradient(100deg, var(--tr-teal) 0%, var(--tr-blue) 62%);
    --tr-radius: 14px;
    --tr-radius-lg: 22px;
    --tr-shadow: 0 1px 2px rgba(13, 46, 61, .05), 0 10px 30px rgba(13, 46, 61, .08);
    --tr-shadow-lg: 0 24px 60px rgba(13, 46, 61, .16);
    --tr-display: 'Montserrat', 'Segoe UI', sans-serif;
    --tr-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------- base ---- */

/* The public side deliberately ships no CSS framework, so it carries its own
   minimal reset. (The admin gets this from Bootstrap's reboot instead.) */
*,
*::before,
*::after { box-sizing: border-box; }

body.tr-site { margin: 0; }
.tr-site figure,
.tr-site blockquote { margin: 0; }

.tr-site {
    font-family: var(--tr-body);
    color: var(--tr-ink);
    background: var(--tr-surface);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    /* Contains the full-bleed sections without making <body> a scroll box. */
    overflow-x: hidden;
    overflow-x: clip;
}

.tr-site h1,
.tr-site h2,
.tr-site h3,
.tr-site h4 {
    font-family: var(--tr-display);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--tr-ink);
    margin: 0;
}

/* Wrapped in :where() so this default carries ZERO specificity. A plain
   `.tr-site a` rule (0-1-1) would outrank every single-class component rule
   (.tr-btn--primary, .tr-nav-link, .tr-region — all 0-1-0) and repaint their
   text brand-blue, which is invisible on a blue button. */
:where(.tr-site a) { color: var(--tr-blue); text-decoration: none; }
:where(.tr-site a:hover) { color: var(--tr-blue-600); }
.tr-site img { max-width: 100%; }

.tr-shell {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 24px;
}

.tr-section { padding: 84px 0; }
.tr-section--tight { padding: 60px 0; }
.tr-section--sand { background: var(--tr-sand); }
.tr-section--mist { background: var(--tr-mist); }

/* Section heading block: eyebrow + title + optional lead */
.tr-head { max-width: 640px; margin-bottom: 40px; }
.tr-head--center { margin-inline: auto; text-align: center; }

.tr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--tr-display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tr-teal-600);
    margin-bottom: .75rem;
}
.tr-eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--tr-brand-gradient);
}
.tr-head--center .tr-eyebrow::before { display: none; }

.tr-title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.18; }
.tr-lead { color: var(--tr-muted); font-size: 1.05rem; margin: .85rem 0 0; }

/* ------------------------------------------------------------- buttons ---- */

.tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--tr-display);
    font-weight: 600;
    font-size: .95rem;
    padding: .8rem 1.6rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
    white-space: nowrap;
}
.tr-btn:hover { transform: translateY(-1px); }

.tr-btn--primary {
    background: var(--tr-brand-gradient);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 144, 210, .32);
}
.tr-btn--primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(0, 144, 210, .4); }

.tr-btn--ghost { background: transparent; color: var(--tr-ink); border-color: var(--tr-line); }
.tr-btn--ghost:hover { border-color: var(--tr-blue); color: var(--tr-blue); }

.tr-btn--light { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(255, 255, 255, .45); }
.tr-btn--light:hover { background: #fff; color: var(--tr-blue-600); }

.tr-link-more {
    font-family: var(--tr-display);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.tr-link-more svg { transition: transform .18s ease; }
.tr-link-more:hover svg { transform: translateX(3px); }

/* -------------------------------------------------------------- header ---- */

.tr-topbar {
    background: var(--tr-ink);
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
}
.tr-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 42px;
    flex-wrap: wrap;
}
.tr-topbar a { color: rgba(255, 255, 255, .78); }
.tr-topbar a:hover { color: #fff; }
.tr-topbar-contact { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.tr-topbar-contact span { display: inline-flex; align-items: center; gap: .45rem; }
.tr-topbar-contact svg { opacity: .7; }
.tr-topbar-right { display: flex; align-items: center; gap: 1.25rem; }

.tr-lang { display: inline-flex; align-items: center; gap: .35rem; }
.tr-lang a {
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .04em;
    padding: .15rem .5rem;
    border-radius: 6px;
}
.tr-lang a.is-active { background: rgba(255, 255, 255, .14); color: #fff; }

.tr-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--tr-line);
}
.tr-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 82px;
}

/* Logo: an <img> when the real asset is present, otherwise the CSS lockup. */
.tr-logo { display: inline-flex; align-items: center; gap: .7rem; }
.tr-logo img { height: 52px; width: auto; display: block; }
.tr-logo-mark { width: 46px; height: 34px; flex: none; }
.tr-logo-type { display: flex; flex-direction: column; line-height: .92; }
.tr-logo-type b {
    font-family: var(--tr-display);
    font-weight: 800;
    font-size: 1.42rem;
    letter-spacing: -.02em;
    color: var(--tr-blue);
}
.tr-logo-type span {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    font-family: var(--tr-display);
    font-weight: 500;
    font-size: 1.02rem;
    letter-spacing: .01em;
    color: var(--tr-blue);
}
.tr-logo-type span i {
    font-style: normal;
    font-size: .56rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: .02em;
    color: var(--tr-teal);
    text-transform: uppercase;
}

.tr-nav { display: flex; align-items: center; gap: 2rem; }
.tr-nav-link {
    font-family: var(--tr-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--tr-ink);
    padding: .4rem 0;
    position: relative;
}
.tr-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: var(--tr-brand-gradient);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.tr-nav-link:hover::after,
.tr-nav-link.is-active::after { transform: scaleX(1); }

.tr-header-actions { display: flex; align-items: center; gap: .85rem; }

.tr-burger {
    display: none;
    background: none;
    border: 1px solid var(--tr-line);
    border-radius: 10px;
    padding: .5rem .6rem;
    color: var(--tr-ink);
    cursor: pointer;
}

/* ---------------------------------------------------------------- hero ---- */

.tr-hero {
    position: relative;
    background: var(--tr-brand-gradient);
    color: #fff;
    padding: 96px 0 150px;
    overflow: hidden;
    isolation: isolate;
}
/* Soft light pools so the flat gradient reads as depth, not a colour block. */
.tr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 70% at 78% 12%, rgba(255, 255, 255, .3), transparent 62%),
        radial-gradient(50% 60% at 8% 92%, rgba(4, 61, 92, .38), transparent 68%);
    z-index: -1;
}
/* Oversized palm watermark, cropped by the hero — echoes the logo mark. */
.tr-hero-palm {
    position: absolute;
    top: -70px;
    right: -90px;
    width: 620px;
    opacity: .16;
    pointer-events: none;
    z-index: -1;
}
.tr-hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    line-height: 1.08;
    max-width: 15ch;
}
.tr-hero-lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.12rem;
    max-width: 48ch;
    margin: 1.15rem 0 0;
}
.tr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    padding: .4rem 1rem .4rem .5rem;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 1.4rem;
}
.tr-hero-badge b {
    background: #fff;
    color: var(--tr-blue-600);
    font-family: var(--tr-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .18rem .55rem;
    border-radius: 999px;
}
.tr-hero-actions { display: flex; gap: .85rem; margin-top: 2rem; flex-wrap: wrap; }

/* White wave that hands the hero over to the page below. */
.tr-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    display: block;
}

/* ------------------------------------------------------- search widget ---- */

.tr-search {
    position: relative;
    z-index: 5;
    margin-top: -74px;
    background: #fff;
    border-radius: var(--tr-radius-lg);
    box-shadow: var(--tr-shadow-lg);
    padding: 10px;
}
.tr-search-tabs { display: flex; gap: .3rem; padding: .35rem .5rem 0; }
.tr-search-tab {
    font-family: var(--tr-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--tr-muted);
    background: none;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: .55rem 1.1rem;
    cursor: pointer;
}
.tr-search-tab.is-active { color: var(--tr-blue); background: var(--tr-mist); }

.tr-search-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 0;
    align-items: stretch;
    background: var(--tr-mist);
    border-radius: 16px;
    padding: 8px;
}
.tr-field { padding: .55rem 1rem; position: relative; }
.tr-field + .tr-field::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--tr-line);
}
.tr-field label {
    display: block;
    font-family: var(--tr-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tr-muted);
    margin-bottom: .1rem;
}
.tr-field select,
.tr-field input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--tr-body);
    font-size: .96rem;
    font-weight: 500;
    color: var(--tr-ink);
    padding: 0;
    appearance: none;
    cursor: pointer;
}
.tr-field select:focus,
.tr-field input:focus { outline: none; }
.tr-search-submit { display: flex; align-items: center; padding-left: .5rem; }
.tr-search-submit .tr-btn { height: 100%; padding-inline: 1.9rem; }

/* ------------------------------------------------------------ stat band ---- */

.tr-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.tr-stat b {
    display: block;
    font-family: var(--tr-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    background: var(--tr-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.tr-stat span { font-size: .88rem; color: var(--tr-muted); font-weight: 500; }

/* ------------------------------------------------------ property cards ---- */

.tr-grid { display: grid; gap: 26px; }
.tr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tr-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tr-card {
    background: #fff;
    border: 1px solid var(--tr-line);
    border-radius: var(--tr-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tr-shadow);
    border-color: transparent;
}

/* Placeholder art until real photography is loaded: a tinted ocean gradient
   with the palm glyph watermarked over it. Swap for <img> when photos land. */
.tr-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(140deg, #9fd9e8, #2ea3cf 55%, #0b6f9c);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.tr-card-media--b { background: linear-gradient(140deg, #a8e3d8, #1fb2a6 52%, #0a7d8e); }
.tr-card-media--c { background: linear-gradient(140deg, #bfe0ef, #5aa9d6 50%, #14567f); }
.tr-card-media--d { background: linear-gradient(140deg, #ffd9a8, #f0a032 48%, #b35f13); }
.tr-card-media svg { width: 42%; opacity: .3; }
.tr-card-media img { width: 100%; height: 100%; object-fit: cover; }

.tr-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .95);
    color: var(--tr-blue-600);
    font-family: var(--tr-display);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .3rem .65rem;
    border-radius: 999px;
}
.tr-tag--sun { background: var(--tr-sun); color: #fff; }

.tr-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tr-card-place {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: var(--tr-muted);
    font-weight: 500;
}
/* Feed titles run long ("Prime 41-Hectare Development Land in Hermosa…"),
   so clamp to two lines to keep the card grid on an even baseline. */
.tr-card-title {
    font-size: 1.12rem;
    margin: .35rem 0 .6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tr-card-title a { color: var(--tr-ink); }
.tr-card:hover .tr-card-title a { color: var(--tr-blue); }
.tr-card-price {
    font-family: var(--tr-display);
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--tr-blue);
    margin-bottom: .75rem;
}
.tr-card-facts {
    display: flex;
    gap: 1.1rem;
    padding-top: .85rem;
    margin-top: auto;
    border-top: 1px solid var(--tr-line);
    font-size: .85rem;
    color: var(--tr-ink-700);
}
.tr-card-facts span { display: inline-flex; align-items: center; gap: .35rem; }
.tr-card-facts svg { color: var(--tr-teal-600); flex: none; }

/* ---------------------------------------------------------- region tiles ---- */

.tr-region {
    position: relative;
    display: block;
    border-radius: var(--tr-radius);
    overflow: hidden;
    min-height: 210px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: linear-gradient(160deg, #2ea3cf, #0b6f9c);
    transition: transform .22s ease, box-shadow .22s ease;
}
.tr-region:hover { transform: translateY(-4px); box-shadow: var(--tr-shadow); color: #fff; }
.tr-region::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 40, 56, .62), rgba(6, 40, 56, .06) 60%);
}
.tr-region--a { background: linear-gradient(160deg, #55c9bd, #0f8f96); }
.tr-region--b { background: linear-gradient(160deg, #6fc4e6, #10689a); }
.tr-region--c { background: linear-gradient(160deg, #93d7c9, #14889b); }
.tr-region--d { background: linear-gradient(160deg, #8ecbe8, #135f8c); }
.tr-region--e { background: linear-gradient(160deg, #4fbcd4, #0b7ba8); }
.tr-region--f { background: linear-gradient(160deg, #7fd3c0, #0d8087); }
.tr-region--tall { min-height: 340px; }
.tr-region-body { position: relative; z-index: 1; }
.tr-region h3 { color: #fff; font-size: 1.2rem; }
.tr-region p { margin: .2rem 0 0; font-size: .85rem; color: rgba(255, 255, 255, .82); }

/* ------------------------------------------------------------- features ---- */

.tr-feature { text-align: left; }
.tr-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--tr-mist);
    color: var(--tr-blue);
    margin-bottom: 1.1rem;
}
.tr-feature h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.tr-feature p { color: var(--tr-muted); font-size: .95rem; margin: 0; }

/* ----------------------------------------------------------------- CTA ---- */

.tr-cta {
    position: relative;
    background: var(--tr-ink);
    color: #fff;
    border-radius: var(--tr-radius-lg);
    padding: 54px 56px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.tr-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 120% at 88% 20%, rgba(22, 181, 168, .42), transparent 60%);
}
.tr-cta > * { position: relative; z-index: 1; }
.tr-cta h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.05rem); max-width: 20ch; }
.tr-cta p { color: rgba(255, 255, 255, .74); margin: .7rem 0 0; max-width: 52ch; }

/* -------------------------------------------------------- testimonials ---- */

.tr-quote {
    background: #fff;
    border: 1px solid var(--tr-line);
    border-radius: var(--tr-radius);
    padding: 28px;
    height: 100%;
}
.tr-stars { color: var(--tr-sun); letter-spacing: .12em; font-size: .9rem; margin-bottom: .8rem; }
.tr-quote p { font-size: .97rem; color: var(--tr-ink-700); margin: 0 0 1.2rem; }
.tr-quote footer { display: flex; align-items: center; gap: .75rem; }
.tr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--tr-brand-gradient);
    color: #fff;
    font-family: var(--tr-display);
    font-weight: 700;
    font-size: .9rem;
    flex: none;
}
.tr-quote cite { font-style: normal; font-weight: 600; font-size: .92rem; display: block; }
.tr-quote small { color: var(--tr-muted); font-size: .82rem; }

/* -------------------------------------------------------------- footer ---- */

.tr-footer { background: var(--tr-ink); color: rgba(255, 255, 255, .68); padding: 68px 0 0; }
.tr-footer h4 {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.tr-footer a { color: rgba(255, 255, 255, .68); font-size: .92rem; }
.tr-footer a:hover { color: #fff; }
.tr-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
}
.tr-footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.tr-footer-about { font-size: .93rem; margin: 1.1rem 0 1.4rem; max-width: 34ch; }
.tr-footer .tr-logo-type b,
.tr-footer .tr-logo-type span { color: #fff; }
.tr-footer .tr-logo-type span i { color: var(--tr-teal); }

.tr-social { display: flex; gap: .6rem; }
.tr-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background-color .18s ease;
}
.tr-social a:hover { background: var(--tr-blue); }

.tr-newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.tr-newsletter input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: .7rem 1.1rem;
    color: #fff;
    font-family: var(--tr-body);
    font-size: .9rem;
}
.tr-newsletter input::placeholder { color: rgba(255, 255, 255, .45); }
.tr-newsletter input:focus { outline: none; border-color: var(--tr-teal); }

.tr-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .85rem;
}
.tr-footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------------------------------------------------------- responsive ---- */

@media (max-width: 1100px) {
    .tr-nav { gap: 1.35rem; }
    .tr-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .tr-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .tr-nav,
    .tr-header-actions .tr-btn { display: none; }
    .tr-burger { display: inline-flex; }
    .tr-search-row { grid-template-columns: 1fr 1fr; gap: 6px; }
    .tr-field + .tr-field::before { display: none; }
    .tr-field { background: #fff; border-radius: 10px; }
    .tr-search-submit { grid-column: 1 / -1; padding: 0; }
    .tr-search-submit .tr-btn { width: 100%; padding-block: .9rem; }
    .tr-grid--3 { grid-template-columns: 1fr 1fr; }
    .tr-stats { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .tr-cta { padding: 40px 32px; }
}

@media (max-width: 640px) {
    .tr-section { padding: 56px 0; }
    .tr-hero { padding: 64px 0 120px; }
    .tr-grid--3,
    .tr-grid--4 { grid-template-columns: 1fr; }
    .tr-region--tall { min-height: 210px; }
    .tr-topbar-contact span:nth-child(2) { display: none; }
    .tr-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .tr-search { margin-top: -58px; }
}
