/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfaf8;
    color: #1A2E40;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Prata', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1A2E40;
}

p,
li,
a,
span {
    overflow-wrap: break-word;
}

/* ===== VARIABILI COLORE (OMNIA 1) ===== */
:root {
    --blu: #1A2E40;
    --blu-chiaro: #2a4055;
    --terracotta: #E67E22;
    --terracotta-chiaro: #f39c5e;
    --oro: #C69C6D;
    --oro-chiaro: #dbb38c;
    --sfondo: #fcfaf8;
    --grigio: #eae7e2;
    --testo-chiaro: #5a6f84;
}

/* ===== UTILITY ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subhead {
    color: var(--testo-chiaro);
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 48px;
}

.badge {
    background-color: var(--oro);
    color: var(--blu);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge.white {
    background-color: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--terracotta);
    color: white;
    box-shadow: 0 10px 20px rgba(230,126,34,0.2);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--terracotta);
    color: var(--terracotta);
    box-shadow: none;
    transform: translateY(-2px);
}

.btn-primary.full {
    width: 100%;
    text-align: center;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--blu);
    color: var(--blu);
}

.btn-secondary:hover {
    background-color: var(--blu);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--blu);
}

.btn-light:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--blu);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    background-color: var(--terracotta);
    color: white;
    padding: 8px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.2;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-nav:hover {
    background-color: var(--blu);
    transform: scale(1.05);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: 52px;
}

.logo {
    font-family: 'Prata', serif;
    font-size: 1.45rem;
    color: var(--blu);
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
    white-space: nowrap;
}

.logo span {
    color: var(--terracotta);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--blu);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO FULL-SCREEN ===== */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 32px;
}

.hero-title {
    font-family: 'Prata', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-btn {
    display: inline-block;
    background-color: var(--terracotta);
    color: white;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.hero-btn:hover {
    background-color: white;
    color: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== CHI SIAMO ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    color: var(--terracotta);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature p {
    color: var(--testo-chiaro);
    font-size: 0.95rem;
}

.about-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: -30px 30px 0 rgba(198,156,109,0.2);
}

.about-image img {
    width: 100%;
    height: auto;
}

/* ===== FILOSOFIA ===== */
.philosophy {
    padding: 120px 0;
    background: var(--sfondo);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--blu);
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 40px;
    max-width: 500px;
}

.signature img {
    opacity: 0.8;
}

.philosophy-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: -30px 30px 0 var(--terracotta);
}

.philosophy-image img {
    width: 100%;
    height: auto;
}

/* ===== SERVIZI ===== */
.services {
    padding: 100px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--blu);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--grigio);
    border-radius: 30px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--terracotta);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230,126,34,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-item p {
    color: var(--testo-chiaro);
}

/* ===== SPECIAL SECTION ===== */
.special-section {
    padding: 120px 0;
    background: var(--blu);
    color: white;
}

.bagni-section {
    background: linear-gradient(135deg, var(--blu), var(--blu-chiaro));
}

.zona-section {
    background: linear-gradient(135deg, var(--terracotta), #c06d2c);
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.special-grid.reverse {
    direction: rtl;
}

.special-grid.reverse .special-content {
    direction: ltr;
}

.special-content {
    min-width: 0;
}

.special-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.special-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #ccc;
}

.special-list {
    list-style: none;
    margin-bottom: 40px;
}

.special-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.special-list i {
    color: var(--oro);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    padding: 12px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline.light {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.btn-outline.light:hover {
    background: white;
    color: var(--blu);
    border-color: white;
}

.special-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(230,126,34,0.3);
}

.special-image img {
    width: 100%;
    height: auto;
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.zone-tags span {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
}

/* ===== GALLERIA MASONRY ===== */
.gallery {
    padding: 100px 0;
    background: var(--sfondo);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 3rem;
    color: var(--blu);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin-bottom: 48px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-cta {
    text-align: center;
}

/* ===== CONTATTI ===== */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 36px;
    align-items: start;
}

.contact-info {
    min-width: 0;
}

.contact-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--blu);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
}

.detail i {
    color: var(--terracotta);
    width: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 1px solid var(--grigio);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    background: var(--sfondo);
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--terracotta);
    background: white;
}

textarea.form-input {
    resize: vertical;
}

/* ===== CONTACT BOX ===== */
.contact-box {
    width: 100%;
    max-width: 520px;
    margin-left: 0;
    justify-self: start;
    padding: 42px 36px;
    border-radius: 24px;
    border: 1px solid #D47627;
    background: transparent;
    color: var(--blu);
}

