:root{
      --black:#0b0b0b;
      --white:#ffffff;

      --gray-50:#f7f7f7;
      --gray-100:#f1f1f1;
      --gray-200:#e2e2e2;
      --gray-400:#b5b5b5;
      --gray-700:#3a3a3a;

      --orange:#e06b1a;
      --orange-dark:#c85f17;
      --orange-soft:#fff1e6;

      --max:1100px;
      --radius:18px;
      --shadow:0 18px 60px rgba(0,0,0,.14);
      --shadow-soft:0 12px 30px rgba(0,0,0,.10);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      color:var(--black);
      background:var(--white);
      line-height:1.6;
    }
    img{max-width:100%;display:block}
    a{color:inherit}
    .container{width:min(var(--max), calc(100% - 2rem)); margin-inline:auto}

    /* Top bar */
    .topbar{
      background:var(--black);
      color:var(--gray-200);
      font-size:.9rem;
    }
    .topbar .inner{
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
      padding:.65rem 0;
    }
    .topbar a{color:var(--gray-200); text-decoration:none}
    .topbar a:hover{color:var(--white)}
    .topbar .meta{display:flex; gap:1rem; flex-wrap:wrap}
    .topbar .meta span{opacity:.9}

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,11,11,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.75rem;
      text-decoration:none;
      color:var(--white);
      white-space:nowrap;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, #111, #000);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      place-items:center;
      box-shadow:0 6px 20px rgba(0,0,0,.35);
      font-size:.95rem;
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }

    /* --- NAV: smooth hover + dropdowns --- */
.primary-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:1.1rem;
}

.primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:var(--gray-200);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  padding:.45rem .2rem;
  transition: color .18s ease, transform .18s ease;
  will-change: transform;
}

/* Animated underline */
.primary-nav a::after{
  content:"";
  position:absolute;
  left:.2rem;
  right:.2rem;
  bottom:.15rem;
  height:2px;
  border-radius:999px;
  background: var(--orange, #e06b1a);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}

/* Hover / focus animation */
.primary-nav a:hover,
.primary-nav a:focus-visible{
  color:var(--white);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Dropdown container */
.has-dropdown{
  position:relative;
}

/* Chevron subtle animation */
.has-dropdown .chev{
  font-size:.8rem;
  opacity:.85;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev{
  transform: translateY(1px) rotate(180deg);
  opacity:1;
}

/* Dropdown panel */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  margin-top: .35rem;
  min-width: 220px;
  padding:.5rem;
  margin:0;
  list-style:none;

  background: rgba(11,11,11,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

/* Open on hover (desktop) + keyboard focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Dropdown links */
.dropdown a{
  width:100%;
  padding:.65rem .6rem;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-weight:650;
  font-size:.92rem;
}

.dropdown a::after{ display:none; } /* remove underline inside dropdown */
.dropdown a:hover,
.dropdown a:focus-visible{
  background: rgba(255,255,255,.07);
  transform: none;
  color: var(--white);
}

/* Keep your existing mobile breakpoint behaviour */
@media (max-width: 980px){
  .primary-nav .nav-list{display:none;} /* you already hide desktop nav here */
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.topbar-social{
  display:flex;
  gap:.45rem;
  margin-left:.5rem;
}

.topbar-social a{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: background .15s ease, transform .15s ease;
}

.topbar-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.topbar-social svg{
  width:14px;
  height:14px;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 560px){
  .topbar-social{
    display:none;
  }
}


    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      padding:.7rem 1rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:transparent;
      color:var(--white);
      text-decoration:none;
      font-weight:700;
      font-size:.95rem;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.26)}
    .btn.primary{
      background:var(--orange);
      color:var(--white);
      border-color:transparent;
    }

    .btn.primary:hover{
      background:var(--orange-dark);
    }

 .btn-orange{
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.btn-orange:hover{
  background: var(--orange-dark);
  color: var(--white);
}


    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
    }
    .burger:active{transform: translateY(1px)}

    /* Mobile nav */
    @media (max-width: 980px){
      nav ul{display:none}
      .burger{display:inline-grid; place-items:center}
    }
    .mobile-menu{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(11,11,11,.92);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:block;
      padding:1rem 0;
      color:var(--gray-200);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-weight:650;
    }
    .mobile-menu a:hover{color:var(--white)}
    .mobile-menu .container{padding-bottom:.25rem}

/* ===== Full-screen section framework ===== */
    .screen{
      min-height: calc(100vh - 78px);
      display:grid;
      align-items:center;
      padding: 2.6rem 0;
    }
    .split{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:1.25rem;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .split{grid-template-columns:1fr}
      .screen{min-height:auto}
    }

    /* ===== Hero: big, cinematic + not tacky ===== */
    .hero{
      position:relative;
      overflow:hidden;
      color:var(--white);
      background:#000;
    }
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.85)),
        url("");
      background-size:cover;
      background-position:center;
      transform: scale(1.03);
    }
    .hero::after{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 420px at 18% 35%, rgba(224,107,26,.22), transparent 60%),
        radial-gradient(900px 420px at 82% 40%, rgba(255,255,255,.10), transparent 62%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:1.2rem;
      flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:.35rem .75rem;
      border-radius:999px;
      background: rgba(224,107,26,.16);
      border:1px solid rgba(224,107,26,.28);
      color:#ffd7b8;
      font-weight:900;
      font-size:.92rem;
      width:max-content;
    }
    .hero h1{
      margin:.65rem 0 .35rem;
      font-size: clamp(2.2rem, 3.3vw, 3.2rem);
      letter-spacing:-.7px;
      line-height:1.10;
      max-width: 22ch;
    }
    .hero p{
      margin:0;
      color:rgba(255,255,255,.86);
      font-weight:650;
      max-width: 70ch;
    }

    /* Hero “highlight strip” for engagement */
    .hero-strip{
      position:relative;
      margin-top:1.25rem;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .85rem;
    }
    .strip-card{
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      padding: .95rem 1rem;
      box-shadow: 0 18px 45px rgba(0,0,0,.20);
      backdrop-filter: blur(10px);
    }
    .strip-card strong{display:block; font-weight:950; letter-spacing:-.2px}
    .strip-card span{display:block; margin-top:.25rem; color:rgba(255,255,255,.82); font-weight:650}
    @media (max-width: 820px){ .hero-strip{grid-template-columns:1fr} }

    .inc-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1rem;
  padding:1rem;
}
@media (max-width: 980px){ .inc-grid{grid-template-columns:1fr} }

