:root {
  --pink: #ed008c;
  --dark: #050505;
  --charcoal: #151515;
  --mid: #24252b;
  --light: #f4f4f4;
  --white: #ffffff;
  --grey: #737373;
  --border: #dddddd;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  color: #080808;
  line-height: 1.6;
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
main, section, header, footer { width: 100%; max-width: 100%; overflow-x: clip; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; min-width: 0; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 3px solid var(--pink);
}
.nav {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 18px;
}
.logo { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; }
.logo img { width: 210px; max-width: 36vw; background: #fff; border-radius: 4px; }
.links { display: flex; align-items: center; gap: 25px; margin-left: auto; color: #111; font-weight: 700; }
.links a { transition: color .2s ease, background .2s ease; }
.links a:hover, .links a[aria-current="page"] { color: var(--pink); }
.links .cta, .links .cta:hover { color: #fff; }
.cta { background: var(--pink); padding: 13px 18px; border-radius: 6px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px 10px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: #111;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.slogan-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 18px;
  border-top: 1px solid #1f1f1f;
  border-bottom: 3px solid var(--pink);
  background: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.slogan-strip span { color: #111; }
.slogan-strip strong { color: var(--pink); }

.hero,
.page-hero,
.gallery-page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.72)),
    repeating-linear-gradient(45deg, #171717 0 18px, #101010 18px 36px);
}
.hero { padding: 82px 0; }
.page-hero { padding: 72px 0; }
.gallery-page-hero { padding: 78px 0; }
.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}
.hero-grid > *, .page-hero-grid > *, .grid3 > *, .contactbox > *, .accreditation-grid > *, .gallery-grid > * { min-width: 0; }
.eyebrow {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 16px;
}
h1 { font-size: clamp(2.6rem, 4.7vw, 4.75rem); line-height: .98; letter-spacing: -.045em; margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(2.6rem, 4.25vw, 4.2rem); max-width: 760px; }
.gallery-page-hero h1 { max-width: 900px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 8px 0; }
.hero-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-media img { object-position: center 48%; }
.services-hero-media img { object-position: center 33%; }
.hero p, .page-hero p, .gallery-page-hero p { color: #d4d4d4; font-size: 1.12rem; max-width: 760px; margin-bottom: 30px; }
.gallery-hero-copy { max-width: 940px; }
.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 560px;
}
.hero-actions .facebook { grid-column: 1 / -1; }
.hero-actions .btn { width: 100%; }
.gallery-actions { max-width: 610px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .92; }
.primary { background: var(--pink); color: #fff; }
.secondary { border: 1px solid #555; color: #fff; }
.facebook { background: #1877f2; color: #fff; border: 1px solid #1877f2; }
.outline-dark { border: 1px solid #9d9d9d; color: #111; background: #fff; }

section { padding: 82px 0; }
.section-stack,
.about-stack { display: grid; gap: 26px; }
.section-head { width: 100%; max-width: none; margin: 0; }
.section-head h2 { font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.05; letter-spacing: -.035em; margin-bottom: 14px; }
.section-head p, .card p, .service-category p { color: var(--grey); }
.framed-block {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-left: 5px solid var(--pink);
  border-radius: 14px;
  padding: 28px 32px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  overflow: hidden;
}
.framed-block.light {
  background: #fff;
  border-color: #d7d7d7;
  border-left-color: var(--pink);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.services, .gallery-section { background: var(--light); }
.service-list-section {
  color: #fff;
  background: var(--mid);
}
.service-list-section .section-head {
  background: #1b1c20;
  border-color: #44464d;
  border-left-color: var(--pink);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.service-list-section .section-head h2 { color: #fff; }
.service-list-section .section-head p { color: #c9c9cc; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--pink);
  border-radius: 10px;
  padding: 28px;
}
.card h3 { margin-bottom: 10px; }
.card .text-link { display: inline-block; margin-top: auto; padding-top: 18px; color: var(--pink); font-weight: 800; }
.section-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.stats {
  background: #050505;
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat {
  min-height: 145px;
  border: 1px solid #292929;
  background: #111;
  padding: 22px;
  border-radius: 10px;
}
.stat strong { display: block; color: var(--pink); font-size: 1.4rem; margin-bottom: 6px; }

.accreditations { background: #fff; }
.accreditation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.accreditation-card {
  display: grid;
  grid-template-columns: minmax(140px, .75fr) 1.25fr;
  align-items: center;
  gap: 26px;
  height: 100%;
  padding: 26px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.07);
}
.accreditation-logo {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
}
.accreditation-logo img { width: 100%; max-height: 145px; object-fit: contain; }
.accreditation-copy h3 { margin-bottom: 8px; font-size: 1.25rem; }
.accreditation-copy p { color: var(--grey); }

.service-category-grid { display: grid; gap: 24px; }
.service-category {
  color: #fff;
  background: #1b1c20;
  border: 1px solid #44464d;
  border-left: 5px solid var(--pink);
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}
.service-category h2 { color: #fff; }
.service-category h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); margin-bottom: 20px; letter-spacing: -.025em; }
.service-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 20px; list-style: none; }
.service-items li {
  position: relative;
  min-height: 116px;
  padding: 17px 18px 17px 45px;
  border: 1px solid #35373e;
  border-radius: 10px;
  background: #101114;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.service-items li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--pink);
  font-weight: 900;
}
.service-items strong { display: block; margin-bottom: 5px; color: var(--pink); }
.service-items span { color: #d2d2d5; }
.service-list-section .outline-dark { color: #fff; border-color: #777981; background: transparent; }
.service-list-section .outline-dark:hover { background: #fff; color: #111; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.gallery-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  border-bottom: 4px solid var(--pink);
}
.gallery-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-image:hover img { transform: scale(1.025); }
.gallery-home img { object-position: center 48%; }
.gallery-services img { object-position: center 32%; }
.gallery-copy { display: flex; flex-direction: column; flex: 1; padding: 28px; }
.gallery-copy h2 { font-size: 1.55rem; line-height: 1.15; margin-bottom: 10px; }
.gallery-copy p { color: var(--grey); margin-bottom: 18px; }
.gallery-copy .text-link { margin-top: auto; color: var(--pink); font-weight: 800; }

.contact { background: #050505; color: #fff; }
.contactbox {
  border: 1px solid #2c2c2c;
  border-left: 5px solid var(--pink);
  border-radius: 12px;
  background: linear-gradient(135deg, #181818, #080808);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.contactbox p { color: #ccc; }
.business-address {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  color: #e4e4e4;
  font-style: normal;
  line-height: 1.45;
}
.business-address strong { color: var(--pink); margin-bottom: 3px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }

footer { background: #020202; color: #aaa; padding: 26px 0; border-top: 1px solid #222; }
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pink { color: var(--pink); }

@media (max-width: 1020px) {
  .links { gap: 18px; font-size: .93rem; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  header .nav {
    min-height: 88px;
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .logo img { width: 175px; max-width: 50vw; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .links {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    gap: 0;
    margin: 0;
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border-top: 0 solid #ececec;
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease, border-width .28s ease;
  }
  .links.is-open {
    max-height: 520px;
    padding: 8px 0 12px;
    opacity: 1;
    visibility: visible;
    border-top-width: 1px;
  }
  .links a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 10px;
    border-bottom: 1px solid #eeeeee;
  }
  .links .cta {
    justify-content: center;
    margin-top: 8px;
    border-bottom: 0;
    white-space: nowrap;
    padding: 11px 12px;
    font-size: .9rem;
  }
  .wrap { width: calc(100% - 24px); }
  .hero-grid, .page-hero-grid, .contactbox { grid-template-columns: minmax(0, 1fr); }
  .hero-media { min-height: 0; aspect-ratio: 16 / 10; }
  .grid3, .accreditation-grid, .gallery-grid { grid-template-columns: minmax(0, 1fr); }
  .service-items { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.35rem, 12vw, 4rem); overflow-wrap: anywhere; }
  h2 { overflow-wrap: anywhere; }
  .card, .stats, .stat, .contactbox, .framed-block, .service-category { width: 100%; max-width: 100%; }
  .slogan-strip { font-size: .7rem; letter-spacing: .1em; min-height: 30px; }
  .contact-actions { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .accreditation-card { grid-template-columns: 1fr; text-align: center; }
  .accreditation-logo { min-height: 120px; }
  .accreditation-logo img { max-height: 115px; }
  .hero-actions { grid-template-columns: 1fr; max-width: none; }
  .hero-actions .facebook { grid-column: auto; }
  .stats { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  header .nav { min-height: 78px; }
  .logo img { width: 145px; max-width: 46vw; }
  .menu-toggle { width: 43px; height: 40px; }
  .links .cta { padding: 10px; font-size: .84rem; }
  .hero { padding: 56px 0; }
  .page-hero, .gallery-page-hero { padding: 52px 0; }
  .hero-media { aspect-ratio: 4 / 3; }
  section { padding: 62px 0; }
  .contactbox, .service-category { padding: 24px; }
  .btn { width: 100%; }
  .section-actions { display: grid; grid-template-columns: 1fr; }
  .framed-block { padding: 20px 18px; }
  .slogan-strip {
    white-space: normal;
    line-height: 1.35;
    gap: 6px;
    flex-wrap: wrap;
    padding: 7px 12px;
    font-size: .64rem;
  }
}

/* V17 refinements */
.service-list-section {
  color: #111;
  background: #f1f2f4;
}
.service-list-section .section-head {
  color: #111;
  background: #ffffff;
  border-color: #d7d9dd;
  border-left-color: var(--pink);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.service-list-section .section-head h2 { color: #111; }
.service-list-section .section-head p { color: var(--grey); }
.service-list-section .outline-dark {
  color: #111;
  border-color: #96999f;
  background: #fff;
}
.service-list-section .outline-dark:hover {
  color: #fff;
  background: #111;
}

.services-projects { background: #ffffff; }
.services-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.service-project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(220px, .72fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.service-project-image {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  background: #111;
  border-right: 4px solid var(--pink);
}
.service-project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-project-image:hover img { transform: scale(1.025); }
.service-project-job3 img { object-position: center 40%; }
.service-project-job4 img { object-position: center 48%; }
.service-project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}
.service-project-copy h3 {
  color: var(--pink);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px;
}
.service-project-copy p { color: var(--grey); }
.gallery-job3 img { object-position: center 38%; }
.gallery-job4 img { object-position: center 47%; }
.business-address .company-number {
  margin-top: 7px;
  color: #c9c9c9;
  font-size: .94rem;
}

@media (max-width: 900px) {
  .services-project-grid { grid-template-columns: 1fr; }
  .service-project-card { grid-template-columns: minmax(0, 1fr) minmax(210px, .65fr); }
}

@media (max-width: 640px) {
  .service-project-card { grid-template-columns: 1fr; min-height: 0; }
  .service-project-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 4px solid var(--pink);
  }
  .service-project-copy { padding: 24px; }
}


/* V18 enquiry forms */
.contactbox.enquiry-layout {
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  align-items: stretch;
  gap: 34px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 4px 0;
}
.contact-details h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}
.contact-details > p { color: #cfcfcf; }
.contact-details .contact-actions {
  width: 100%;
  min-width: 0;
  margin-top: auto;
  padding-top: 26px;
}
.enquiry-form {
  width: 100%;
  min-width: 0;
  padding: 30px;
  border: 1px solid #d9d9d9;
  border-top: 4px solid var(--pink);
  border-radius: 12px;
  background: #fff;
  color: #111;
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.form-heading { margin-bottom: 22px; }
.form-kicker {
  color: var(--pink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-heading h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 8px;
}
.form-heading p { color: var(--grey); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #242424;
  font-weight: 700;
  font-size: .94rem;
}
.form-field span { line-height: 1.3; }
.form-field em { color: var(--pink); font-style: normal; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #c9c9c9;
  border-radius: 7px;
  background: #f8f8f8;
  color: #111;
  font: inherit;
  font-weight: 400;
  padding: 12px 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input,
.form-field select { min-height: 48px; }
.form-field textarea { resize: vertical; min-height: 132px; line-height: 1.5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(237,0,140,.12);
}
.form-full { grid-column: 1 / -1; }
.form-submit {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.form-note {
  margin-top: 11px;
  color: #737373;
  font-size: .82rem;
  text-align: center;
}
.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.thank-you-main {
  min-height: calc(100vh - 230px);
  display: grid;
  place-items: center;
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.78)),
    repeating-linear-gradient(45deg, #171717 0 18px, #101010 18px 36px);
}
.thank-you-card {
  width: min(760px, 100%);
  border: 1px solid #343434;
  border-left: 5px solid var(--pink);
  border-radius: 14px;
  padding: clamp(28px, 5vw, 54px);
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.thank-you-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 18px;
}
.thank-you-card p { color: #d1d1d1; font-size: 1.08rem; margin-bottom: 28px; }
.thank-you-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .contactbox.enquiry-layout { grid-template-columns: minmax(0, 1fr); }
  .contact-details .contact-actions { margin-top: 0; }
}

@media (max-width: 640px) {
  .enquiry-form { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .thank-you-actions { display: grid; grid-template-columns: 1fr; }
}
