:root {
  --ink: #151515;
  --muted: #5d6367;
  --line: #d8dde0;
  --paper: #ffffff;
  --soft: #f4f6f7;
  --teal: #116d7b;
  --brass: #b58b3b;
  --red: #b4232a;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 221, 224, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.brand-logo {
  width: 188px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2b3033;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.08)),
    url("assets/office-front.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.46)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px);
}

.hero-content {
  position: relative;
  width: min(760px, 90vw);
  padding: 7vh 5vw 11vh;
}

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

.hero .eyebrow {
  color: #e9c979;
}

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

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy {
  width: min(600px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

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

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.proof-strip div {
  min-height: 118px;
  padding: 26px 5vw;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 18px;
}

.proof-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.section {
  padding: 92px 5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  align-items: start;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-card span {
  color: var(--brass);
  font-weight: 800;
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 5vw;
}

.split-copy h2 {
  margin-bottom: 28px;
}

.split-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 16px;
  color: #41484d;
  font-size: 17px;
}

.split-image {
  min-height: 520px;
}

.workplace {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.gallery .gallery-large {
  min-height: 560px;
}

.gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  border-left: 4px solid var(--brass);
  background: rgba(21, 21, 21, 0.78);
  color: #fff;
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 6vw;
  padding: 92px 5vw;
  background: var(--ink);
  color: #fff;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-list a {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.contact-list strong {
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #30363a;
  font-size: 14px;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd2d6;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(17, 109, 123, 0.14);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  max-width: 760px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 440px;
  }

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

  .gallery .gallery-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 13px;
  }

  .brand-logo {
    width: 168px;
    max-height: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-content {
    padding: 7vh 22px 9vh;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(42px, 14vw, 66px);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .service-grid,
  .gallery,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section,
  .split-copy,
  .contact-section {
    padding: 64px 22px;
  }

  .service-card {
    min-height: 230px;
    padding: 24px;
  }

  .split-section {
    min-height: unset;
  }

  .split-image,
  .gallery figure,
  .gallery .gallery-large {
    min-height: 360px;
  }

  .contact-form {
    padding: 20px;
  }
}

.selector-page {
  background: #f3f6f5;
}

.selector-shell {
  min-height: 100svh;
  padding: 42px 5vw 64px;
}

.selector-hero {
  display: grid;
  max-width: 980px;
  margin-bottom: 34px;
  gap: 18px;
}

.selector-brand {
  width: fit-content;
  margin-bottom: 20px;
}

.selector-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 70px);
  color: var(--ink);
}

.selector-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.version-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(30, 42, 48, 0.1);
}

.version-image {
  display: block;
  aspect-ratio: 1.18;
  background: #dde3e5;
}

.version-copy {
  padding: 24px;
}

.version-copy span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.version-copy h2 {
  margin-top: 8px;
  font-size: 30px;
}

.version-copy p {
  min-height: 82px;
  color: var(--muted);
}

.version-copy .button {
  width: 100%;
}

.premium-page {
  background: #0f1113;
  color: #fff;
}

.premium-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  background: linear-gradient(180deg, rgba(15, 17, 19, 0.88), rgba(15, 17, 19, 0));
}

.premium-brand .brand-mark {
  background: #fff;
  color: #111;
}

.premium-brand small,
.premium-nav {
  color: rgba(255, 255, 255, 0.7);
}

.premium-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.premium-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
}

.premium-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 19, 0.94), rgba(15, 17, 19, 0.48), rgba(15, 17, 19, 0.16)),
    linear-gradient(180deg, rgba(15, 17, 19, 0.1), #0f1113 96%),
    url("assets/reception-wide.jpg") center / cover no-repeat;
}

.premium-hero-content {
  position: relative;
  max-width: 900px;
  padding: 20vh 5vw 12vh;
}

.premium-hero h1 {
  max-width: 880px;
  font-size: clamp(44px, 7vw, 92px);
}

.premium-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.premium-scope {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 5vw 90px;
  gap: 1px;
  background: #0f1113;
}

.premium-scope article {
  min-height: 270px;
  padding: 28px;
  background: #181b1f;
  border-top: 2px solid rgba(181, 139, 59, 0.85);
}

.premium-scope span {
  color: #e0bf75;
  font-weight: 800;
}

.premium-scope h2 {
  margin-top: 48px;
  font-size: 28px;
}

.premium-scope p {
  color: rgba(255, 255, 255, 0.64);
}

.premium-studio {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5vw;
  align-items: center;
  padding: 92px 5vw;
  background: #f4f1ea;
  color: var(--ink);
}

