:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --bg-soft: #f2f6fb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #666b76;
  --line: #dbd7ce;
  --accent: #b98a2f;
  --accent-deep: #12153b;
  --accent-soft: #f4ead0;
  --accent-green: #0f766e;
  --accent-blue: #2563eb;
  --accent-coral: #e11d48;
  --accent-sky: #0284c7;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fcfdff 0%, #f7fbff 24%, #fffaf4 54%, #f8fdf9 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue), var(--accent-green), var(--accent-coral));
  z-index: 60;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -40px;
  padding: 10px 14px;
  background: var(--accent-deep);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 215, 206, 0.9);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.03);
}

.header-inner {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.93rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 21, 59, 0.28);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(18, 21, 59, 0.28);
  outline-offset: 3px;
}

.menu-toggle-icon {
  position: relative;
  width: 20px;
  height: 16px;
  display: block;
}

.menu-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 160ms ease, width 180ms ease;
}

.menu-toggle-icon span:nth-child(1) {
  top: 0;
}

.menu-toggle-icon span:nth-child(2) {
  top: 7px;
}

.menu-toggle-icon span:nth-child(3) {
  top: 14px;
}

.site-header.is-menu-open .menu-toggle-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site-header.is-menu-open .menu-toggle-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding: 54px 0 32px;
  background: linear-gradient(135deg, rgba(18, 21, 59, 0.035), rgba(16, 185, 129, 0.04), rgba(185, 138, 47, 0.05), rgba(225, 29, 72, 0.03));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  padding-top: 0;
  padding-bottom: 8px;
}

.hero-visual {
  width: 100%;
}

.hero-slider {
  display: grid;
  gap: 16px;
}

.hero-slider-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 460px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(219, 215, 206, 0.9);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 340ms ease, transform 480ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.45));
}

.hero-slider-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
}

.hero-slider-copy {
  max-width: 38ch;
}

.hero-slider-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--accent-deep);
}

.hero-slider-note {
  margin: 0;
  color: var(--muted);
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 21, 59, 0.35);
}

.slider-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 21, 59, 0.18);
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--accent-deep);
}

.slider-dot:focus-visible {
  outline: 2px solid rgba(18, 21, 59, 0.35);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 21, 59, 0.08);
  background: rgba(18, 21, 59, 0.05);
  color: var(--accent-deep);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.hero .eyebrow {
  background: rgba(185, 138, 47, 0.12);
  border-color: rgba(185, 138, 47, 0.18);
  color: #8b640f;
}

.band-soft .eyebrow {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.18);
  color: var(--accent-green);
}

.band-cta .eyebrow {
  background: rgba(225, 29, 72, 0.12);
  border-color: rgba(225, 29, 72, 0.16);
  color: #be185d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 12ch;
}

h1 span {
  color: var(--accent);
}

.lead {
  max-width: 60ch;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #2a2f3b;
}

.lead.secondary {
  color: var(--muted);
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-green));
  color: #fff;
  box-shadow: var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #1b1f4e, #0b6660);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-deep);
  border-color: rgba(18, 21, 59, 0.14);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(18, 21, 59, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-tags li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #313742;
  font-size: 0.92rem;
}

.hero-tags li:nth-child(1) {
  background: #fff4d9;
  border-color: rgba(185, 138, 47, 0.2);
  color: #8b640f;
}

.hero-tags li:nth-child(2) {
  background: #eefbf4;
  border-color: rgba(15, 118, 110, 0.18);
  color: var(--accent-green);
}

.hero-tags li:nth-child(3) {
  background: #eef4ff;
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--accent-blue);
}

.hero-tags li:nth-child(4) {
  background: #fff1f4;
  border-color: rgba(225, 29, 72, 0.16);
  color: #be185d;
}

.hero-tags li:nth-child(5) {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.18);
  color: #0e7490;
}

.hero-tags li:nth-child(6) {
  background: #fff4ea;
  border-color: rgba(251, 146, 60, 0.18);
  color: #c2410c;
}

.hero-media {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(56px, auto);
  gap: 12px;
  align-self: start;
}

.media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(219, 215, 206, 0.8);
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.media:hover img {
  transform: scale(1.02);
}

.media figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.62);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-large {
  grid-column: 1 / 9;
  grid-row: 1 / 5;
  min-height: 470px;
}

.media-top {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
  min-height: 224px;
}

.media-mid {
  grid-column: 9 / 13;
  grid-row: 3 / 5;
  min-height: 224px;
}

