/*
 * NavigaRent — Pagina Chi Siamo
 * Stile coerente con la home: navy/teal, Cormorant + Montserrat
 * @package NavigaRent
 */

.nrcs-page { font-family: var(--nr-body); color: var(--nr-text); }

/* utility condivisa */
.nrcs-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.nrcs-section-header h2 {
    font-family: var(--nr-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    color: var(--nr-navy);
    margin: 10px 0 14px;
    line-height: .98;
}

.nrcs-section-header--light h2 { color: #fff; }

.nrcs-section-header p {
    font-size: 15px;
    color: var(--nr-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   HERO
   ============================================ */
.nrcs-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.nrcs-hero__bg {
    position: absolute;
    inset: 0;
}

.nrcs-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    animation: nrcsZoom 18s ease-in-out infinite alternate;
}

@keyframes nrcsZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.nrcs-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(6,16,34,.92) 0%,
            rgba(6,16,34,.60) 35%,
            rgba(6,16,34,.20) 65%,
            rgba(6,16,34,.06) 100%
        );
}

.nrcs-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px 88px;
    max-width: 820px;
    width: 100%;
    margin-top: 120px;
}

.nrcs-hero__inner h1 {
    font-family: var(--nr-display);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: .95;
    font-weight: 600;
    color: #fff;
    margin: 14px 0 24px;
    letter-spacing: -.03em;
}

.nrcs-hero__inner h1 em { font-style: italic; color: rgba(223,246,251,.88); }

.nrcs-hero__quote {
    font-family: var(--nr-display);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: rgba(255,255,255,.90);
    margin: 0 0 10px;
    line-height: 1.4;
}

.nrcs-hero__attr {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* scroll hint */
.nrcs-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.nrcs-hero__scroll span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 999px;
    position: relative;
}

.nrcs-hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    animation: nrcsScroll 1.9s ease-in-out infinite;
}

@keyframes nrcsScroll {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    80%  { opacity: 0; transform: translateX(-50%) translateY(12px); }
    100% { opacity: 0; }
}

/* ============================================
   ESSENZA
   ============================================ */
.nrcs-essence {
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(63,169,201,.07), transparent 30%),
        #fff;
}

.nrcs-essence__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nrcs-essence__text h2 {
    font-family: var(--nr-display);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 600;
    color: var(--nr-navy);
    margin: 12px 0 24px;
    line-height: 1.02;
}

.nrcs-essence__text h2 em { font-style: italic; color: var(--nr-teal); }

.nrcs-essence__text p {
    font-size: 15px;
    color: var(--nr-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.nrcs-essence__text p:last-child { margin-bottom: 0; }

.nrcs-essence__claim {
    font-size: 16px !important;
    color: var(--nr-navy) !important;
    padding: 18px 22px;
    border-left: 4px solid var(--nr-teal);
    background: var(--nr-teal-soft);
    border-radius: 0 var(--nr-radius-sm) var(--nr-radius-sm) 0;
    margin-top: 28px !important;
    line-height: 1.6 !important;
}

.nrcs-essence__img {
    position: relative;
}

.nrcs-essence__img img {
    width: 100%;
    border-radius: var(--nr-radius);
    display: block;
    box-shadow: var(--nr-shadow);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.nrcs-essence__img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 14px 32px rgba(63,169,201,.32);
    gap: 2px;
}

/* ============================================
   TIMELINE
   ============================================ */
.nrcs-timeline-section {
    padding: 80px 0 88px;
    background: linear-gradient(180deg, #f4f7fb 0%, #eef2f8 100%);
}

.nrcs-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.nrcs-timeline::before {
    content: '';
    position: absolute;
    left: 84px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--nr-teal) 0%, rgba(63,169,201,.15) 100%);
}

.nrcs-tl-item {
    display: grid;
    grid-template-columns: 84px 28px 1fr;
    gap: 0 24px;
    align-items: flex-start;
    padding-bottom: 48px;
    position: relative;
}

.nrcs-tl-item:last-child { padding-bottom: 0; }

.nrcs-tl-year {
    font-family: var(--nr-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--nr-navy);
    line-height: 1;
    padding-top: 4px;
    text-align: right;
}

.nrcs-tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--nr-teal);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(63,169,201,.3);
    margin-top: 5px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nrcs-tl-content h3 {
    font-family: var(--nr-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--nr-navy);
    margin: 0 0 8px;
    line-height: 1;
}

.nrcs-tl-content p {
    font-size: 14px;
    color: var(--nr-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   TEAM
   ============================================ */
.nrcs-team {
    padding: 88px 0;
    background: #fff;
}

.nrcs-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.nrcs-team-card {
    background: #fff;
    border: 1px solid var(--nr-border);
    border-radius: var(--nr-radius);
    box-shadow: var(--nr-shadow-soft);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.nrcs-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nr-shadow);
}

.nrcs-team-card__img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.nrcs-team-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.nrcs-team-card:hover .nrcs-team-card__img-wrap img { transform: scale(1.04); }

.nrcs-team-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,21,40,.5) 0%, transparent 50%);
}

