/* =========================================================
   PUGLIAI — BRAND BOOK STYLESHEET
   Radici nel territorio. Intelligenza nel futuro.
   ========================================================= */

:root {
  /* --- Primary brand --- */
  --green:      #1B9032;   /* Ulivo — roots, growth, Made in Italy */
  --green-700:  #147026;
  --green-800:  #0E5A1E;
  --green-400:  #34B14C;
  --green-200:  #A8DCB4;
  --green-50:   #EAF5ED;

  --blue:       #135CA9;   /* Intelligenza — AI, technology, trust */
  --blue-700:   #0E4A88;
  --blue-800:   #0A3A6B;
  --blue-400:   #3E84CB;
  --blue-200:   #A9C8E6;
  --blue-50:    #E9F1FA;

  /* --- Neutrals (navy demoted to deep neutral "Notte") --- */
  --notte:      #0B1A2D;
  --notte-800:  #102740;
  --ink:        #0E1B2C;
  --slate:      #3A4A5E;
  --mist:       #6B7C8F;
  --cloud:      #DCE3EC;
  --line:       #E7ECF2;
  --paper:      #F6F8FB;
  --white:      #FFFFFF;

  /* --- Tertiary earth accent (sparingly) --- */
  --terra:      #C2632F;   /* Terra Rossa — Puglia soil */

  /* --- Signature gradient: roots -> canopy --- */
  --grad: linear-gradient(118deg, var(--green) 0%, #1A7B6E 48%, var(--blue) 100%);
  --grad-soft: linear-gradient(118deg, var(--green-50) 0%, var(--blue-50) 100%);

  /* --- Type --- */
  --sans: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;

  --shadow-sm: 0 1px 2px rgba(11,26,45,.06), 0 1px 3px rgba(11,26,45,.05);
  --shadow-md: 0 6px 20px -6px rgba(11,26,45,.14), 0 2px 6px rgba(11,26,45,.06);
  --shadow-lg: 0 24px 60px -18px rgba(11,26,45,.28);

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--green-200); color: var(--notte); }

a { color: inherit; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section { padding: 128px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section--dark { background: var(--notte); color: var(--white); border-top: none; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

@media (max-width: 720px){
  .wrap { padding: 0 22px; }
  .section { padding: 80px 0; }
}

/* ---------- Section header ---------- */
.sec-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: 56px; }
.sec-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--blue);
  line-height: 1;
  flex: none;
  letter-spacing: .01em;
}
.section--dark .sec-num { color: var(--green-400); }
.sec-titles { flex: 1; }
.sec-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 12px;
}
.section--dark .sec-kicker { color: var(--blue-400); }
.sec-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.04;
}
.sec-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.section--dark .sec-title em { color: var(--green-400); }
.sec-lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--slate);
  max-width: 62ch;
  line-height: 1.6;
}
.section--dark .sec-lead { color: var(--cloud); }

/* ---------- Generic type helpers ---------- */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); }
.lead { font-size: 19px; color: var(--slate); }
.muted { color: var(--mist); }
.italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono-num { font-variant-numeric: tabular-nums; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   COVER
   ========================================================= */
.cover {
  min-height: 100vh;
  background: var(--notte);
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cover::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(19,92,169,.34), transparent 60%),
    radial-gradient(900px 620px at 8% 108%, rgba(27,144,50,.30), transparent 60%);
  pointer-events: none;
}
.cover__bar {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.cover__bar .wm { height: 26px; }
.cover__bar .meta { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.cover__body {
  position: relative; z-index: 3;
  flex: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px;
  max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 40px;
}
.cover__tree { justify-self: center; width: min(360px, 42vw); filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }
.cover h1 {
  font-size: clamp(40px, 6.4vw, 86px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.03em;
}
.cover h1 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--green-400); }
.cover .tagline {
  margin-top: 26px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(19px, 2.2vw, 27px);
  color: var(--blue-200);
  line-height: 1.35;
}
.cover .sub { margin-top: 22px; max-width: 46ch; color: rgba(255,255,255,.72); font-size: 16px; }
.cover__foot {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 40px; border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.5);
}
@media (max-width: 860px){
  .cover__body { grid-template-columns: 1fr; text-align: left; padding: 56px 22px; gap: 28px;}
  .cover__tree { width: 200px; justify-self: start; }
  .cover__bar, .cover__foot { padding: 20px 22px; }
}

