/* ============================================
   STYLE.CSS — Costruzioni Edil Rossi S.R.L.
   ============================================
   Generated: concatenated from modular CSS files
   ============================================ */
/* ============================================
   BASE — Reset, Variables, Typography
   ============================================ */

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

:root {
    /* Palette */
    --gd: #2d5c3c;
    --gm: #3a7250;
    --gl: #dfe9e3;
    --go: #b59a6a;
    --cr: #f6f7f4;
    --wh: #fff;
    --tm: #1c1c1c;
    --mu: #5e6b63;
    --bo: #d8e0da;

    /* Radius */
    --rs: 4px;
    --r: 6px;

    /* Shadows */
    --sc: 0 2px 14px rgba(30, 60, 40, .09);
    --sh: 0 8px 32px rgba(30, 60, 40, .15);

    /* Transition */
    --tr: .25s ease;

    /* Fonts */
    --fh: 'Playfair Display', Georgia, serif;
    --fb: 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--fb);
    color: var(--tm);
    background: var(--wh);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ── Utility Classes ── */

.con {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.ey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fb);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gd);
    margin-bottom: 14px;
}

.ey::before,
.ey::after {
    content: '';
    height: 1px;
    background: var(--go);
    width: 28px;
}

.st {
    font-family: var(--fh);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--gd);
    line-height: 1.2;
}

.ss {
    margin-top: 10px;
    color: var(--mu);
    font-size: 1rem;
    max-width: 640px;
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: var(--rs);
    font-family: var(--fb);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: var(--tr);
}

.bp {
    background: var(--gd);
    color: #fff;
    border: 1px solid var(--gd);
}

.bp:hover {
    background: var(--gm);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(45, 92, 60, .25);
}

.bo2 {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .6);
}

.bo2:hover {
    background: rgba(255, 255, 255, .1);
}


/* ============================================
   HEADER — Topbar, Navbar, Mobile Menu
   ============================================ */

/* Topbar */
.tb {
    background: var(--gd);
    color: rgba(255, 255, 255, .8);
    padding: 7px 0;
    font-size: .8rem;
}

.tbi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tbl,
.tbr {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tb a {
    color: rgba(255, 255, 255, .8);
    transition: color var(--tr);
}

.tb a:hover {
    color: #fff;
}

.tb i {
    margin-right: 5px;
    font-size: .78rem;
    color: var(--go);
}

/* Navbar */
#nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--wh);
    border-bottom: 1px solid var(--bo);
    transition: box-shadow .3s;
}

#nav.el {
    box-shadow: 0 2px 16px rgba(30, 60, 40, .12);
}

.ni {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.lw img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.nl {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nl a {
    color: var(--tm);
    font-size: .88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--rs);
    transition: color var(--tr);
    position: relative;
}

.nl a:not(.nc):hover {
    color: var(--gd);
}

.nl a:not(.nc)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--go);
    transform: scaleX(0);
    transition: transform .25s;
}

.nl a:not(.nc):hover::after {
    transform: scaleX(1);
}

/* CTA Button in nav */
.nc {
    background: var(--gd) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    margin-left: 8px;
    border-radius: var(--rs) !important;
    font-weight: 700 !important;
}

.nc:hover {
    background: var(--gm) !important;
}

/* Hamburger */
.hb {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hb span {
    width: 24px;
    height: 2px;
    background: var(--gd);
    border-radius: 2px;
}

/* Mobile Menu */
.mm {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--wh);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
}

.mm.op {
    display: flex;
}

.mm a {
    color: var(--gd);
    font-size: 1.4rem;
    font-family: var(--fh);
    font-weight: 600;
}

.mmc {
    position: absolute;
    top: 22px;
    right: 24px;
    background: none;
    border: none;
    color: var(--gd);
    font-size: 1.8rem;
    cursor: pointer;
}

.mml {
    height: 48px;
    margin-bottom: 8px;
}
/* ============================================
   HERO
   ============================================ */

#hero {
    position: relative;
    min-height: calc(100vh - 110px);
    background: linear-gradient(to right, rgba(18, 40, 24, .88) 0%, rgba(18, 40, 24, .55) 55%, rgba(18, 40, 24, .1) 100%),
        url('../hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 90px 0 80px;
    animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hdec {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(181, 154, 106, .2), transparent);
    pointer-events: none;
}