.media-bottom {
  grid-column: 1 / 13;
  grid-row: 5 / 7;
  min-height: 240px;
}

.band {
  padding: 72px 0;
}

.band-soft {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), rgba(255, 255, 255, 0), rgba(37, 99, 235, 0.03));
  border-top: 1px solid rgba(219, 215, 206, 0.7);
  border-bottom: 1px solid rgba(219, 215, 206, 0.7);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
  line-height: 1.05;
  max-width: 16ch;
}

.section-heading.narrow h2 {
  max-width: 18ch;
}

.prose {
  font-size: 1.02rem;
  color: #2f3543;
}

.prose p {
  margin-bottom: 16px;
  max-width: 62ch;
}

.highlight {
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  color: var(--accent-deep);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  position: relative;
  min-height: 200px;
  padding: 22px 20px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-tint, #fff), #fff 72%);
  border: 1px solid rgba(219, 215, 206, 0.9);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--card-accent, var(--accent));
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--card-tint, var(--accent-soft));
  color: var(--card-accent, var(--accent-deep));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.service-card:nth-child(1) {
  --card-accent: var(--accent);
  --card-tint: #fff3d9;
}

.service-card:nth-child(2) {
  --card-accent: var(--accent-green);
  --card-tint: #ecfbf4;
}

.service-card:nth-child(3) {
  --card-accent: var(--accent-blue);
  --card-tint: #ecf2ff;
}

.service-card:nth-child(4) {
  --card-accent: var(--accent-coral);
  --card-tint: #fff0f4;
}

.service-card:nth-child(5) {
  --card-accent: var(--accent-sky);
  --card-tint: #ecf8ff;
}

.service-card:nth-child(6) {
  --card-accent: #0e7490;
  --card-tint: #ecfeff;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(219, 215, 206, 0.85);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
  min-height: 260px;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.shot:hover img {
  transform: scale(1.02);
}

.shot figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

.shot:focus-within {
  outline: 2px solid rgba(18, 21, 59, 0.36);
  outline-offset: 3px;
}

.shot-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.shot-trigger:focus-visible {
  outline: none;
}

.shot-wide {
  grid-column: span 6;
  min-height: 330px;
}

.shot-tall {
  grid-column: span 4;
  min-height: 400px;
}

.shot:not(.shot-wide):not(.shot-tall) {
  grid-column: span 4;
}

.band-cta {
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.05), rgba(255, 255, 255, 0.02), rgba(185, 138, 47, 0.06));
}

.band-locations {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.03), rgba(16, 185, 129, 0.05));
  border-top: 1px solid rgba(219, 215, 206, 0.7);
  border-bottom: 1px solid rgba(219, 215, 206, 0.7);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--location-tint, #fff), #fff 76%);
  border: 1px solid rgba(219, 215, 206, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--location-accent, var(--accent));
}

.location-card:nth-child(1) {
  --location-accent: var(--accent-blue);
  --location-tint: #eef4ff;
}

.location-card:nth-child(2) {
  --location-accent: var(--accent-green);
  --location-tint: #ecfbf4;
}

.location-card-head {
  display: grid;
  gap: 6px;
}

.location-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 21, 59, 0.08);
  color: var(--location-accent, var(--accent-deep));
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.location-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.location-address {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--accent-deep);
}

.location-region,
.location-note {
  margin-bottom: 0;
  color: var(--muted);
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.location-link {
  flex: 1 1 170px;
  justify-content: space-between;
}

.location-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.cta-copy h2 {
  font-size: 2.3rem;
  line-height: 1.04;
  max-width: 15ch;
  margin-bottom: 16px;
}

.cta-copy p {
  color: var(--muted);
  max-width: 54ch;
}

.form-feedback {
  margin: 18px 0 4px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 215, 206, 0.9);
  background: rgba(255, 255, 255, 0.78);
}

.form-feedback p {
  margin: 0;
}

.form-feedback-success {
  border-color: rgba(46, 125, 50, 0.18);
  background: rgba(236, 247, 237, 0.92);
  color: #215a2a;
}

.form-feedback-error {
  border-color: rgba(185, 47, 47, 0.18);
  background: rgba(255, 241, 241, 0.92);
  color: #8c1f1f;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.contact-item {
  position: relative;
  padding: 14px 14px 15px;
  border: 1px solid rgba(219, 215, 206, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--contact-tint, rgba(255, 255, 255, 0.78)), #fff 74%);
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--contact-accent, var(--accent));
}

