:root{
  --bg: #f3f3f3;
  --ink: #0b0b0b;
  --muted: #8a8a8a;
  --maxw: 1200px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --gold: #d8b36a;
}

*{
  box-sizing:border-box;
}

html,
body{
  height:100%;
  margin:0;
}

body{
  min-height:100svh;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height:1.5;
  display:grid;
  grid-template-rows:auto 1fr auto;
  overflow:hidden;
}

.container{
  max-width:var(--maxw);
  width:100%;
  margin-inline:auto;
  padding-inline:20px;
}

/* Header */
.brand{
  padding:16px 16px 10px;
  text-align:center;
}

.logo-verona{
  width:min(100%, 260px);
  max-width:260px;
  height:auto;
  display:block;
  margin:0 auto;
}

/* Showcase */
.showcase{
  display:grid;
  grid-template-columns:1fr;
  grid-template-rows:1fr 1fr;
  gap:16px;
  min-height:0;
  padding:10px 20px 14px;
  width:100%;
}

@media (min-width:760px){
  .showcase{
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr;
    gap:20px;
    padding:14px 20px 16px;
  }

  .logo-verona{
    max-width:300px;
  }
}

.tile{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:var(--radius);
  isolation:isolate;
  box-shadow:var(--shadow);
  background:#ddd;
  text-decoration:none;
  min-height:0;
  height:100%;
}

.tile-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform .6s ease;
}

.tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.18) 100%);
  z-index:1;
}

.tile:hover .tile-img{
  transform:scale(1.06);
}

/* Footer */
.footer{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:10px 16px 16px;
}

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

.social-link{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .2s ease, opacity .2s ease;
}

.social-link:hover{
  transform:translateY(-2px);
  opacity:.92;
}

.social-link{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .2s ease, opacity .2s ease;

  color:#d8b36a; /* GOLD COLOR */
}

.social-link svg{
  width:22px;
  height:22px;
  fill:currentColor; /* 🔥 THIS IS THE FIX */
}

@media (max-width:480px){
  .brand{
    padding:12px 12px 8px;
  }

  .logo-verona{
    max-width:190px;
  }

  .showcase{
    gap:12px;
    padding:8px 14px 10px;
  }

  .footer{
    padding:8px 12px 12px;
  }

  .social-link{
    width:38px;
    height:38px;
  }

  .social-link svg{
    width:20px;
    height:20px;
  }
}

/* Popup */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:99999;
}

.popup-overlay.hidden{
  display:none;
}

.popup-modal{
  position:relative;
  width:min(1000px, calc(100vw - 40px));
  max-height:min(88svh, 880px);
  background:#fff;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  overflow:hidden;
}

.popup-grid{
  display:grid;
  grid-template-columns:minmax(260px, 360px) minmax(0, 1fr);
  align-items:stretch;
  max-height:min(88svh, 880px);
}

.popup-left{
  background:#111;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  min-height:0;
}

.popup-image{
  width:100%;
  height:100%;
  max-height:calc(min(88svh, 880px) - 28px);
  object-fit:contain;
  object-position:center;
  border-radius:14px;
  display:block;
  background:#111;
}

.popup-right{
  padding:34px 30px 28px;
  overflow:auto;
  min-width:0;
  min-height:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.popup-close{
  position:absolute;
  top:10px;
  right:12px;
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  color:#222;
  z-index:10;
}

.popup-subtitle{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(24px, 2vw, 34px);
  color:#222;
  line-height:1.05;
}

.popup-title{
  margin:6px 0 0;
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(38px, 4.2vw, 64px);
  line-height:.92;
  letter-spacing:.02em;
  color:#111;
}

.popup-line{
  width:110px;
  height:2px;
  background:var(--gold);
  margin:18px 0 20px;
  flex:0 0 auto;
}

.popup-text{
  margin:0 0 14px;
  font-size:clamp(16px, 1.3vw, 18px);
  line-height:1.45;
  color:#222;
}

.popup-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  min-height:54px;
  padding:14px 22px;
  border-radius:14px;
  background:#111;
  color:#fff;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  transition:transform .2s ease, opacity .2s ease;
  width:100%;
  max-width:520px;
}

.popup-whatsapp-btn:hover{
  transform:translateY(-2px);
  opacity:.95;
}

/* Floating WhatsApp */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  z-index:99990;
  text-decoration:none;
}

