/* ==========================================================================
   MIRIAM ZIINO — Italian Destination Wedding Photographer
   Design System: Editorial B&W + Oro/Champagne
   ========================================================================== */

/* --- Google Fonts loaded in HTML --- */

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
    /* Palette */
    --black: #111111;
    --black-soft: #1a1a1a;
    --white: #ffffff;
    --off-white: #f8f7f5;
    --cream: #f3f1ed;
    --gray-100: #e8e6e2;
    --gray-200: #d1cfc9;
    --gray-300: #a8a49e;
    --gray-400: #7a7670;
    --gray-500: #5a5650;
    --gray-600: #3d3a36;

    /* Gold / Champagne */
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --gold-dark: #b8944f;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Layout */
    --container: 1200px;
    --container-narrow: 900px;
    --section-pad: 120px;
    --section-pad-tablet: 80px;
    --section-pad-mobile: 60px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --duration: 0.4s;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

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

body {
    font-family: var(--font-sans);
    color: var(--gray-500);
    background-color: var(--white);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

main {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease);
}

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

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


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--black);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-400);
    max-width: 65ch;
}

.label {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin-bottom: 8px;
    display: block;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-300);
    display: block;
}


/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

section {
    padding: var(--section-pad) 0;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid var(--black);
    color: var(--black);
    background: transparent;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.btn:hover {
    background: var(--black);
    color: var(--white);
}

.btn--gold {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold);
    color: var(--white);
}

.btn--white {
    border-color: var(--white);
    color: var(--white);
}

.btn--white:hover {
    background: var(--white);
    color: var(--black);
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--duration) var(--ease);
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    position: relative;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: center;
}

.header__nav-group {
    display: flex;
    gap: 40px;
}

.header__logo {
    margin: 0 60px;
    flex-shrink: 0;
}

.header__logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header__link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 5px 0;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration) var(--ease);
}

.header__link:hover {
    color: var(--black);
}

.header__link:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.header__mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* Mobile menu */
.header__mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
}

.header__mobile-menu.active {
    display: flex;
}

.header__mobile-menu a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
}

.header__mobile-menu a:hover {
    color: var(--gold);
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    padding: 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
    min-height: calc(100vh - 90px);
}

.hero__image {
    position: relative;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    /* ← Regola il focus: 0%=tutto a sinistra, 50%=centrato, 100%=tutto a destra */
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
}

.hero__content .label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero__content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero__content p {
    font-size: 0.9rem;
    max-width: 380px;
    margin: 0 auto 32px;
    color: var(--gray-400);
}

.hero__content .btn {
    margin-top: 8px;
}


/* ==========================================================================
   DESTINATIONS BAND (ex-Islands)
   ========================================================================== */

.destinations-band {
    background: var(--black);
    padding: 50px 0;
    text-align: center;
}

