:root{
  --bg: #0b0b0c;
  --card: rgba(255,255,255,0.92);
  --card2: rgba(255,255,255,0.96);
  --text: #141416;
  --muted: #5a5a63;
  --line: rgba(20,20,22,0.12);

  --brand: #b71616;   /* heritage red */
  --accent: #b29b33;  /* heritage gold */
  --heroImg: url("https://www.inflatablepubmanufacturers.co.uk/gifs/bck.jpg");

  --radius: 18px;
  --shadow: 0 16px 50px rgba(0,0,0,0.25);
  --shadow2: 0 10px 30px rgba(0,0,0,0.18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(183,22,22,0.35), transparent 55%),
              radial-gradient(900px 500px at 80% 0%, rgba(178,155,51,0.28), transparent 60%),
              #0a0a0b;
}

a{ color: inherit; }
img{ max-width:100%; height:auto; display:block; }

.wrap{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 16px;
  top: 16px;
  width:auto;
  height:auto;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius: 10px;
  z-index: 9999;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,11,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  min-width: 220px;
}
.brand-logo{
  width: 56px;
  height: auto;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding: 6px;
}
.brand-text{ display:flex; flex-direction:column; line-height: 1.05; }
.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}
.brand-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.nav{ margin-left: auto; display:flex; align-items:center; gap: 12px; }
.nav-toggle{
  display:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 10px 10px;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width: 22px;
  height: 2px;
  background: #fff;
  opacity: 0.9;
  margin: 4px 0;
  border-radius: 999px;
}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-link{
  text-decoration:none;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-link:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.10);
}
.nav-link.active{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
}
.nav-link.cta{
  background: linear-gradient(135deg, rgba(183,22,22,0.95), rgba(178,155,51,0.85));
  color: #fff;
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.nav-link.cta:hover{ filter: brightness(1.05); }

.header-contact{
  display:flex;
  flex-direction:column;
  gap: 2px;
  margin-left: 6px;
  text-align:right;
}
.header-contact .phone{
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: 0.4px;
}
.header-contact .hours{
  color: rgba(255,255,255,0.70);
  font-size: 12px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:flex-end;
  padding: 54px 0 40px;
  overflow:hidden;
  background: #0a0a0b; /* fallback background */
}

.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);

  width: 100%;
  max-width: 1299px;
  height: 100%;

  background-image: url("https://www.inflatablepubmanufacturers.co.uk/gifs/bck.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  z-index: 0;
}


.hero-scrim{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.18) 55%, rgba(10,10,11,0.28)),
    radial-gradient(900px 500px at 20% 20%, rgba(183,22,22,0.18), transparent 60%),
    radial-gradient(700px 400px at 80% 10%, rgba(178,155,51,0.12), transparent 60%);
}

.hero-inner{
  position:relative;
  z-index: 1;
}
.hero-card{
  max-width: 740px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
}
.hero-card{
  position: relative;
}

.hero-card-logo{
  float: right;
  width: 148px;
  height: auto;
  margin: 4px 0 10px 14px; /* space between logo and text */
  opacity: 0.95;
}

.hero-card-image{
  width: 100%;
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.clear{
  clear: both;
}

.kicker{
  display:inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(20,20,22,0.75);
  background: rgba(178,155,51,0.18);
  border: 1px solid rgba(178,155,51,0.25);
  padding: 8px 10px;
  border-radius: 999px;
  margin: 0 0 10px;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.6px;
  line-height: 1.05;
}
.lead{
  margin: 0 0 14px;
  color: rgba(20,20,22,0.78);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  color:#fff;
  background: linear-gradient(135deg, rgba(183,22,22,0.98), rgba(178,155,51,0.88));
  box-shadow: var(--shadow2);
  border-color: rgba(0,0,0,0.06);
}
.btn-primary:hover{ filter: brightness(1.05); }

.btn-ghost{
  color: #151517;
  background: rgba(255,255,255,0.70);
  border-color: rgba(20,20,22,0.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.85); }

.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pill{
  background: rgba(20,20,22,0.06);
  border: 1px solid rgba(20,20,22,0.10);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
}
.note{
  margin: 10px 0 0;
  color: rgba(20,20,22,0.78);
  font-size: 14px;
}
.note a{
  color: #5b3b23;
  font-weight: 900;
}

/* Sections */
.section{
  padding: 48px 0;
  background: transparent;
}
.section.alt{
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-head{
  margin-bottom: 18px;
  color: rgba(255,255,255,0.92);
}
.section-head h2{
  margin: 0 0 8px;
  font-size: 28px;
  color: #fff;
}
.section-head p{
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
}

/* Pricing grid */
.price-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.20);
}
.price-card h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.price{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.2px;
  color: #111;
}
.muted{
  margin: 0;
  color: rgba(20,20,22,0.70);
  line-height: 1.5;
  font-size: 14px;
}
.price-card.highlight{
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(178,155,51,0.18));
  border-color: rgba(178,155,51,0.35);
}
.mini-link{
  display:inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: #5b3b23;
  text-decoration:none;
}
.mini-link:hover{ text-decoration: underline; }