.contact-title {
    font-family: 'Prata', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0 0 32px 0;
    text-align: center;
    color: var(--blu);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid #D47627;
}

.contact-row:last-child {
    border-bottom: 1px solid #D47627;
}

.label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--blu);
    word-break: break-word;
}

.value a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--blu);
    color: #cdd9e3;
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    color: white;
    max-width: 100%;
    min-width: 0;
    line-height: 1.08;
}

.footer-logo span {
    color: var(--terracotta);
}

.footer-logo p {
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    line-height: 1.5;
    color: #cdd9e3;
}

.footer-logo p a {
    color: #cdd9e3;
    text-decoration: none;
}

.footer-logo p a:hover {
    color: var(--terracotta);
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cdd9e3;
    text-decoration: none;
    transition: color 0.3s;
}

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

.special-link {
    color: var(--terracotta) !important;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #2d4b5e;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #9aafc0;
}

/* ===== SMALL LABEL ===== */
.small-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
}

.small-label.light {
    color: var(--grigio);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .hero-title {
        font-size: 3rem;
    }

    .philosophy-grid,
    .special-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-box {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        gap: 12px;
        min-height: 46px;
    }

    .logo {
        font-size: 1.15rem;
        line-height: 1;
    }

    .nav-links {
        display: none;
    }

    .btn-nav {
        padding: 7px 14px;
        font-size: 0.76rem;
        line-height: 1.2;
        border-radius: 22px;
        max-width: 132px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .special-content h2,
    .contact-info h2,
    .gallery-header h2,
    .services-header h2,
    .philosophy-text h2 {
        font-size: 2.35rem;
    }

    .hero-content {
        padding: 92px 24px 24px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 26px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .navbar {
        padding: 6px 0;
    }

    .navbar .container {
        gap: 10px;
        min-height: 42px;
    }

    .logo {
        font-size: 0.95rem;
        max-width: 58%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .btn-nav {
        padding: 6px 10px;
        font-size: 0.68rem;
        max-width: 106px;
        text-align: center;
        border-radius: 18px;
        flex-shrink: 0;
    }

    .section,
    .services,
    .gallery,
    .contact,
    .special-section,
    .philosophy {
        padding: 72px 0;
    }

    .hero-fullscreen {
        min-height: 620px;
        padding-top: 72px;
    }

    .hero-content {
        padding: 0 18px 24px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 22px;
        line-height: 1.15;
    }

    .hero-btn {
        width: 100%;
        max-width: 520px;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 32px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .zona-section .special-grid,
    .zona-section .special-grid.reverse {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "image";
        gap: 40px;
        direction: ltr;
    }

    .zona-section .special-content {
        grid-area: content;
    }

    .zona-section .special-image {
        grid-area: image;
    }

    .contact-grid {
        gap: 28px;
    }

    .contact-box {
        max-width: 100%;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 22px;
    }

    .contact-row {
        padding: 18px 0;
    }

    .label {
        font-size: 0.82rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .value {
        font-size: 1rem;
        line-height: 1.45;
    }

    .footer {
        overflow: hidden;
        padding: 56px 0 24px;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 34px;
    }

    .footer-logo {
        font-size: 1.9rem;
        line-height: 1.08;
        max-width: 100%;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .footer-logo span {
        display: inline;
    }

    .footer-logo p {
        margin-top: 8px;
        font-size: 0.98rem !important;
        line-height: 1.45;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        width: 100%;
    }

    .footer-col h4 {
        font-size: 0.92rem;
        margin-bottom: 14px;
    }

    .footer-col li {
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 0;
        padding-top: 18px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.92rem;
        line-height: 1.5;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 14px;
    }

    .navbar {
        padding: 5px 0;
    }

    .navbar .container {
        min-height: 38px;
        gap: 8px;
    }

    .logo {
        font-size: 0.82rem;
        max-width: 54%;
    }

    .btn-nav {
        padding: 5px 8px;
        font-size: 0.62rem;
        max-width: 92px;
        border-radius: 16px;
    }

    .hero-fullscreen {
        min-height: 580px;
        padding-top: 66px;
    }

    .hero-content {
        padding: 0 14px 20px;
    }

    .hero-title {
        font-size: 1.72rem;
        line-height: 1.14;
        margin-bottom: 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 100%;
        padding: 13px 16px;
        font-size: 0.84rem;
        letter-spacing: 0.4px;
        border-radius: 28px;
    }

    .section-title,
    .special-content h2,
    .contact-info h2,
    .gallery-header h2,
    .services-header h2,
    .philosophy-text h2 {
        font-size: 1.9rem;
    }

    .about-text,
    .special-content p,
    .contact-info p,
    .value,
    .detail {
        font-size: 1rem;
    }

    .contact-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }

    .contact-row {
        padding: 16px 0;
    }

    .label {
        font-size: 0.78rem;
        letter-spacing: 1.8px;
    }

    .value {
        font-size: 0.96rem;
    }

    .footer {
        padding: 50px 0 22px;
    }

    .footer-main {
        gap: 26px;
    }

    .footer-logo {
        font-size: 1.55rem;
        line-height: 1.1;
    }

    .footer-logo p {
        font-size: 0.92rem !important;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col h4 {
        margin-bottom: 10px;
    }

    .footer-col ul {
        display: grid;
        gap: 8px;
    }

    .footer-col li {
        margin-bottom: 0;
    }

    .footer-col a {
        font-size: 0.96rem;
    }

    .footer-bottom {
        margin-top: 22px;
        padding-top: 16px;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 0.74rem;
        max-width: 52%;
    }

    .btn-nav {
        padding: 5px 7px;
        font-size: 0.58rem;
        max-width: 84px;
    }

    .hero-title {
        font-size: 1.56rem;
    }

    .hero-btn {
        font-size: 0.8rem;
        padding: 12px 14px;
    }

    .footer-logo {
        font-size: 1.38rem;
    }

    .footer-logo p,
    .footer-col a,
    .footer-bottom p {
        font-size: 0.9rem !important;
    }
}a,
span {
    overflow-wrap: break-word;
}

/* ===== VARIABILI COLORE (OMNIA 1) ===== */
:root {
    --blu: #1A2E40;
    --blu-chiaro: #2a4055;
    --terracotta: #E67E22;
    --terracotta-chiaro: #f39c5e;
    --oro: #C69C6D;
    --oro-chiaro: #dbb38c;
    --sfondo: #fcfaf8;
    --grigio: #eae7e2;
    --testo-chiaro: #5a6f84;
}

/* ===== UTILITY ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subhead {
    color: var(--testo-chiaro);
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 48px;
}

.badge {
    background-color: var(--oro);
    color: var(--blu);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge.white {
    background-color: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--terracotta);
    color: white;
    box-shadow: 0 10px 20px rgba(230,126,34,0.2);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--terracotta);
    color: var(--terracotta);
    box-shadow: none;
    transform: translateY(-2px);
}

.btn-primary.full {
    width: 100%;
    text-align: center;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--blu);
    color: var(--blu);
}

.btn-secondary:hover {
    background-color: var(--blu);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--blu);
}

.btn-light:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--blu);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    background-color: var(--terracotta);
    color: white;
    padding: 8px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.2;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-nav:hover {
    background-color: var(--blu);
    transform: scale(1.05);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: 52px;
}

.logo {
    font-family: 'Prata', serif;
    font-size: 1.45rem;
    color: var(--blu);
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
    white-space: nowrap;
}

.logo span {
    color: var(--terracotta);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--blu);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO FULL-SCREEN ===== */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 32px;
}
.hero-title {
    font-family: 'Prata', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-btn {
    display: inline-block;
    background-color: var(--terracotta);
    color: white;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.hero-btn:hover {
    background-color: white;
    color: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== CHI SIAMO ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    color: var(--terracotta);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature p {
    color: var(--testo-chiaro);
    font-size: 0.95rem;
}

.about-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: -30px 30px 0 rgba(198,156,109,0.2);
}

.about-image img {
    width: 100%;
    height: auto;
}

/* ===== FILOSOFIA (da OMNIA 2) ===== */
.philosophy {
    padding: 120px 0;
    background: var(--sfondo);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--blu);
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 40px;
    max-width: 500px;
}

.signature img {
    opacity: 0.8;
}

.philosophy-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: -30px 30px 0 var(--terracotta);
}

.philosophy-image img {
    width: 100%;
    height: auto;
}

/* ===== SERVIZI (da OMNIA 2) ===== */
.services {
    padding: 100px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--blu);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--grigio);
    border-radius: 30px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--terracotta);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230,126,34,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-item p {
    color: var(--testo-chiaro);
}

/* ===== SPECIAL SECTION (da OMNIA 2) ===== */
.special-section {
    padding: 120px 0;
    background: var(--blu);
    color: white;
}

.bagni-section {
    background: linear-gradient(135deg, var(--blu), var(--blu-chiaro));
}

.zona-section {
    background: linear-gradient(135deg, var(--terracotta), #c06d2c);
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.special-grid.reverse {
    direction: rtl;
}

.special-grid.reverse .special-content {
    direction: ltr;
}

.special-content {
    min-width: 0;
}

.special-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.special-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #ccc;
}

.special-list {
    list-style: none;
    margin-bottom: 40px;
}

.special-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.special-list i {
    color: var(--oro);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    padding: 12px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline.light {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.btn-outline.light:hover {
    background: white;
    color: var(--blu);
    border-color: white;
}

.special-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(230,126,34,0.3);
}

.special-image img {
    width: 100%;
    height: auto;
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.zone-tags span {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
}

/* ===== GALLERIA MASONRY (da OMNIA 2) ===== */
.gallery {
    padding: 100px 0;
    background: var(--sfondo);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 3rem;
    color: var(--blu);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin-bottom: 48px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-cta {
    text-align: center;
}

/* ===== CONTATTI (da OMNIA 2) ===== */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 36px;
    align-items: start;
}

.contact-info {
    min-width: 0;
}

.contact-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--blu);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
}

.detail i {
    color: var(--terracotta);
    width: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 1px solid var(--grigio);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    background: var(--sfondo);
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--terracotta);
    background: white;
}

textarea.form-input {
    resize: vertical;
}

/* ===== CONTACT BOX ===== */
.contact-box {
    width: 100%;
    max-width: 520px;
    margin-left: 0;
    justify-self: start;
    padding: 42px 36px;
    border-radius: 24px;
    border: 1px solid #D47627;
    background: transparent;
    color: var(--blu);
}

.contact-title {
    font-family: 'Prata', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0 0 32px 0;
    text-align: center;
    color: var(--blu);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid #D47627;
}

.contact-row:last-child {
    border-bottom: 1px solid #D47627;
}

.label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--blu);
    word-break: break-word;
}

/* ===== FOOTER (da OMNIA 2, adattato) ===== */
.footer {
    background: var(--blu);
    color: #cdd9e3;
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    color: white;
}

.footer-logo span {
    color: var(--terracotta);
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cdd9e3;
    text-decoration: none;
    transition: color 0.3s;
}

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

.special-link {
    color: var(--terracotta) !important;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #2d4b5e;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #9aafc0;
}

/* ===== SMALL LABEL (da OMNIA 2) ===== */
.small-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
}

