:root {
    --ink: #162a2a;
    --ink-soft: #526260;
    --forest: #173f3b;
    --forest-2: #245b53;
    --sage: #a9bd9e;
    --sage-soft: #eaf0e6;
    --lake: #5d91a5;
    --lake-soft: #e7f1f4;
    --ivory: #f7f4ec;
    --cream: #fbfaf6;
    --white: #ffffff;
    --line: rgba(22, 42, 42, .12);
    --shadow: 0 24px 70px rgba(18, 50, 47, .13);
    --radius-sm: 16px;
    --radius-md: 26px;
    --radius-lg: 42px;
    --content: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 6vw, 6.75rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4.35rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p:last-child {
    margin-bottom: 0;
}

.content-width {
    max-width: var(--content);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 72px);
}

.section-padding {
    padding-block: clamp(82px, 10vw, 148px);
}

.section-padding-sm {
    padding-block: clamp(62px, 8vw, 104px);
}

.bg-ivory {
    background: var(--ivory);
}

.bg-sage {
    background: var(--sage-soft);
}

.bg-lake {
    background: var(--lake-soft);
}

.text-balance {
    text-wrap: balance;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--forest-2);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: rgba(255, 255, 255, .72);
}

.lead-copy {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.section-heading {
    max-width: 930px;
    margin-bottom: clamp(38px, 6vw, 72px);
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-brand {
    padding: 13px 22px;
    color: var(--white);
    background: var(--forest);
    border: 1px solid var(--forest);
    box-shadow: 0 10px 28px rgba(23, 63, 59, .18);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--white);
    background: var(--forest-2);
    border-color: var(--forest-2);
}

.btn-outline-brand {
    padding: 13px 22px;
    color: var(--forest);
    background: transparent;
    border: 1px solid rgba(23, 63, 59, .35);
}

.btn-outline-brand:hover {
    color: var(--white);
    background: var(--forest);
}

.btn-lg {
    padding: 17px 29px;
    font-size: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fbfaf6;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 36px rgba(22, 42, 42, .08);
}

.topbar {
    padding-block: 8px;
    color: rgba(255, 255, 255, .78);
    background: var(--forest);
    font-size: .78rem;
}

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

.topbar i {
    margin-right: 6px;
    color: var(--sage);
}

.navbar {
    min-height: 86px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    border-radius: 50% 50% 48% 52% / 48% 48% 52% 52%;
    font-size: 1.25rem;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1.18rem;
    letter-spacing: .11em;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 5px;
}

.navbar .nav-link {
    position: relative;
    padding: 10px 12px !important;
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
}

.navbar .nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
    content: "";
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--forest);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.hero {
    position: relative;
    display: grid;
    width: 100%;
    min-height: min(800px, calc(100vh - 118px));
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(9, 34, 32, .92) 0%, rgba(9, 34, 32, .76) 34%, rgba(9, 34, 32, .15) 67%, rgba(9, 34, 32, .02) 100%), url("../images/camelia-linen-welcome.png");
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    right: clamp(18px, 4vw, 70px);
    bottom: clamp(18px, 4vw, 54px);
    z-index: -1;
    width: clamp(130px, 18vw, 290px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 50%;
    content: "";
}

.hero-content {
    max-width: 790px;
    padding-block: 90px;
    color: var(--white);
}

.hero .eyebrow {
    color: #d7e2cf;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
}

.hero h1 em {
    color: #dce8d5;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.hero p {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.06rem, 1.5vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.hero .btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .46);
}

.hero .btn-ghost:hover {
    color: var(--forest);
    background: var(--white);
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(9, 34, 32, .97) 0%, rgba(9, 34, 32, .92) 52%, rgba(9, 34, 32, .50) 100%),
        url("../images/camelia-clean-window-orta.png") center / cover;
}

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

.trust-item {
    display: flex;
    min-height: 125px;
    align-items: center;
    gap: 18px;
    padding: 26px clamp(18px, 3vw, 42px);
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: var(--forest);
    background: var(--sage);
    border-radius: 50%;
    font-size: 1.15rem;
}

.trust-item strong {
    display: block;
    color: var(--white);
    font-size: .98rem;
}

.trust-item span {
    color: rgba(255, 255, 255, .66);
    font-size: .82rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}

.image-panel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(23, 63, 59, .03), rgba(23, 63, 59, .16)), url("../images/camelia-lake-interior.png");
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.presentation-image-panel {
    background-image: linear-gradient(180deg, rgba(23, 63, 59, .02), rgba(23, 63, 59, .18)), url("../images/camelia-presentazione-lago.png");
    background-position: center;
}

.image-panel-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 260px;
    padding: 22px;
    color: var(--white);
    background: rgba(23, 63, 59, .92);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(12px);
}

