/* ======================================
   VALENTINA PAOLUCCI · CONSULENTE D'IMMAGINE
   Stylesheet brand-aligned
   ====================================== */

:root {
    /* Brand palette */
    --magenta: #BB2649;
    --magenta-dark: #8E1B37;
    --teal: #008080;
    --teal-dark: #005959;
    --lilla: #D8BFD8;
    --lilla-soft: #EFE0EF;
    --charcoal: #36454F;
    --charcoal-soft: #4D5C68;
    --crema: #FBF4E6;
    --crema-deep: #F5EAD0;
    --bianco: #FFFEFB;
    --nero: #1A1414;

    /* Typography */
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Poppins", system-ui, sans-serif;
    --font-accent: "Shrikhand", "Cormorant Garamond", serif;

    /* Layout */
    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ======================================
   RESET & BASE
   ====================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--crema);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--magenta); color: var(--crema); }

/* ======================================
   TYPOGRAPHY HELPERS
   ====================================== */
.section__eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 1.4rem;
    display: inline-block;
    position: relative;
    padding-left: 3.2rem;
}
.section__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.5rem;
    height: 1px;
    background: var(--magenta);
}

.section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.section__title em {
    font-style: italic;
    color: var(--magenta);
    font-weight: 500;
}

.section__sub {
    max-width: 38rem;
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    line-height: 1.7;
}

.section__header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    margin-bottom: clamp(3rem, 7vw, 5.5rem);
    text-align: left;
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.05rem 2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, color 0.3s, box-shadow 0.4s;
    will-change: transform;
}
.btn--primary {
    background: var(--magenta);
    color: var(--crema);
    box-shadow: 0 14px 30px -10px rgba(187, 38, 73, 0.55);
}
.btn--primary:hover {
    background: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(54, 69, 79, 0.55);
}
.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}
.btn--ghost:hover {
    background: var(--charcoal);
    color: var(--crema);
    transform: translateY(-3px);
}

/* ======================================
   NAV
   ====================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem var(--gutter);
    background: rgba(251, 244, 230, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(54, 69, 79, 0.07);
    transition: padding 0.3s, background 0.3s;
}
.nav.scrolled {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}
.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav__logo-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}
.nav__logo-tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--magenta);
    margin-top: 0.35rem;
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}
.nav__menu a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    transition: color 0.3s;
    position: relative;
}
.nav__menu a:not(.nav__cta):hover { color: var(--magenta); }
.nav__menu a:not(.nav__cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--magenta);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
    background: var(--magenta);
    color: var(--crema) !important;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}
.nav__cta:hover { background: var(--charcoal); transform: translateY(-2px); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ======================================
   HERO
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem var(--gutter) 4rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 80% 20%, var(--lilla-soft) 0%, var(--crema) 60%);
}
.hero__deco {
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    z-index: 0;
    opacity: 0.65;
    pointer-events: none;
    animation: drift 22s ease-in-out infinite alternate;
}
.hero__deco svg {
    width: 100%;
    height: 100%;
}
@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-3%, 4%) rotate(-2deg); }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.hero__eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--magenta);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}
.hero__title-l1, .hero__title-l2 {
    display: block;
    font-size: clamp(3.5rem, 12vw, 11rem);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__title-l1 { animation-delay: 0.4s; }
.hero__title-l2 {
    font-style: italic;
    color: var(--magenta);
    font-weight: 500;
    margin-left: clamp(2rem, 8vw, 8rem);
    animation-delay: 0.6s;
}
.hero__claim {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.95rem);
    line-height: 1.4;
    color: var(--charcoal);
    max-width: 30rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.9s 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__claim em {
    font-style: italic;
    color: var(--teal);
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal-soft);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.9s 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__scroll svg {
    width: 18px;
    height: 18px;
    animation: bounce 2.4s infinite;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ======================================
   ABOUT
   ====================================== */