.destinations-band h3 {
    font-family: var(--font-sans);
    color: var(--white);
    font-weight: 400;
    font-size: 0.75rem;
    margin-bottom: 28px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.destinations-band__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.destinations-band__item {
    font-family: 'Great Vibes', cursive;
    font-style: normal;
    font-size: 2.2rem;
    color: var(--gold);
    padding: 0 22px;
    border-right: 1px solid var(--gray-600);
    transition: color var(--duration) var(--ease);
    cursor: default;
    white-space: nowrap;
}

.destinations-band__item:last-child {
    border-right: none;
}

.destinations-band__item:hover {
    color: var(--gold-light);
}


/* ==========================================================================
   ABOUT TEASER
   ========================================================================== */

.about {
    background: var(--white);
}

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

.about__image {
    position: relative;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center 28%;
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

.about__content h2 {
    margin-bottom: 24px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about__label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.about__content p {
    margin-bottom: 16px;
}

.about__content .btn {
    margin-top: 20px;
}

.script-name {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 1.15em;
    color: var(--gold);
}

.about__signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gray-300);
    margin-top: 30px;
    letter-spacing: 0.02em;
}


/* ==========================================================================
   REPORTAGE / WHY CHOOSE (Dark Section)
   ========================================================================== */

.reportage {
    background: var(--black);
    color: var(--white);
}

.reportage__header {
    text-align: center;
    margin-bottom: 70px;
}

.reportage__header .label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.reportage__header h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.reportage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.reportage__item {
    padding: 40px 45px;
    border-right: 1px solid var(--gray-600);
    text-align: center;
    transition: background var(--duration) var(--ease);
}

.reportage__item:last-child {
    border-right: none;
}

.reportage__item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.reportage__number {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    transition: color var(--duration) var(--ease);
}

.reportage__item:hover .reportage__number {
    color: var(--gold-light);
}

.reportage__item h4 {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-style: normal;
}

.reportage__item h4 em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.reportage__item p {
    color: var(--gray-300);
    font-size: 0.88rem;
    max-width: none;
    line-height: 1.75;
}

.reportage__item strong {
    color: var(--gold);
    font-weight: 500;
}


/* ==========================================================================
   PORTFOLIO TEASER — Hero + Strip
   ========================================================================== */

.portfolio {
    background: var(--white);
    padding: 0;
}

/* Hero */
.portfolio__hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

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

.portfolio__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 70%),
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.portfolio__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 50px 60px;
    max-width: 600px;
}

.portfolio__overlay .label {
    color: var(--gold-light);
    font-size: 1.35rem;
    margin-bottom: 2px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.portfolio__overlay h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.portfolio__overlay p {
    color: var(--gray-200);
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Strip */
.portfolio__strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.portfolio__strip-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio__strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.portfolio__strip-item:nth-child(2) img {
    object-position: center 15%;
}

.portfolio__strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s var(--ease);
    z-index: 1;
}

.portfolio__strip-item:hover img {
    transform: scale(1.03);
}

.portfolio__strip-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   SERVICES — 3 USP (Dark · Numeri in Grande)
   ========================================================================== */

.services {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
}

.services__header {
    text-align: center;
    margin-bottom: 24px;
}

.services__header .label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.services__header h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.services__item {
    text-align: center;
    padding: 20px 40px;
    border-right: 1px solid var(--gray-600);
    transition: background var(--duration) var(--ease);
}

.services__item:last-child {
    border-right: none;
}

.services__item:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Giant number */
.services__number {
    display: block;
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(5rem, 8vw, 8rem);
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    transition: color var(--duration) var(--ease),
        text-shadow var(--duration) var(--ease);
}

.services__item:hover .services__number {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(193, 167, 121, 0.25);
}

/* "3in1" variant */
.services__number--small {
    font-size: clamp(4.5rem, 7vw, 7rem);
}

.services__number-suffix {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.4em;
    color: var(--gold);
    letter-spacing: 0;
    vertical-align: baseline;
}

.services__item h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.services__item p {
    color: var(--gray-300);
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: none;
}


/* ==========================================================================
   TESTIMONIALS — Editorial Carousel
   ========================================================================== */

.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials__header .label {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.testimonials__header .label::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: -8px;
    left: -20px;
    line-height: 1;
}

.testimonials__header .label::after {
    content: '\201D';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    bottom: -28px;
    right: -25px;
    line-height: 1;
}

/* Carousel container */
.testimonials__carousel {
    position: relative;
    min-height: 220px;
    text-align: center;
}

/* Slides */
.testimonial__slide {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.testimonial__slide.active {
    opacity: 1;
    visibility: visible;
}

/* Quote */
.testimonial__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.9;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
}

/* Quote — no leading quotation mark, sits close to title */

/* Author */
.testimonial__author {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    font-style: normal;
}

.testimonial__author::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 14px;
}

/* Dots navigation */
.testimonial__dots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s var(--ease);
}

.testimonial__dot:hover {
    border-color: var(--gold);
}

.testimonial__dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    background: var(--white);
}

.faq__header {
    text-align: center;
    margin-bottom: 15px;
}

.faq__header .label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--gray-100);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--black);
    text-align: left;
    transition: color var(--duration) var(--ease);
}

