@font-face {
    font-family: "CinzelDecorative-Bold";
    src: url("../fonts/CinzelDecorative-Bold.woff2") format("woff2"),
         url("../fonts/CinzelDecorative-Bold.ttf") format("truetype");
    font-display: optional;
}

:root {
    --bg: #f6f1e7;
    --surface: #fffdf8;
    --surface-strong: #f1e6d5;
    --surface-dark: #1f2d1a;
    --surface-dark-soft: rgba(22, 31, 18, 0.92);
    --text: #2d2217;
    --text-soft: #5c4a38;
    --text-inverse: #f8f5ef;
    --line: rgba(72, 52, 34, 0.14);
    --brand: #6b4a26;
    --brand-strong: #8d5f2f;
    --brand-soft: #e9dac4;
    --accent: #426234;
    --accent-soft: #dfe9d9;
    --warning: #f3e6bf;
    --shadow: 0 24px 60px rgba(42, 28, 17, 0.12);
    --shadow-soft: 0 14px 36px rgba(42, 28, 17, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1240px;
    --header-height: 84px;
    --brand-font: "CinzelDecorative-Bold", Georgia, serif;
    --body-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    background: linear-gradient(180deg, #faf6ef 0%, #f4efe6 100%);
    color: var(--text);
    font-family: var(--body-font), sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

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

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

iframe {
    border: 0;
}

main {
    display: block;
}

section[id],
details[id],
button[id] {
    scroll-margin-top: calc(var(--header-height) + 22px);
}

.layout-page {
    padding: 0 20px 60px;
}

.container {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
}

.section {
    margin-top: 28px;
}

.surface-card,
.story-card,
.feature-card,
.contact-card,
.faq-item,
.cities-card,
.module-card,
.panel-card,
.highlight-card,
.hero-card,
.media-card,
.tab-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-heading,
.hero-title,
.brand-wordmark,
.footer-brand {
    font-family: var(--brand-font), serif;
    font-weight: 400;
    line-height: 1.1;
}

.section-heading {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.section-intro,
.lead,
.small-note {
    color: var(--text-soft);
}

.button-row,
.link-row,
.hero-actions,
.quick-links,
.layout-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.link-chip,
.tab-button,
.module-summary,
.nav-cta,
.secondary-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button,
.nav-cta,
.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
}

.button:hover,
.nav-cta:hover,
.secondary-link:hover,
.link-chip:hover,
.tab-button:hover,
.module-summary:hover {
    transform: translateY(-1px);
}

.button-primary,
.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #567e44 100%);
    color: var(--text-inverse);
    box-shadow: 0 12px 26px rgba(66, 98, 52, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--brand);
    border-color: rgba(107, 74, 38, 0.2);
}

.secondary-link {
    background: transparent;
    color: var(--brand);
    border-color: rgba(107, 74, 38, 0.18);
}

.link-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-weight: 600;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: var(--surface-dark-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    align-content: center;
    gap: 16px;
    min-height: var(--header-height);
    padding-block: 10px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-inverse);
}

.brand-lockup img {
    width: 52px;
    height: 52px;
    border-radius: 0;
    object-fit: cover;
    background: transparent;
}

.brand-wordmark {
    font-size: 1.15rem;
}

.brand-subtitle {
    display: block;
    font-size: 0.76rem;
    color: rgba(248, 245, 239, 0.76);
    font-family: var(--body-font), sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-inverse);
}

.site-nav {
    display: none;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    text-decoration: none;
    border-radius: 999px;
    color: rgba(248, 245, 239, 0.88);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-inverse);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.header-actions .secondary-link {
    color: var(--text-inverse);
    border-color: rgba(255, 255, 255, 0.22);
}

.page-header-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.page-header-actions .secondary-link {
    color: var(--text-inverse);
    border-color: rgba(255, 255, 255, 0.22);
}

.site-header.is-open .container {
    grid-template-columns: auto 1fr auto;
    align-content: center;
}

.site-header.is-open .site-nav,
.site-header.is-open .header-actions {
    display: block;
    grid-column: 1 / -1;
}

.site-header.is-open .site-nav ul {
    flex-direction: column;
    padding-bottom: 6px;
}

