/* ============================================================
   VILLA GOUSTER — foaie de stil principală
   Paletă brand: Navy #222C4F · Copper #A9603F · Humus #D2BEA5 · White Chocolate #F9F0E3
   ============================================================ */

:root {
    --navy:        #222C4F;
    --navy-deep:   #1A2240;
    --navy-soft:   #2E3A66;
    --copper:      #A9603F;
    --copper-dark: #8C4A2F;
    --copper-light:#C17F5C;
    --humus:       #D2BEA5;
    --cream:       #F9F0E3;
    --cream-soft:  #FCF7EE;
    --white:       #FFFFFF;
    --ink:         #2B2B33;

    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-sans:   'Jost', 'Segoe UI', sans-serif;

    --container:   1200px;
    --header-h:    84px;
    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--cream-soft);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--copper-dark); }
ul { list-style: none; }

::selection { background: var(--copper); color: var(--white); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--navy); color: var(--white); padding: .75rem 1.5rem;
}
.skip-link:focus { left: 0; }

/* ── Tipografie ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }

.script {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--copper);
}
.section-kicker {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    color: var(--copper);
    margin-bottom: .35rem;
}
.section-title { margin-bottom: 1.25rem; }
.lead { font-size: 1.4rem; font-weight: 300; color: #44444e; }

.divider {
    width: 72px; height: 2px; border: 0;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    margin: 1.75rem 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.text-center { text-align: center; }

/* ── Butoane ── */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border: 1px solid var(--copper);
    background: var(--copper);
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
}
.btn::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--copper-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
    z-index: -1;
}
.btn:hover { color: var(--white); border-color: var(--copper-dark); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn { z-index: 1; }

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(249, 240, 227, .55);
}
.btn-ghost::after { background: rgba(249, 240, 227, .12); }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