/* =========================================================
   NAV (sticky)
   ========================================================= */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,248,251,.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topnav__inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topnav .wm { height: 22px; display: block; }
.topnav__links { display: flex; gap: 4px; flex-wrap: wrap; }
.topnav__links a {
  text-decoration: none; color: var(--slate); font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 999px; transition: all .2s ease; white-space: nowrap;
}
.topnav__links a:hover { background: var(--green-50); color: var(--green-800); }
@media (max-width: 980px){ .topnav__links { display: none; } }
@media (max-width: 720px){ .topnav__inner { padding: 12px 22px; } }

/* =========================================================
   PILLARS
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.pillar { background: var(--white); padding: 32px 26px 36px; }
.pillar .it { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--blue); line-height: 1; }
.pillar h4 { margin: 14px 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.pillar p { font-size: 14.5px; color: var(--slate); line-height: 1.55; }
.pillar .ord { font-size: 11px; font-weight: 600; letter-spacing: .18em; color: var(--green); text-transform: uppercase; }
@media (max-width: 860px){ .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .pillars { grid-template-columns: 1fr; } }

/* =========================================================
   METAPHOR (tree anatomy)
   ========================================================= */
.meta-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.meta-tree { background: var(--grad-soft); border: 1px solid var(--line); border-radius: 20px; padding: 36px; display: grid; place-items: center; }
.meta-tree img { width: 200px; }
.meta-list { display: grid; gap: 2px; }
.meta-row { display: grid; grid-template-columns: 132px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line); align-items: baseline; }
.meta-row:last-child { border-bottom: 1px solid var(--line); }
.meta-row .k { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.meta-row .k .dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.meta-row .v { color: var(--slate); font-size: 15.5px; }
.meta-row .v b { color: var(--ink); font-weight: 600; }
@media (max-width: 820px){ .meta-grid { grid-template-columns: 1fr; gap: 28px;} .meta-row{ grid-template-columns: 110px 1fr; gap:16px;} }

/* =========================================================
   LOGO
   ========================================================= */
.logo-hero { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 72px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.logo-hero img { width: min(420px, 70%); }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px){ .two { grid-template-columns: 1fr; } }

.swatch-tile { border-radius: 16px; border: 1px solid var(--line); overflow: hidden; }
.swatch-tile .show { aspect-ratio: 16/10; display: grid; place-items: center; }
.swatch-tile .show img { width: 58%; max-width: 240px; }
.swatch-tile .cap { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; }
.swatch-tile .cap b { font-weight: 600; }
.swatch-tile .cap span { color: var(--mist); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green); }
.bg-blue { background: var(--blue); }
.bg-notte { background: var(--notte); }
.bg-photo { background: linear-gradient(135deg, #20455f, #0b2536); }

/* clearspace */
.clearspace { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 56px; display: grid; place-items: center; }
.cs-box { position: relative; padding: 64px; }
.cs-box::before { content:""; position:absolute; inset:0; border: 1.5px dashed var(--blue-200); border-radius: 8px; }
.cs-box img { display: block; width: 280px; position: relative; }
.cs-tag { position: absolute; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }

/* misuse */
.dont { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 820px){ .dont { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .dont { grid-template-columns: 1fr; } }
.dont-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--white); }
.dont-card .stage { aspect-ratio: 5/3; display: grid; place-items: center; background: var(--paper); position: relative; overflow: hidden; }
.dont-card .stage img { width: 56%; max-width: 150px; }
.dont-card .lab { padding: 12px 16px; font-size: 13px; color: var(--slate); display: flex; gap: 8px; align-items: flex-start; border-top: 1px solid var(--line); }
.x-badge { width: 18px; height: 18px; border-radius: 50%; background: #E5484D; color: #fff; font-size: 12px; font-weight: 800; display: grid; place-items: center; flex: none; margin-top: 1px; }

/* =========================================================
   COLOR
   ========================================================= */
.color-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px){ .color-hero { grid-template-columns: 1fr; } }
.color-big { border-radius: 20px; padding: 30px; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; position: relative; overflow: hidden; }
.color-big .nm { font-size: 22px; font-weight: 700; }
.color-big .it { font-family: var(--serif); font-style: italic; opacity: .9; font-size: 15px; }
.color-big .vals { display: grid; gap: 3px; font-size: 13.5px; font-variant-numeric: tabular-nums; }
.color-big .vals .row { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.22); padding-top: 7px; margin-top: 7px; }
.color-big .vals .row:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.color-big .desc { font-size: 14px; opacity: .9; max-width: 34ch; }