.site-header.is-open .site-nav a {
    width: 100%;
    justify-content: space-between;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.site-header.is-open .header-actions {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 36px;
    min-height: min(860px, calc(100svh - 110px));
    background:
        linear-gradient(115deg, rgba(20, 29, 17, 0.76) 0%, rgba(20, 29, 17, 0.52) 48%, rgba(99, 74, 33, 0.2) 100%),
        radial-gradient(circle at top right, rgba(255, 232, 189, 0.35), transparent 34%),
        linear-gradient(180deg, #698955 0%, #392713 100%);
    color: var(--text-inverse);
    box-shadow: var(--shadow);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.story-grid > *,
.feature-grid > *,
.contact-grid > *,
.dashboard-grid > *,
.panel-grid > * {
    min-width: 0;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    min-width: 0;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    max-width: 12ch;
    text-wrap: balance;
}

.hero-copy .lead {
    margin: 0;
    max-width: 60ch;
    color: rgba(248, 245, 239, 0.88);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.hero-meta .link-chip {
    background: rgba(255, 255, 255, 0.13);
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.highlight-card {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text-inverse);
}

.highlight-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--text-inverse);
    font-size: 1.1rem;
}

.highlight-card strong {
    display: block;
    font-size: 1.25rem;
}

.highlight-card span {
    color: rgba(248, 245, 239, 0.9);
}

.hero-media {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.media-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
}

.hero-photo {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    filter: brightness(1.14) contrast(1.04) saturate(1.04);
}

.hero-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.14);
    min-width: 0;
}

.hero-card h2,
.hero-card h3,
.story-card h3,
.feature-card h3,
.contact-card h3,
.panel-card h3,
.module-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.hero-card p,
.story-card p,
.feature-card p,
.contact-card p,
.panel-card p,
.module-card p,
.hero-card li,
.story-card li,
.feature-card li {
    margin: 0;
    color: var(--text-soft);
}

.hero-card p,
.hero-card li {
    color: rgba(248, 245, 239, 0.92);
}

.hero-card ul,
.story-card ul,
.feature-card ul,
.panel-card ul,
.module-card ul {
    padding-left: 20px;
    margin: 0;
}

.layout-switcher {
    margin-bottom: 10px;
}

.layout-option-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(248, 245, 239, 0.9);
    font-weight: 700;
}

.layout-option-link.is-current,
.layout-b .layout-option-link[href="layout-opcao-b.html"],
.layout-c .layout-option-link[href="layout-opcao-c.html"] {
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand);
}

.section-shell {
    padding: clamp(24px, 3vw, 34px);
}

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

.section-header > * {
    min-width: 0;
}

.grid-2,
.grid-3,
.story-grid,
.feature-grid,
.contact-grid,
.dashboard-grid,
.panel-grid {
    display: grid;
    gap: 18px;
}

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

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

.story-card,
.feature-card,
.contact-card,
.panel-card,
.module-card {
    padding: 22px;
    min-width: 0;
}

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

.media-stack img,
.story-image,
.panel-image {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 4px);
}

.note-box {
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-soft), #f7efe3);
    border: 1px solid rgba(107, 74, 38, 0.14);
    min-width: 0;
    overflow-wrap: anywhere;
}

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

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--text-soft);
}

.cities-card {
    padding: 22px;
    min-width: 0;
}

.city-search {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 0;
    padding-inline: 2px;
}

.city-search input {
    width: 100%;
    min-height: 52px;
    padding: 0 52px 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(107, 74, 38, 0.16);
    background: #fff;
    color: var(--text);
}

.city-search i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
}

.city-grid {
    list-style: none;
    margin: 0;
    padding: 12px 2px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-height: 19rem;
    overflow: auto;
    padding-right: 6px;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--surface-strong);
    border: 1px solid rgba(107, 74, 38, 0.1);
    color: var(--text);
    font-size: 0.96rem;
}

.city-chip.is-hidden {
    display: none;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.contact-list a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    text-decoration: none;
    background: var(--surface-dark);
    color: var(--text-inverse);
    max-width: 100%;
}

.contact-list a span {
    min-width: 0;
    flex: 1 1 0;
    overflow-wrap: anywhere;
}

.map-card {
    overflow: hidden;
    padding: 0;
    min-width: 0;
}

.map-card iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
}

.footer {
    margin-top: 34px;
    padding: 28px 0 0;
}

.footer-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #2f4226 0%, #6d4b27 100%);
    color: var(--text-inverse);
    box-shadow: var(--shadow);
}

.footer-brand {
    margin: 0 0 8px;
    font-size: 2rem;
}

.footer-card .small-note,
.footer-card a {
    color: rgba(248, 245, 239, 0.86);
}

.page-hero {
    padding: clamp(24px, 3vw, 34px);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.page-hero-copy,
.page-hero-side {
    min-width: 0;
}

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

.page-hero-side {
    display: grid;
    gap: 14px;
}

.info-stack {
    display: grid;
    gap: 12px;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    text-decoration: none;
    min-width: 0;
}

.info-pill span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.table-card {
    padding: clamp(20px, 3vw, 30px);
}

.table-responsive {
    overflow: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface);
}

.cities-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.98rem;
}

.cities-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #efe3d2;
    color: var(--brand);
    text-align: left;
    padding: 14px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cities-table tbody td {
    padding: 14px 16px;
    border-top: 1px solid rgba(107, 74, 38, 0.1);
    color: var(--text);
    vertical-align: middle;
}

.cities-table tbody tr:nth-child(even) {
    background: rgba(241, 230, 213, 0.35);
}

.cities-table tbody tr:hover {
    background: rgba(223, 233, 217, 0.45);
}