.hi {
    max-width: 680px;
}

/* Eyebrow */
.hey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--go);
    margin-bottom: 24px;
}

.hey::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--go);
}



/* CTA buttons */
.hcta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}



/* Hero Logo */
.hero-logo-wrap {
    display: inline-block;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--r);
    padding: 24px 40px;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
}

.hero-logo-wrap img {
    height: 160px;
    width: auto;
    max-width: 560px;
    display: block;
    object-fit: contain;
}

.hero-logo-fallback {
    display: none;
    font-family: var(--fh);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}



/* Hero buttons — larger, gold text */
.hbtn {
    padding: 15px 32px;
    font-size: 1rem;
    background: var(--gd);
    color: var(--go) !important;
    border: 1px solid var(--go);
}

.hbtn i {
    color: var(--go);
}

.hbtn:hover {
    background: var(--gm);
    border-color: var(--go);
}

/* Instagram gradient button */
.big {
    background: var(--gd);
    color: var(--go) !important;
    border: 1px solid var(--go);
}

.big:hover {
    background: var(--gm);
}

/* Scroll-down arrow */
.hscroll {
    position: absolute;
    bottom: 32px;
    right: 40px;
    color: var(--go);
    font-size: 1.3rem;
    animation: bounce 2s ease infinite;
    opacity: .7;
    transition: opacity var(--tr);
}

.hscroll:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Fade-up animation for hero elements */
.hu {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.hu.vis {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar text — shown when at top */
.lw-txt {
    font-family: var(--fh);
    font-size: .92rem;
    font-weight: 700;
    color: var(--gd);
    white-space: nowrap;
    display: inline;
}

.lw img {
    display: none;
}

#nav.el .lw-txt {
    display: none;
}

#nav.el .lw img {
    display: block;
}
/* ============================================
   CERTIFICAZIONI
   ============================================ */

#cert {
    padding: 72px 0;
    background: var(--gd);
}

.ct {
    font-family: var(--fh);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.25;
    max-width: 700px;
    margin: 0 auto;
}

.cs {
    color: var(--go);
    font-size: .95rem;
    line-height: 1.75;
    text-align: center;
    max-width: 700px;
    margin: 14px auto 0;
}

.cr {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.cr-text {
    flex: 1;
}

.cr-text h3 {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cr-text h4 {
    font-size: .78rem;
    font-weight: 600;
    color: var(--go);
    font-style: italic;
    margin-bottom: 10px;
}

.cr-text p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
}

.cr-img {
    flex-shrink: 0;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}

.cr-img img {
    display: block;
    max-height: 60px;
    object-fit: contain;
}

.cr-sep {
    width: 40px;
    height: 1px;
    background: var(--go);
    margin: 28px 0 0;
    opacity: .5;
}

/* ============================================
   SERVIZI
   ============================================ */

#srv {
    padding: 100px 0;
    background: var(--cr);
}

.sg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    margin-top: 52px;
}

.svc {
    background: var(--gm);
    border: 1px solid rgba(255, 255, 255, .15);
    border-top: 3px solid var(--go);
    border-radius: var(--r);
    padding: 36px 30px;
    box-shadow: var(--sc);
    transition: var(--tr);
}

.svc:hover {
    box-shadow: var(--sh);
    transform: translateY(-4px);
}



.svc h3 {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.svc p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

/* ── Service cards with background image ── */
.svc-img {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.svc-img[data-cat="1"] { background-image: url('../img/cosa-realizziamo/1/1.jpg'); }
.svc-img[data-cat="2"] { background-image: url('../img/cosa-realizziamo/2/1.jpg'); }
.svc-img[data-cat="3"] { background-image: url('../img/cosa-realizziamo/3/1.jpg'); }
.svc-img[data-cat="4"] { background-image: url('../img/cosa-realizziamo/4/1.jpg'); }
.svc-img[data-cat="5"] { background-image: url('../img/cosa-realizziamo/5/1.jpg'); }
.svc-img[data-cat="6"] { background-image: url('../img/cosa-realizziamo/6/1.jpg'); }

.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 60, 40, .88) 0%, rgba(30, 60, 40, .55) 50%, rgba(30, 60, 40, .35) 100%);
    transition: background .4s ease;
}