.ramp { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.ramp .step { padding: 18px 14px 16px; min-height: 96px; display: flex; flex-direction: column; justify-content: flex-end; }
.ramp .step .h { font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.ramp .step .t { font-size: 10.5px; opacity: .8; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 720px){ .ramp { grid-template-columns: repeat(3,1fr); } }

.grad-band { height: 140px; border-radius: 16px; background: var(--grad); display: flex; align-items: flex-end; padding: 20px 24px; color: #fff; }
.grad-band .lbl { font-size: 13px; }
.grad-band .lbl b { font-weight: 700; }

.acc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 720px){ .acc-grid { grid-template-columns: 1fr 1fr; } }
.acc { border-radius: 12px; padding: 20px; height: 116px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); }
.acc .big { font-size: 22px; font-weight: 700; }
.acc .meta { font-size: 11.5px; display: flex; justify-content: space-between; opacity: .85; }
.pass { font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.type-spec { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 44px; }
.type-aa { font-size: clamp(64px, 13vw, 168px); line-height: .9; font-weight: 700; letter-spacing: -.03em; }
.type-aa .b { color: var(--green); }
.type-aa .a { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--blue); }
.glyphs { font-size: 26px; letter-spacing: .06em; color: var(--slate); margin-top: 8px; word-break: break-word; }
.weights { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 26px; }
.weights span { font-size: 30px; }
.w3{font-weight:300}.w4{font-weight:400}.w5{font-weight:500}.w6{font-weight:600}.w7{font-weight:700}.w8{font-weight:800}.w9{font-weight:900}

.scale-row { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: baseline; padding: 18px 0; border-top: 1px solid var(--line); }
.scale-row .spec { font-size: 12.5px; color: var(--mist); font-variant-numeric: tabular-nums; line-height: 1.5; }
.scale-row .ex { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
@media (max-width: 640px){ .scale-row { grid-template-columns: 1fr; gap: 4px; } }

.pairing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px){ .pairing { grid-template-columns: 1fr; } }

/* =========================================================
   ICONOGRAPHY / GRAPHIC ELEMENTS
   ========================================================= */
.icon-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
@media (max-width: 820px){ .icon-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px){ .icon-grid { grid-template-columns: repeat(2,1fr); } }
.icon-cell { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 14px; display: grid; place-items: center; background: var(--white); color: var(--blue); }
.icon-cell svg { width: 38px; height: 38px; }
.node-motif { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width:760px){ .node-motif{ grid-template-columns:1fr; } }
.motif-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--white); }
.motif-card .stage { padding: 30px; min-height: 240px; display: grid; place-items: center; }
.motif-card .cap { padding: 18px 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--slate); }
.motif-card .cap b { color: var(--ink); font-weight: 600; }

/* =========================================================
   IMAGERY
   ========================================================= */