/* Two column */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:start;
}
.two-col h2{
  margin: 0 0 10px;
  color:#fff;
  font-size: 28px;
}
.two-col p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.ticks{
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.82);
}
.ticks li{
  padding-left: 26px;
  position: relative;
  margin: 8px 0;
  line-height: 1.5;
}
.ticks li:before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  font-weight: 1000;
  color: rgba(178,155,51,0.95);
}

.callout{
  margin-top: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 16px;
}
.callout-title{
  margin: 0 0 6px;
  font-weight: 1000;
  color: #fff;
}
.callout-body{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.76);
}
.callout a{ color: #fff; font-weight: 1000; }

.figure{
  margin:0;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.figure img{
  width: 100%;
  height: auto;
}
.figure figcaption{
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(20,20,22,0.72);
}


/* Gallery thumbnails */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery-item{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  text-decoration:none;
  transform: translateZ(0);
}

.gallery-item img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display:block;
  transition: transform .18s ease, filter .18s ease;
}

.gallery-item:hover img{
  transform: scale(1.03);
  filter: brightness(1.03);
}

/* Responsive */
@media (max-width: 980px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item img{ height: 150px; }
}
@media (max-width: 420px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item img{ height: 220px; }
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
}

.lightbox.open{
  display:flex;
}

.lightbox-img{
  max-width: min(1100px, calc(100vw - 36px));
  max-height: calc(100vh - 90px);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  background: #111;
}

.lightbox-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 28px;
  line-height: 42px;
  cursor: pointer;
}
.lightbox-close:hover{
  background: rgba(255,255,255,0.16);
}



/* Testimonials / reviews */
.reviews{
  margin-top: 14px;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review{
  margin: 0;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.review blockquote{
  margin: 0;
  color: rgba(20,20,22,0.80);
  line-height: 1.6;
  font-size: 14.5px;
  position: relative;
  padding-top: 8px;
}

.review blockquote:before{
  content: "“";
  position: absolute;
  left: -2px;
  top: -10px;
  font-size: 44px;
  line-height: 1;
  color: rgba(183,22,22,0.30);
  font-weight: 900;
}

.review figcaption{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.10);
  font-weight: 900;
  color: rgba(20,20,22,0.88);
}

/* Responsive */
@media (max-width: 980px){
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .reviews-grid{ grid-template-columns: 1fr; }
}



/* Footer */
.site-footer{
  padding: 22px 0;
  background: rgba(10,10,11,0.92);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
}
.footer-title{
  margin:0 0 4px;
  color:#fff;
  font-weight: 1000;
}
.footer-muted{
  margin:0;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.45;
}
.footer-right{
  text-align:right;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.footer-link{
  color:#fff;
  text-decoration:none;
  font-weight: 900;
}
.footer-link:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .header-contact{ display:none; }
  .price-grid{ grid-template-columns: repeat(2, 1fr); }
  .two-col{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-menu{
    display:none;
    position:absolute;
    right: 16px;
    top: 66px;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(10,10,11,0.92);
    border: 1px solid rgba(255,255,255,0.10);
    width: min(320px, calc(100vw - 32px));
    box-shadow: var(--shadow2);
  }
  .nav-menu.open{ display:flex; }

  .nav-link{
    padding: 12px 12px;
    border-radius: 12px;
  }

  .hero-card{ padding: 18px; }
  .price-grid{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .footer-right{ text-align:left; }
}
