/* ============================================
   GRACE — Passione e Bellezza
   Luxury Editorial Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --gold:        #888888;
    --gold-light:  #999999;
    --gold-dark:   #666666;
    --red:         #C8102E;
    --champagne:   #F2F2F2;
    --ivory:       #FFFFFF;
    --ivory-warm:  #F7F7F7;
    --rosa-antico: #888888;
    --rosa-soft:   #E8E8E8;
    --noir:        #111111;
    --noir-light:  #1E1E1E;
    --noir-soft:   #2C2C2C;
    --charcoal:    #555555;
    --text:        #1A1A1A;
    --text-light:  #6B6B6B;
    --white:       #FFFFFF;

    --ff-display: 'Cormorant Garamond', 'Georgia', serif;
    --ff-body:    'Outfit', 'Helvetica Neue', sans-serif;

    --fs-hero:    clamp(3rem, 8vw, 7rem);
    --fs-h1:      clamp(2.2rem, 5vw, 4rem);
    --fs-h2:      clamp(1.6rem, 3.5vw, 2.8rem);
    --fs-h3:      clamp(1.2rem, 2vw, 1.6rem);
    --fs-body:    clamp(0.95rem, 1.1vw, 1.05rem);
    --fs-small:   0.875rem;
    --fs-label:   0.75rem;

    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --section-pad: clamp(5rem, 10vh, 8rem);
    --gutter:      clamp(1.25rem, 4vw, 2.5rem);
    --max-width:   1280px;
    --radius:      2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: var(--fs-body);
    color: var(--text);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Image Reveal — clean fade + subtle slide */
.img-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.img-reveal.img-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Quote animation */
.quote-animate {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.quote-animate.quote-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Reviews header animate */
.reviews-header {
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reviews-header.animate-in .reviews-stars svg {
    animation: starPop 0.4s var(--ease-out) forwards;
    opacity: 0;
}

.reviews-header.animate-in .reviews-stars svg:nth-child(1) { animation-delay: 0.1s; }
.reviews-header.animate-in .reviews-stars svg:nth-child(2) { animation-delay: 0.2s; }
.reviews-header.animate-in .reviews-stars svg:nth-child(3) { animation-delay: 0.3s; }
.reviews-header.animate-in .reviews-stars svg:nth-child(4) { animation-delay: 0.4s; }
.reviews-header.animate-in .reviews-stars svg:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
    0%   { opacity: 0; transform: scale(0) rotate(-30deg); }
    70%  { transform: scale(1.2) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* WhatsApp button entrance */
.whatsapp-float {
    animation: whatsappIn 0.6s var(--ease-out) 2s both;
}

@keyframes whatsappIn {
    from { opacity: 0; transform: scale(0) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.section-label {
    font-family: var(--ff-body);
    font-size: var(--fs-label);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    line-height: 1.2;
    color: var(--noir);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--noir);
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    gap: 0.3em;
}

.preloader-letter {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderIn 0.5s var(--ease-out) forwards;
}

.preloader-letter:nth-child(1) { animation-delay: 0.1s; }
.preloader-letter:nth-child(2) { animation-delay: 0.2s; }
.preloader-letter:nth-child(3) { animation-delay: 0.3s; }
.preloader-letter:nth-child(4) { animation-delay: 0.4s; }
.preloader-letter:nth-child(5) { animation-delay: 0.5s; }

@keyframes preloaderIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8000;
    padding: 1.25rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
}

.logo-sub {
    font-family: var(--ff-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
}

.header-cta {
    font-family: var(--ff-body);
    font-size: var(--fs-label);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.65rem 1.6rem;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 10px 6px;
    z-index: 9001;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--noir);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
    z-index: 8999;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}

.mobile-menu.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.45s; }

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);
}

.mobile-menu-footer {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-footer a {
    font-size: var(--fs-small);
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--noir);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.3;
    filter: grayscale(0.3);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.4) 0%,
        rgba(17, 17, 17, 0.6) 40%,
        rgba(17, 17, 17, 0.75) 70%,
        rgba(17, 17, 17, 0.9) 100%
    );
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(0, 0, 0, 0.06), transparent),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(0, 0, 0, 0.04), transparent);
}

.hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23888888' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--gutter);
    max-width: 900px;
}

.hero-label {
    font-family: var(--ff-body);
    font-size: var(--fs-label);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: var(--fs-hero);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--red);
}

.hero-subtitle {
    font-family: var(--ff-body);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 200;
    color: var(--champagne);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.4s forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fs-label);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.8s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0.4;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50%      { transform: scaleY(0.5); opacity: 0.8; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-body);
    font-size: var(--fs-label);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--noir);
    color: var(--white);
    border: 1px solid var(--noir);
}

.btn-primary:hover {
    background: var(--noir-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* btn-primary on dark backgrounds */
.cta-section .btn-primary,
.hero .btn-primary {
    background: var(--white);
    color: var(--noir);
    border-color: var(--white);
}

.cta-section .btn-primary:hover,
.hero .btn-primary:hover {
    background: var(--champagne);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--noir);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--noir-light);
    transform: translateY(-2px);
}

/* ---------- HOME: About Intro ---------- */
.about-intro {
    padding: var(--section-pad) 0;
    background: var(--ivory);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.about-intro-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-intro-image .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--champagne), var(--ivory-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 4rem;
    color: var(--noir);
}


.about-intro-text h2 {
    font-family: var(--ff-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    line-height: 1.2;
    color: var(--noir);
    margin-bottom: 1.5rem;
}

.about-intro-text h2 em {
    font-style: italic;
    color: var(--charcoal);
}

.about-intro-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro-text .signature {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--red);
    margin-top: 1.5rem;
}