.inc-card{
  border:1px solid var(--gray-200);
  border-radius:16px;
  background: linear-gradient(180deg,#fff,var(--gray-50));
  box-shadow: var(--shadow-soft);
  padding:1rem;
}
.inc-card.accent{
  border-color: rgba(224,107,26,.30);
  background:
    linear-gradient(180deg, rgba(224,107,26,.10), rgba(224,107,26,.04)),
    linear-gradient(180deg,#fff,var(--gray-50));
}
.inc-card h3{margin:.1rem 0 .6rem; letter-spacing:-.2px}
.inc-list{margin:0; padding-left:1.1rem; color:var(--gray-700); font-weight:650}
.inc-list li{margin:.4rem 0}
.inc-note{margin:.75rem 0 0; color:var(--gray-700); font-weight:650}


    /* ===== Gallery Wall (the “wow” bit) ===== */
    .wall{
      background: linear-gradient(180deg, var(--gray-100), var(--orange-soft));
      border-top:1px solid var(--gray-200);
      border-bottom:1px solid var(--gray-200);
    }
    .wall-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:1rem;
      flex-wrap:wrap;
      margin-bottom:1rem;
    }
    .wall-head h2{margin:0; font-size: clamp(1.6rem, 2.2vw, 2.2rem); letter-spacing:-.3px}
    .wall-head p{margin:.35rem 0 0; color:var(--gray-700); font-weight:650; max-width:70ch}
    .btn-lite{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:.6rem .9rem;
      border-radius:999px;
      border:1px solid var(--gray-200);
      background:rgba(255,255,255,.85);
      color:var(--gray-700);
      text-decoration:none;
      font-weight:900;
      cursor:pointer;
      font-family:inherit;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .btn-lite:hover{transform:translateY(-1px); background:var(--white); border-color:rgba(224,107,26,.30); color:var(--black)}

    /* A more dynamic collage (not the same as your old grids) */
    .wall-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-template-rows: 220px 170px 220px;
      gap:.85rem;
    }
    .shot{
      position:relative;
      border-radius: 20px;
      overflow:hidden;
      border:1px solid rgba(0,0,0,.10);
      background:#000;
      box-shadow: 0 18px 50px rgba(0,0,0,.14);
      cursor:pointer;
      transform: translateZ(0);
    }
    .shot img{
      width:100%; height:100%;
      object-fit:cover;
      transform: scale(1.02);
      transition: transform .25s ease, filter .25s ease;
      filter: contrast(1.02) saturate(1.05);
    }
    .shot:hover img{transform: scale(1.07)}
    .shot::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
      pointer-events:none;
    }
    .label{
      position:absolute;
      left:14px; bottom:12px; right:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      color:rgba(255,255,255,.92);
      font-weight:950;
      letter-spacing:-.2px;
    }
    .label span{
      font-weight:800;
      opacity:.9;
      font-size:.92rem;
      white-space:nowrap;
    }

    /* Layout positions (gives that “designed” collage look) */
    .shot.a{grid-column:1; grid-row:1 / span 2;}
    .shot.b{grid-column:2; grid-row:1;}
    .shot.c{grid-column:3; grid-row:1;}
    .shot.d{grid-column:2 / span 2; grid-row:2;}
    .shot.e{grid-column:1; grid-row:3;}
    .shot.f{grid-column:2; grid-row:3;}
    .shot.g{grid-column:3; grid-row:3;}

    @media (max-width: 980px){
      .wall-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows: 220px 220px 180px 220px;
      }
      .shot.a{grid-column:1 / -1; grid-row:1;}
      .shot.b{grid-column:1; grid-row:2;}
      .shot.c{grid-column:2; grid-row:2;}
      .shot.d{grid-column:1 / -1; grid-row:3;}
      .shot.e{grid-column:1; grid-row:4;}
      .shot.f{grid-column:2; grid-row:4;}
      .shot.g{display:none;}
    }
    @media (max-width: 560px){
      .wall-grid{grid-template-columns:1fr; grid-template-rows: 220px 200px 200px 170px 200px}
      .shot.b,.shot.c,.shot.e,.shot.f{grid-column:1}
      .shot.b{grid-row:2}
      .shot.c{grid-row:3}
      .shot.d{grid-row:4}
      .shot.e{grid-row:5}
      .shot.f{display:none;}
    }

    .buffet-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:1rem;
  padding:1rem;
  align-items:start;
}
@media (max-width: 980px){
  .buffet-grid{
    grid-template-columns:1fr;
  }
}