.faq__question:hover {
    color: var(--gold);
}

.faq__icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.3s var(--ease);
}

.faq__answer-inner {
    padding: 0 0 24px;
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: none;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}


/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 80px 40px;
}

.cta__content .label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.cta__content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta__content p {
    color: var(--gray-200);
    margin: 0 auto 30px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-600);
}

.footer__brand h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__brand p {
    color: var(--gray-300);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social a {
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--duration) var(--ease);
}

.footer__social a:hover {
    color: var(--gold);
}

.footer__col h5 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col ul li a {
    font-size: 0.85rem;
    color: var(--gray-300);
}

.footer__col ul li a:hover {
    color: var(--gold);
}

.footer__bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

.footer__bottom a {
    color: var(--gray-400);
}

.footer__bottom a:hover {
    color: var(--gold);
}


/* ==========================================================================
   PLACEHOLDER IMAGES (gray boxes for development)
   ========================================================================== */

.placeholder-img {
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.placeholder-dark {
    background: var(--gray-600);
    color: var(--gray-400);
}


/* ==========================================================================
   SCROLL ANIMATIONS (fade-in on scroll)
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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


/* ==========================================================================
   ACTIVE NAV LINK
   ========================================================================== */

.header__link--active {
    color: var(--gold) !important;
}

.header__link--active::after {
    width: 100% !important;
}


/* ==========================================================================
   PAGE HERO — Chi Sono
   ========================================================================== */

.page-hero {
    margin-top: 90px;
    padding: 0;
    background: var(--off-white);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0 80px 0;
}

.page-hero__content .subtitle {
    margin-bottom: 20px;
    margin-top: 8px;
}

.page-hero__content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.page-hero__content p {
    margin-bottom: 16px;
}

.page-hero__content .btn {
    margin-top: 20px;
    align-self: flex-start;
}

.page-hero__image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-hero__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: HORIZONTALE VERTICALE */
    object-position: 10% 25%;
}


/* ==========================================================================
   TIMELINE — Il Mio Percorso (Zigzag)
   ========================================================================== */

.timeline {
    background: var(--white);
    padding: var(--section-pad) 0;
    position: relative;
}

.timeline__header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline__header .label {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Gold vertical line */
.timeline__line {
    position: absolute;
    left: 50%;
    top: 280px;
    bottom: 120px;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            var(--gold) 15%,
            var(--gold) 85%,
            transparent);
    transform: translateX(-50%);
}

/* Each timeline block */
.timeline__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline__block:last-child {
    margin-bottom: 0;
}

/* Reversed block (photo left, text right) */
.timeline__block--reverse {
    direction: rtl;
}

.timeline__block--reverse>* {
    direction: ltr;
}

/* Dot on the timeline */
.timeline__block::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--gold-light);
}

.timeline__year {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.timeline__text h3 {
    margin-bottom: 20px;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.timeline__text p {
    margin-bottom: 14px;
}

.timeline__text strong {
    color: var(--black);
    font-weight: 600;
}

.timeline__image {
    overflow: hidden;
}

.timeline__image img,
.timeline__image .placeholder-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


/* ==========================================================================
   STATS BAND — Numeri Statement
   ========================================================================== */

.stats-band {
    background: var(--black);
    padding: 80px 0;
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
}

.stats-band__item {
    padding: 30px 40px;
    border-right: 1px solid var(--gray-600);
}

.stats-band__item:last-child {
    border-right: none;
}

.stats-band__number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}

.stats-band__label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-300);
    line-height: 1.5;
}


/* ==========================================================================
   PHILOSOPHY — Citazione Editoriale
   ========================================================================== */

.philosophy {
    background: var(--off-white);
    padding: var(--section-pad) 0;
    text-align: center;
}

.philosophy__content .label {
    margin-bottom: 30px;
}

.philosophy__quote {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--black);
    margin: 0 auto 40px;
    max-width: 700px;
    position: relative;
    padding: 40px 0;
}

