: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;
}

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 1300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 1300ms ease;
}

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

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

.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%;
  object-fit: contain;
}

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;
}

.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%),
    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);
}

.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;
}

.statement,
.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;
}

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

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.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: 235px;
  object-fit: cover;
}

.service-grid article:first-child img {
  object-position: 50% 66%;
}

.service-grid div {
  padding: 22px;
}

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

.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;
  background: var(--paper);
}

.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: var(--grey);
}

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

.contact-rows {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid rgba(38, 57, 86, 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(38, 57, 86, 0.18);
}

.contact-rows span {
  color: #7c838b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-rows strong {
  justify-self: end;
  color: var(--blue);
  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;
}

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;
}

.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);
  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(54px, 8vw, 110px);
}

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

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

.gallery-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.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-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;
}

.gallery-modal img {
  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 {
  margin: 16px 0 0;
  color: var(--white);
  font-weight: 900;
}

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

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,
  .statement,
  .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);
  }

  nav a:not(.phone-link) {
    display: none;
  }

  .phone-link {
    padding: 8px 9px;
    font-size: 12px;
  }

  .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;
  }

  .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;
  }

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