.about {
    padding: clamp(5rem, 10vw, 9rem) var(--gutter);
    background: var(--crema);
    position: relative;
}
.about__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
}
.about__visual {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 460px;
}
.about__shape {
    position: absolute;
    border-radius: 50%;
}
.about__shape--1 {
    width: 80%; height: 80%;
    background: var(--lilla);
    top: 0; left: 0;
}
.about__shape--2 {
    width: 60%; height: 60%;
    background: var(--magenta);
    bottom: 0; right: 0;
    mix-blend-mode: multiply;
    opacity: 0.85;
}
.about__shape--3 {
    width: 35%; height: 35%;
    background: var(--teal);
    top: 35%; left: 30%;
    mix-blend-mode: multiply;
    opacity: 0.6;
}
.about__monogram {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(6rem, 18vw, 13rem);
    color: var(--crema);
    z-index: 2;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 6px 30px rgba(54, 69, 79, 0.25);
}

.about__lead {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.5;
    color: var(--charcoal);
    margin-bottom: 1.6rem;
    font-weight: 400;
}
.about__text p:not(.about__lead):not(.section__eyebrow) {
    margin-bottom: 1.2rem;
    color: var(--charcoal-soft);
    font-size: 1rem;
    line-height: 1.75;
}

/* ======================================
   SERVIZI SINGOLI
   ====================================== */
.services {
    padding: clamp(5rem, 10vw, 9rem) var(--gutter);
    background: var(--crema-deep);
    position: relative;
}
.services__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.service-card {
    background: var(--bianco);
    border-radius: 28px;
    padding: 2.6rem 2.2rem 2.4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
    border: 1px solid rgba(54, 69, 79, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}
.service-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    opacity: 0.18;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
}
.service-card--magenta::before { background: var(--magenta); }
.service-card--teal::before { background: var(--teal); }
.service-card--lilla::before { background: var(--lilla); opacity: 0.55; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -25px rgba(54, 69, 79, 0.25);
}
.service-card:hover::before {
    transform: scale(1.3);
    opacity: 0.32;
}

.service-card__num {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--magenta);
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.service-card--teal .service-card__num { color: var(--teal); }
.service-card--lilla .service-card__num { color: var(--charcoal); }

.service-card__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    font-weight: 500;
    line-height: 1;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}
.service-card__body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal-soft);
    margin-bottom: auto;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Service card tag (replaces price block in v2) */
.service-card__tag {
    margin-top: auto;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(54, 69, 79, 0.12);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--magenta);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.service-card--teal .service-card__tag { color: var(--teal); }
.service-card--lilla .service-card__tag { color: var(--charcoal); }

/* Services handoff: bridge from method to percorsi */
.services__handoff {
    max-width: var(--container);
    margin: clamp(3rem, 6vw, 4.5rem) auto 0;
    padding: 2.4rem clamp(1.8rem, 4vw, 3rem);
    background: var(--bianco);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border: 1px solid rgba(54, 69, 79, 0.08);
}
.services__handoff p {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--charcoal);
    line-height: 1.4;
    flex: 1 1 320px;
    max-width: 38rem;
    font-weight: 400;
}

/* ======================================
   PERCORSI
   ====================================== */
.paths {
    padding: clamp(5rem, 10vw, 9rem) var(--gutter);
    background: var(--crema);
    position: relative;
}
.paths__list {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.path {
    background: var(--bianco);
    border-radius: 24px;
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(54, 69, 79, 0.08);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.path:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px -25px rgba(54, 69, 79, 0.2);
}
.path--featured {
    background: linear-gradient(160deg, var(--lilla-soft) 0%, var(--bianco) 70%);
    border-color: var(--magenta);
    transform: translateY(-12px);
}
.path--featured:hover {
    transform: translateY(-18px);
}
.path--premium {
    background: var(--charcoal);
    color: var(--crema);
    border-color: var(--charcoal);
}
.path--premium .path__title,
.path--premium .path__lead { color: var(--crema); }
.path--premium .path__steps li,
.path--premium .path__bonus { color: rgba(251, 244, 230, 0.85); }
.path--premium .path__steps strong { color: var(--lilla); }
.path--premium .path__week {
    background: var(--magenta);
    color: var(--crema);
}
.path--premium .path__index {
    background: var(--magenta);
    color: var(--crema);
}
.path--premium .path__kicker { color: var(--lilla); }
.path--premium .path__time { color: rgba(251, 244, 230, 0.7); }
.path--premium .path__foot { border-top-color: rgba(251, 244, 230, 0.18); }

.path__head {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(54, 69, 79, 0.1);
}
.path--premium .path__head { border-bottom-color: rgba(251, 244, 230, 0.18); }
.path__index {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--lilla-soft);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.3rem;
}
.path__kicker {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--magenta);
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.path__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    font-weight: 500;
    line-height: 1;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}