.buffet-card{
  border:1px solid var(--gray-200);
  border-radius:16px;
  background: linear-gradient(180deg,#fff,var(--gray-50));
  box-shadow: var(--shadow-soft);
  padding:1.1rem;
  display:flex;
  flex-direction:column;
  height:100%;
}

.buffet-card.accent{
  border-color: rgba(224,107,26,.30);
  background:
    linear-gradient(180deg, rgba(224,107,26,.10), rgba(224,107,26,.04)),
    linear-gradient(180deg,#fff,var(--gray-50));
}

.buffet-card h3{
  margin:.1rem 0 .35rem;
  letter-spacing:-.2px;
  line-height:1.2;
}

.buffet-card p{
  margin:0 0 .85rem;
  line-height:1.55;
}

.buffet-card ul{
  margin:0;
  padding-left:1.1rem;
  color:var(--gray-700);
  font-weight:650;
  line-height:1.55;
  flex:1;
}

.buffet-card li{
  margin:.42rem 0;
}

.buffet-foot{
  margin-top:1rem;
  padding:.7rem .85rem;
  border-radius:14px;
  border:1px solid rgba(224,107,26,.22);
  background: rgba(224,107,26,.10);
  font-weight:850;
  color: var(--orange-dark);
  line-height:1.45;
}

@media (min-width: 981px){
  .buffet-card.accent ul{
    columns:2;
    column-gap:1.5rem;
  }

  .buffet-card.accent li{
    break-inside: avoid;
  }
}


    /* ===== Stepper “Plan in 60 seconds” ===== */
    .panel{
      background:var(--white);
      border:1px solid var(--gray-200);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel-top{
      padding:1.15rem 1.2rem .95rem;
      background: linear-gradient(180deg,#fff,var(--gray-50));
      border-bottom:1px solid var(--gray-200);
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:1rem;
      flex-wrap:wrap;
    }
    .panel-top h2{margin:0; font-size: clamp(1.5rem, 2.1vw, 2.0rem); letter-spacing:-.3px}
    .panel-top p{margin:.35rem 0 0; color:var(--gray-700); font-weight:650; max-width:70ch}

    .stepper{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:1rem;
      padding:1rem;
    }
    @media (max-width: 980px){ .stepper{grid-template-columns:1fr} }

    .steps{
      display:grid;
      gap:.8rem;
    }
    .step{
      border:1px solid var(--gray-200);
      border-radius:16px;
      padding:1rem;
      background: linear-gradient(180deg,#fff,var(--gray-50));
      box-shadow:var(--shadow-soft);
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
      outline:none;
    }
    .step:hover{transform:translateY(-2px); border-color:rgba(224,107,26,.28)}
    .step.is-active{
      border-color:rgba(224,107,26,.40);
      box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }
    .step-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
    }
    .step h3{margin:0; font-size:1.05rem; letter-spacing:-.2px}
    .badge{
      display:inline-flex;
      align-items:center;
      padding:.28rem .6rem;
      border-radius:999px;
      background: rgba(224,107,26,.12);
      border:1px solid rgba(224,107,26,.22);
      color: var(--orange-dark);
      font-weight:900;
      font-size:.8rem;
      white-space:nowrap;
    }
    .step p{margin:.35rem 0 0; color:var(--gray-700); font-weight:650}

    .preview{
      position:relative;
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(0,0,0,.10);
      min-height: 340px;
      background:#000;
      box-shadow: 0 22px 60px rgba(0,0,0,.18);
    }
    .preview::before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72)),
        var(--pimg);
      background-size:cover;
      background-position:center;
      transform: scale(1.03);
    }
    .preview-inner{
      position:relative;
      padding:1.15rem 1.1rem;
      color:var(--white);
      display:flex;
      flex-direction:column;
      gap:.8rem;
      height:100%;
      justify-content:space-between;
    }

    #pTitle {
        padding-bottom: 2rem;
    }

    .preview h4{
      margin:0;
      font-size:1.35rem;
      letter-spacing:-.35px;
      line-height:1.15;
      max-width: 26ch;
    }
    .preview .meta{
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
    }
    .chip{
      padding:.35rem .6rem;
      border-radius:999px;
      background: rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      color:rgba(255,255,255,.92);
      font-weight:900;
      font-size:.85rem;
    }
    .preview .cta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      flex-wrap:wrap;
    }
    .phone{
      font-weight:950;
      font-size:1.25rem;
      color:#ffd7b8;
      text-decoration:none;
      letter-spacing:.2px;
      white-space:nowrap;
    }
    .phone:hover{text-decoration:underline}

    .faq{padding:1rem; display:grid; gap:.65rem}