.svc-img:hover .svc-overlay {
    background: linear-gradient(to top, rgba(30, 60, 40, .82) 0%, rgba(30, 60, 40, .45) 50%, rgba(30, 60, 40, .2) 100%);
}

.svc-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh);
}

.svc-img .svc-content {
    position: relative;
    z-index: 1;
    padding: 28px 26px;
}

.svc-img .svc-content h3 {
    font-family: var(--fh);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.svc-img .svc-content p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.65;
    margin-bottom: 12px;
}

.svc-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--go);
}

.svc-count i {
    font-size: .7rem;
}

/* ============================================
   TRUST BANNER
   ============================================ */
.slb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 14, .95);
    z-index: 2001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slb.op {
    display: flex;
}

.slb-cl {
    position: absolute;
    top: 20px;
    right: 28px;
    color: rgba(255, 255, 255, .7);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--tr);
    z-index: 10;
}

.slb-cl:hover {
    color: #fff;
}

.slb-title {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    z-index: 10;
}

.slb-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 90vw;
    max-height: 75vh;
}

.slb-wrap img {
    max-width: calc(90vw - 120px);
    max-height: 75vh;
    border-radius: var(--r);
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.slb-ar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--tr), transform .2s;
}

.slb-ar:hover {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.08);
}

.slb-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slb-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transition: background .3s, transform .3s;
    cursor: pointer;
}

.slb-dots span.active {
    background: var(--go);
    transform: scale(1.2);
}

/* ============================================
   TRUST BANNER
   ============================================ */

#trust {
    background: var(--gd);
    padding: 56px 0;
    border-top: 3px solid var(--go);
    border-bottom: 3px solid var(--go);
}

.tg {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    text-align: center;
}

.ti i {
    font-size: 1.8rem;
    color: var(--go);
    margin-bottom: 10px;
    display: block;
}

.ti h4 {
    font-family: var(--fh);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.ti p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    max-width: 180px;
    margin: 0 auto;
}
/* ============================================
   CHI SIAMO — About, Organico, Orari
   ============================================ */

#chi {
    padding: 100px 0;
    background: var(--cr);
}

/* Split layout */
.ag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.aiw {
    position: relative;
}

.aiw::before {
    content: '';
    position: absolute;
    top: 18px;
    left: -18px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gl);
    border-radius: var(--r);
    z-index: 0;
}

.aiw img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r);
    box-shadow: var(--sh);
    filter: saturate(.88);
}

/* Badge */
.abadge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    z-index: 2;
    background: var(--gd);
    color: #fff;
    border-radius: var(--r);
    padding: 20px 26px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(20, 44, 28, .35);
}

.abadge .an {
    font-family: var(--fh);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--go);
    line-height: 1;
}

.abadge .al {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .8;
    margin-top: 4px;
}

/* Text content */
.atx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px 40px 40px 40px;
}

.atx h2 {
    margin-bottom: 28px;
}

.atx p:first-of-type {
    margin-top: 24px;
}

.atx p {
    color: var(--mu);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* ============================================
   DOVE SIAMO — Map Full Width
   ============================================ */

#dov {
    padding: 100px 0;
    background: var(--cr);
}

.map-full {
    position: relative;
    margin-top: 52px;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    aspect-ratio: 16/9;
    max-height: 500px;
}

.map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}



.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: var(--gd);
    color: #fff;
    border: 1px solid var(--gd);
    padding: 14px 28px;
    border-radius: var(--rs);
    font-weight: 600;
    transition: var(--tr);
}

.btn-map:hover {
    background: var(--gm);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(45, 92, 60, .25);
}
/* ============================================
   SCHEDA CONTATTI — Premium 2-column layout
   ============================================ */

#con {
    padding: 100px 0;
    background: var(--gd);
    position: relative;
    overflow: hidden;
}

#con::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 154, 106, .08) 0%, transparent 70%);
    pointer-events: none;
}

.sc-header {
    margin-bottom: 52px;
}

.sc-header .ey {
    color: var(--go);
}

.sc-header .ey::before,
.sc-header .ey::after {
    background: var(--go);
}

