:root {
  --ink: #24302e;
  --muted: #60706b;
  --paper: #fffaf4;
  --soft: #f4eadf;
  --sage: #46695f;
  --sage-dark: #2f4f48;
  --coral: #c96552;
  --gold: #d59b45;
  --line: rgba(36, 48, 46, 0.16);
  --shadow: 0 18px 48px rgba(36, 48, 46, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(21, 31, 29, 0.68), rgba(21, 31, 29, 0));
}

.brand,
.site-nav,
.hero-actions,
.contact-methods {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 6vw, 84px) 72px;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 28, 26, 0.86) 0%, rgba(17, 28, 26, 0.58) 44%, rgba(17, 28, 26, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 28, 26, 0.68) 0%, rgba(17, 28, 26, 0.05) 46%);
}

.hero-content {
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd59d;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(120, 42, 29, 0.25);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.band,
.services,
.portfolio,
.process {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 84px);
}

.band {
  background: var(--soft);
}

.intro,
.details,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.intro p,
.details p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 32px;
}

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

.service-card,
.step,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 300px;
  padding: 26px;
}

.service-icon {
  width: 46px;
  margin-bottom: 48px;
  border-bottom: 3px solid var(--gold);
  color: var(--sage);
  font-weight: 900;
}

.service-card p,
.step p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.feature-list li {
  min-height: 58px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 750;
}

.portfolio {
  background: #fff;
}

.service-gallery {
  margin-top: clamp(34px, 5vw, 56px);
}

.service-gallery:first-of-type {
  margin-top: 0;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.gallery-heading h3 {
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.carousel-shell {
  position: relative;
}

.portfolio-track {
  display: grid;
  grid-auto-columns: clamp(220px, 23vw, 340px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.portfolio-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage-dark);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.portfolio-open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  color: inherit;
  background: var(--sage-dark);
  cursor: zoom-in;
  font: inherit;
}

.card-track {
  grid-auto-columns: clamp(260px, 34vw, 440px);
}

.card-open {
  aspect-ratio: 1.35 / 1;
}

.portfolio-open img,
.portfolio-open video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.portfolio-open:hover img,
.portfolio-open:hover video,
.portfolio-open:focus-visible img,
.portfolio-open:focus-visible video {
  opacity: 0.9;
  transform: scale(1.035);
}

.portfolio-open:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.portfolio-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 16px 14px;
  color: #fff;
  background: linear-gradient(to top, rgba(21, 31, 29, 0.82), rgba(21, 31, 29, 0));
  font-size: 0.95rem;
  font-weight: 850;
  pointer-events: none;
  text-align: left;
}

.lightbox-caption[hidden] {
  display: none;
}

.play-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 28, 26, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.carousel-button {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 28, 26, 0.76);
  box-shadow: 0 12px 28px rgba(17, 28, 26, 0.24);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.carousel-prev {
  left: -12px;
}

.carousel-next {
  right: -12px;
}

.carousel-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.lightbox {
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #172420;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.lightbox::backdrop {
  background: rgba(12, 18, 17, 0.78);
}

.lightbox-image,
.lightbox-video {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  background: #172420;
}

.lightbox-image,
.lightbox-video {
  cursor: pointer;
  overscroll-behavior: contain;
}

.lightbox-image[hidden],
.lightbox-video[hidden] {
  display: none;
}

.lightbox-caption {
  margin: 0;
  padding: 14px 56px 16px 18px;
  font-weight: 850;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 28, 26, 0.72);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}


.step {
  padding: 24px;
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 900;
}

.contact {
  background: var(--sage-dark);
  color: #fff;
}

.contact .section-kicker {
  color: #ffd59d;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  flex-wrap: wrap;
  gap: 10px;
}

.contact-methods a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  color: var(--ink);
  background: #fffaf4;
}

label {
  display: grid;
  gap: 7px;
  color: var(--sage-dark);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(36, 48, 46, 0.22);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.enquiry-form .button {
  width: fit-content;
}

.site-footer {
  padding: 28px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: #1e2f2b;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    color: #fff;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 88vh;
  }

  .intro,
  .details,
  .contact,
  .service-grid,
  .steps,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .portfolio-track {
    grid-auto-columns: minmax(220px, 42vw);
  }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .portfolio-track {
    grid-auto-columns: minmax(240px, 30vw);
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 94vh;
    padding-top: 150px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

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

  .portfolio-track {
    grid-auto-columns: minmax(230px, 82vw);
  }

  .carousel-button {
    display: none;
  }
}