.faq-q{
  width:100%;
  text-align:left;
  padding:1rem 1rem;
  border-radius:16px;
  border:1px solid var(--gray-200);
  background: linear-gradient(180deg,#fff,var(--gray-50));
  box-shadow: var(--shadow-soft);
  font-weight:950;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  font-family:inherit;
}
.faq-ic{
  width:34px; height:34px;
  border-radius:999px;
  display:grid; place-items:center;
  border:1px solid var(--gray-200);
  background: var(--white);
  font-weight:950;
  color: var(--gray-700);
}
.faq-a{
  margin-top:-.35rem;
  padding: .9rem 1rem 1rem;
  border-radius: 16px;
  border:1px solid rgba(224,107,26,.22);
  background: rgba(224,107,26,.08);
  color: var(--gray-700);
  font-weight:650;
}


    /* ===== Lightbox ===== */
    .lightbox{
      display:none;
      position:fixed;
      inset:0;
      z-index:3000;
    }
    .lightbox.open{display:block}
    .lb-backdrop{
      position:absolute; inset:0;
      background: rgba(0,0,0,.75);
    }
    .lb-panel{
      position:relative;
      width:min(1000px, calc(100% - 2rem));
      margin: 5vh auto;
      background: rgba(11,11,11,.92);
      border:1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: 0 30px 85px rgba(0,0,0,.55);
    }
    .lb-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      padding:.75rem .9rem;
      border-bottom:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.86);
      font-weight:900;
    }
    .lb-close{
      width:40px;height:40px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
      font-weight:950;
      font-family:inherit;
    }
    .lb-close:hover{background: rgba(255,255,255,.10)}
    .lb-img{
      width:100%;
      height:min(72vh, 720px);
      object-fit:cover;
      display:block;
    }