.img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px){ .img-grid { grid-template-columns: 1fr 1fr; } }
.ph {
  aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; position: relative;
  display: flex; align-items: flex-end; color: #fff;
  background: linear-gradient(160deg, #1d4f4a, #0c2438);
}
.ph::before { content:""; position:absolute; inset:0; background: var(--grad); opacity: .42; mix-blend-mode: screen; }
.ph .pt { position: relative; padding: 18px; font-size: 13.5px; }
.ph .pt b { display:block; font-weight: 600; margin-bottom: 2px; }
.ph .pt span { opacity: .82; }
.ph .ph-ico { position: absolute; top: 16px; left: 16px; width: 26px; height: 26px; opacity: .7; }
.ph.wide { aspect-ratio: auto; }
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 12px; }
@media (max-width: 700px){ .do-dont { grid-template-columns: 1fr; } }
.dd { border-radius: 14px; padding: 22px 24px; border: 1px solid var(--line); }
.dd h5 { display: flex; align-items: center; gap: 9px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.dd ul { list-style: none; display: grid; gap: 8px; }
.dd li { font-size: 14.5px; color: var(--slate); padding-left: 18px; position: relative; }
.dd li::before { content:""; position:absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; }
.dd.do { background: var(--green-50); } .dd.do li::before { background: var(--green); } .dd.do h5 { color: var(--green-800); }
.dd.no { background: #FDECEC; } .dd.no li::before { background: #E5484D; } .dd.no h5 { color: #B42A2E; }

/* =========================================================
   VOICE
   ========================================================= */
.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 760px){ .voice-grid { grid-template-columns: 1fr; } }
.voice-card { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: var(--white); }
.voice-card .n { font-family: var(--serif); font-style: italic; color: var(--blue); font-size: 30px; line-height: 1; }
.voice-card h4 { margin: 12px 0 8px; font-size: 18px; }
.voice-card p { font-size: 14.5px; color: var(--slate); }
.quote { background: var(--notte); color: #fff; border-radius: 20px; padding: 56px; position: relative; overflow: hidden; }
.quote .big { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.3; max-width: 22ch; position: relative; z-index: 2; }
.quote .big .g { color: var(--green-400); }
.quote .big .b { color: var(--blue-400); }
.say { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.say > div { background: #fff; padding: 22px 24px; }
.say .h { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.say .say-it { color: var(--green-800); } .say .say-no { color: #B42A2E; }
.say p { font-size: 15px; padding: 10px 0; border-top: 1px solid var(--line); color: var(--slate); }
.say p:first-of-type { border-top: none; }
@media (max-width: 600px){ .say { grid-template-columns: 1fr; } }

/* =========================================================
   APPLICATION MOCKS
   ========================================================= */
.app-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 880px){ .app-grid { grid-template-columns: 1fr; } }

.browser { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: #fff; }
.browser__bar { background: #EEF2F6; padding: 11px 14px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.browser__bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.browser__bar .url { margin-left: 10px; background: #fff; border: 1px solid var(--line); border-radius: 7px; font-size: 12px; color: var(--mist); padding: 4px 12px; flex: 1; }
.site-hero { background: var(--notte); color: #fff; padding: 30px; position: relative; overflow: hidden; }
.site-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 90% 0%, rgba(19,92,169,.4), transparent 60%), radial-gradient(420px 260px at 0% 120%, rgba(27,144,50,.34), transparent 60%); }
.site-nav { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; margin-bottom: 36px; }
.site-nav .lks { display: flex; gap: 16px; font-size: 12px; color: rgba(255,255,255,.7); }
.site-hero h3 { position: relative; z-index: 2; font-size: 30px; line-height: 1.08; letter-spacing: -.02em; max-width: 18ch; }
.site-hero h3 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--green-400); }
.site-hero p { position: relative; z-index: 2; color: rgba(255,255,255,.75); font-size: 14px; margin: 14px 0 22px; max-width: 40ch; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; padding: 11px 20px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(19,92,169,.6); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.site-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 22px; background: #fff; }
.site-cards .sc { border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.site-cards .sc .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--green-50); display: grid; place-items: center; color: var(--green); margin-bottom: 12px; }
.site-cards .sc h6 { font-size: 13.5px; margin-bottom: 5px; }
.site-cards .sc p { font-size: 11.5px; color: var(--mist); line-height: 1.45; }

.card-stack { display: grid; gap: 20px; }
.bcard { aspect-ratio: 85/55; border-radius: 14px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.bcard--front { background: var(--white); border: 1px solid var(--line); }
.bcard--back { background: var(--notte); color: #fff; }
.bcard--back::after { content:""; position:absolute; right:-40px; top:-40px; width: 180px; height: 180px; background: var(--grad); border-radius: 50%; opacity: .5; filter: blur(8px); }
.bcard .nm { font-weight: 700; font-size: 16px; }
.bcard .ti { font-size: 12px; color: var(--mist); }
.bcard .ct { font-size: 11.5px; color: var(--slate); line-height: 1.6; }
.bcard--back .ct { color: rgba(255,255,255,.78); }
.bcard img.logo-s { height: 22px; }
.bcard .wmk { position: relative; z-index: 2; }

/* =========================================================
   CLOSING
   ========================================================= */
.closing { text-align: center; }
.closing img { width: 120px; margin: 0 auto 30px; }
.closing h2 { font-size: clamp(30px, 5vw, 56px); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; }
.closing h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--green-400); }
.closing .tl { font-family: var(--serif); font-style: italic; color: var(--blue-200); font-size: clamp(18px,2.4vw,26px); margin-top: 22px; }
.closing .info { margin-top: 44px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; color: rgba(255,255,255,.6); font-size: 13.5px; }
.closing .info b { color: #fff; display: block; font-weight: 600; margin-bottom: 4px; }

/* small helpers */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 56px; }
.tile-note { font-size: 13.5px; color: var(--slate); }
.divider-note { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); font-weight: 600; margin: 0 0 18px; }