.btn-header {
    padding: .65rem 1.4rem;
    font-size: .9rem;
    white-space: nowrap;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
    padding: 1.1rem 0;
}
body.no-hero .site-header,
.site-header.is-scrolled {
    background: rgba(26, 34, 64, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 30px rgba(16, 21, 41, .35);
    padding: .55rem 0;
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-crest { width: 40px; height: 48px; transition: transform .4s var(--ease); }
.brand:hover .brand-crest { transform: translateY(-2px); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-villa {
    font-family: var(--font-script);
    font-size: 1.15rem;
    color: var(--copper-light);
    margin-bottom: -2px;
    margin-left: 2px;
}
.brand-gouster {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: .04em;
    color: var(--cream);
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 1.9rem; }
.site-nav a {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(249, 240, 227, .82);
    position: relative;
    padding: .35rem 0;
}
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--copper-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}
.site-nav a:hover, .site-nav a.is-active { color: var(--white); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: none;
    border: 1px solid rgba(249, 240, 227, .35);
    border-radius: 3px;
    cursor: pointer;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 1.5px;
    margin: 0 auto;
    background: var(--cream);
    transition: all .35s var(--ease);
}

/* ── Hero (prima pagină) ── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 120%, rgba(169, 96, 63, .22), transparent 55%),
        radial-gradient(ellipse at 50% -20%, rgba(46, 58, 102, .9), transparent 60%),
        linear-gradient(180deg, var(--navy-deep), var(--navy) 55%, var(--navy-deep));
    overflow: hidden;
    padding: calc(var(--header-h) + 2rem) 0 4rem;
}
.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: repeating-conic-gradient(from 0deg at 50% 50%,
        transparent 0deg,
        transparent 5deg,
        rgba(249, 240, 227, .018) 7deg,
        transparent 9deg,
        transparent 15deg);
    animation: rays-rotate 120s linear infinite;
}
@keyframes rays-rotate { to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 1.5rem; }
.hero-crest {
    width: clamp(110px, 16vw, 160px);
    height: auto;
    margin: 0 auto 1.8rem;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
    animation: crest-in 1.4s var(--ease) both;
}
@keyframes crest-in {
    from { opacity: 0; transform: translateY(26px) scale(.92); }
    to   { opacity: 1; transform: none; }
}
.hero-villa {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--copper-light);
    margin-bottom: -1.2rem;
    animation: fade-up 1.2s .25s var(--ease) both;
}
.hero h1 {
    color: var(--cream);
    letter-spacing: .06em;
    animation: fade-up 1.2s .4s var(--ease) both;
}
.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
    color: var(--humus);
    margin-top: 1rem;
    animation: fade-up 1.2s .55s var(--ease) both;
}
.hero-sub {
    color: rgba(249, 240, 227, .75);
    max-width: 560px;
    margin: 1.4rem auto 2.4rem;
    animation: fade-up 1.2s .7s var(--ease) both;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 1.2s .85s var(--ease) both;
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

.scroll-hint {
    position: absolute;
    bottom: 2.2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px; height: 44px;
    border: 1.5px solid rgba(249, 240, 227, .4);
    border-radius: 14px;
    animation: fade-up 1.2s 1.2s var(--ease) both;
}
.scroll-hint::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    width: 3px; height: 8px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--copper-light);
    animation: scroll-dot 2.2s ease-in-out infinite;
}
@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60%      { transform: translateY(12px); opacity: 0; }
}

/* ── Hero interior (pagini secundare) ── */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(3rem, 7vw, 5rem);
    background:
        radial-gradient(ellipse at 80% 110%, rgba(169, 96, 63, .18), transparent 50%),
        linear-gradient(180deg, var(--navy-deep), var(--navy));
    text-align: center;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 96, 63, .6), transparent);
}
.page-hero .section-kicker { color: var(--copper-light); }
.page-hero h1 { color: var(--cream); font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-hero p {
    color: rgba(249, 240, 227, .75);
    max-width: 620px;
    margin: 1rem auto 0;
}

/* ── Secțiuni alternate ── */
.section-cream { background: var(--cream-soft); }
.section-warm  { background: var(--cream); }
.section-navy  {
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
    color: rgba(249, 240, 227, .85);
}
.section-navy h2, .section-navy h3 { color: var(--cream); }

/* ── Grid 2 coloane ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.split.reverse > .split-media { order: 2; }

.split-media {
    position: relative;
}
.panel {
    position: relative;
    background: linear-gradient(160deg, var(--navy), var(--navy-soft));
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 28px 28px 0 -2px var(--humus);
}
.panel.copper { background: linear-gradient(160deg, var(--copper-dark), var(--copper)); box-shadow: 28px 28px 0 -2px var(--navy); }
.panel.humus  { background: linear-gradient(160deg, var(--humus), #C3AC8E); box-shadow: 28px 28px 0 -2px var(--copper); }
.panel-crest {
    width: 45%;
    opacity: .92;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, .35));
    transition: transform .6s var(--ease);
}
.panel:hover .panel-crest { transform: scale(1.04) translateY(-4px); }
.panel-caption {
    position: absolute;
    bottom: 1.2rem; left: 1.5rem; right: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(249, 240, 227, .85);
    text-align: center;
}

/* ── Carduri piloni ── */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}
.pillar {
    background: var(--white);
    border: 1px solid rgba(169, 96, 63, .18);
    padding: 2.6rem 2rem;
    text-align: center;
    position: relative;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 46px; height: 3px;
    background: var(--copper);
    transition: width .45s var(--ease);
}
.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(34, 44, 79, .14);
    border-color: rgba(169, 96, 63, .4);
}
.pillar:hover::before { width: 90px; }
.pillar-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.4rem;
    color: var(--copper);
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 { margin-bottom: .8rem; }
.pillar p { font-size: 1.1rem; color: #4d4d57; }

/* ── Bandă citat ── */
.quote-band {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/crest.svg') no-repeat center / 380px auto;
    opacity: .05;
    pointer-events: none;
}
.quote-band blockquote {
    position: relative;
    font-family: var(--font-script);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}
.quote-band cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: .95rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--humus);
}

/* ── Listă cu marcaje copper ── */
.feature-list { margin-top: 1.5rem; }
.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .9rem;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .65em;
    width: 12px; height: 1.5px;
    background: var(--copper);
}
.feature-list strong { font-weight: 500; color: var(--navy); }
.section-navy .feature-list strong { color: var(--cream); }