/* Footer */
    /* --- FOOTER COMPLETE --- */
.site-footer{
  background:#050505;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.10);
}

.site-footer .container{
  padding:2.75rem 0 1.25rem;
}

.site-footer::before{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(
    90deg,
    rgba(224,107,26,0),
    rgba(224,107,26,.9),
    rgba(224,107,26,0)
  );
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns:1.15fr 1.85fr;
  gap:2rem;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.footer-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:950;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.footer-brand p{
  margin:.45rem 0 0;
  max-width:50ch;
}

/* Social */
.footer-social{
  margin-top:.75rem;
  display:flex;
  gap:.6rem;
}

.footer-social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.9);
}


/* Columns */
.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1.25fr; /* hours | map */
  gap: 1.75rem;
}


.footer-col h4{
  margin:0 0 .75rem;
  font-size:.95rem;
  color:var(--white);
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
}

.footer-col a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-col a:hover{
  color:var(--orange);
}

/* Opening hours */
.hours{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}

.hours li{
  display:grid;
  grid-template-columns: 1fr auto; /* left label + right time */
  align-items:baseline;
  gap:1rem;
  padding:.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.hours li:last-child{
  border-bottom:none;
}

.hours li span:first-child{
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.hours li span:last-child{
  color: rgba(255,255,255,.76);
  font-weight: 650;
  white-space:nowrap; /* prevents wrapping into weird shapes */
}

/* Map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
}

.address{
  margin-top:.5rem;
  font-size:.85rem;
}

/* Bottom */
.footer-bottom{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.9rem;
  color:rgba(255,255,255,.65);
}

/* Back to top */
.back-to-top{
  color:var(--orange);
  font-weight:800;
  text-decoration:none;
}
.back-to-top:hover{
  text-decoration:underline;
}

/* Footer readability overrides */
.site-footer .muted{
  color: rgba(255,255,255,.70) !important;
}

.site-footer p,
.site-footer li,
.site-footer span{
  color: rgba(255,255,255,.78);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.68);
}

.site-footer .address{
  color: rgba(255,255,255,.72);
}

/* =========================
   RESPONSIVE POLISH (Wakes)
   Paste at VERY END of wakes.css
   ========================= */

/* Tablet + small laptop */
@media (max-width: 980px){

  /* Topbar: stop squashing */
  .topbar .inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  /* Brand: allow wrap, avoid overflow */
  .brand{
    white-space: normal;
    max-width: 78%;
    line-height: 1.15;
  }

  /* Panels: header row stacks nicely */
  .panel-top{
    align-items: flex-start;
  }

  /* Reduce “full screen” feel on tablets */
  .screen{
    min-height: auto;
    padding: 2.2rem 0;
  }

  /* Footer becomes single column */
  .footer-top{
    grid-template-columns: 1fr;
  }
  .footer-cols{
    grid-template-columns: 1fr;
  }

  .footer-map iframe{ height: 220px; }
}

/* Phone */
@media (max-width: 560px){

  /* Make all primary CTAs thumb-friendly */
  .btn{
    width: 100%;
    justify-content: center;
  }
  .nav-cta{ width: 100%; justify-content: flex-end; }
  .nav-cta .btn.primary{ display:none; } /* keep header clean on tiny screens */

  /* Hero typography + spacing */
  .hero h1{
    max-width: 100%;
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }
  .hero p{
    font-size: 1rem;
  }

  /* Wall labels: allow wrap instead of forcing one line */
  .label{
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
  }
  .label span{
    white-space: normal;
    opacity: .92;
  }

  /* Panel header: stack badge */
  .panel-top{
    flex-direction: column;
    align-items: flex-start;
  }

  /* Preview CTA: stacked */
  .preview .cta{
    flex-direction: column;
    align-items: stretch;
  }

  /* Hours list: stack day/time to avoid overflow */
  .hours li{
    grid-template-columns: 1fr !important;
    gap: .25rem;
  }
  .hours li span:last-child{
    white-space: normal !important;
  }

  /* Footer bottom: stacked */
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }
}