/* ---------- HOME: Services Preview ---------- */
.services-preview {
    padding: var(--section-pad) 0;
    background: var(--noir);
    color: var(--ivory);
}

.services-preview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-preview-header .section-title {
    color: var(--ivory);
}

.services-preview-header .section-title em {
    color: var(--red);
}

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

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--noir);
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: var(--ff-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: var(--fs-small);
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- HOME: Portfolio Gallery ---------- */
.gallery-section {
    padding: var(--section-pad) 0;
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    grid-auto-rows: 280px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out), filter 0.5s ease;
    filter: grayscale(0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

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

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

/* ---------- HOME: Quote Banner ---------- */
.quote-banner {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--ivory-warm) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-banner::before {
    content: '\201C';
    position: absolute;
    top: -0.2em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-display);
    font-size: 15rem;
    color: var(--noir);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
}

.quote-banner blockquote {
    font-family: var(--ff-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--noir);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ---------- HOME: Reviews ---------- */
.reviews-section {
    padding: var(--section-pad) 0;
    background: var(--ivory);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.reviews-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--noir);
}

.reviews-count {
    font-size: var(--fs-small);
    color: var(--text-light);
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: reviewsScroll 30s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    flex-shrink: 0;
    width: 380px;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 0.8rem;
    left: 1.5rem;
    font-family: var(--ff-display);
    font-size: 4rem;
    color: var(--noir);
    opacity: 0.15;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--noir);
}

.review-card p {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--red);
    letter-spacing: 0.05em;
}

/* ---------- HOME: CTA ---------- */
.cta-section {
    padding: var(--section-pad) 0;
    background: var(--noir);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(0, 0, 0, 0.06), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--ff-display);
    font-size: var(--fs-h1);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.cta-content h2 em {
    font-style: italic;
    color: var(--red);
}

.cta-content p {
    font-size: var(--fs-body);
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ---------- SERVIZI PAGE ---------- */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--noir);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 60%, rgba(0, 0, 0, 0.05), transparent),
        radial-gradient(ellipse 500px 300px at 70% 40%, rgba(0, 0, 0, 0.04), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-family: var(--ff-display);
    font-size: var(--fs-h1);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 0.75rem;
}

.page-hero-content h1 em {
    font-style: italic;
    color: var(--red);
}

.page-hero-content p {
    font-size: var(--fs-body);
    color: var(--champagne);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 200;
}

.services-full {
    padding: var(--section-pad) 0;
    background: var(--ivory);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 6vh, 5rem) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-visual {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s var(--ease-out);
}

.service-detail:hover .service-detail-visual img {
    transform: scale(1.03);
}

.service-detail-visual .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--champagne), var(--ivory-warm));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-visual .img-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--noir);
    fill: none;
    stroke-width: 1;
    opacity: 0.4;
}

.service-detail-text .section-label {
    font-size: 0.65rem;
}

.service-detail-text h2 {
    font-family: var(--ff-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 1rem;
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-text ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: var(--fs-small);
}

.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 1px;
    background: var(--red);
}

/* ---------- CHI SIAMO PAGE ---------- */
.chi-siamo-content {
    padding: var(--section-pad) 0;
    background: var(--ivory);
}

.chi-siamo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.chi-siamo-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: sticky;
    top: 8rem;
}

.chi-siamo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.chi-siamo-image .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--champagne), var(--rosa-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 5rem;
    color: var(--noir);
}

.chi-siamo-text h2 {
    font-family: var(--ff-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.chi-siamo-text h2 em {
    font-style: italic;
    color: var(--charcoal);
}

.chi-siamo-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.chi-siamo-text blockquote {
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--charcoal);
    border-left: 2px solid var(--red);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.4;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    color: var(--noir);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

/* ---------- CONTATTI PAGE ---------- */
.contatti-content {
    padding: var(--section-pad) 0;
    background: var(--ivory);
}

.contatti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
}

.contatti-info h2 {
    font-family: var(--ff-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 1.5rem;
}

.contatti-info h2 em {
    font-style: italic;
    color: var(--charcoal);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--champagne);
    color: var(--charcoal);
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.contact-item-text h4 {
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--noir);
    margin-bottom: 0.25rem;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--text-light);
    font-size: var(--fs-body);
}

.contact-item-text a:hover {
    color: var(--noir);
}

.contatti-map {
    margin-top: 2rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.contatti-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-form h3 {
    font-family: var(--ff-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: var(--fs-label);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    font-weight: 300;
    color: var(--text);
    background: var(--ivory);
    border: 1px solid rgba(0, 0, 0, 0.15);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--noir);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    font-size: var(--fs-small);
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.08);
    color: #1a7a3a;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 53, 0.08);
    color: #a83232;
    border: 1px solid rgba(220, 53, 53, 0.2);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--noir);
    color: var(--ivory);
}

.footer-top {
    padding: clamp(3rem, 6vh, 5rem) 0;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo .logo-main {
    font-size: 1.4rem;
}

.footer-tagline {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: var(--fs-small);
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--ff-body);
    font-size: var(--fs-label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    font-size: var(--fs-small);
    color: var(--text-light);
    margin-bottom: 0.6rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: var(--ivory);
    transform: translateX(4px);
}

.footer-info {
    font-size: var(--fs-small);
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.footer-info a {
    color: var(--text-light);
}

.footer-info a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-label);
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex !important;
    }

    .about-intro-grid,
    .service-detail,
    .chi-siamo-grid,
    .contatti-grid {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .chi-siamo-image {
        position: relative;
        top: auto;
        max-height: 50vh;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-card {
        width: 300px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 50px;
        height: 50px;
    }
}