.cities-table .city-name-strong {
    font-weight: 800;
}

.page-note {
    margin-top: 16px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 35;
}

.floating-whatsapp a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.floating-whatsapp i {
    font-size: 2rem;
    color: #ffffff;
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.tab-shell {
    display: grid;
    gap: 18px;
}

.tab-strip {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 4px;
}

.tab-button {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(107, 74, 38, 0.16);
    background: var(--surface);
    color: var(--text);
    font-weight: 800;
    white-space: nowrap;
}

.tab-button.is-active {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
    color: var(--text-inverse);
}

.tab-panel {
    display: none;
    padding: 24px;
}

.tab-panel.is-active {
    display: block;
}

.layout-b .hero,
.layout-c .hero {
    min-height: auto;
}

.layout-b .hero-grid {
    grid-template-columns: 1fr;
}

.layout-b .hero-card {
    background: rgba(255, 255, 255, 0.18);
}

.layout-b .panel-grid {
    margin-top: 18px;
}

.layout-b .tab-panel .section-heading,
.layout-c .module-card .section-heading {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.layout-c .hero-grid {
    grid-template-columns: 1fr 0.85fr;
}

.dashboard-grid {
    align-items: start;
}

.module-card {
    padding: 0;
    overflow: hidden;
}

.module-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 20px 22px;
    background: transparent;
    border: 0;
    text-align: left;
    font-weight: 800;
    cursor: pointer;
}

.module-summary::-webkit-details-marker {
    display: none;
}

.module-summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
}

.module-card[open] .module-summary::after {
    content: "−";
}

.module-body {
    padding: 0 22px 22px;
}

.module-body .contact-list a {
    background: var(--surface-strong);
    color: var(--text);
}

.module-body .contact-list a i {
    color: var(--accent);
}

.layout-a .products-grid .feature-card:first-child,
.layout-b .panel-grid .feature-card:first-child,
.layout-c .dashboard-grid details:nth-child(1) {
    border-top: 5px solid var(--brand-strong);
}

.layout-a .products-grid .feature-card:last-child,
.layout-b .panel-grid .feature-card:last-child,
.layout-c .dashboard-grid details:nth-child(2) {
    border-top: 5px solid var(--accent);
}

.layout-a .story-grid .story-card,
.layout-b .panel-grid .panel-card,
.layout-c .module-body .panel-card {
    background: linear-gradient(180deg, #fffdf8 0%, #fbf6ef 100%);
}

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

@media (max-width: 979px) {
    .site-header .container {
        grid-template-columns: minmax(0, 1fr) auto;
        justify-content: space-between;
    }

    .site-header.is-open .container {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand-lockup {
        min-width: 0;
    }

    .brand-wordmark {
        font-size: 1rem;
    }

    .page-header-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .page-header-actions > * {
        width: 100%;
    }

    .hero-grid,
    .layout-c .hero-grid,
    .grid-2,
    .grid-3,
    .story-grid,
    .feature-grid,
    .contact-grid,
    .dashboard-grid,
    .panel-grid {
        grid-template-columns: 1fr;
    }

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

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

    .layout-page {
        padding-inline: 14px;
    }

    .hero {
        padding: 22px;
        border-radius: 28px;
    }

    .hero-meta .link-chip,
    .contact-list a {
        width: 100%;
    }

    .section-shell,
    .tab-panel {
        padding: 20px;
    }

    .city-grid {
        max-height: 16rem;
    }
}

@media (min-width: 980px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        display: block;
        justify-self: center;
    }

    .header-actions {
        display: flex;
        justify-self: end;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 78px;
    }

    .hero-title {
        font-size: clamp(2.35rem, 11vw, 3.8rem);
    }

    .section-heading {
        font-size: clamp(1.8rem, 8.5vw, 2.5rem);
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .hero-photo,
    .media-stack img,
    .story-image,
    .panel-image {
        min-height: 220px;
    }

    .button,
    .nav-cta,
    .secondary-link,
    .layout-option-link {
        width: 100%;
    }

    .map-card iframe {
        min-height: 320px;
    }

    .cities-table {
        font-size: 0.92rem;
    }
}

@media (max-width: 430px) {
    .layout-page {
        padding-inline: 10px;
    }

    .hero {
        padding: 16px;
        border-radius: 22px;
    }

    .section-shell,
    .tab-panel,
    .story-card,
    .feature-card,
    .contact-card,
    .panel-card,
    .cities-card,
    .hero-card,
    .footer-card {
        padding: 16px;
    }

    .layout-switcher,
    .hero-actions,
    .hero-meta,
    .contact-list {
        gap: 10px;
    }

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

    .link-chip,
    .layout-option-link,
    .button,
    .secondary-link,
    .nav-cta,
    .contact-list a {
        padding-inline: 14px;
    }

    .contact-list a {
        align-items: flex-start;
    }

    .map-card iframe {
        min-height: 280px;
    }
}

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

    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}


