
:root {
  --bg: #06101c;
  --bg-soft: #0d1827;
  --paper: #f7f2e8;
  --ink: #111923;
  --text: #d9e1ea;
  --muted: #9da8b6;
  --line: rgba(255,255,255,.1);
  --line-dark: rgba(17,25,35,.12);
  --accent: #efc84a;
  --accent-deep: #b88b12;
  --radius: 24px;
  --shadow: 0 22px 55px rgba(0,0,0,.22);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 100px 0; }
.card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: end;
}
.section h2, .hero h1 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.section h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.section-heading p:last-child { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(6,16,28,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}
.brand strong, .brand small {
  display: block;
  line-height: 1.15;
}
.brand strong {
  font-size: .98rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a { color: #eef3f8; font-weight: 600; }
.site-nav a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(239,200,74,.5);
  border-radius: 999px;
}
.nav-cta:hover { background: var(--accent); color: #09111b; }
.menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: image-set(url('img/hero-bbq.webp') type('image/webp'), url('img/hero-bbq.jpg') type('image/jpeg'));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(6,16,28,.86) 0%, rgba(6,16,28,.68) 46%, rgba(6,16,28,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .58fr;
  gap: 36px;
  align-items: center;
  padding: 72px 0 88px;
}
.hero-copy { max-width: 760px; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.hero-text {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.08rem;
  color: #e6edf4;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}
.button-primary {
  background: var(--accent);
  color: #09111b;
}
.button-primary:hover { background: #ffda60; }
.button-secondary {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.03);
}
.button-secondary:hover { background: rgba(255,255,255,.1); }

.hero-panel {
  padding: 28px;
  background: rgba(9,18,30,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 18px;
}
.hero-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.hero-panel li { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-panel li:first-child { border-top: 0; padding-top: 0; }
.hero-panel strong, .hero-panel span { display: block; }
.hero-panel strong { font-size: 1rem; color: #fff; }
.hero-panel span { margin-top: 4px; color: var(--muted); }

.trust-strip {
  background: var(--paper);
  color: var(--ink);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid div {
  padding: 26px 8px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 1rem; }
.trust-grid span { margin-top: 4px; color: #5a6471; }

.services { background: #0a1522; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card { padding: 28px; }
.service-card h3 { margin: 0 0 8px; font-size: 1.2rem; color: #fff; }
.service-card p { margin: 0; color: var(--muted); }

.about { background: var(--paper); color: var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 40px;
  align-items: center;
}
.about-copy p:not(.eyebrow) { color: #5c6773; }
.about-points {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-points div {
  padding: 18px;
  background: #fff;
  border: 1px solid #e5dfd4;
  border-radius: 20px;
}
.about-points strong, .about-points span { display: block; }
.about-points strong { margin-bottom: 6px; }
.about-visual {
  background: #fff;
  border-color: #e5dfd4;
  box-shadow: 0 24px 50px rgba(34,30,20,.08);
}
.about-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.work { background: #08111c; }
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
  margin-bottom: 22px;
}
.feature-card, .gallery-grid .gallery-item { overflow: hidden; }
.feature-large { grid-row: span 1; }
.gallery-item {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  width: 100%;
  text-align: left;
  position: relative;
}
.feature-card .gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .35s ease;
}
.feature-card .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,16,28,.84));
}
.feature-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}
.feature-copy small, .feature-copy strong {
  display: block;
}
.feature-copy small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .72rem;
}
.feature-copy strong {
  margin-top: 6px;
  font-size: 1.35rem;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-grid .gallery-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery-grid span {
  display: block;
  padding: 14px 16px 16px;
  color: #f3f6f9;
  font-weight: 700;
}
.gallery-item:hover img { transform: scale(1.03); }

.process { background: #0c1725; }
.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-grid li { padding: 26px; }
.process-grid strong {
  color: var(--accent);
  font-size: .86rem;
  letter-spacing: .16em;
}
.process-grid h3 { margin: 12px 0 10px; }
.process-grid p { margin: 0; color: var(--muted); }

.areas {
  background: var(--paper);
  color: var(--ink);
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e1d7;
}
.areas-grid p:not(.eyebrow) { color: #5c6773; }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.areas-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4efe4;
  border: 1px solid #e6d9b2;
  color: #705100;
  font-weight: 700;
}

.contact {
  background: #08111c;
}
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: start;
}
.contact-copy { position: sticky; top: 110px; }
.contact-copy > p:last-of-type { color: var(--muted); }
.contact-links {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.contact-links a {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.contact-links small, .contact-links strong { display: block; }
.contact-links small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .68rem;
}
.contact-links strong { margin-top: 6px; font-size: 1.2rem; }
.enquiry-form {
  padding: 30px;
}
.enquiry-form h3 { margin-top: 0; }
.form-intro, .form-note { color: var(--muted); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.enquiry-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}
.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  width: 100%;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 14px 14px;
  outline: none;
}
.enquiry-form select option { color: #111; }
.enquiry-form input:focus,
.enquiry-form textarea:focus,
.enquiry-form select:focus {
  border-color: rgba(239,200,74,.8);
  box-shadow: 0 0 0 3px rgba(239,200,74,.14);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0 24px;
  background: #030912;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr .9fr .9fr;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.footer-brand strong, .footer-brand span {
  display: block;
}
.footer-brand strong { letter-spacing: .08em; text-transform: uppercase; }
.footer-brand span { color: var(--muted); font-size: .82rem; }
.footer-grid p { color: var(--muted); }
.footer-grid p span { color: #fff; }
.footer-links { display: flex; gap: 18px; justify-content: flex-end; flex-wrap: wrap; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #7f8b99;
}

.lightbox {
  width: min(960px, calc(100% - 32px));
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: #08111c;
  color: #fff;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
}
.lightbox::backdrop { background: rgba(2,7,12,.84); }
.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #050a11;
}
.lightbox-copy { padding: 20px 24px 24px; }
.lightbox-copy strong { display: block; font-size: 1.35rem; }
.lightbox-copy p { margin-bottom: 0; color: var(--muted); }
.lightbox-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  font-size: 1.7rem;
  line-height: 1;
  background: rgba(255,255,255,.12);
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .areas-grid,
  .section-heading.split,
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .contact-copy { position: static; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(6,16,28,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content { padding: 52px 0 64px; }
  .trust-grid,
  .service-grid,
  .gallery-grid,
  .about-points,
  .field-row,
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .trust-grid div:last-child { border-bottom: 0; }
  .about-visual img { height: auto; }
  .feature-card .gallery-item img { height: 320px; }
  .footer-bottom { flex-direction: column; }
}



.credentials { background: #111d2b; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credentials-grid div { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); }
.credentials-grid div:last-child { border-right: 0; }
.credentials-grid strong, .credentials-grid span { display: block; }
.credentials-grid strong { color: var(--accent); font-size: 1.2rem; }
.credentials-grid span { margin-top: 4px; color: var(--muted); }
@media (max-width: 760px) { .credentials-grid { grid-template-columns: repeat(2,1fr); } .credentials-grid div:nth-child(2) { border-right: 0; } .credentials-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* Performance-friendly picture wrappers for WebP sources */
picture { display: block; }
.feature-card picture, .gallery-grid picture, .about-visual picture { width: 100%; }