.premium-studio-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.premium-photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 16px;
  align-items: end;
}

.premium-photo-stack img {
  min-height: 540px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.premium-photo-stack img:last-child {
  min-height: 390px;
}

.premium-contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5vw;
  align-items: center;
  padding: 84px 5vw;
  background: #101315;
}

.premium-contact h2 {
  max-width: 680px;
}

.premium-contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.premium-contact-panel a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.premium-contact-panel span,
.direct-contact-actions span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-transform: uppercase;
}

.premium-contact-panel strong,
.direct-contact-actions strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(18px, 2vw, 25px);
  overflow-wrap: anywhere;
}

.compact-panel a:nth-child(3) strong {
  font-size: 17px;
  line-height: 1.45;
}

.premium-full {
  background: #0f1113;
  overflow-x: hidden;
}

.premium-header-solid {
  background: rgba(15, 17, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.premium-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.premium-hero-detail {
  min-height: 96svh;
}

.premium-hero-detail .premium-hero-image {
  background:
    linear-gradient(90deg, rgba(15, 17, 19, 0.96), rgba(15, 17, 19, 0.6), rgba(15, 17, 19, 0.22)),
    linear-gradient(180deg, rgba(15, 17, 19, 0.08), #0f1113 96%),
    url("assets/reception-wide.jpg") center / cover no-repeat;
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 6vw;
  align-items: end;
  max-width: 1360px;
  width: 100%;
}

.premium-hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(16, 19, 21, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.panel-logo {
  width: min(260px, 100%);
  height: auto;
  margin: 0 0 20px;
}

.premium-hero-panel span,
.premium-hero-panel strong,
.premium-hero-panel small,
.premium-hero-panel a,
.premium-hero-panel address {
  display: block;
}

.premium-hero-panel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-hero-panel strong {
  margin: 16px 0 22px;
  font-size: 24px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.premium-hero-panel small {
  margin: -10px 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.premium-hero-panel a {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.premium-hero-panel address {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
}

.premium-hero-panel .map-link {
  color: #e0bf75;
  font-weight: 800;
}

.premium-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 7vw;
  padding: 72px 5vw 86px;
  background: #0f1113;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-intro h2,
.premium-section-head h2 {
  max-width: 880px;
}

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

.premium-scope-detailed {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
}

.premium-scope-detailed article {
  min-height: 360px;
}

.premium-scope-detailed ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.premium-scope-detailed li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.premium-scope-detailed li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: #e0bf75;
  content: "";
}

.premium-process,
.premium-faq {
  padding: 92px 5vw;
  background: #15181c;
}

.premium-section-head {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 6vw;
  margin-bottom: 38px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-line article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-line span {
  color: #e0bf75;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-line h3,
.faq-grid h3 {
  color: #fff;
}

.process-line p,
.faq-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.premium-studio-detailed {
  align-items: stretch;
  background: #f1eee6;
}

.office-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.office-list div {
  padding: 16px 0;
  border-top: 1px solid rgba(21, 21, 21, 0.12);
}

.office-list dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.office-list dd {
  margin: 0;
  color: #3d454a;
}

.premium-photo-stack-detailed {
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 1fr 0.8fr;
}

.premium-photo-stack-detailed img:first-child {
  grid-row: 1 / 3;
}

.premium-photo-stack-detailed img {
  min-height: 260px;
}

.premium-photo-stack-detailed img:first-child {
  min-height: 620px;
}

.premium-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 12px;
  padding: 12px;
  background: #0f1113;
}

.premium-gallery figure {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  background: #191d21;
}

.premium-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-left: 3px solid #e0bf75;
  background: rgba(15, 17, 19, 0.82);
  color: #fff;
  font-size: 14px;
}

.premium-enquiry {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  padding: 92px 5vw;
  background: #f4f1ea;
  color: var(--ink);
}

.enquiry-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.enquiry-checks span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--teal);
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 32, 38, 0.08);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.faq-grid article {
  min-height: 210px;
  padding: 28px;
  background: #15181c;
}

.premium-contact-detailed {
  align-items: start;
  background: #0f1113;
}

.contact-left p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.compact-panel {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin-top: 30px;
}

.compact-panel a {
  min-height: 118px;
}

.premium-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.premium-form label {
  display: grid;
  gap: 7px;
  color: #30363a;
  font-size: 14px;
  font-weight: 700;
}

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

.premium-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0d0f;
  color: #fff;
}

.premium-footer strong,
.premium-footer span {
  display: block;
}

.premium-footer span {
  max-width: 840px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.premium-footer a {
  color: #e0bf75;
  font-weight: 800;
  white-space: nowrap;
}

.direct-page {
  background: #fff;
  overflow-x: hidden;
}

.direct-shell {
  min-height: 100svh;
}

.direct-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 82svh;
}

.direct-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 52px 5vw;
  border-right: 1px solid var(--line);
}

.direct-brand {
  width: fit-content;
  margin-bottom: 9vh;
}

.direct-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 78px);
  color: var(--ink);
}