.nrcs-team-card__role {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nrcs-team-card__body {
    padding: 26px 26px 30px;
}

.nrcs-team-card__body h3 {
    font-family: var(--nr-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--nr-navy);
    margin: 0 0 10px;
    line-height: 1;
}

.nrcs-team-card__body blockquote {
    font-family: var(--nr-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--nr-teal);
    border: none;
    padding: 0;
    margin: 0 0 14px;
    line-height: 1.45;
}

.nrcs-team-card__body p {
    font-size: 14px;
    color: var(--nr-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   GOZZO
   ============================================ */
.nrcs-boat {
    padding: 88px 0;
    background: linear-gradient(180deg, #f4f7fb 0%, #eef2f8 100%);
}

.nrcs-boat__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nrcs-boat__img-wrap {
    border-radius: var(--nr-radius);
    overflow: hidden;
    box-shadow: var(--nr-shadow);
}

.nrcs-boat__img-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .55s ease;
}

.nrcs-boat__img-wrap:hover img { transform: scale(1.03); }

.nrcs-boat__content h2 {
    font-family: var(--nr-display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 600;
    color: var(--nr-navy);
    margin: 10px 0 10px;
    line-height: 1;
}

.nrcs-boat__intro {
    font-size: 15px;
    color: var(--nr-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.nrcs-boat__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nrcs-boat__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.nrcs-boat__feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--nr-teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nr-teal);
    flex-shrink: 0;
    margin-top: 1px;
}

.nrcs-boat__feat-icon svg { width: 19px; height: 19px; }

.nrcs-boat__features strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nr-navy);
    margin-bottom: 2px;
}

.nrcs-boat__features span {
    font-size: 13px;
    color: var(--nr-muted);
    line-height: 1.5;
}

.nrcs-boat__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--nr-border);
    border-radius: var(--nr-radius-sm);
    overflow: hidden;
    background: #fff;
}

.nrcs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    border-right: 1px solid var(--nr-border);
    text-align: center;
}

.nrcs-stat:last-child { border-right: none; }

.nrcs-stat__num {
    display: block;
    font-family: var(--nr-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--nr-navy);
    line-height: 1;
    margin-bottom: 5px;
}

.nrcs-stat__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nr-muted);
    line-height: 1.3;
}

/* ============================================
   PROMESSE
   ============================================ */
.nrcs-promises {
    background: linear-gradient(135deg, var(--nr-navy) 0%, var(--nr-navy-deep) 100%);
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}

.nrcs-promises::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(63,169,201,.12), transparent 50%);
    pointer-events: none;
}

.nrcs-promises .container { position: relative; z-index: 1; }

.nrcs-promises-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.nrcs-promise-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--nr-radius);
    padding: 36px 30px;
    transition: background .28s ease, transform .28s ease;
}

.nrcs-promise-card:hover {
    background: rgba(255,255,255,.10);
    transform: translateY(-4px);
}

.nrcs-promise-num {
    display: block;
    font-family: var(--nr-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: rgba(63,169,201,.4);
    line-height: 1;
    margin-bottom: 14px;
}

.nrcs-promise-card h3 {
    font-family: var(--nr-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1;
}

.nrcs-promise-card p {
    font-size: 14px;
    color: rgba(255,255,255,.68);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   CTA FINALE
   ============================================ */
.nrcs-cta {
    background: #fff;
    padding: 96px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nrcs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(63,169,201,.06), transparent 55%);
    pointer-events: none;
}

.nrcs-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.nrcs-cta__inner h2 {
    font-family: var(--nr-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    color: var(--nr-navy);
    margin: 12px 0 14px;
    line-height: .98;
}

.nrcs-cta__inner h2 em { font-style: italic; color: var(--nr-teal); }

.nrcs-cta__inner p {
    font-size: 16px;
    color: var(--nr-muted);
    line-height: 1.75;
    margin: 0 0 36px;
}

.nrcs-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nrcs-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    font-family: var(--nr-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(63,169,201,.28);
    transition: transform .22s ease, filter .22s ease;
}

.nrcs-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }

.nrcs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: rgba(37,211,102,.12);
    border: 1.5px solid rgba(37,211,102,.35);
    color: hsl(145 55% 30%);
    font-family: var(--nr-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .22s ease, transform .22s ease;
}

.nrcs-btn-ghost:hover { background: rgba(37,211,102,.22); transform: translateY(-2px); }
.nrcs-btn-ghost svg { width: 20px; height: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nrcs-essence__inner,
    .nrcs-boat__inner { grid-template-columns: 1fr; gap: 48px; }
    .nrcs-boat__inner { direction: ltr; }
    .nrcs-promises-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nrcs-hero { min-height: 58vh; }
    .nrcs-hero__inner { padding: 0 20px 70px; }
    .nrcs-team-grid { grid-template-columns: 1fr; max-width: 420px; }
    .nrcs-timeline::before { left: 70px; }
    .nrcs-tl-item { grid-template-columns: 70px 24px 1fr; }
    .nrcs-tl-year { font-size: 1.5rem; }
    .nrcs-essence__img-badge { width: 90px; height: 90px; right: -10px; bottom: -10px; }
    .nrcs-promises-grid { grid-template-columns: 1fr; gap: 18px; }
    .nrcs-boat__stats { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 480px) {
    .nrcs-timeline::before { left: 56px; }
    .nrcs-tl-item { grid-template-columns: 56px 20px 1fr; gap: 0 16px; }
    .nrcs-tl-year { font-size: 1.3rem; }
    .nrcs-cta__actions { flex-direction: column; }
    .nrcs-btn-primary, .nrcs-btn-ghost { width: 100%; justify-content: center; }
    .nrcs-boat__stats { grid-template-columns: 1fr; }
    .nrcs-stat { border-right: none; border-bottom: 1px solid var(--nr-border); }
    .nrcs-stat:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
    .nrcs-hero__bg img { animation: none; }
    .nrcs-hero__scroll span::after { animation: none; }
    .nrcs-team-card, .nrcs-promise-card { transition: none; }
}