.small-label.light {
    color: var(--grigio);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .hero-title {
        font-size: 3rem;
    }

    .philosophy-grid,
    .special-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-box {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        gap: 12px;
        min-height: 46px;
    }

    .logo {
        font-size: 1.15rem;
        line-height: 1;
    }

    .nav-links {
        display: none;
    }

    .btn-nav {
        padding: 7px 14px;
        font-size: 0.76rem;
        line-height: 1.2;
        border-radius: 22px;
        max-width: 132px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .special-content h2,
    .contact-info h2,
    .gallery-header h2,
    .services-header h2,
    .philosophy-text h2 {
        font-size: 2.35rem;
    }

    .hero-content {
        padding: 92px 24px 24px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 26px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .navbar {
        padding: 6px 0;
    }

    .navbar .container {
        gap: 10px;
        min-height: 42px;
    }

    .logo {
        font-size: 0.95rem;
        max-width: 58%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .btn-nav {
        padding: 6px 10px;
        font-size: 0.68rem;
        max-width: 106px;
        text-align: center;
        border-radius: 18px;
        flex-shrink: 0;
    }

    .section,
    .services,
    .gallery,
    .contact,
    .special-section,
    .philosophy {
        padding: 72px 0;
    }

    .hero-fullscreen {
        min-height: 620px;
        padding-top: 72px;
    }

    .hero-content {
        padding: 0 18px 24px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 22px;
        line-height: 1.15;
    }

    .hero-btn {
        width: 100%;
        max-width: 520px;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 32px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .zona-section .special-grid,
    .zona-section .special-grid.reverse {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "image";
        gap: 40px;
        direction: ltr;
    }

    .zona-section .special-content {
        grid-area: content;
    }

    .zona-section .special-image {
        grid-area: image;
    }

    .contact-grid {
        gap: 28px;
    }

    .contact-box {
        max-width: 100%;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 22px;
    }

    .contact-row {
        padding: 18px 0;
    }

    .label {
        font-size: 0.82rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .value {
        font-size: 1rem;
        line-height: 1.45;
    }

    .footer {
        overflow: hidden;
        padding: 56px 0 24px;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 34px;
    }

    .footer-logo {
        font-size: 1.45rem;
        line-height: 1;
        max-width: 100%;
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
    }

    .footer-logo span {
        display: inline;
    }

    .footer-logo p {
        margin-top: 8px;
        font-size: 0.98rem !important;
        line-height: 1.45;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        width: 100%;
    }

    .footer-col:first-child {
        padding-right: 18px;
        border-right: 1px solid rgba(255,255,255,0.14);
    }

    .footer-col:nth-child(2) {
        padding-left: 18px;
    }

    .footer-col h4 {
        font-size: 0.92rem;
        margin-bottom: 14px;
    }

    .footer-col li {
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 0;
        padding-top: 18px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.92rem;
        line-height: 1.5;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 14px;
    }

    .navbar {
        padding: 5px 0;
    }

    .navbar .container {
        min-height: 38px;
        gap: 8px;
    }

    .logo {
        font-size: 0.82rem;
        max-width: 54%;
    }

    .btn-nav {
        padding: 5px 8px;
        font-size: 0.62rem;
        max-width: 92px;
        border-radius: 16px;
    }

    .hero-fullscreen {
        min-height: 580px;
        padding-top: 66px;
    }

    .hero-content {
        padding: 0 14px 20px;
    }

    .hero-title {
        font-size: 1.72rem;
        line-height: 1.14;
        margin-bottom: 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 100%;
        padding: 13px 16px;
        font-size: 0.84rem;
        letter-spacing: 0.4px;
        border-radius: 28px;
    }

    .section-title,
    .special-content h2,
    .contact-info h2,
    .gallery-header h2,
    .services-header h2,
    .philosophy-text h2 {
        font-size: 1.9rem;
    }

    .about-text,
    .special-content p,
    .contact-info p,
    .value,
    .detail {
        font-size: 1rem;
    }

    .contact-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }

    .contact-row {
        padding: 16px 0;
    }

    .label {
        font-size: 0.78rem;
        letter-spacing: 1.8px;
    }

    .value {
        font-size: 0.96rem;
    }

    .footer {
        padding: 50px 0 22px;
    }

    .footer-main {
        gap: 24px;
        margin-bottom: 26px;
    }

    .footer-logo {
        font-size: 1rem;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
    }

    .footer-logo span {
        display: inline;
    }

    .footer-logo p {
        font-size: 0.92rem !important;
        line-height: 1.45;
        margin-top: 8px;
        white-space: normal;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px 18px;
        width: 100%;
    }

    .footer-col:first-child {
        padding-right: 12px;
        border-right: 1px solid rgba(255,255,255,0.14);
    }

    .footer-col:nth-child(2) {
        padding-left: 12px;
    }

    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
        padding-top: 4px;
    }

    .footer-col h4 {
        margin-bottom: 10px;
    }

    .footer-col ul {
        display: grid;
        gap: 8px;
    }

    .footer-col li {
        margin-bottom: 0;
    }

    .footer-col a {
        font-size: 0.96rem;
    }

    .footer-bottom {
        margin-top: 22px;
        padding-top: 16px;
    }
}
@media (max-width: 400px) {
    .logo {
        font-size: 0.74rem;
        max-width: 52%;
    }

    .btn-nav {
        padding: 5px 7px;
        font-size: 0.58rem;
        max-width: 84px;
    }

    .hero-title {
        font-size: 1.56rem;
    }

    .hero-btn {
        font-size: 0.8rem;
        padding: 12px 14px;
    }
}
@media (max-width: 576px) {
    .footer-logo,
    .footer-logo span {
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .footer-logo {
        font-size: 1.05rem !important;
        line-height: 1 !important;
        letter-spacing: -0.01em;
    }

    .footer-logo p,
    .footer-logo p a {
        white-space: normal !important;
        font-size: 0.92rem !important;
    }

    .footer-links {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 22px 18px !important;
        width: 100%;
    }

    .footer-col:first-child {
        padding-right: 12px;
        border-right: 1px solid rgba(255,255,255,0.16);
    }

    .footer-col:nth-child(2) {
        padding-left: 12px;
    }

    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
        margin-top: 6px;
    }
}