/* ── Pași (evenimente) ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
    counter-reset: pas;
}
.step {
    counter-increment: pas;
    background: var(--white);
    padding: 2.6rem 2rem 2.2rem;
    border-top: 3px solid var(--copper);
    position: relative;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(34, 44, 79, .12); }
.step::before {
    content: counter(pas, decimal-leading-zero);
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--humus);
    line-height: 1;
    margin-bottom: 1rem;
}
.step h3 { margin-bottom: .7rem; }
.step p { font-size: 1.1rem; color: #4d4d57; }

/* ── Tipuri de evenimente ── */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.event-card {
    position: relative;
    padding: 2.4rem 1.9rem;
    background: linear-gradient(165deg, var(--navy), var(--navy-soft));
    color: rgba(249, 240, 227, .82);
    overflow: hidden;
    transition: transform .45s var(--ease);
}
.event-card::after {
    content: '';
    position: absolute;
    right: -36px; bottom: -46px;
    width: 130px; height: 156px;
    background: url('/assets/img/crest.svg') no-repeat center / contain;
    opacity: .09;
    transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.event-card:hover { transform: translateY(-6px); }
.event-card:hover::after { opacity: .18; transform: rotate(-6deg); }
.event-card h3 { color: var(--cream); font-size: 1.45rem; margin-bottom: .5rem; }
.event-card .script { font-size: 1.7rem; display: block; margin-bottom: .2rem; color: var(--copper-light); }
.event-card p { font-size: 1.08rem; }

/* ── Galerie ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.gallery-tile {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.gallery-tile:nth-child(3n+1) { background: linear-gradient(160deg, var(--navy), var(--navy-soft)); }
.gallery-tile:nth-child(3n+2) { background: linear-gradient(160deg, var(--copper-dark), var(--copper)); }
.gallery-tile:nth-child(3n)   { background: linear-gradient(160deg, #C3AC8E, var(--humus)); }
.gallery-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/crest.svg') no-repeat center 38% / 32% auto;
    opacity: .14;
    transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.gallery-tile:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(34, 44, 79, .2); }
.gallery-tile:hover::before { transform: scale(1.08); opacity: .22; }
.gallery-tile span {
    position: relative;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, .92);
}
.gallery-tile:nth-child(3n) span { color: var(--navy); }

.gallery-note {
    margin-top: 2.5rem;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: #5e5e69;
}

/* ── Bandă CTA finală ── */
.cta-band { text-align: center; }
.cta-band .section-kicker { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2.2rem; }

/* ── Formular contact ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-meta { margin-top: 2rem; }
.contact-meta li {
    display: flex;
    align-items: baseline;
    gap: .9rem;
    margin-bottom: 1.1rem;
    font-size: 1.2rem;
}
.contact-meta .label {
    font-size: .88rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper);
    min-width: 104px;
}

.form-card {
    background: var(--white);
    border: 1px solid rgba(169, 96, 63, .18);
    border-top: 3px solid var(--copper);
    padding: clamp(1.8rem, 4vw, 2.8rem);
    box-shadow: 0 24px 60px rgba(34, 44, 79, .08);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: .9rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 400;
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--cream-soft);
    border: 1px solid rgba(34, 44, 79, .18);
    padding: .85rem 1rem;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(169, 96, 63, .14);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.6rem; width: 100%; }

.form-alert {
    padding: 1rem 1.3rem;
    margin-bottom: 1.4rem;
    font-size: 1.08rem;
    border-left: 3px solid;
}
.form-alert.success { background: #F0F6EF; border-color: #5A8A57; color: #2F4D2D; }
.form-alert.error   { background: #FAEFEC; border-color: #B3492C; color: #6E2A17; }

/* honeypot ascuns */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Footer ── */
.site-footer {
    background: linear-gradient(180deg, var(--navy-deep), #141A33);
    color: rgba(249, 240, 227, .72);
    border-top: 2px solid var(--copper);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
}
.footer-crest { width: 72px; margin-bottom: 1.1rem; }
.footer-motto { font-size: 1.6rem; line-height: 1; margin-bottom: .8rem; }
.footer-motto .script { font-size: 1.4rem; }
.footer-motto strong {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--cream);
}
.footer-desc { font-size: 1.05rem; max-width: 320px; }
.site-footer h3 {
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--humus);
    margin-bottom: 1.2rem;
}
.footer-nav li, .footer-contact li { margin-bottom: .55rem; }
.footer-nav a, .footer-contact a { color: rgba(249, 240, 227, .78); font-size: 1.08rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--copper-light); }
.footer-social { display: flex; gap: .9rem; margin-top: 1.2rem; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(249, 240, 227, .25);
    border-radius: 50%;
    color: rgba(249, 240, 227, .72);
    transition: all .35s var(--ease);
}
.footer-social a:hover { border-color: var(--copper); color: var(--copper-light); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(249, 240, 227, .1);
    padding: 1.4rem 1.5rem;
    text-align: center;
    font-size: .95rem;
    color: rgba(249, 240, 227, .5);
}

