:root {
    --color-bg-dark: #121212;
    --color-bg-light: #1e1e1e;
    --color-bg-panel: #181818;
    --color-gold: #fabb00;
    --color-gold-hover: #e0a800;
    --color-gold-dark: #cda434;
    --color-text-main: #f5f5f5;
    --color-text-muted: #aaaaaa;

    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(18, 18, 18, 0.94) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('img/bg-texture-jpg.webp');
    background-size: 900px 900px;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.detail-section,
.highlight,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3,
.gold-title {
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 187, 0, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--spacing-sm) 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-main-logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.logo-image {
    object-fit: contain;
}

.logo-image--header {
    filter: none;
}

.logo-image--footer {
    margin-left: -6px;
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--color-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    font-weight: 500;
    font-size: 0.95rem;
}

.phone i {
    color: var(--color-text-main);
    margin-right: 5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    grid-template-areas: "content image";
    align-items: center;
    column-gap: clamp(2rem, 4vw, 4.5rem);
    padding: 100px clamp(1rem, 4vw, 3rem) 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-image-box {
    grid-area: image;
    position: relative;
    justify-self: end;
    width: min(100%, 560px);
    height: clamp(540px, 72vh, 760px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.hero-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-container {
    grid-area: content;
    display: block;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
    padding-top: clamp(1rem, 4vh, 4rem);
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 1rem;
}

.title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text-main);
}

.title span {
    color: var(--color-text-main);
}

.title small {
    font-family: var(--font-serif);
    font-size: 2rem;
    display: block;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.highlight-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.4;
    color: var(--color-gold);
}

.highlight-text strong {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cuts {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cut-card {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--color-bg-panel);
}

.cut-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cut-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.cut-card:hover img {
    transform: scale(1.1);
}

.hero-badge {
    position: absolute;
    top: 0;
    right: 15%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.badge-text-mock {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
}

/* Detailed Feature Sections */
.detail-section {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.detail-section.alternate {
    background: rgba(255, 255, 255, 0.02);
}

.detail-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.detail-content {
    flex: 1;
}

.detail-content .icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.detail-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.detail-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.detail-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 500px;
    width: 100%;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.detail-section:hover .detail-image img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .detail-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .detail-section.alternate .detail-container {
        flex-direction: column;
    }

    .detail-image {
        width: 100%;
        order: 2;
    }

    .detail-content {
        order: 1;
    }
}

/* Highlight Section */
.highlight {
    padding: var(--spacing-lg) 0;
}

.highlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--color-bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.slider-arrows .arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-arrows .arrow:hover {
    background: var(--color-gold);
    color: black;
}

.highlight-content {
    text-align: center;
}

.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.highlight-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Footer Section */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-box {
    background-color: rgba(24, 24, 24, 0.85);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-box-header {
    margin-bottom: 2rem;
    text-align: left;
}

.footer-box-header .gold-title {
    color: var(--color-gold-dark);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-box-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.day-group {
    display: flex;
    flex-direction: column;
}

.day-group strong {
    color: var(--color-text-main);
    font-weight: 600;
    margin-bottom: 4px;
}

.day-group span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-group {
    margin-bottom: 2rem;
}

.contact-group p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-group i {
    width: 20px;
    color: var(--color-gold);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.map-img-mock {
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/b/b0/OpenStreetMap_Road_Map.png') center/cover;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-cta {
    text-align: right;
}

.footer-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-cta p {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-cta p strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 2rem;
    }

    .hero-image-box {
        justify-self: center;
        width: min(100%, 720px);
        height: clamp(320px, 56vw, 460px);
    }

    .hero-content {
        max-width: 680px;
        padding-top: 1.25rem;
    }

    .hero-container {
        text-align: left;
    }

    .hero-badge {
        position: relative;
        right: auto;
        margin-top: 2rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-container,
    .footer-box-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Otimização de Performance Mobile Crítica */
    body {
        background-attachment: scroll !important; /* Fixed causa muito lag no scroll mobile */
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .main-logo {
        width: 170px;
    }

    .menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .nav,
    .header-actions {
        display: none;
        width: 100%;
        text-align: center;
    }

    .nav {
        order: 3;
    }

    .header-actions {
        order: 4;
    }

    .header-container.menu-open .nav,
    .header-container.menu-open .header-actions {
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
    }

    .header-container.menu-open .nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-container.menu-open {
        background: rgba(18, 18, 18, 0.98);
        border-radius: 0 0 15px 15px;
        padding-bottom: 20px;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero compacto em mobile Premium */
    .hero {
        padding-top: 78px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-container {
        padding: 0 var(--spacing-sm);
    }

    .hero-image-box {
        width: calc(100% - 2rem);
        height: 340px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }

    .hero-box-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .title {
        font-size: 2rem;
    }

    .title small {
        font-size: 1.1rem;
    }

    .highlight-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        width: 90px;
        height: 90px;
    }

    .badge-text-mock {
        font-size: 0.85rem;
    }

    /* Hero: conteúdo compacto limpo */

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .title small {
        font-size: 1rem;
    }

    /* Oculta highlight-text longo no hero em mobile — economiza ~80px */
    .highlight-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1rem; /* Botões mais responsivos ao toque do dedo (Touch Targets maiores) */
        font-size: 0.95rem;
        text-align: center;
        letter-spacing: 1px;
    }

    /* Cut-cards em linha horizontal com scroll — 1 única linha */
    .hero-cuts {
        gap: 12px;
        margin-top: 0.5rem;
        flex-wrap: nowrap;
        justify-content: center; /* Centraliza no mobile se caber, senao scrolla */
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hero-cuts::-webkit-scrollbar {
        display: none;
    }

    .cut-card {
        width: 65px;
        height: 65px;
        flex-shrink: 0;
        border-radius: 10px;
    }

    /* Seções de detalhe ampliadas para respiro mobile */
    .detail-section {
        padding: 3rem 0; /* Maior respiro lateral/vertical */
    }

    .detail-container {
        gap: 1.5rem !important;
    }

    .detail-content h2 {
        font-size: 1.8rem;
    }

    .detail-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    /* Imagens de detalhe menores em mobile */
    .detail-image {
        height: 300px !important;
    }

    .detail-image img {
        height: 100% !important;
    }

    /* Slideshow de localização menor */
    .location-slideshow {
        aspect-ratio: 16/9;
        margin-top: 0;
        max-height: 220px;
    }

    /* Seção highlight compacta */
    .highlight {
        padding: 2rem 0;
    }

    .highlight-image {
        height: 260px;
    }

    .highlight-content h2 {
        font-size: 1.5rem;
    }

    .footer-box-content {
        gap: 2rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-box {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-main-logo {
        width: 240px;
        margin-left: 0;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Location Slideshow Animation */

.location-slideshow { margin-top: 2rem;  position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.loc-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; animation-duration: 12s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }
.fade-1 { animation-name: fade1; }
.fade-2 { animation-name: fade2; }
@keyframes fade1 { 0%, 30%, 100% { opacity: 1; } 33%, 97% { opacity: 0; } }
@keyframes fade2 { 0%, 30%, 66%, 100% { opacity: 0; } 33%, 63% { opacity: 1; } }

.fade-3 { animation-name: fade3; }
@keyframes fade3 { 0%, 63%, 100% { opacity: 0; } 66%, 97% { opacity: 1; } }

section {
    scroll-margin-top: 96px;
}

@media (max-width: 768px) {
    /* Mobile-first refresh */
    body {
        background-attachment: scroll !important;
    }

    .header {
        position: sticky;
        top: 0;
        padding: 0.75rem 0;
        background: rgba(8, 8, 8, 0.86);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-container {
        flex-wrap: nowrap;
        gap: 0.75rem;
        align-items: center;
    }

    .main-logo {
        width: 150px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-left: auto;
    }

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

    .header-actions .btn {
        width: auto;
        max-width: none;
        padding: 0.8rem 1rem;
        font-size: 0.78rem;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
        row-gap: 0;
        padding: 0 0 1.25rem;
    }

    .hero-image-box {
        width: calc(100% - 1rem);
        margin: 0.5rem auto 0;
        height: clamp(320px, 58vh, 420px);
        border-radius: 26px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    }

    .hero-box-img {
        object-position: center center;
    }

    .hero-content {
        max-width: 100%;
        padding: 1rem 1rem 0;
    }

    .subtitle {
        font-size: 0.72rem;
        margin-bottom: 0.85rem;
        letter-spacing: 1.6px;
    }

    .title {
        font-size: clamp(2.35rem, 12vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.03;
    }

    .title small {
        font-size: 0.98rem;
    }

    .highlight-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.15rem;
        padding-left: 1rem;
        border-left: 3px solid var(--color-gold);
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 1rem 1rem;
        font-size: 0.92rem;
        text-align: center;
    }

    .hero-cuts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem;
        margin-top: 1rem;
        overflow: visible;
    }

    .cut-card {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 14px;
    }

    .detail-section {
        padding: 2rem 0;
    }

    .detail-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem !important;
    }

    .detail-section.alternate .detail-container {
        flex-direction: column;
    }

    .detail-image {
        order: 1;
        height: auto !important;
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }

    .detail-content {
        order: 2;
        text-align: left;
    }

    .detail-content .icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .detail-content h2 {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
        margin-bottom: 0.75rem;
    }

    .detail-content p {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .detail-content .btn {
        width: 100%;
        max-width: none;
    }

    .highlight {
        padding: 1rem 0 2rem;
    }

    .highlight-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-image {
        height: 280px;
        border-radius: 24px;
    }

    .slider-arrows {
        padding: 0 0.75rem;
    }

    .slider-arrows .arrow {
        width: 44px;
        height: 44px;
    }

    .highlight-content {
        text-align: left;
    }

    .stars {
        justify-content: flex-start;
    }

    .highlight-content h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .highlight-content p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .location-slideshow {
        aspect-ratio: 4 / 3;
        margin-top: 0;
        max-height: none;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-box {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        border-radius: 24px;
    }

    .footer-box-header {
        margin-bottom: 1.25rem;
    }

    .footer-box-header .gold-title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .footer-box-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-group {
        margin-bottom: 1.5rem;
    }

    .map-placeholder {
        height: 220px;
        border-radius: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-main-logo {
        width: 220px;
        margin-bottom: 0;
        margin-left: -2px;
    }

    .footer-cta {
        text-align: left;
    }

    .footer-cta h3 {
        font-size: 1.05rem;
    }

    .footer-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .btn {
        width: 100%;
        max-width: none;
    }
}