.contact-item:nth-child(1) {
  --contact-accent: var(--accent);
  --contact-tint: #fff3d9;
}

.contact-item:nth-child(2) {
  --contact-accent: var(--accent-green);
  --contact-tint: #ecfbf4;
}

.contact-item:nth-child(3) {
  --contact-accent: var(--accent-blue);
  --contact-tint: #ecf2ff;
}

.contact-item dt {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--contact-accent, var(--accent));
}

.contact-item dd {
  margin: 0;
  color: var(--accent-deep);
  line-height: 1.5;
}

.contact-item a {
  color: var(--accent-deep);
}

.contact-item a:hover,
.contact-item a:focus-visible {
  text-decoration: underline;
}

.enquiry-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(219, 215, 206, 0.9);
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-error {
  margin: 0;
  font-size: 0.88rem;
  color: #8c1f1f;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 14px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(185, 138, 47, 0.75);
  box-shadow: 0 0 0 3px rgba(185, 138, 47, 0.16);
}

.button-full {
  width: 100%;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(219, 215, 206, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(16, 185, 129, 0.04));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

.footer-logo {
  width: 180px;
  height: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 26, 0.9);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: transform 220ms ease, opacity 220ms ease;
}

.lightbox.is-open .lightbox-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(8, 12, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-frame img {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
  background: #0b1021;
}

.lightbox-caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px 18px;
  color: #fff;
}

.lightbox-label {
  margin: 0 0 6px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.lightbox-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.lightbox-count {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
}

.lightbox-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.lightbox-nav {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.lightbox-nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.35rem;
  }

  .hero-inner,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-slider-viewport {
    min-height: 420px;
  }

  .hero-slider-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shot-wide,
  .shot-tall,
  .shot:not(.shot-wide):not(.shot-tall) {
    grid-column: span 6;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 24px));
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand img {
    width: 176px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 14px 0 16px;
    gap: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(219, 215, 206, 0.9);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08);
    z-index: 10;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(219, 215, 206, 0.55);
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .hero {
    padding: 24px 0 24px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-slider-viewport {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-slider-bar {
    align-items: stretch;
  }

  .hero-slider-controls {
    justify-content: space-between;
    width: 100%;
  }

  .location-links {
    gap: 8px;
  }

  .location-link {
    flex-basis: 100%;
  }

  .shot-wide,
  .shot-tall,
  .shot:not(.shot-wide):not(.shot-tall) {
    grid-column: auto;
  }

  .band {
    padding: 56px 0;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body {
    padding-bottom: 98px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(219, 215, 206, 0.94);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 42px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-cta-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 62px;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1px solid rgba(18, 21, 59, 0.08);
    background: rgba(255, 255, 255, 0.86);
    color: var(--accent-deep);
    text-align: center;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .mobile-cta-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-cta-link:nth-child(1) {
    background: #f6f8ff;
    border-color: rgba(18, 21, 59, 0.08);
  }

  .mobile-cta-link:nth-child(2) {
    background: #ecfbf4;
    border-color: rgba(16, 185, 129, 0.16);
    color: var(--accent-green);
  }

  .mobile-cta-link:nth-child(3) {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent-green));
    border-color: transparent;
    color: #fff;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-close {
    top: -10px;
    right: -10px;
  }

  .lightbox-frame img {
    height: min(62vh, 560px);
  }
}

@media (max-width: 540px) {
  .header-inner {
    gap: 10px;
    padding: 10px 0 12px;
  }

  .brand img {
    width: 156px;
  }

  .hero {
    padding: 18px 0 20px;
  }

  h1 {
    font-size: 2.35rem;
    max-width: 10ch;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .hero-slider-viewport {
    min-height: 280px;
  }

  .hero-slider-bar {
    gap: 14px;
  }

  .hero-slider-controls {
    justify-content: space-between;
  }

  .service-card,
  .enquiry-form {
    padding: 18px;
  }

  .contact-item {
    padding: 12px 12px 13px;
  }

  .service-card {
    min-height: auto;
  }

  .band {
    padding: 48px 0;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 1.65rem;
  }

  .footer-logo {
    width: 150px;
  }

  .mobile-cta-bar {
    left: 8px;
    right: 8px;
    gap: 6px;
    padding: 6px;
  }

  .mobile-cta-link {
    min-height: 58px;
    padding: 8px 6px;
    border-radius: 8px;
  }

  .lightbox-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-controls {
    justify-content: space-between;
  }
}