.philosophy__quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.philosophy__quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.philosophy__content p {
    margin: 0 auto 16px;
    text-align: center;
}

.philosophy__signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gray-300);
    margin-top: 30px;
}


/* ==========================================================================
   ABOUT GALLERY — Griglia Editoriale
   ========================================================================== */

.about-gallery {
    background: var(--white);
    padding: var(--section-pad) 0;
}

.about-gallery__header {
    text-align: center;
    margin-bottom: 50px;
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.about-gallery__item {
    overflow: hidden;
    position: relative;
}

.about-gallery__item img,
.about-gallery__item .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about-gallery__item:hover img,
.about-gallery__item:hover .placeholder-img {
    transform: scale(1.04);
}

/* Tall item spans 2 rows */
.about-gallery__item--tall {
    grid-row: span 2;
}

/* Wide item spans 2 columns */
.about-gallery__item--wide {
    grid-column: span 2;
}


/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}


/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 980px) {
    :root {
        --section-pad: var(--section-pad-tablet);
    }

    /* Responsive image swap */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .container {
        padding: 0 30px;
    }

    /* Header */
    .header__nav-group {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .header__logo {
        margin: 0;
    }

    /* Hero */
    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__image {
        min-height: 350px;
    }

    .hero__image:last-child {
        display: none;
    }

    .hero__content {
        padding: 60px 30px;
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image img {
        height: 450px;
    }

    /* Reportage */
    .reportage__grid {
        grid-template-columns: 1fr;
    }

    .reportage__item {
        border-right: none;
        border-bottom: 1px solid var(--gray-600);
        padding: 35px 20px;
    }

    .reportage__item:last-child {
        border-bottom: none;
    }

    /* Portfolio */
    .portfolio__hero {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .portfolio__hero::after {
        display: none;
    }

    .portfolio__hero .placeholder-img,
    .portfolio__hero>img {
        position: relative !important;
        height: 300px;
        min-height: 300px;
        order: 1;
    }

    .portfolio__overlay {
        position: relative;
        padding: 36px 24px 40px;
        max-width: none;
        background: var(--white);
        order: 0;
    }

    .portfolio__overlay .label {
        color: var(--gold);
        text-shadow: none;
    }

    .portfolio__overlay h2 {
        font-size: 1.6rem;
        color: var(--black);
    }

    .portfolio__overlay p {
        color: var(--gray-400);
    }

    .portfolio__overlay .btn {
        border-color: var(--black);
        color: var(--black);
    }

    .portfolio__overlay .btn:hover {
        background: var(--black);
        color: var(--white);
    }

    .portfolio__strip {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .portfolio__strip-item {
        height: 220px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__item {
        border-right: none;
        border-bottom: 1px solid var(--gray-600);
    }

    .services__item:last-child {
        border-bottom: none;
    }

    /* Testimonials */
    .testimonials__carousel {
        min-height: 260px;
    }

    .testimonial__dots {
        bottom: 15px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Page Hero (Chi Sono) */
    .page-hero__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .page-hero__content {
        padding: 0 30px 60px;
        order: 1;
    }

    .page-hero__image {
        min-height: 400px;
        order: 0;
    }

    /* Timeline */
    .timeline__line {
        display: none;
    }

    .timeline__block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline__block::before {
        display: none;
    }

    .timeline__block--reverse {
        direction: ltr;
    }

    /* Stats Band */
    .stats-band__grid {
        grid-template-columns: 1fr;
    }

    .stats-band__item {
        border-right: none;
        border-bottom: 1px solid var(--gray-600);
        padding: 30px 20px;
    }

    .stats-band__item:last-child {
        border-bottom: none;
    }

    /* Gallery */
    .about-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .about-gallery__item--tall {
        grid-row: span 2;
    }

    .about-gallery__item--wide {
        grid-column: span 1;
    }
}


/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 600px) {
    :root {
        --section-pad: var(--section-pad-mobile);
    }

    .container {
        padding: 0 20px;
    }

    .header__logo-img {
        height: 50px;
    }

    .hero__content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 32px;
    }

    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .about__image img {
        height: 350px;
    }

    .destinations-band__item {
        font-size: 1.6rem;
        padding: 5px 18px;
        border-right: none;
    }

    .destinations-band__list {
        flex-wrap: wrap;
        gap: 5px;
    }

    .portfolio__main-image img {
        height: 300px;
    }

    .portfolio__thumbs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .portfolio__thumbs img {
        height: 120px;
    }

    .cta {
        min-height: 400px;
    }

    .cta__content {
        padding: 60px 20px;
    }

    /* Page Hero mobile */
    .page-hero__content .label {
        margin-bottom: 4px;
    }

    .page-hero__content .subtitle {
        margin-top: 4px;
        margin-bottom: 12px;
    }

    .page-hero__content h1 {
        font-size: 1.8rem;
    }

    .page-hero__content .btn {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        padding: 14px 28px;
    }

    .page-hero__image {
        min-height: 55vh;
        /* Verticale su mobile per mostrare tutta la sposa */
    }

    /* Stats mobile */
    .stats-band__number {
        font-size: 3rem;
    }

    /* Philosophy mobile */
    .philosophy__quote {
        font-size: 1.6rem;
    }

    /* Gallery mobile */
    .about-gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .about-gallery__item--tall {
        grid-row: span 1;
    }

    .about-gallery__item--wide {
        grid-column: span 1;
    }
}


/* ==========================================================================
   PORTFOLIO EDITORIAL GALLERY (Asymmetrical Grid)
   ========================================================================== */

.editorial-gallery {
    padding: 100px 0 140px;
    background: var(--white);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 40px;
    grid-auto-flow: dense;
}

.editorial-item {
    display: block;
    position: relative;
    cursor: pointer;
}

.editorial-item__img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
}

.editorial-item__img-wrapper img,
.editorial-item__img-wrapper .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Hover Effect: Zoom Cinematografico Lento */
.editorial-item:hover .editorial-item__img-wrapper img,
.editorial-item:hover .editorial-item__img-wrapper .placeholder-img {
    transform: scale(1.04);
}



/* Editorial Grid Layout Sizes */

.editorial-item--large {
    grid-column: span 12;
    height: 75vh;
}

.editorial-item--portrait-left {
    grid-column: 1 / 6;
    height: 80vh;
}

.editorial-item--landscape-right {
    grid-column: 7 / 13;
    height: 55vh;
    align-self: center;
}

.editorial-item--square-center {
    grid-column: 3 / 11;
    /* Più largo: 8 colonne invece di 6 */
    height: 50vh;
    /* Più basso: proporzione landscape 4:3 */
    margin-top: 50px;
    margin-bottom: 50px;
}

.editorial-item--landscape-left {
    grid-column: 1 / 8;
    height: 60vh;
    align-self: end;
}

.editorial-item--portrait-right {
    grid-column: 9 / 13;
    height: 85vh;
}

/* Mobile Responsiveness for Editorial Grid */
@media (max-width: 900px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .editorial-item {
        grid-column: 1 / -1 !important;
        height: auto !important;
    }

    .editorial-item__img-wrapper {
        aspect-ratio: 4/5;
    }

    .editorial-item--landscape-right .editorial-item__img-wrapper,
    .editorial-item--landscape-left .editorial-item__img-wrapper,
    .editorial-item--large .editorial-item__img-wrapper {
        aspect-ratio: 16/10;
    }


}


/* ==========================================================================
   WORDPRESS ADMIN BAR — Compensazione per header fixed
   Solo gli elementi position:fixed hanno bisogno dell'offset.
   Il contenuto in flusso normale è già spostato dal margin-top di <html>.
   ========================================================================== */

.admin-bar .header {
    top: 32px;
}

.admin-bar .header__mobile-menu {
    top: 122px; /* 90px header + 32px admin bar */
}

@media (max-width: 782px) {
    .admin-bar .header {
        top: 46px; /* WordPress usa 46px su mobile */
    }

    .admin-bar .header__mobile-menu {
        top: 136px;
    }
}