:root {
  --blue: #263956;
  --grey: #95999e;
  --ink: #141a24;
  --muted: #687384;
  --paper: #f3f0ea;
  --white: #ffffff;
  --gold: #b88a50;
  --line: rgba(38, 57, 86, 0.16);
  --shadow: 0 28px 80px rgba(16, 24, 38, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

.draft-preview-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  padding: 7px 18px;
  color: #fff;
  background: #b2742b;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(8, 14, 25, 0.2);
}

.draft-preview-banner strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-preview-banner button {
  padding: 4px 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.draft-preview-mode .site-header {
  top: 42px;
}

body.intro-active {
  overflow: hidden;
  height: 100vh;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  padding: clamp(18px, 5vw, 52px);
  overflow: hidden;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 1500ms cubic-bezier(0.22, 1, 0.36, 1), visibility 1500ms ease;
}

body.intro-active .site-intro {
  display: flex;
}

.site-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.intro-active header,
body.intro-active main,
body.intro-active footer,
body.intro-active .sticky-cta {
  opacity: 0;
}

body.site-revealing header,
body.site-revealing main,
body.site-revealing footer,
body.site-revealing .sticky-cta {
  animation: siteFadeIn 1500ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes siteFadeIn {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.intro-stage {
  display: grid;
  place-items: center;
  width: min(760px, 84vw);
  height: min(430px, 58vh);
  overflow: hidden;
  background: #fff;
}

.intro-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  object-fit: contain;
  transition: opacity 260ms ease;
}

.intro-video.is-ready {
  opacity: 1;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  padding: 8px clamp(18px, 4vw, 58px);
  color: var(--blue);
  background: rgba(243, 240, 234, 0.9);
  border-bottom: 1px solid rgba(38, 57, 86, 0.1);
  box-shadow: 0 10px 34px rgba(10, 16, 28, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(243, 240, 234, 0.97);
  box-shadow: 0 18px 44px rgba(10, 16, 28, 0.14);
}

.site-header.solid {
  position: sticky;
}

.brand {
  display: block;
  width: clamp(410px, 34vw, 560px);
  height: 88px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.22);
  transform-origin: left center;
}

nav {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  font-size: 14px;
  font-weight: 800;
}

.mobile-only,
.menu-toggle {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 57, 86, 0.22);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

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

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

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

.phone-link {
  padding: 11px 16px;
  border: 1px solid rgba(38, 57, 86, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(150px, 16vh, 210px) clamp(18px, 5vw, 76px) clamp(52px, 8vh, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 14, 25, 0.82), rgba(8, 14, 25, 0.32) 52%, rgba(8, 14, 25, 0.08)),
    linear-gradient(0deg, rgba(8, 14, 25, 0.76), rgba(8, 14, 25, 0.05) 58%),
    var(--hero-image, url("Assets/bathroom-hero-image.png")) center/cover;
}

.hero-copy-block {
  max-width: 760px;
  padding-bottom: clamp(8px, 4vh, 42px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-family: Anton, Impact, "Arial Black", sans-serif;
  font-size: clamp(58px, 7.6vw, 118px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 0.96;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 44px rgba(38, 57, 86, 0.25);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero .button.primary {
  background: var(--white);
  color: var(--blue);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.dark-button {
  color: var(--blue);
  border-color: var(--line);
  background: var(--white);
}

.hero-media {
  position: relative;
  min-height: min(680px, 72vh);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blue);
}

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

.media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 24, 38, 0.78);
  backdrop-filter: blur(12px);
}

.media-caption span,
.media-caption strong {
  display: block;
}

.media-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-caption strong {
  margin-top: 4px;
  font-size: 22px;
}

.services,
.featured-work,
.enquiry,
.work-hero,
.gallery-grid,
.gallery-cta,
footer {
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 76px);
}

.compact-section {
  padding-block: clamp(30px, 4vw, 52px);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(184, 138, 80, 0.14), transparent 26rem),
    linear-gradient(135deg, #101721, #263956);
}

.statement h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.statement p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.statement-detail {
  display: grid;
  justify-self: center;
  gap: 18px;
  max-width: 680px;
}

.statement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.statement-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.section-title {
  display: grid;
  gap: 10px;
}

.section-intro {
  max-width: 980px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.services {
  background: var(--paper);
}

.services .section-title h2 {
  max-width: 960px;
  font-size: clamp(32px, 4.2vw, 58px);
}

.services .section-title .eyebrow {
  margin-bottom: 4px;
  font-family: Anton, Impact, "Arial Black", sans-serif;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.service-grid article {
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 24, 38, 0.1);
}

.service-grid img {
  width: 100%;
  height: clamp(260px, 30vw, 410px);
  object-fit: cover;
}

.service-grid .service-media {
  position: relative;
  display: block;
  height: clamp(260px, 30vw, 410px);
  padding: 0;
  overflow: hidden;
  background: #d9d7d2;
}

.service-grid .service-media img {
  position: relative;
  z-index: 2;
  height: 100%;
}

.service-grid .service-media.is-portrait::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  background: var(--service-image) center / cover no-repeat;
  filter: blur(20px);
  opacity: 0.72;
  transform: scale(1.08);
}

.service-grid .service-media.is-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 27, 38, 0.18);
}

.service-grid .service-media.is-portrait img {
  object-fit: contain;
  object-position: center;
}

.service-grid article:nth-child(2) img {
  object-position: 50% 58%;
}

.service-grid div {
  display: grid;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
}

.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-grid .service-number {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-grid h3 {
  color: var(--blue);
  font-size: clamp(24px, 2.2vw, 32px);
}

.text-link {
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--gold);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 22px clamp(22px, 3vw, 34px);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.services-cta p {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.services-cta .button {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.featured-work {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(184, 138, 80, 0.16), transparent 28rem),
    linear-gradient(135deg, #263956, #101721);
}

.work-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.72fr;
  gap: 18px;
  margin: 28px 0 24px;
}

.work-preview img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.work-preview img:nth-child(2),
.work-preview img:nth-child(3) {
  margin-top: 0;
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.98fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(184, 138, 80, 0.16), transparent 28rem),
    #263956;
}

.enquiry-info {
  display: grid;
  gap: 18px;
  align-content: start;
}

.line-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.line-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.enquiry-info > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.contact-rows {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-rows a,
.contact-rows div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-rows span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-rows strong {
  justify-self: end;
  color: var(--white);
  font-size: clamp(15px, 1.25vw, 18px);
  text-align: right;
}

.enquiry .enquiry-info h2 {
  font-family: Anton, Impact, "Arial Black", sans-serif;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfbfa;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.upload-field input {
  margin-bottom: 2px;
}

.upload-help {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.check input {
  min-height: auto;
  margin-top: 4px;
}

.other-project[hidden] {
  display: none;
}

.selected-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -6px;
}

.selected-files[hidden] {
  display: none;
}

.selected-file {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 8px 9px 8px 11px;
  border: 1px solid rgba(38, 57, 86, 0.16);
  border-radius: 999px;
  color: var(--blue);
  background: #f3f0ea;
  font-size: 12px;
  font-weight: 800;
}

.selected-file button {
  border: 0;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.form-status {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.form-status.success {
  padding: 16px 18px;
  border: 1px solid rgba(31, 111, 67, 0.22);
  color: #1f6f43;
  background: #eef8f2;
  box-shadow: 0 12px 34px rgba(31, 111, 67, 0.1);
}

.form-status.error {
  padding: 16px 18px;
  border: 1px solid rgba(155, 28, 28, 0.22);
  color: #9b1c1c;
  background: #fff1f1;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(16, 25, 41, 0.28);
  font-weight: 900;
}

.work-page {
  background: var(--paper);
}

.work-hero {
  color: var(--white);
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
  background:
    radial-gradient(circle at 22% 18%, rgba(184, 138, 80, 0.2), transparent 26rem),
    linear-gradient(135deg, #101721, #263956 78%);
}

.work-hero h1 {
  font-size: clamp(46px, 6vw, 82px);
}

.work-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.work-hero .hero-actions {
  margin-top: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  appearance: none;
  min-height: 0;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  line-height: 0;
  text-align: left;
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item.tall {
  grid-row: auto;
  min-height: 0;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  background: transparent;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.gallery-item img.force-fill {
  object-fit: fill;
}

.gallery-item.tile-fill {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.gallery-item.tile-fill img {
  opacity: 0;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(16, 24, 38, 0.78);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--blue);
}

.gallery-cta .button.primary {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.gallery-cta .button.primary:hover,
.gallery-cta .button.primary:focus-visible {
  color: var(--blue);
  background: var(--white);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-modal[hidden] {
  display: none;
}

.modal-content {
  display: grid;
  justify-items: center;
  width: min(1100px, 92vw);
  margin: auto;
}

.gallery-modal img {
  display: block;
  width: auto;
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.gallery-modal p {
  width: 100%;
  margin: 16px 0 0;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.modal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-arrow {
  position: fixed;
  top: 50%;
  z-index: 82;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.modal-prev {
  left: clamp(14px, 4vw, 54px);
}

.modal-next {
  right: clamp(14px, 4vw, 54px);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  background: #f7f4ee;
  border-top: 1px solid rgba(38, 57, 86, 0.12);
  padding-block: 10px;
}

footer img {
  width: 154px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  justify-content: flex-end;
  color: var(--blue);
  font-weight: 800;
}

.footer-info > * + *::before {
  content: "|";
  margin-right: 10px;
  color: rgba(38, 57, 86, 0.34);
}

@media (max-width: 1020px) {
  .hero,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

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

  .work-preview img:nth-child(2),
  .work-preview img:nth-child(3) {
    margin-top: 0;
  }

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

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .contact-rows a,
  .contact-rows div {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 10px 14px;
  }

  .brand {
    width: 214px;
    height: 56px;
  }

  .brand img {
    transform: scale(1.08);
  }

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

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    display: grid;
    min-width: min(250px, calc(100vw - 28px));
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(38, 57, 86, 0.14);
    border-radius: 8px;
    background: rgba(247, 244, 238, 0.98);
    box-shadow: 0 18px 44px rgba(10, 16, 28, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 6px;
    color: var(--blue);
  }

  nav a:hover,
  nav a:focus-visible {
    background: rgba(38, 57, 86, 0.08);
  }

  .phone-link {
    margin-top: 4px;
    padding: 11px 14px;
    text-align: center;
    font-size: 13px;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(52px, 15vw, 74px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-media {
    min-height: 360px;
  }

  .service-grid,
  .work-preview,
  .enquiry-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-cta {
    display: grid;
  }

  .services-cta .button {
    width: 100%;
  }

  .hero-actions .button,
  .enquiry-form .button {
    width: 100%;
  }

  .contact-rows a,
  .contact-rows div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-rows strong {
    justify-self: start;
    text-align: left;
  }

  .statement-detail {
    justify-self: start;
  }

  .footer-info {
    justify-content: flex-start;
    gap: 4px 8px;
    font-size: 13px;
  }

  footer img {
    width: 132px;
    height: 40px;
  }

  .footer-info > * + *::before {
    margin-right: 8px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    min-height: 0;
  }

  .gallery-cta {
    display: grid;
  }

  .modal-arrow {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .gallery-modal {
    align-items: center;
    justify-items: center;
    padding: 74px 16px 54px;
  }

  .modal-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    transform: translateY(-2vh);
  }

  .gallery-modal img {
    width: 100%;
    max-width: calc(100vw - 32px);
    max-height: 54svh;
    object-fit: contain;
  }

  .gallery-modal p {
    margin-top: 22px;
    padding-inline: 12px;
    font-size: clamp(24px, 8vw, 36px);
    line-height: 1.15;
  }

  .modal-close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 32px;
  }

  .modal-arrow {
    top: 43%;
  }

  .modal-prev {
    left: 12px;
  }

  .modal-next {
    right: 12px;
  }

  .sticky-cta {
    display: inline-flex;
  }
}