.image-panel-badge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    gap: 20px;
    margin: 34px 0;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-row i {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    color: var(--forest);
    background: var(--sage-soft);
    border-radius: 50%;
}

.feature-row strong {
    display: block;
    margin-bottom: 2px;
}

.feature-row span {
    color: var(--ink-soft);
    font-size: .92rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 360px;
    padding: clamp(28px, 4vw, 45px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.service-card::after {
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 128px;
    height: 128px;
    background: var(--sage-soft);
    border-radius: 50%;
    transition: transform .35s ease;
    content: "";
}

.service-card:hover {
    z-index: 1;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.service-card:hover::after {
    transform: scale(1.4);
}

.service-number {
    display: block;
    margin-bottom: 46px;
    color: var(--lake);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.service-card i {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    place-items: center;
    color: var(--forest);
    background: var(--sage-soft);
    border-radius: 18px;
    font-size: 1.45rem;
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card p {
    color: var(--ink-soft);
}

.service-card .card-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--forest);
    font-size: .87rem;
    font-weight: 800;
}

.highlight-panel {
    position: relative;
    padding: clamp(42px, 7vw, 88px);
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
    border-radius: var(--radius-lg);
}

.highlight-panel::before {
    position: absolute;
    top: -150px;
    right: -90px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.highlight-panel h2,
.highlight-panel h3 {
    color: var(--white);
}

.highlight-panel p {
    color: rgba(255, 255, 255, .72);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 45px;
    background: rgba(255, 255, 255, .15);
}

.stat {
    padding: 28px 18px;
    background: var(--forest);
}

.stat strong {
    display: block;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1;
}

.stat span {
    color: rgba(255, 255, 255, .62);
    font-size: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.process-step::after {
    position: absolute;
    top: 53px;
    right: -23px;
    z-index: 2;
    width: 24px;
    height: 1px;
    background: var(--sage);
    content: "";
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-number {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    border-radius: 50%;
    font-weight: 800;
}

.process-step p {
    color: var(--ink-soft);
    font-size: .9rem;
}

.testimonial-card {
    height: 100%;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.testimonial-stars {
    margin-bottom: 24px;
    color: #b28c45;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    margin-bottom: 30px;
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    line-height: 1.55;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testimonial-author span:first-child {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--forest);
    background: var(--sage-soft);
    border-radius: 50%;
    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author small {
    color: var(--ink-soft);
}

.swiper {
    padding-bottom: 54px;
}

.swiper-pagination-bullet-active {
    background: var(--forest);
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 470px;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
    isolation: isolate;
}

.page-hero::before,
.page-hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
}

.page-hero::before {
    top: -170px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: rgba(169, 189, 158, .16);
}

.page-hero::after {
    right: 25%;
    bottom: -170px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, .16);
}

.page-hero-content {
    max-width: 980px;
    padding-block: 92px 82px;
}

.page-hero h1 {
    margin-bottom: 22px;
    color: var(--white);
}

.page-hero p {
    max-width: 750px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.18rem;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
}

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

.value-grid,
.team-grid,
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.value-card i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--forest);
    background: var(--sage-soft);
    border-radius: 18px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--ink-soft);
}

.team-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.team-portrait {
    display: grid;
    min-height: 320px;
    place-items: center;
    color: var(--forest);
    background:
        radial-gradient(circle at 70% 25%, rgba(255, 255, 255, .85) 0 16%, transparent 17%),
        linear-gradient(145deg, var(--sage-soft), var(--lake-soft));
}

.team-portrait i {
    font-size: 5.5rem;
    opacity: .75;
}

.team-card-content {
    padding: 30px;
}

.team-card-content small {
    display: block;
    margin-bottom: 10px;
    color: var(--forest-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.event-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(11, 40, 38, .05), rgba(11, 40, 38, .92)),
        url("../images/camelia-orta-events.png");
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-md);
}

.event-card:nth-child(2) {
    background-image:
        linear-gradient(180deg, rgba(11, 40, 38, .04), rgba(11, 40, 38, .92)),
        url("../images/camelia-orta-music.png");
    background-position: center;
}

.event-card:nth-child(3) {
    background-image:
        linear-gradient(180deg, rgba(11, 40, 38, .04), rgba(11, 40, 38, .92)),
        url("../images/camelia-orta-walk.png");
    background-position: center;
}

.event-date {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: var(--forest);
    background: var(--sage);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
}

.event-card h3 {
    color: var(--white);
}

.event-card p {
    color: rgba(255, 255, 255, .72);
}

.event-card a {
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 40px;
}

.contact-card,
.form-panel {
    padding: clamp(28px, 4vw, 48px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.contact-list {
    display: grid;
    gap: 22px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list i {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    color: var(--forest);
    background: var(--sage-soft);
    border-radius: 50%;
}

.contact-list strong,
.contact-list span {
    display: block;
}

.contact-list span {
    color: var(--ink-soft);
    font-size: .92rem;
}

.form-label {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 54px;
    padding: 13px 16px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 13px;
}

textarea.form-control {
    min-height: 145px;
}

.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--sage);
    box-shadow: 0 0 0 .22rem rgba(169, 189, 158, .22);
}

.form-check-input:checked {
    background-color: var(--forest);
    border-color: var(--forest);
}

.form-status {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 13px;
}

.form-status.success {
    color: #174b37;
    background: #e3f4e9;
}

.form-status.error {
    color: #7d2d2d;
    background: #fae7e7;
}

.map-placeholder {
    display: grid;
    min-height: 360px;
    place-items: center;
    padding: 30px;
    text-align: center;
    background:
        linear-gradient(rgba(231, 241, 244, .88), rgba(231, 241, 244, .88)),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(93, 145, 165, .11) 21px, rgba(93, 145, 165, .11) 22px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.map-placeholder i {
    display: block;
    margin-bottom: 14px;
    color: var(--forest);
    font-size: 2.5rem;
}

.map-consent {
    display: grid;
    min-height: 360px;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(rgba(231, 241, 244, .88), rgba(231, 241, 244, .88)),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(93, 145, 165, .11) 21px, rgba(93, 145, 165, .11) 22px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.map-consent > div {
    padding: 30px;
}

.map-consent i {
    display: block;
    margin-bottom: 14px;
    color: var(--forest);
    font-size: 2.5rem;
}

.map-consent-note {
    max-width: 440px;
    margin: 16px auto 0;
    font-size: .88rem;
}

.map-frame {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.cta-band {
    padding-block: clamp(58px, 7vw, 92px);
    color: var(--white);
    background: var(--forest);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-band h2 {
    max-width: 820px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3.65rem);
}

.cta-band .btn-light {
    flex: 0 0 auto;
    color: var(--forest);
}

.site-footer {
    padding-top: 80px;
    color: rgba(255, 255, 255, .64);
    background: #102b29;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.footer-brand .brand-mark {
    color: var(--forest);
    background: var(--sage);
}

.footer-intro {
    max-width: 480px;
}

.site-footer h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footer-contacts i {
    color: var(--sage);
}

.footer-contacts a {
    color: var(--white);
    font-weight: 700;
}

.footer-contacts a:hover {
    color: var(--sage);
}

.footer-bottom {
    display: flex;
    margin-top: 65px;
    padding-block: 22px;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: .78rem;
}

.footer-legal {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.footer-legal a:hover {
    color: var(--sage);
}

.legal-document {
    max-width: 940px;
}

.legal-document h2 {
    margin-top: 46px;
    margin-bottom: 16px;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p,
.legal-document li {
    color: var(--ink-soft);
}

.legal-document ul {
    margin-bottom: 22px;
    padding-left: 22px;
}

.legal-document li + li {
    margin-top: 8px;
}

.legal-document .legal-meta {
    margin-bottom: 36px;
    color: var(--ink-soft);
    font-size: .9rem;
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1030;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    color: var(--white);
    background: var(--forest);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(14, 44, 41, .28);
    font-size: .82rem;
    font-weight: 800;
}

.floating-contact:hover {
    color: var(--forest);
    background: var(--sage);
}

@media (max-width: 1199.98px) {
    .service-grid,
    .value-grid,
    .team-grid,
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        margin: 15px -20px -8px;
        padding: 18px 20px 24px;
        background: var(--cream);
        border-top: 1px solid var(--line);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar .nav-link {
        padding: 11px 0 !important;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 720px;
        background-image: linear-gradient(90deg, rgba(9, 34, 32, .92) 0%, rgba(9, 34, 32, .72) 65%, rgba(9, 34, 32, .30) 100%), url("../images/camelia-linen-welcome.png");
        background-position: 58% center;
    }

    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .image-panel {
        min-height: 520px;
    }

    .cta-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 680px;
        background-position: 65% center;
    }

    .hero-content {
        padding-block: 75px;
    }

    .trust-grid,
    .service-grid,
    .value-grid,
    .team-grid,
    .event-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .process-step::after {
        display: none;
    }

    .image-panel {
        min-height: 440px;
        border-radius: var(--radius-md);
    }

    .page-hero {
        min-height: 420px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-contact span {
        display: none;
    }

    .floating-contact {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Correzione layout per le griglie personalizzate nelle pagine interne. */
@media (max-width: 767.98px) {
    .team-grid[style],
    .value-grid[style] {
        grid-template-columns: 1fr !important;
    }
}