.path__sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--teal);
}
.path--premium .path__sub { color: var(--lilla); }

.path__body { flex: 1; }
.path__lead {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal-soft);
    margin-bottom: 1.4rem;
}
.path__steps {
    margin-bottom: 1.4rem;
}
.path__steps li {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--charcoal-soft);
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(54, 69, 79, 0.12);
}
.path--premium .path__steps li { border-bottom-color: rgba(251, 244, 230, 0.12); }
.path__steps li:last-child { border-bottom: none; }
.path__steps strong {
    color: var(--magenta);
    font-weight: 500;
}
.path__steps--weeks li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.path__week {
    flex-shrink: 0;
    background: var(--lilla);
    color: var(--charcoal);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 0.15rem;
}
.path__bonus {
    font-size: 0.83rem;
    line-height: 1.6;
    background: var(--lilla-soft);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: var(--charcoal);
    margin-top: 1rem;
}
.path--premium .path__bonus {
    background: rgba(251, 244, 230, 0.08);
}
.path__bonus strong {
    color: var(--magenta);
    display: inline;
}
.path--premium .path__bonus strong { color: var(--lilla); }

.path__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.6rem;
    margin-top: auto;
    border-top: 1px solid rgba(54, 69, 79, 0.1);
    gap: 1rem;
    flex-wrap: wrap;
}
.path__time {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--charcoal-soft);
}
.path__cta {
    font-family: var(--font-body);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    color: var(--magenta);
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--magenta);
    border-radius: 999px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.path__cta:hover {
    background: var(--magenta);
    color: var(--crema);
    transform: translateY(-2px);
}
.path--premium .path__cta {
    color: var(--lilla);
    border-color: var(--lilla);
}
.path--premium .path__cta:hover {
    background: var(--lilla);
    color: var(--charcoal);
}

/* ======================================
   CONTATTI
   ====================================== */
.contact {
    padding: clamp(5rem, 10vw, 9rem) var(--gutter);
    background: var(--crema);
    position: relative;
}
.contact__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.contact__eyebrow {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}
.contact__eyebrow::before { display: none; }
.contact__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.contact__title em {
    font-style: italic;
    color: var(--magenta);
    font-weight: 500;
}
.contact__lead {
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.contact__methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
}
.contact__method {
    background: var(--bianco);
    border-radius: 18px;
    padding: 1.8rem 1.4rem;
    border: 1px solid rgba(54, 69, 79, 0.08);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact__method:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(54, 69, 79, 0.25);
    border-color: var(--magenta);
}
.contact__method-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--magenta);
    font-weight: 500;
}
.contact__method-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: var(--charcoal);
    color: var(--crema);
    padding: 4rem var(--gutter) 2rem;
}
.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.footer__name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
}
.footer__tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--lilla);
    margin-top: 0.6rem;
}
.footer__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--lilla);
    border-left: 2px solid var(--magenta);
    padding-left: 1.5rem;
}
.footer__copy {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(251, 244, 230, 0.5);
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 244, 230, 0.1);
    letter-spacing: 0.06em;
}

/* ======================================
   REVEAL ANIMATIONS
   ====================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 980px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 320px);
        height: 100vh;
        background: var(--crema);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        box-shadow: -20px 0 40px -20px rgba(0, 0, 0, 0.2);
    }
    .nav__menu.is-open { transform: translateX(0); }
    .nav__menu a { font-size: 1.1rem; }
    .nav__toggle { display: flex; z-index: 101; }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about__visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .services__grid,
    .paths__list {
        grid-template-columns: 1fr;
    }
    .path--featured { transform: none; }
    .path--featured:hover { transform: translateY(-6px); }

    .services__handoff {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__quote {
        border-left: none;
        border-top: 2px solid var(--magenta);
        padding-left: 0;
        padding-top: 1.5rem;
    }
}

@media (max-width: 580px) {
    .hero {
        padding-top: 7rem;
        min-height: 90vh;
    }
    .hero__title-l2 { margin-left: 1rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__scroll { display: none; }

    .service-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero__deco { animation: none; }
}