.direct-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.direct-contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.direct-contact-actions a {
  display: block;
  min-width: 0;
  padding: 20px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
}

.direct-contact-actions a:first-child {
  background: var(--teal);
}

.direct-photo {
  min-width: 0;
  min-height: 640px;
}

.direct-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.direct-info div {
  min-height: 210px;
  padding: 30px 5vw 30px 30px;
  border-right: 1px solid var(--line);
}

.direct-info div:last-child {
  border-right: 0;
}

.direct-info span {
  color: var(--red);
  font-weight: 800;
}

.direct-info strong {
  display: block;
  margin-top: 28px;
  font-size: 25px;
}

.direct-info p {
  color: var(--muted);
}

.direct-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}

.direct-gallery img {
  min-height: 430px;
}

@media (max-width: 980px) {
  .version-grid,
  .premium-scope,
  .premium-studio,
  .premium-contact,
  .premium-hero-grid,
  .premium-intro,
  .premium-section-head,
  .process-line,
  .premium-enquiry,
  .direct-hero,
  .direct-info {
    grid-template-columns: 1fr 1fr;
  }

  .premium-photo-stack,
  .premium-photo-stack-detailed,
  .premium-gallery,
  .direct-gallery {
    grid-template-columns: 1fr;
  }

  .premium-photo-stack-detailed img:first-child {
    grid-row: auto;
  }

  .direct-copy {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .selector-shell {
    padding: 28px 18px 44px;
  }

  .version-grid,
  .premium-scope,
  .premium-studio,
  .premium-contact,
  .premium-contact-panel,
  .premium-hero-grid,
  .premium-intro,
  .premium-section-head,
  .process-line,
  .premium-enquiry,
  .enquiry-checks,
  .faq-grid,
  .premium-form,
  .direct-hero,
  .direct-info {
    grid-template-columns: 1fr;
  }

  .version-copy p {
    min-height: auto;
  }

  .premium-header {
    position: absolute;
    min-height: 72px;
    padding: 0 18px;
  }

  .premium-nav,
  .premium-header-cta {
    display: none;
  }

  .premium-hero-content,
  .premium-intro,
  .premium-process,
  .premium-studio,
  .premium-enquiry,
  .premium-faq,
  .premium-contact,
  .direct-copy {
    padding-right: 22px;
    padding-left: 22px;
  }

  .premium-scope {
    padding-right: 22px;
    padding-left: 22px;
  }

  .premium-photo-stack img,
  .premium-photo-stack img:last-child,
  .premium-photo-stack-detailed img,
  .premium-photo-stack-detailed img:first-child,
  .premium-gallery figure,
  .direct-photo,
  .direct-gallery img {
    min-height: 340px;
  }

  .premium-hero-panel {
    padding: 20px;
  }

  .premium-hero h1 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.05;
  }

  .premium-hero .eyebrow {
    max-width: 310px;
    line-height: 1.35;
  }

  .premium-hero p:not(.eyebrow) {
    max-width: 346px;
    font-size: 18px;
  }

  .premium-hero-grid {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .premium-hero-panel,
  .premium-hero-panel strong,
  .premium-hero-panel a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .premium-hero-panel strong {
    font-size: 20px;
  }

  .panel-logo {
    width: 220px;
  }

  .premium-scope-detailed article,
  .process-line article,
  .faq-grid article {
    min-height: auto;
    padding: 24px;
  }

  .premium-gallery {
    padding: 8px;
  }

  .premium-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .direct-brand {
    margin-bottom: 52px;
  }

  .direct-hero,
  .direct-copy {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .direct-copy p:not(.eyebrow),
  .direct-contact-actions,
  .direct-contact-actions a {
    width: 100%;
    max-width: 100%;
  }

  .direct-copy h1 {
    max-width: 300px;
    font-size: 38px;
    line-height: 1.05;
  }

  .direct-info div {
    min-height: auto;
    padding: 26px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