/* --- Layout: 2 columns --- */
.sc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* --- Left: CTA card + Hours --- */
.sc-primary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sc-cta-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r);
    padding: 36px 32px;
    backdrop-filter: blur(8px);
}

.sc-cta-title {
    font-family: var(--fh);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sc-cta-sub {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    margin-bottom: 28px;
}

.sc-btn-call,
.sc-btn-email {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 22px;
    border-radius: var(--rs);
    font-family: var(--fb);
    transition: var(--tr);
    text-decoration: none;
}

.sc-btn-call {
    background: var(--go);
    color: #1c1c1c;
    margin-bottom: 12px;
}

.sc-btn-call:hover {
    background: #c9ad7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 154, 106, .35);
}

.sc-btn-email {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}

.sc-btn-email:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .35);
}

.sc-btn-call i,
.sc-btn-email i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rs);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sc-btn-call i {
    background: rgba(28, 28, 28, .12);
    color: #1c1c1c;
}

.sc-btn-email i {
    background: rgba(255, 255, 255, .1);
    color: var(--go);
}

.sc-btn-call span,
.sc-btn-email span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sc-btn-call strong,
.sc-btn-email strong {
    font-size: 1rem;
    font-weight: 700;
}

.sc-btn-call small {
    font-size: .82rem;
    opacity: .7;
}

.sc-btn-email small {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

/* Hours card */
.sc-hours-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    padding: 24px 28px;
}

.sc-hours-icon {
    width: 42px;
    height: 42px;
    background: rgba(181, 154, 106, .2);
    border-radius: var(--rs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--go);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sc-hours-content {
    flex: 1;
}

.sc-hours-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--go);
    display: block;
    margin-bottom: 12px;
}

.sc-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-day {
    font-size: .92rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.sc-time {
    font-size: .92rem;
    color: #fff;
    font-weight: 600;
}

.sc-closed .sc-time {
    color: rgba(255, 255, 255, .4);
    font-weight: 400;
}

/* --- Right: Detail items --- */
.sc-details {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sc-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    transition: var(--tr);
}

.sc-detail-item:first-child {
    padding-top: 0;
}

.sc-detail-item:last-child {
    padding-bottom: 0;
}

.sc-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(181, 154, 106, .15);
    border-radius: var(--rs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--go);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--tr);
}

.sc-detail-item:hover .sc-detail-icon {
    background: rgba(181, 154, 106, .3);
}

.sc-detail-icon-ig {
    background: linear-gradient(135deg, rgba(240, 148, 51, .2), rgba(225, 48, 108, .2));
}

.sc-detail-item:hover .sc-detail-icon-ig {
    background: linear-gradient(135deg, rgba(240, 148, 51, .35), rgba(225, 48, 108, .35));
}

.sc-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sc-detail-label {
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--go);
}

.sc-detail-value {
    font-size: 1.02rem;
    color: #fff;
    font-weight: 500;
    transition: color var(--tr);
    overflow-wrap: break-word;
    word-break: break-word;
}

a.sc-detail-value:hover {
    color: var(--go);
}

.sc-detail-small {
    font-size: .9rem;
}

.sc-detail-placeholder {
    font-style: italic;
    opacity: .45;
    font-size: .92rem;
}

.sc-detail-sep {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 6px 0;
}

/* --- Dove Siamo enhancements --- */
.dov-wrap {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dov-address-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--wh);
    border: 1px solid var(--bo);
    border-left: 4px solid var(--gd);
    border-radius: var(--r);
    padding: 24px 28px;
    box-shadow: var(--sc);
}

.dov-pin {
    width: 52px;
    height: 52px;
    background: var(--gl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gd);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dov-address-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.dov-address-text strong {
    font-family: var(--fh);
    font-size: 1.1rem;
    color: var(--tm);
    font-weight: 600;
}

.dov-address-text span {
    font-size: .92rem;
    color: var(--mu);
}

.dov-provincia {
    font-size: .78rem !important;
    color: var(--mu);
    opacity: .7;
    margin-top: 2px;
}

.dov-address-card .btn-map {
    margin-top: 0;
    flex-shrink: 0;
}

/* ============================================
   FAQ — Accordion
   ============================================ */

#faq {
    padding: 100px 0;
    background: var(--cr);
}

.fl {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
}

.fi {
    background: var(--wh);
    border: 1px solid var(--bo);
    border-radius: var(--r);
    overflow: hidden;
}