.whatsapp-float svg{
  width:34px;
  height:34px;
  fill:#fff;
}

.whatsapp-float::before,
.whatsapp-float::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid rgba(37, 211, 102, .45);
  animation:whatsappPulse 2s infinite;
}

.whatsapp-float::after{
  animation-delay:1s;
}

@keyframes whatsappPulse{
  0%{
    transform:scale(1);
    opacity:.8;
  }
  100%{
    transform:scale(1.8);
    opacity:0;
  }
}

/* Large laptops */
@media (max-width:1200px){
  .popup-modal{
    width:min(940px, calc(100vw - 32px));
  }

  .popup-grid{
    grid-template-columns:minmax(240px, 320px) minmax(0, 1fr);
  }

  .popup-right{
    padding:28px 24px 24px;
  }
}

/* Tablet */
@media (max-width:900px){
  .popup-overlay{
    padding:14px;
  }

  .popup-modal{
    width:min(760px, calc(100vw - 28px));
    max-height:90svh;
  }

  .popup-grid{
    grid-template-columns:1fr;
    max-height:90svh;
  }

  .popup-left{
    padding:14px 14px 0;
    background:#fff;
  }

  .popup-image{
    width:100%;
    height:auto;
    max-height:280px;
    object-fit:contain;
    border-radius:14px;
    background:#111;
  }

  .popup-right{
    padding:22px 18px 20px;
    overflow:auto;
  }

  .popup-whatsapp-btn{
    max-width:none;
  }
}

/* Mobile */
@media (max-width:600px){
  .popup-overlay{
    padding:8px;
    align-items:center;
  }

  .popup-modal{
    width:calc(100vw - 16px);
    max-height:92svh;
    border-radius:16px;
  }

  .popup-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto 1fr;
    max-height:92svh;
  }

  .popup-left{
    padding:10px 10px 0;
    background:#fff;
    flex:none;
  }

  .popup-image{
    width:100%;
    height:auto;
    max-height:38svh;
    min-height:160px;
    object-fit:contain;
    object-position:center;
    border-radius:12px;
    background:#111;
  }

  .popup-right{
    padding:16px 14px 16px;
    overflow:auto;
    justify-content:flex-start;
  }

  .popup-close{
    top:6px;
    right:6px;
    width:34px;
    height:34px;
    font-size:26px;
    color:#111;
    background:rgba(255,255,255,.88);
    border-radius:50%;
  }

  .popup-subtitle{
    font-size:20px;
  }

  .popup-title{
    font-size:34px;
    line-height:.95;
    margin-top:2px;
  }

  .popup-line{
    width:90px;
    margin:12px 0 14px;
  }

  .popup-text{
    font-size:15px;
    line-height:1.4;
    margin-bottom:10px;
  }

  .popup-whatsapp-btn{
    min-height:48px;
    font-size:16px;
    padding:12px 14px;
    width:100%;
    max-width:none;
    margin-top:8px;
  }

  .whatsapp-float{
    width:56px;
    height:56px;
    right:12px;
    bottom:12px;
  }

  .whatsapp-float svg{
    width:28px;
    height:28px;
  }
}

/* Very small phones */
@media (max-width:390px){
  .popup-overlay{
    padding:6px;
  }

  .popup-modal{
    width:calc(100vw - 12px);
    max-height:94svh;
  }

  .popup-image{
    max-height:34svh;
    min-height:140px;
  }

  .popup-right{
    padding:14px 12px 14px;
  }

  .popup-subtitle{
    font-size:18px;
  }

  .popup-title{
    font-size:30px;
  }

  .popup-text{
    font-size:14px;
    margin-bottom:9px;
  }

  .popup-whatsapp-btn{
    font-size:15px;
    min-height:46px;
  }
}

/* Very short screens */
@media (max-height:760px){
  .popup-modal{
    max-height:94svh;
  }

  .popup-grid{
    max-height:94svh;
  }

  .popup-image{
    max-height:32svh;
  }

  .popup-right{
    padding-top:14px;
    padding-bottom:14px;
  }

  .popup-title{
    font-size:clamp(28px, 5vw, 44px);
  }

  .popup-text{
    font-size:14px;
    margin-bottom:8px;
  }

  .popup-whatsapp-btn{
    min-height:46px;
  }
}