:root{
  --bg:#f6f1ea;          /* beige caldo */
  --panel:#fbf8f3;
  --text:#121212;
  --muted:#6d6a66;
  --line:rgba(18,18,18,.10);
  --dark:#002425;
  --dark2:#001a1b;
  --accent:#1aa36f;

  --shadow: 0 16px 40px rgba(0,0,0,.08);
  --radius:18px;
  --radius2:26px;

  --max:1180px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}
@supports not (scroll-behavior: smooth){html{scroll-behavior:auto}}
body.site{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}

/* NAV */
.navWrap{
  position:sticky; top:0; z-index:50;
  background: rgba(0,36,37,.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.navBar{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{
  display:flex;
  flex-direction:row;
  gap:14px;
  align-items:center;
  text-align:left;
}
.brandLogo{
  height:40px;
  width:auto;
  max-width:min(200px, 46vw);
  object-fit:contain;
  display:block;
}
.brand--detail .brandLogo{height:36px; max-width:min(180px, 40vw)}
.brandMark{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(26,163,111,.25), rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.12);
}
.brandText b{display:block; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:#fff}
.brandText small{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:11.5px;
  margin-top:0;
  letter-spacing:.04em;
  line-height:1.3;
}
.navLinks{
  display:flex;
  gap:22px;
  align-items:center;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.navLinks a:hover{color:#fff}
.navLinks .navCta{color:#fff; border-bottom:1px solid rgba(255,255,255,.65); padding-bottom:2px}
.navToggle{
  display:none; /* Hidden on desktop */
  min-width:44px; min-height:44px;
  width:44px; height:44px;
  border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius:12px;
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  transition: background .2s, border-color .2s;
}
.navToggle:hover{background: rgba(255,255,255,.14); border-color:rgba(255,255,255,.35)}
.navToggle:focus{outline:2px solid var(--accent); outline-offset:2px}
.navToggle .line{background:#fff}

/* TYPO */
.kicker{
  margin:0 0 10px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.display{
  margin:0;
  font-size: 38px;
  font-size: clamp(38px, 4.6vw, 64px);
  letter-spacing:-.03em;
  line-height:1.02;
}
.display .highlight{
  background: linear-gradient(to top, rgba(26,163,111,.25) 35%, transparent 35%);
  padding: 0 0.1em;
  margin: 0 -0.1em;
}
.h2{
  margin:20px 0;
  font-size: 26px;
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing:-.02em;
  line-height:1.08;
}
.p{margin:14px 0 0; color:var(--muted); font-size:15.5px; max-width:62ch}
.lead{margin:14px 0 0; color:var(--muted); font-size:16px; max-width:64ch}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px;
  padding:12px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:.15s ease;
}
.btn:hover{
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn.primary{
  background: var(--accent);
  border-color: var(--accent);
  color:#fff;
}
.btn.small{padding:10px 12px}

.textLink{
  display:inline-block;
  margin-top:18px;
  color:var(--text);
  border-bottom:1px solid var(--text);
  padding-bottom:2px;
  font-weight:800;
}

/* HERO */
.heroStudio{padding:34px 0 26px}
.heroStudio--split{padding-top:20px; padding-bottom:40px}
.heroSplitGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
  align-items:center;
}
.heroSplitText{padding-top:0}
.heroSplitImg{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.heroSplitImg img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  object-position:center 40%;
  display:block;
}
.heroHead{padding:10px 0 18px}
.heroMedia{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:12px;
  border-radius: var(--radius2);
  overflow:hidden;
}
.heroMedia--single{grid-template-columns:1fr}
.heroImgBig, .heroImgSmall{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.heroImgBig{min-height:460px}
.heroImgSmall{min-height:460px}
.heroImgBig img, .heroImgBig video, .heroImgSmall img{
  width:100%; height:100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center 55%;
}
.heroPill{
  position:absolute; left:14px; top:14px;
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background: rgba(251,248,243,.95);
  border:2px solid var(--accent);
  color:var(--text);
  font-size:15px;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow: 0 4px 20px rgba(26,163,111,.2);
}
.dot{width:10px; height:10px; border-radius:99px; background:var(--accent); box-shadow: 0 0 0 6px rgba(26,163,111,.12)}
.heroBtn{
  position:absolute; right:14px; bottom:14px;
  background: rgba(0,36,37,.72);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  padding:12px 14px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* INTRO */
.intro{padding:34px 0 24px}
.introGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:start;
}
.introLogos{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}
.introLogos img{
  max-width:180px;
  height:auto;
  object-fit:contain;
}
.introLogosBand{
  background: var(--dark2);
  padding:32px 0;
}
.introLogos--row{
  flex-direction:row;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
}
.introLogos--row img{
  max-width:160px;
}
/* Intro index (stile scuro centrato) */
.intro--index{
  padding:48px 0 40px;
  background: linear-gradient(180deg, var(--dark), var(--dark2));
  color:#fff;
}
.intro--index .container{text-align:center}
.intro--index .introLeft--full{max-width:64ch; margin:0 auto}
.intro--index .kicker.dark{color:rgba(255,255,255,.55)}
.intro--index .h2{color:#fff}
.intro--index .p{color:rgba(255,255,255,.75)}
.intro--index .h2,
.intro--index .p{margin-left:auto; margin-right:auto}
.introLeft--full{max-width:62ch}

/* Chi siamo — statement (variante quote) */
.introStatement{
  margin:36px auto 0;
  padding:28px 28px 28px 32px;
  max-width:52ch;
  text-align:left;
  border-left:4px solid var(--accent);
  background:rgba(255,255,255,.04);
  border-radius:0 var(--radius) var(--radius) 0;
}
.introStatementLead{
  margin:0;
  font-size:clamp(21px, 2.6vw, 28px);
  font-weight:700;
  letter-spacing:-.025em;
  line-height:1.2;
  color:#fff;
}
.introStatementActions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 14px;
  margin:18px 0 0;
  padding:0;
  font-size:14px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
}
.introStatementActions span:not(.introStatementDot){
  color:var(--accent);
}
.introStatementDot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  flex-shrink:0;
}

/* Hero home — full-bleed cinematografica */
.heroBleed{
  position:relative;
  min-height:560px;
  min-height:88vh;
  min-height:88dvh;
  min-height:min(88vh, 820px);
  min-height:min(88dvh, 820px);
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:end;
  -webkit-align-items:flex-end;
  -ms-flex-align:end;
  align-items:flex-end;
  overflow:hidden;
  background: var(--dark);
}
.heroBleedMedia{
  position:absolute;
  top:0;right:0;bottom:0;left:0;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:#001a1b;
}
.heroBleedMedia picture,
.heroBleedMedia img{
  width:100%;
  height:100%;
  display:block;
}
.heroBleedMedia img{
  -webkit-object-fit:cover;
  -o-object-fit:cover;
  object-fit:cover;
  -webkit-object-position:center 45%;
  object-position:center 45%;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.heroBleedScrim{
  position:absolute;
  top:0;right:0;bottom:0;left:0;
  inset:0;
  z-index:1;
  background:
    -webkit-linear-gradient(left, rgba(0,36,37,.88) 0%, rgba(0,36,37,.55) 42%, rgba(0,36,37,.18) 70%, rgba(0,36,37,.08) 100%),
    -webkit-linear-gradient(bottom, rgba(0,26,27,.55) 0%, transparent 42%);
  background:
    linear-gradient(90deg, rgba(0,36,37,.88) 0%, rgba(0,36,37,.55) 42%, rgba(0,36,37,.18) 70%, rgba(0,36,37,.08) 100%),
    linear-gradient(0deg, rgba(0,26,27,.55) 0%, transparent 42%);
  pointer-events:none;
}
.heroBleedContent{
  position:relative;
  z-index:2;
  width:100%;
  padding-top:72px;
  padding-bottom:56px;
  max-width:var(--max);
}
.heroBleedBrand{
  margin:0 0 14px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}
.heroBleedTitle{
  color:#fff;
  max-width:18ch;
  margin:0;
}
.heroBleedTitle .highlight{
  background: linear-gradient(to top, rgba(26,163,111,.45) 35%, transparent 35%);
}
.heroBleedLead{
  color:rgba(255,255,255,.78);
  max-width:52ch;
  margin-top:16px;
}
.heroBleed .heroCtaRow{margin-top:26px}
.heroBleedBtn{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  color:#fff;
}
.heroBleedBtn:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}

/* Legacy home hero (unused, keep utilities) */
.heroStudio--home{padding:28px 0 40px}
.heroHomeText{max-width:72ch; margin-bottom:28px}
.heroHomeText .display{max-width:22ch}
.heroCtaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.renderCarousel{
  position:relative;
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:var(--panel);
  aspect-ratio: 21 / 9;
  min-height:280px;
  padding-bottom:0;
}
.renderCarousel.room-slideshow:not(.bathroom-slider){
  padding-bottom:0;
  aspect-ratio: 21 / 9;
}
.renderCarousel .slides{
  position:absolute;
  inset:0;
}
.renderCarousel .slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity .4s ease;
}
.renderCarousel .slides img.active{opacity:1}
.renderCarousel .slide-nav{opacity:1}
.renderCarousel .slide-dots{padding:16px}

/* Metodo */
.methodHead{max-width:56ch; margin-bottom:28px}
.methodGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.methodCard{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 20px;
  box-shadow:var(--shadow);
}
.methodCard b{
  display:block;
  font-size:15px;
  margin-bottom:8px;
  letter-spacing:.02em;
}
.methodCard p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}
.methodClosing{
  margin:28px 0 0;
  max-width:52ch;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.01em;
  line-height:1.35;
}

/* Opportunità */
.opportunityBand{
  background: linear-gradient(180deg, var(--dark), var(--dark2));
  color:#fff;
  padding:56px 0;
}
.opportunityInner{
  max-width:56ch;
  text-align:center;
  margin:0 auto;
}
.opportunityBand .h2{color:#fff; margin-top:0}
.opportunityBand .p{color:rgba(255,255,255,.75); margin-left:auto; margin-right:auto}
.opportunityBand .btn{margin-top:22px}

/* Progetti home */
.tabRow--projects{
  grid-template-columns: repeat(3, 1fr);
}
.tabPanelText{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.45;
}
.thumbRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:14px}
.thumbRow img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  border-radius:14px; border:1px solid var(--line);
}

.featureList{margin-top:18px; display:grid; gap:12px}
.feature{
  display:flex; align-items:center; gap:12px;
  font-size:14px; color:var(--muted);
}
.feature i{width:18px; text-align:center; color:var(--accent); opacity:.8}
.feature b{color:var(--text)}


/* PRICE PANEL */
.pricePanel{
  background: rgba(251,248,243,.9);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: var(--shadow);
}
.priceTop{display:flex; justify-content:space-between; gap:14px; align-items:flex-start}
.price{
  display:flex; align-items:baseline; gap:6px;
  letter-spacing:-.03em;
}
.price .cur{font-weight:900; font-size:16px}
.price .val{font-weight:1000; font-size:44px; line-height:1}
.price .per{color:var(--muted); font-weight:900; font-size:12px}
.availability{padding:10px 12px; border-radius:16px; border:1px solid rgba(26,163,111,.25); background: rgba(26,163,111,.10)}
.availability small{display:block; color:var(--muted); font-weight:800; font-size:11px; letter-spacing:.12em; text-transform:uppercase}
.availability b{display:block; margin-top:3px}

.priceBreakdown{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.priceBreakdownRow{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:var(--muted); font-weight:800;
}
.priceBreakdownRow b{color:var(--text)}
.priceBreakdownPlus{font-size:12px; margin-top:6px}
.priceBreakdownZero{background: rgba(0,0,0,.06); margin-top:6px; padding:10px 14px; border-radius:8px}
.priceBreakdownZero span,.priceBreakdownZero .zeroAgenzia{font-size:12px; font-weight:800}
.priceBreakdownZero span{color:var(--muted)}
.priceBreakdownZero .zeroAgenzia{color:var(--text)}
.priceBreakdownDivider{
  height:1px; background:var(--line); margin:10px 0;
}
.priceBreakdownTotal{
  font-size:14px; color:var(--text); font-weight:900;
}
.priceBreakdownTotal b{color:var(--accent); font-size:15px}

.priceMeta{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:10px; margin-top:12px;
}
.priceMeta > div{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  display:flex; justify-content:space-between; gap:10px;
  color:var(--muted); font-weight:800; font-size:12.5px;
}
.priceMeta b{color:var(--text)}
.pillRow{display:grid; grid-template-columns: 1fr; gap:10px; margin-top:12px}
.pillGroup{display:flex; flex-wrap:wrap; align-items:center; gap:8px}
.pillGroupTitle{
  font-size:11px; color:var(--muted); letter-spacing:.1em; text-transform:uppercase;
  width:100%;
}
.pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 11px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  font-size:12px; font-weight:900; color:var(--muted);
}
.pill.included{
  border-color: rgba(26,163,111,.35); background: rgba(26,163,111,.12); color:#0f6b48;
}
.pill.excluded{
  /* Stile per le spese escluse, più neutro */
  opacity: .8;
}
.pill.ghost{background:transparent}
.ctaRow{display:flex; gap:10px; margin-top:12px}
.ctaRow .btn{flex:1}

.note{
  margin-top:12px;
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(200,140,60,.35);
  background: rgba(200,140,60,.14);
  color:#7a5a12;
  font-size:12.5px;
  font-weight:800;
}
.note .i{
  width:22px; height:22px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(200,140,60,.35);
  background: rgba(255,255,255,.55);
  font-weight:1000;
}

/* DARK BAND (modello - sfondo grigio) */
.darkBand{
  background:#e8e6e3;
  color:var(--text);
  padding:54px 0;
  margin-top:10px;
}
.kicker.dark{color:var(--muted)}
.darkTitle{color:var(--text)}
.darkHead{margin-bottom:24px}
.darkSub{color:var(--muted); margin:12px 0 0; max-width:56ch}
.iconGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.iconCard{
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  background: rgba(255,255,255,.6);
  box-shadow: var(--shadow);
}
.icon{
  width:34px; height:34px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  margin-bottom:12px;
  background: var(--panel);
  color:var(--accent);
}
.iconCard b{display:block; letter-spacing:.02em; color:var(--text)}
.iconCard p{margin:8px 0 0; color:var(--muted); font-size:13.5px}

/* PRINCIPLES SPLIT */
.principles{padding:60px 0}
.principlesHead{margin-bottom:24px}
.featureGrid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:14px;
}
.featureCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.featureCard img{
  height:320px;
  width:100%;
  object-fit:cover;
}
.featureCardBody{
  padding:16px;
}
.featureCardBody p{margin:8px 0 0; color:var(--muted); font-size:14px}

/* BATHROOMS */
.bathrooms{padding:10px 0 60px}
.bathroomGrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:24px;
  align-items:start;
}
.bathroomText .kicker{margin-top:0}
.bathroomText .h2{margin-top:0}
.bathroomCol .bathroomDesc{
  padding:14px;
}
.bathroomDesc b{display:block; font-size:15px; margin-bottom:4px}
.bathroomDesc p{margin:0; color:var(--muted); font-size:14px}
.bathroomCol{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.bathroom-slider{
  position:relative;
  padding-bottom: 177.78%;
  aspect-ratio: 9 / 16;
  overflow:hidden;
  border-radius: var(--radius2);
}
@supports (aspect-ratio: 1){.bathroom-slider{padding-bottom:0}}
.bathroom-slider .slides{position:relative; width:100%; height:100%;}
.bathroom-slider .slides img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  object-position: center top;
  opacity:0; transition: opacity .35s ease;
}
.bathroom-slider .slides img.active{opacity:1;}
.bathroom-slider .slide-nav{
  position:absolute; top:50%; left:8px; right:8px;
  transform: translateY(-50%);
  display:flex; justify-content:space-between;
  opacity:0; transition: opacity .2s ease;
  pointer-events:none;
}
.bathroom-slider .slide-nav button{
  pointer-events:auto;
  width:32px; height:32px; border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(0,36,37,.25);
  color:white;
  cursor:pointer; font-size:18px; line-height:1;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.bathroom-slider .slide-nav button:hover{
  background:rgba(0,36,37,.45);
  border-color:rgba(255,255,255,.6);
}
.bathroom-slider:hover .slide-nav{opacity:1;}
.bathroom-slider .slide-dots{
  position:absolute; bottom:0; left:0; right:0;
  display:flex; justify-content:center;
  padding:14px;
  gap:6px;
}
.bathroom-slider .slide-dots .dot{
  width:6px; height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  cursor:pointer;
  border:0; padding:0;
  transition: background .2s, transform .2s;
}
.bathroom-slider .slide-dots .dot:hover{background:rgba(255,255,255,.7);}
.bathroom-slider .slide-dots .dot.active{
  background:white;
  transform:scale(1.2);
}

/* TERRAZZO */
.terrazzo{padding:10px 0 60px}
.terrazzoGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
  align-items:center;
}
.terrazzoText .kicker{margin-top:0}
.terrazzoText .h2{margin-top:0}
.terrazzoImg{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.terrazzoImg img{
  width:100%;
  height:auto;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  display:block;
}

/* TAB ROW (Portfolio - tre colonne nella stessa riga) */
.tabRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
.tabColTitle{
  margin:0 0 14px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.tabColLabel{
  position:absolute;
  left:14px;
  top:14px;
  z-index:2;
  margin:0;
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(251,248,243,.95);
  border:2px solid var(--accent);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink);
  box-shadow:0 4px 16px rgba(26,163,111,.2);
  pointer-events:none;
}
.tabColLink{
  text-decoration:none;
  color:inherit;
  display:block;
  transition: transform .2s, box-shadow .2s;
}
.tabColLink:hover{
  transform:translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.tabColLink .tabColImg{
  position:relative;
  overflow:hidden;
}
.tabColLink .tabColImg img{
  width:100%;
  aspect-ratio: 2 / 1;
  object-fit:cover;
  display:block;
}
.tabColBtn{
  display:inline-block;
  margin-top:16px;
  text-decoration:none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.tabColBtn:hover{
  transform:translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,163,111,.35);
}
.tabColBtn.primary:hover{
  background:#158a5c;
  border-color:#158a5c;
}
.tabPanelDesc{
  margin:16px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}
.tabPanelDesc a{color:var(--accent); text-decoration:underline}
.portfolioSlider{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.portfolioVideo{
  position:relative;
  aspect-ratio: 2 / 1;
}
.portfolioVideo video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.portfolioSlider.room-slideshow:not(.bathroom-slider){
  padding-bottom: 50%;
  aspect-ratio: 2 / 1;
}
@supports (aspect-ratio: 1){.portfolioSlider.room-slideshow{padding-bottom:0}}

/* ROOMS CAROUSEL */
.roomsCarousel{padding:10px 0 56px}
.roomsCarouselHead{margin-bottom:24px}
.roomsCarouselGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.roomsCarouselGrid--3{
  grid-template-columns: repeat(3, 1fr);
}
.roomFeaturesBox{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap:24px;
  align-items:center;
}
.roomFeaturesBox .p{margin:0}
.roomFeaturesBox .featureList{margin:0}
.room-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.room-slideshow{position:relative; overflow:hidden;}
.room-slideshow:not(.bathroom-slider){
  padding-bottom: 75%;
  aspect-ratio: 4 / 3;
}
@supports (aspect-ratio: 1){.room-slideshow:not(.bathroom-slider){padding-bottom:0}}
.room-slideshow .slides{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.room-slideshow .slides img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  opacity:0; transition: opacity .3s ease;
}
.room-slideshow .slides img.active{opacity:1;}
.slide-nav{
  position:absolute; top:50%; left:10px; right:10px;
  transform: translateY(-50%);
  display:flex; justify-content:space-between;
  opacity:0; transition: opacity .2s ease;
}
.room-slideshow:hover .slide-nav{opacity:1;}
.slide-nav button{
  width:36px; height:36px; border-radius:99px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(0,36,37,.3); color:white;
  cursor:pointer; font-size:20px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.slide-dots{
  position:absolute; bottom:0; left:0; right:0;
  display:flex;
  padding:12px;
  gap:4px;
}
.slide-dots .dot{
  flex:1;
  height:4px; border-radius:99px;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  border:0; padding:0;
}
.slide-dots .dot.active{background:white;}

.room-card-body{
  padding:14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.room-card-body b{font-size:15px}
.badge{
  padding:8px 10px; border-radius:999px; border:1px solid var(--line);
  font-size:12px; font-weight:900; color:var(--muted); background: rgba(255,255,255,.55);
}
.badge.ok{border-color: rgba(26,163,111,.35); background: rgba(26,163,111,.12); color:#0f6b48}
.badge.off{opacity:.85}
.badge.ghost{background:transparent}

/* BIG CTA */
.bigCta{padding:60px 0}
.bigCtaGrid{
  display:grid; grid-template-columns: .8fr 1.2fr;
  gap:18px; align-items:center;
}
.bigCtaImg{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  height: 420px;
}
.bigCtaText .featureList{margin-top:24px}
.bigCtaImg img{width:100%; height:100%; object-fit:cover}

/* MAP */
.mapSection{padding:10px 0 0}
.mapEmbed{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

/* LOCATION */
.loc{padding:26px 0 70px}
.locGrid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:14px; margin-top:14px;
}
.locCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.locCard img{height:250px; width:100%; object-fit:cover}
.locBody{padding:14px}
.locBody p{margin:8px 0 0; color:var(--muted)}

/* FAQ */
.faqWrap{padding:40px 0}
.faqGrid{display:grid; grid-template-columns: .8fr 1.2fr; gap:18px}
.faq{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.55);
}
.qa{border-top:1px solid var(--line)}
.qa:first-child{border-top:0}
.q{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:16px;
  cursor:pointer;
  font-weight:950;
  display:flex; justify-content:space-between; gap:10px;
}
.a{display:none; padding:0 16px 16px; color:var(--muted)}
.qa.open .a{display:block}

/* CONTACT */
.contact{padding:56px 0 70px}
.contactGrid{display:grid; grid-template-columns: .8fr 1.2fr; gap:18px}
.form{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  padding:16px;
  box-shadow: var(--shadow);
}
.formRow{margin-bottom:12px}
.formRow.has-error input,
.formRow.has-error select,
.formRow.has-error textarea{border-color:#c0392b; background:rgba(192,57,43,.06)}
.formRow-error{
  display:none;
  font-size:12px;
  color:#c0392b;
  font-weight:700;
  margin-top:6px;
}
.formRow.has-error .formRow-error{display:block}
.formRow label{display:block; font-size:12px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; font-weight:900; margin-bottom:8px}
input, select, textarea{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  padding:12px 12px;
  background: rgba(251,248,243,.9);
  outline:none;
  font-size:14px;
}
textarea{min-height:120px; resize:vertical}
.formRow.two{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.phoneGroup{display:flex; gap:8px; align-items:stretch}
.phoneGroup select{width:auto; min-width:100px; flex-shrink:0}
.phoneGroup input{flex:1; min-width:0}
.formCheckbox .checkboxLabel{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
  letter-spacing:normal;
  text-transform:none;
}
.formCheckbox .checkboxLabel input[type="checkbox"]{
  width:18px;
  height:18px;
  min-width:18px;
  margin-top:2px;
  accent-color:var(--accent);
}
.formCheckbox .checkboxLabel span{line-height:1.4}
.formActions{display:flex; gap:10px; margin-top:6px}
.formActions .btn{flex:1}
.formNote{margin:10px 0 0; color:var(--muted); font-size:12.5px; font-weight:700}

/* Thank you section (dopo invio form) */
.thankYouSection{
  display:none;
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
  padding:32px;
  box-shadow:var(--shadow);
}
.thankYouSection.is-visible{display:block}
.thankYouContent .h2{margin:0 0 12px; font-size:22px}
.thankYouContent .p{margin:0 0 8px; color:var(--muted); font-weight:700}
.thankYouNote{margin:16px 0 0; font-size:14px; color:var(--accent); font-weight:800}

/* Nav mobile overlay - nascosto su desktop */
.navMobileOverlay{display:none}

/* FOOTER */
.footer{
  background:var(--dark);
  color:#fff;
  padding:54px 0 20px;
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.1);
}
/* Footer monfalcone (layout precedente) */
.footerGrid{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.footerLeft p{margin:8px 0 0; color: rgba(255,255,255,.65); font-weight:800; font-size:13px}
.footerSmall{color: rgba(255,255,255,.55); font-weight:800; letter-spacing:.08em; text-transform:uppercase; font-size:12px}
.footerCols{display:grid; grid-template-columns: 1fr 1fr; gap:18px}
.footerCols b{display:block; margin-bottom:10px}
.footerCols a{
  display:block; margin:8px 0; color: rgba(255,255,255,.65); font-weight:800; font-size:13px;
  transition: color .2s ease;
  cursor:pointer;
}
.footerCols a:hover{color:#fff}
/* Footer index (4 sezioni) */
.footerGrid2{grid-template-columns:repeat(2, 1fr)}
.footerGrid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
  align-items:start;
}
.footerCol b{
  display:block;
  margin-bottom:10px;
  color: rgba(255,255,255,.55);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.footerLogo{display:block; margin-bottom:16px}
.footerLogo img{height:110px; width:auto; opacity:.95; transition:opacity .2s}
.footerLogo:hover img{opacity:1}
.footerCol .footerSmall{text-transform:uppercase}
.footerCol p{margin:8px 0 0; color: rgba(255,255,255,.65); font-weight:800; font-size:13px}
.footerCol a{
  display:block; margin:8px 0; color: rgba(255,255,255,.65); font-weight:800; font-size:13px;
  transition: color .2s ease;
  cursor:pointer;
}
.footerCol a:hover{color:#fff}
.footerBottom{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  color: rgba(255,255,255,.55);
  font-weight:800;
  font-size:12px;
}
.footerBottom p{margin:4px 0 0}
.legalInfo{opacity:.8; font-size:11px}
.footerMail{display:flex; gap:10px; margin-top:12px}
.footerMail input{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color:#fff;
}
.footer a{color: rgba(255,255,255,.65)}
.footer a:hover{color:#fff}
.footerBrand{
  pointer-events:none;
  position:absolute;
  left:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom:-40px;
  font-size: 92px;
  font-size: clamp(92px, 14vw, 190px);
  letter-spacing:.08em;
  opacity:.08;
  font-weight:1000;
  white-space:nowrap;
}

/* Back to top */
.backToTop{
  position:fixed;
  bottom:24px;
  right:24px;
  width:48px;
  height:48px;
  border:0;
  background:var(--accent);
  color:#fff;
  border-radius:50%;
  cursor:pointer;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
  box-shadow: var(--shadow);
}
.backToTop.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.backToTop:hover{transform:translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,.15)}
.backToTop:focus-visible{outline:2px solid var(--text); outline-offset:2px}
.backToTop .backToTopProgress{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transform:rotate(-90deg);
}
.backToTop .backToTopBg{
  stroke:rgba(255,255,255,.3);
}
.backToTop .backToTopFill{
  stroke:#fff;
  transition: stroke-dashoffset .15s ease-out;
}
.backToTop .backToTopArrow{
  position:relative;
  z-index:1;
  font-size:20px;
  font-weight:900;
  line-height:1;
}

/* MODAL (pulito) */
.modal{
  position:fixed;
  top:0;right:0;bottom:0;left:0;
  background:rgba(0,36,37,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  overflow-y:auto;
  padding:20px;
  box-sizing:border-box;
}
.modalBox{
  width:min(980px, 92vw);
  max-height:calc(100vh - 40px);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  margin:auto;
  flex-shrink:0;
}
.modalTop{display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-bottom:1px solid rgba(0,0,0,.08)}
.modalBody{padding:14px}
.modalGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}

/* LIGHTBOX immagine intera */
.lightbox{
  position:fixed;
  top:0;right:0;bottom:0;left:0;
  background:rgba(0,36,37,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
  padding:60px 70px 40px;
  cursor:zoom-out;
  box-sizing:border-box;
}
.lightbox img{
  max-width:100%;
  max-height:calc(100vh - 100px);
  width:auto;
  height:auto;
  object-fit:contain;
  cursor:default;
}
.lightboxClose{
  position:fixed;
  top:20px;
  right:20px;
  width:44px;
  height:44px;
  border:0;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:28px;
  line-height:1;
  border-radius:50%;
  cursor:pointer;
  transition:background .2s;
  z-index:1001;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightboxClose:hover{
  background:rgba(255,255,255,.3);
}
.lightboxPrev,
.lightboxNext{
  position:fixed;
  top:50%;
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
  width:48px;
  height:48px;
  z-index:1001;
  border:0;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:32px;
  line-height:1;
  border-radius:50%;
  cursor:pointer;
  transition:background .2s;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightboxPrev{left:16px}
.lightboxNext{right:16px}
.lightboxPrev:hover,
.lightboxNext:hover{
  background:rgba(255,255,255,.3);
}
.lightboxPrev:focus-visible,
.lightboxNext:focus-visible{
  outline:2px solid #fff; outline-offset:2px;
}

/* ANIMATIONS */
.fade-in-section {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .heroSplitGrid{grid-template-columns:1fr; gap:24px}
  .heroMedia{grid-template-columns:1fr}
  .heroImgSmall{min-height:240px}
  .heroHomeText .display{max-width:none}
  .heroBleed{
    min-height:480px;
    min-height:78vh;
    min-height:78dvh;
    min-height:min(78vh, 680px);
    min-height:min(78dvh, 680px);
    -webkit-box-align:end;
    -webkit-align-items:flex-end;
    -ms-flex-align:end;
    align-items:flex-end;
  }
  .heroBleedScrim{
    background:
      -webkit-linear-gradient(top, rgba(0,36,37,.35) 0%, rgba(0,36,37,.82) 55%, rgba(0,26,27,.94) 100%);
    background:
      linear-gradient(180deg, rgba(0,36,37,.35) 0%, rgba(0,36,37,.82) 55%, rgba(0,26,27,.94) 100%);
  }
  .heroBleedContent{padding-top:48px; padding-bottom:36px}
  .heroBleedTitle{max-width:none}
  .renderCarousel{aspect-ratio: 16 / 9; min-height:220px}
  .tabRow,
  .tabRow--projects{grid-template-columns:1fr}
  .methodGrid{grid-template-columns: repeat(2, 1fr)}
  .introGrid, .prGrid, .bigCtaGrid, .locGrid, .faqGrid, .contactGrid, .footerGrid, .roomFeaturesBox, .bathroomGrid, .terrazzoGrid{
    grid-template-columns:1fr;
  }
  .footerCols{grid-template-columns:1fr}
  /* Footer mobile - tutto centrato */
  .footer .container{text-align:center}
  .footerGrid,.footerGrid4{text-align:center; justify-items:center}
  .footerLeft,.footerRight,.footerCol{
    display:flex; flex-direction:column; align-items:center; text-align:center;
    -webkit-box-align:center; -ms-flex-align:center;
  }
  .footerLogo{margin-left:auto; margin-right:auto}
  .footerCols{justify-items:center; text-align:center}
  .footerCols > div{display:flex; flex-direction:column; align-items:center; text-align:center}
  .iconGrid{grid-template-columns: repeat(2, 1fr);}
  .formRow.two{grid-template-columns:1fr}
  .roomsCarouselGrid,
  .roomsCarouselGrid--3{grid-template-columns:1fr}
  .locGrid{grid-template-columns: 1fr;}

  /* Mobile Nav & Header */
  .navBar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    position:relative;
  }
  .navBar .brand{
    flex:1;
    min-width:0;
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
    gap:4px;
  }
  .navBar .brandLogo{
    height:34px;
    max-width:min(160px, 52vw);
  }
  .navBar .brand--detail .brandLogo{height:32px; max-width:min(150px, 48vw)}
  .navBar .brandText small{
    margin-top:0;
    font-size:10px;
    max-width:100%;
    text-align:left;
  }
  .navBar .navLinks{display:none !important}
  .navToggle{
    flex-shrink:0;
    display:flex;
  }
  .navToggle .line{
    display:block; width:22px; height:2px; background:#fff; border-radius:2px;
    transition: transform .25s ease, opacity .25s ease;
  }
  .menu-open .navToggle .line:first-child{
    -webkit-transform: translateY(3.5px) rotate(45deg);
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-open .navToggle .line:last-child{
    -webkit-transform: translateY(-3.5px) rotate(-45deg);
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .navMobileOverlay{
    display:block;
    position:fixed;
    inset:0;
    z-index:9998;
    visibility:hidden;
    pointer-events:none;
  }
  .navMobileOverlay.is-open{
    visibility:visible;
    pointer-events:auto;
  }
  .navMobileBackdrop{
    position:absolute;
    inset:0;
    border:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    cursor:pointer;
    padding:0;
  }
  .navMobileOverlay.is-open .navMobileBackdrop{opacity:1}
  .navMobilePanel{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    width:min(320px, 88vw);
    background:var(--dark);
    display:flex;
    flex-direction:column;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .35s cubic-bezier(0.4,0,0.2,1);
    transition: transform .35s cubic-bezier(0.4,0,0.2,1);
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow:-8px 0 32px rgba(0,0,0,.25);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .navMobileOverlay.is-open .navMobilePanel{
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .navMobileTop{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px 12px;
    border-bottom:1px solid rgba(255,255,255,.08);
    flex-shrink:0;
  }
  .navMobileLogo{display:flex; align-items:center}
  .navMobileLogo img{
    height:32px;
    width:auto;
    display:block;
  }
  .navMobileClose{
    width:44px;
    height:44px;
    border:0;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:26px;
    line-height:1;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    flex-shrink:0;
    -webkit-transition: background .2s;
    transition: background .2s;
  }
  .navMobileClose:hover{background:rgba(255,255,255,.14)}
  .navMobileClose:focus-visible{outline:2px solid var(--accent); outline-offset:2px}
  .navMobileLinks{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:6px 0;
  }
  .navMobileLinks a{
    display:flex;
    align-items:center;
    min-height:52px;
    padding:0 22px;
    font-size:14px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(255,255,255,.82);
    border-bottom:1px solid rgba(255,255,255,.06);
    -webkit-transition: color .2s, background .2s, padding-left .2s;
    transition: color .2s, background .2s, padding-left .2s;
    touch-action: manipulation;
  }
  .navMobileLinks a span{flex:1}
  .navMobileLinks a::after{
    content:"→";
    opacity:0;
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    -webkit-transition: opacity .2s, transform .2s;
    transition: opacity .2s, transform .2s;
    color:var(--accent);
    font-size:16px;
  }
  .navMobileLinks a:hover,
  .navMobileLinks a:active{
    color:#fff;
    background:rgba(255,255,255,.05);
    padding-left:26px;
  }
  .navMobileLinks a:hover::after,
  .navMobileLinks a:active::after{
    opacity:1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .navMobileLinks a:focus-visible{outline:2px solid var(--accent); outline-offset:-2px}
  .navMobileFoot{
    padding:18px 20px 22px;
    border-top:1px solid rgba(255,255,255,.08);
    flex-shrink:0;
  }
  .navMobileCta{
    width:100%;
    justify-content:center;
    min-height:48px;
    font-size:13px;
  }
  body.menu-open{
    overflow:hidden;
    position:fixed;
    width:100%;
    left:0;
    right:0;
  }
}

@media (max-width: 640px){
  .display{font-size:34px}
  .iconGrid{grid-template-columns:1fr;}
  .methodGrid{grid-template-columns:1fr}
  .introStatement{margin-top:28px; padding:22px 20px 22px 24px}
  .introStatementActions{gap:8px 12px; font-size:12px}
  .heroCtaRow .btn{width:100%; justify-content:center}
  .footerGrid4{grid-template-columns:1fr; gap:24px; text-align:center;}
  .lightbox{padding:20px 50px}
  .backToTop{bottom:20px; right:20px; width:44px; height:44px}
  .lightboxPrev{left:8px; width:40px; height:40px; font-size:26px}
  .lightboxNext{right:8px; width:40px; height:40px; font-size:26px}
}
@media (max-width: 480px){
  .roomListItem{grid-template-columns:1fr; text-align:center}
  .roomListItem img{width:100%; height:140px; margin-bottom:8px}
}