.fq {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--fb);
    font-size: .95rem;
    font-weight: 600;
    color: var(--tm);
    text-align: left;
    transition: background var(--tr), color var(--tr);
    gap: 16px;
}

.fq:hover {
    background: var(--cr);
    color: var(--gd);
}

.fi.op .fq {
    background: var(--gl);
    color: var(--gd);
}

.fq i {
    font-size: .8rem;
    flex-shrink: 0;
    color: var(--gd);
    transition: transform .3s;
}

.fi.op .fq i {
    transform: rotate(180deg);
}

.fa2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
}

.fi.op .fa2 {
    max-height: 400px;
}

.fai {
    padding: 4px 26px 22px;
    color: var(--mu);
    font-size: .9rem;
    line-height: 1.75;
    border-top: 1px solid var(--bo);
    margin: 0 26px;
}
/* ============================================
   FOOTER
   ============================================ */

#ft {
    background: #1a3326;
    color: rgba(255, 255, 255, .6);
    padding: 72px 0 32px;
}

.ftg {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.ftl {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
}

.ftb p {
    font-size: .86rem;
    line-height: 1.8;
    max-width: 270px;
}



.ftc h4 {
    font-family: var(--fh);
    color: rgba(255, 255, 255, .9);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ftc ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ftc ul li a {
    font-size: .85rem;
    transition: color var(--tr);
}

.ftc ul li a:hover {
    color: rgba(255, 255, 255, .9);
}

.ftbot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ftbot p {
    font-size: .8rem;
}

.ftlg {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.ftlg a {
    font-size: .8rem;
    transition: color var(--tr);
}

.ftlg a:hover {
    color: rgba(255, 255, 255, .85);
}
/* ============================================
   UTILITIES — Scroll-top, WhatsApp FAB,
               All Responsive Breakpoints
   ============================================ */

/* ── Scroll to Top ── */
#sct {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 42px;
    height: 42px;
    background: var(--gd);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--rs);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(20, 44, 28, .4);
    opacity: 0;
    transition: opacity .3s, transform .3s;
    z-index: 998;
    font-size: .9rem;
}

#sct.vi {
    opacity: 1;
}

#sct:hover {
    transform: translateY(-2px);
    background: var(--gm);
}

/* ── Instagram FAB ── */
.ig-fab {
    position: fixed;
    bottom: 84px;
    right: 26px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 4px 18px rgba(225, 48, 108, .42);
    transition: transform .2s;
}