/* ── Panouri cu fotografie ── */
.panel.photo { padding: 0; }
.panel.photo > img.panel-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.panel.photo:hover > img.panel-photo { transform: scale(1.045); }
.panel.photo::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(20, 26, 51, .78));
    pointer-events: none;
}
.panel.photo .panel-caption { z-index: 2; color: rgba(249, 240, 227, .95); }

/* ── Hero interior cu fotografie ── */
.page-hero--photo {
    background-size: cover;
    background-position: center 35%;
}
.page-hero--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 34, 64, .9), rgba(34, 44, 79, .82));
}
.page-hero--photo .container { position: relative; z-index: 1; }

/* ── Bandă foto parallax ── */
.photo-band {
    position: relative;
    min-height: clamp(340px, 48vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 1.5rem;
}
.photo-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 34, 64, .62), rgba(26, 34, 64, .48));
}
.photo-band-content { position: relative; z-index: 1; max-width: 760px; }
.photo-band .script {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--cream);
    text-shadow: 0 4px 26px rgba(0, 0, 0, .45);
    line-height: 1.3;
}
.photo-band-sub {
    margin-top: 1rem;
    font-size: .95rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--humus);
}
@media (max-width: 1024px) {
    .photo-band { background-attachment: scroll; }
}

/* ── Video portret (telefon) ── */
.video-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-frame video {
    width: min(310px, 78%);
    border-radius: 18px;
    border: 1px solid rgba(249, 240, 227, .25);
    box-shadow: 0 30px 70px rgba(16, 21, 41, .45);
    background: var(--navy-deep);
    display: block;
}
.video-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}
.video-card { text-align: center; }
.video-card video {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(34, 44, 79, .22);
    box-shadow: 0 24px 60px rgba(34, 44, 79, .22);
    background: var(--navy-deep);
    display: block;
}
.video-card figcaption {
    margin-top: 1.1rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--navy);
}

/* ── Galerie cu fotografii reale ── */
.gallery-tile > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.gallery-tile:hover > img { transform: scale(1.06); }
.gallery-tile.photo::before {
    background: linear-gradient(180deg, transparent 45%, rgba(20, 26, 51, .72));
    opacity: 1;
}
.gallery-tile.photo span { color: rgba(249, 240, 227, .95); z-index: 2; }
.gallery-tile.photo:hover::before { transform: none; opacity: 1; }

/* ── Lightbox ── */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(16, 21, 41, .94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.lb-overlay.open { opacity: 1; }
.lb-overlay img {
    max-width: min(92vw, 1400px);
    max-height: 86vh;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
    border: 1px solid rgba(249, 240, 227, .15);
}
.lb-caption {
    position: absolute;
    bottom: 1.6rem; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(249, 240, 227, .85);
    white-space: nowrap;
}
.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border: 1px solid rgba(249, 240, 227, .35);
    border-radius: 50%;
    background: rgba(26, 34, 64, .55);
    color: var(--cream);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.lb-btn:hover { background: var(--copper); border-color: var(--copper); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-close {
    top: 1.2rem; right: 1.2rem;
    transform: none;
    width: 46px; height: 46px;
    font-size: 1.2rem;
}
@media (max-width: 640px) {
    .lb-btn { width: 42px; height: 42px; }
    .lb-caption { font-size: .95rem; }
}

/* ── Animații reveal la scroll ── */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .18s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .31s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .44s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .57s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .7s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pillars, .steps { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .btn-header { display: none; }

    .nav-toggle { display: flex; margin-left: auto; }
    .site-nav {
        position: fixed;
        inset: 0;
        background: linear-gradient(180deg, var(--navy-deep), var(--navy));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity .45s var(--ease), visibility .45s;
        margin-left: 0;
        z-index: 105;
    }
    .site-nav.is-open { opacity: 1; visibility: visible; }
    .site-nav ul { flex-direction: column; text-align: center; gap: 1.4rem; }
    .site-nav a {
        font-family: var(--font-serif);
        font-size: 1.7rem;
        text-transform: none;
        letter-spacing: .02em;
    }
    .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); }

    .split { grid-template-columns: 1fr; }
    .split.reverse > .split-media { order: 0; }
    .panel { min-height: 320px; box-shadow: 16px 16px 0 -2px var(--humus); }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 640px) {
    .pillars, .steps, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
}