.ig-fab:hover {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE — Tablet (≤960px)
   ============================================ */
@media (max-width: 960px) {

    /* Chi siamo — single column */
    .ag {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .aiw::before {
        display: none;
    }

    .abadge {
        bottom: 10px;
        right: 10px;
    }

    /* Chi siamo — reduce text padding */
    .atx {
        padding: 20px 0;
    }

    /* Contatti — stack 2 columns */
    .sc-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    /* Footer */

    /* Certificazioni — stack image below text */
    .cr {
        flex-direction: column;
        gap: 20px;
    }

    .cr-img {
        align-self: flex-start;
    }

    /* Trust — 2×2 grid on tablet */
    .tg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px 48px;
    }

    .ti {
        text-align: left;
    }

    .ti p {
        margin: 0;
    }
}

/* ============================================
   RESPONSIVE — Mobile (≤720px)
   ============================================ */
@media (max-width: 720px) {

    /* Nav */
    .nl {
        display: none;
    }

    .hb {
        display: flex;
    }

    .ni {
        height: 60px;
    }

    .lw img {
        height: 44px;
    }

    /* Topbar — hide the left portion, compact the right */
    .tbl {
        display: none;
    }

    .tb {
        padding: 6px 0;
        font-size: .75rem;
    }

    .tbr {
        gap: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Mobile menu — smooth transitions */
    .mm {
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        gap: 24px;
        padding: 80px 32px 40px;
    }

    .mm a {
        font-size: 1.3rem;
        padding: 8px 0;
        border-bottom: 1px solid var(--bo);
        width: 100%;
        text-align: center;
    }

    .mm a:last-child {
        border-bottom: none;
    }

    .mmc {
        top: 18px;
        right: 20px;
        font-size: 1.6rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--rs);
    }

    .mml {
        height: 42px;
        margin-bottom: 16px;
    }

    /* Sections — reduce padding */
    #srv,
    #cert,
    #chi,
    #dov,
    #faq,
    #con {
        padding: 64px 0;
    }

    /* Trust — smaller padding, single column */
    #trust {
        padding: 40px 0;
    }

    .tg {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .ti p {
        font-size: .8rem;
        max-width: none;
    }

    .ti h4 {
        font-size: .92rem;
    }

    /* Footer */
    #ft {
        padding: 56px 0 28px;
    }

    /* Typography — readable size */
    .ey {
        font-size: .72rem;
    }

    .ey::before,
    .ey::after {
        width: 18px;
    }

    .st {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .ss {
        font-size: .92rem;
    }

    /* Hero mobile */
    #hero {
        min-height: auto;
        padding: 52px 0 44px;
        background: linear-gradient(to bottom, rgba(18, 40, 24, .92) 0%, rgba(18, 40, 24, .75) 60%, rgba(18, 40, 24, .6) 100%),
            url('../hero.jpg') center/cover no-repeat;
    }

    .hdec {
        display: none;
    }

    .hero-logo-wrap {
        padding: 16px 24px;
        margin-bottom: 8px;
    }

    .hero-logo-wrap img {
        height: 100px;
        max-width: 320px;
    }

    .hey {
        font-size: .7rem;
        margin-bottom: 16px;
    }

    .hey::before {
        width: 20px;
    }

    .hcta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }

    .hcta .hbtn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: .92rem;
    }

    .hscroll {
        right: 20px;
        bottom: 16px;
        font-size: 1.1rem;
    }


    /* Buttons — larger touch targets */
    .btn {
        padding: 14px 24px;
        font-size: .95rem;
    }

    /* Servizi grid — 2 columns on mobile */
    .sg {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 36px;
    }

    .svc-img {
        min-height: 180px;
    }

    .svc-img .svc-content {
        padding: 18px 16px;
    }

    .svc-img .svc-content h3 {
        font-size: .95rem;
        margin-bottom: 4px;
    }

    .svc-img .svc-content p {
        font-size: .8rem;
        line-height: 1.5;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .svc-count {
        font-size: .66rem;
    }

    /* Services lightbox mobile — fullscreen-like */
    .slb-title {
        font-size: 1rem;
        top: 16px;
        max-width: 70%;
    }

    .slb-ar {
        width: 40px;
        height: 40px;
        font-size: .9rem;
    }

    .slb-wrap {
        gap: 8px;
        max-width: 96vw;
    }

    .slb-wrap img {
        max-width: calc(96vw - 96px);
        max-height: 68vh;
        border-radius: var(--rs);
    }

    .slb-dots {
        bottom: 20px;
    }

    .slb-dots span {
        width: 8px;
        height: 8px;
    }

    .svc {
        padding: 24px 18px;
    }

    .svc h3 {
        font-size: 1rem;
    }

    /* Certificazioni — tighter layout */
    .cr {
        flex-direction: column;
        gap: 18px;
    }

    .cr-img {
        align-self: flex-start;
    }

    .cr-img img {
        max-height: 50px;
    }

    .cr-text h3 {
        font-size: 1rem;
    }

    .cr-text p {
        font-size: .84rem;
    }

    #cert {
        padding: 56px 0;
    }

    /* Chi siamo text — remove padding for mobile */
    .atx {
        padding: 0;
    }

    .atx p {
        font-size: .9rem;
        line-height: 1.75;
    }

    .atx h2 {
        margin-bottom: 20px;
    }

    .aiw img {
        aspect-ratio: 4/3;
    }


    /* Scheda Contatti — single column, adjusted sizing */
    .sc-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-header {
        margin-bottom: 36px;
    }

    .sc-cta-card {
        padding: 28px 22px;
    }

    .sc-cta-title {
        font-size: 1.3rem;
    }

    .sc-cta-sub {
        font-size: .86rem;
        margin-bottom: 22px;
    }

    .sc-btn-call,
    .sc-btn-email {
        padding: 14px 18px;
        gap: 14px;
    }

    .sc-btn-call i,
    .sc-btn-email i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .sc-btn-call strong,
    .sc-btn-email strong {
        font-size: .95rem;
    }

    .sc-hours-card {
        padding: 20px 22px;
        gap: 14px;
    }

    .sc-hours-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .sc-day,
    .sc-time {
        font-size: .88rem;
    }

    .sc-details {
        padding: 24px 22px;
    }

    .sc-detail-item {
        padding: 12px 0;
        gap: 14px;
    }

    .sc-detail-icon {
        width: 36px;
        height: 36px;
        font-size: .9rem;
    }

    .sc-detail-value {
        font-size: .95rem;
    }

    .sc-detail-label {
        font-size: .62rem;
    }

    /* Dove siamo — stack address card */
    .dov-address-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 22px 20px;
    }

    .dov-pin {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .dov-address-card .btn-map {
        width: 100%;
        justify-content: center;
    }

    /* Map */
    .map-full {
        aspect-ratio: 4/3;
        max-height: 320px;
        margin-top: 36px;
    }

    /* FAQ — better touch targets */
    .fq {
        padding: 16px 20px;
        font-size: .9rem;
        min-height: 52px;
    }

    .fai {
        padding: 4px 20px 18px;
        font-size: .86rem;
        margin: 0 16px;
    }

    .fl {
        margin-top: 36px;
        gap: 8px;
    }

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

    .ftb p {
        max-width: 100%;
        font-size: .84rem;
    }

    .ftc h4 {
        font-size: .84rem;
        margin-bottom: 14px;
    }

    .ftc ul {
        gap: 8px;
    }

    .ftc ul li a {
        font-size: .82rem;
    }

    .ftbot {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ftbot p {
        font-size: .74rem;
    }

    .ftlg {
        flex-direction: column;
        gap: 8px;
    }


    /* FAB positioning — avoid overlap */
    .ig-fab {
        bottom: 74px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }

    #sct {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    /* Container — reduce horizontal padding */
    .con {
        padding: 0 18px;
    }
}

/* ============================================
   RESPONSIVE — Small phone (≤480px)
   ============================================ */
@media (max-width: 480px) {

    /* Topbar — hide entirely on very small screens */
    .tb {
        padding: 5px 0;
        font-size: .7rem;
    }

    .tbr {
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Sections — minimal padding */
    #srv,
    #cert,
    #chi,
    #dov,
    #faq,
    #con {
        padding: 48px 0;
    }

    #trust {
        padding: 32px 0;
    }

    /* Trust items — single column on very small */
    .tg {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ti {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        text-align: left;
    }

    .ti i {
        font-size: 1.4rem;
        min-width: 36px;
        margin-bottom: 0;
    }

    .ti h4 {
        font-size: .88rem;
    }

    .ti p {
        font-size: .78rem;
        max-width: none;
    }

    /* Hero */
    #hero {
        padding: 40px 0 36px;
    }

    .hero-logo-wrap {
        padding: 14px 18px;
    }

    .hero-logo-wrap img {
        height: 80px;
        max-width: 260px;
    }

    .hey {
        font-size: .66rem;
        margin-bottom: 12px;
        gap: 8px;
    }

    .hcta {
        gap: 10px;
    }

    .hcta .hbtn {
        padding: 13px 20px;
        font-size: .88rem;
    }


    .lw-txt {
        font-size: .78rem;
    }

    /* Servizi — single column on small */
    .sg {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-img {
        min-height: 200px;
    }

    .svc-img .svc-content {
        padding: 22px 18px;
    }

    .svc-img .svc-content h3 {
        font-size: 1rem;
    }

    .svc-img .svc-content p {
        -webkit-line-clamp: 3;
        font-size: .84rem;
    }

    /* Lightbox — maximized for small screens */
    .slb-title {
        font-size: .92rem;
        top: 14px;
    }

    .slb-cl {
        top: 12px;
        right: 14px;
        font-size: 1.5rem;
    }

    .slb-ar {
        width: 36px;
        height: 36px;
        font-size: .82rem;
    }

    .slb-wrap {
        gap: 6px;
        max-width: 98vw;
    }

    .slb-wrap img {
        max-width: calc(98vw - 84px);
        max-height: 60vh;
    }

    .svc {
        padding: 22px 18px;
    }

    /* Certificazioni — tighten */
    .cr {
        gap: 14px;
    }

    .cr-img img {
        max-height: 44px;
    }

    .cr-text h3 {
        font-size: .95rem;
    }

    .cr-text h4 {
        font-size: .72rem;
    }

    .cr-text p {
        font-size: .82rem;
        line-height: 1.65;
    }

    .ct {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .cs {
        font-size: .88rem;
    }

    /* Chi siamo */
    .ag {
        gap: 28px;
        margin-top: 36px;
    }

    .abadge {
        padding: 12px 16px;
    }

    .abadge .an {
        font-size: 1.8rem;
    }

    .abadge .al {
        font-size: .62rem;
    }

    .atx p {
        font-size: .86rem;
    }


    /* Scheda Contatti — extra small adjustments */
    .sc-cta-card {
        padding: 24px 18px;
    }

    .sc-cta-title {
        font-size: 1.2rem;
    }

    .sc-cta-sub {
        font-size: .82rem;
        margin-bottom: 20px;
    }

    .sc-btn-call,
    .sc-btn-email {
        padding: 13px 16px;
        gap: 12px;
    }

    .sc-btn-call i,
    .sc-btn-email i {
        width: 36px;
        height: 36px;
        font-size: .95rem;
    }

    .sc-btn-call strong,
    .sc-btn-email strong {
        font-size: .9rem;
    }

    .sc-btn-call small,
    .sc-btn-email small {
        font-size: .78rem;
    }

    .sc-hours-card {
        padding: 18px 18px;
        gap: 12px;
    }

    .sc-hours-icon {
        width: 36px;
        height: 36px;
        font-size: .95rem;
    }

    .sc-day,
    .sc-time {
        font-size: .84rem;
    }

    .sc-details {
        padding: 20px 18px;
    }

    .sc-detail-icon {
        width: 34px;
        height: 34px;
        font-size: .85rem;
    }

    .sc-detail-value {
        font-size: .9rem;
    }

    /* Dove siamo */
    .dov-address-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .dov-pin {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dov-address-text strong {
        font-size: 1rem;
    }

    .dov-address-text span {
        font-size: .84rem;
    }

    .dov-provincia {
        font-size: .72rem !important;
    }

    .map-full {
        aspect-ratio: 1/1;
        max-height: 280px;
        margin-top: 28px;
    }

    .btn-map {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: .9rem;
    }

    /* FAQ */
    .fq {
        padding: 14px 16px;
        font-size: .86rem;
    }

    .fai {
        padding: 4px 16px 16px;
        font-size: .84rem;
        margin: 0 12px;
    }


    /* Footer */
    .ftg {
        gap: 22px;
    }

    .ftl {
        height: 40px;
        margin-bottom: 14px;
    }

    .ftlg {
        gap: 8px;
    }

    .ftlg a {
        font-size: .74rem;
    }

    /* Container */
    .con {
        padding: 0 14px;
    }
}

/* ============================================
   POLICY MODAL
   ============================================ */
.pmodal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tr), visibility var(--tr);
}

.pmodal.op {
    opacity: 1;
    visibility: visible;
}

.pmodal-box {
    background: var(--wh);
    border-radius: var(--r);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh);
    transform: translateY(20px);
    transition: transform var(--tr);
}

.pmodal.op .pmodal-box {
    transform: translateY(0);
}

.pmodal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--bo);
    flex-shrink: 0;
}

.pmodal-head h3 {
    font-family: var(--fh);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gd);
}

.pmodal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--mu);
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    transition: color var(--tr);
}

.pmodal-close:hover {
    color: var(--tm);
}

.pmodal-body {
    padding: 24px 22px;
    overflow-y: auto;
    line-height: 1.8;
}

.pmodal-body h4 {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gd);
    margin: 20px 0 10px;
}

.pmodal-body h4:first-child {
    margin-top: 0;
}

.pmodal-body p {
    margin-bottom: 14px;
}

.pmodal-body p:last-child {
    margin-bottom: 0;
}

.pmodal-body ul {
    margin: 12px 0 16px 20px;
    list-style: disc;
}

.pmodal-body li {
    margin-bottom: 6px;
}

.pmodal-body a {
    color: var(--gd);
    text-decoration: underline;
}

.pmodal-body a:hover {
    color: var(--gm);
}
