:root {
  --black: #000000;
  --black-soft: #080706;
  --black-panel: #171410;
  --charcoal: #211d18;
  --gold: #d8ad54;
  --gold-soft: #f0d58a;
  --gold-deep: #9b6c22;
  --white: #fffaf0;
  --white-soft: #f4ead8;
  --smoke: #c8beaa;
  --muted: #9d927f;
  --wine: #5b2833;
  --jade: #2f5b4b;
  --line: rgba(216, 173, 84, 0.28);
  --line-soft: rgba(255, 250, 240, 0.12);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
  --gold-glow: 0 0 34px rgba(216, 173, 84, 0.26);
  --radius: 8px;
  --max: 1120px;
  --marble-vein: linear-gradient(118deg, transparent 0 22%, rgba(216, 173, 84, 0.14) 22.4%, transparent 23% 56%, rgba(255, 250, 240, 0.08) 56.5%, transparent 57.2% 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.82)),
    url("assets/black-gold-marble.png"),
    #000000;
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    var(--marble-vein),
    linear-gradient(152deg, transparent 0 12%, rgba(240, 213, 138, 0.08) 12.25%, transparent 12.8% 42%, rgba(255, 250, 240, 0.04) 42.4%, transparent 43%),
    linear-gradient(25deg, transparent 0 68%, rgba(216, 173, 84, 0.1) 68.4%, transparent 69%),
    transparent;
  background-size: 1200px 840px, 900px 760px, 760px 580px, auto;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.36));
}

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

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--gold-soft);
}

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

h1,
h2,
h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 68px;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

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

p {
  color: var(--smoke);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.96);
  border-color: var(--line);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 12px;
  color: var(--white);
  font-weight: 780;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background:
    linear-gradient(145deg, var(--gold-soft), var(--gold) 48%, var(--gold-deep));
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--gold-glow);
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta {
  padding: 9px 15px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: var(--radius);
}

.nav-cta:hover {
  color: var(--black);
  background: var(--gold-soft);
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section[id] {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  min-height: calc(100svh - 150px);
  padding: 62px 0 42px;
  gap: 58px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  display: block;
  width: 92px;
  height: 2px;
  margin-bottom: 30px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-line {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--white-soft);
  font-size: 23px;
  line-height: 1.42;
}

.hero-actions,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: var(--black);
  background: linear-gradient(145deg, var(--gold-soft), var(--gold) 52%, var(--gold-deep));
  border-color: rgba(255, 250, 240, 0.36);
  box-shadow: var(--gold-glow);
}

.button.primary:hover {
  color: var(--black);
  background: var(--gold-soft);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 250, 240, 0.04);
  border-color: var(--line);
}

.button.secondary:hover {
  color: var(--gold-soft);
  background: rgba(216, 173, 84, 0.08);
  border-color: rgba(240, 213, 138, 0.58);
}

.button.tertiary {
  width: max-content;
  color: var(--black);
  background: var(--gold);
  border-color: rgba(255, 250, 240, 0.34);
}

.button.tertiary:hover {
  color: var(--black);
  background: var(--gold-soft);
}

.hero-visual {
  margin: 0;
}

.hero-visual picture,
.showcase-grid picture {
  height: 100%;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--black-panel);
  border: 1px solid rgba(216, 173, 84, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--gold-glow);
}

.hero-visual figcaption {
  max-width: 430px;
  margin: 14px 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.intro-band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band p {
  max-width: 960px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.38;
}

.signature-section,
.image-showcase,
.lanes-section,
.practice-section,
.proof-section,
.work-with-section,
.process-section,
.about-section,
.contact-section,
.split-section,
.support-grid,
.policy-content,
.policy-band {
  padding: 88px 0;
}

.signature-section,
.practice-section,
.about-section,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.signature-copy p,
.showcase-copy p,
.practice-panel p,
.about-note p,
.page-hero p,
.split-section p,
.policy-band p {
  max-width: 760px;
  font-size: 18px;
}

.signature-grid {
  display: grid;
  gap: 12px;
}

.image-showcase {
  border-top: 1px solid var(--line-soft);
}

.showcase-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.56fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.showcase-copy h2 {
  margin-bottom: 0;
}

.showcase-copy p {
  margin-bottom: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.62fr);
  gap: 14px;
}

.showcase-grid figure {
  margin: 0;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  background: var(--black-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.showcase-large {
  grid-row: span 2;
}

.showcase-large img {
  min-height: 520px;
}

.signature-grid div,
.lane-card,
.proof-card,
.offer-card,
.process-steps article,
.support-card,
.practice-list,
.proof-note,
.inquiry-panel,
.contact-rows a,
.work-details div {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.025)),
    var(--black-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

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

.signature-grid span,
.lane-number,
.proof-card span,
.offer-card span,
.process-steps span,
.section-label,
.work-details span,
.contact-rows span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-grid strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 420px;
  margin-bottom: 0;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lane-card,
.support-card {
  min-height: 238px;
  padding: 24px;
}

.lane-card p,
.support-card p {
  margin-bottom: 0;
}

.practice-section {
  border-top: 1px solid var(--line-soft);
}

.practice-list {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.practice-list p {
  margin: 0;
}

.practice-list strong,
.principles-list strong,
.detail-list strong {
  color: var(--gold-soft);
}

.current-work {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 82px 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 173, 84, 0.2), rgba(8, 7, 6, 0.7)),
    var(--charcoal);
}

.current-work::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    var(--marble-vein),
    radial-gradient(circle at 80% 10%, rgba(216, 173, 84, 0.18), transparent 28%);
  opacity: 0.9;
}

.work-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 32px;
  align-items: end;
}

.work-panel h2,
.work-panel p,
.work-panel .section-label {
  color: var(--white);
}

.work-panel p {
  max-width: 650px;
  color: var(--white-soft);
  font-size: 18px;
}

.work-details {
  display: grid;
  gap: 10px;
}

.work-details div {
  padding: 16px 18px;
}

.work-details strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
}

.work-panel .button {
  grid-column: 1 / -1;
}

.proof-section {
  border-top: 1px solid var(--line-soft);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.proof-heading h2 {
  margin-bottom: 0;
}

.proof-heading p:not(.section-label) {
  margin-bottom: 0;
  font-size: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
}

.proof-card h3 {
  font-size: 25px;
}

.proof-card p {
  margin-bottom: 18px;
}

.proof-card strong {
  display: block;
  margin-top: auto;
  color: var(--gold-soft);
  font-size: 13px;
  line-height: 1.45;
}

.proof-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 24px;
}

.proof-note p {
  max-width: 760px;
  margin: 0;
  color: var(--white-soft);
}

.work-with-section {
  border-top: 1px solid var(--line-soft);
}

.conversion-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.conversion-heading p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  position: relative;
  min-height: 286px;
  padding: 24px;
  overflow: hidden;
}

.offer-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(216, 173, 84, 0.42) 43%, transparent 45% 100%),
    radial-gradient(circle at 70% 30%, rgba(240, 213, 138, 0.18), transparent 46%);
  opacity: 0.72;
}

.offer-card h3 {
  font-size: 25px;
}

.offer-card p {
  margin-bottom: 0;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  background:
    var(--marble-vein),
    linear-gradient(135deg, rgba(216, 173, 84, 0.14), rgba(255, 250, 240, 0.04)),
    var(--black-panel);
}

.inquiry-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.26;
}

.process-section {
  border-top: 1px solid var(--line-soft);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.process-heading h2 {
  margin-bottom: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.process-steps article::before {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 52px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(216, 173, 84, 0.8), transparent);
}

.process-steps h3 {
  font-size: 29px;
}

.process-steps p {
  margin-bottom: 0;
}

.principles-list,
.detail-list {
  display: grid;
  gap: 16px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.principles-list p,
.detail-list p {
  margin: 0;
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-copy p {
  max-width: 430px;
  margin-bottom: 0;
}

.contact-rows {
  display: grid;
  gap: 12px;
}

.contact-rows a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  text-decoration: none;
}

.contact-rows strong {
  color: var(--white);
  overflow-wrap: anywhere;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 32px 0 42px;
  gap: 18px 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.page-main {
  min-height: 68vh;
}

.page-hero {
  padding: 86px 0 52px;
}

.page-hero h1 {
  margin-bottom: 18px;
}

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

.support-card {
  min-height: 250px;
}

.support-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 800;
}

.policy-content {
  max-width: 820px;
  padding-top: 28px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content a,
.step-list a {
  color: var(--gold-soft);
}

.step-list {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  color: var(--smoke);
}

.step-list li::marker {
  color: var(--gold);
  font-weight: 800;
}

.policy-band {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

:focus-visible {
  outline: 3px solid rgba(240, 213, 138, 0.56);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 32px;
  }

  .hero,
  .work-panel,
  .proof-heading,
  .conversion-heading,
  .signature-section,
  .showcase-copy,
  .showcase-grid,
  .practice-section,
  .about-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    gap: 34px;
  }

  .hero-visual img {
    max-height: 430px;
  }

  .section-heading {
    display: block;
  }

  .lane-grid,
  .proof-grid,
  .offer-grid,
  .process-steps,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-heading,
  .proof-note,
  .conversion-heading,
  .inquiry-panel {
    grid-template-columns: 1fr;
  }

  .contact-rows a {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: relative;
  }

  .section[id] {
    scroll-margin-top: 22px;
  }

  .nav-shell {
    width: min(100% - 28px, var(--max));
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
    gap: 8px 14px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

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

  .hero-copy::before {
    width: 64px;
    margin-bottom: 22px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 39px;
  }

  .hero-line {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .intro-band p {
    font-size: 20px;
  }

  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: row;
  }

  .button {
    flex: 1 1 0;
    min-height: 44px;
    padding: 11px 12px;
    font-size: 14px;
  }

  .hero-visual img {
    max-height: 170px;
  }

  .hero-visual figcaption {
    display: none;
  }

  .showcase-copy {
    gap: 18px;
  }

  .showcase-grid img,
  .showcase-large img {
    min-height: 220px;
    max-height: 320px;
  }

  .signature-section,
  .image-showcase,
  .lanes-section,
  .practice-section,
  .proof-section,
  .work-with-section,
  .process-section,
  .about-section,
  .contact-section,
  .split-section,
  .support-grid,
  .policy-content,
  .policy-band {
    padding: 60px 0;
  }

  .lane-grid,
  .proof-grid,
  .offer-grid,
  .process-steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .lane-card,
  .proof-card,
  .offer-card,
  .process-steps article,
  .support-card {
    min-height: 0;
  }

  .proof-card {
    padding: 22px;
  }

  .proof-note {
    padding: 22px;
  }

  .offer-card {
    padding: 22px;
  }

  .process-steps article {
    padding: 22px;
  }

  .inquiry-panel {
    padding: 22px;
  }

  .inquiry-panel p {
    font-size: 21px;
  }

  .current-work {
    padding: 58px 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    flex-direction: column;
  }
}

/* Premium studio upgrade */
body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.94)),
    url("assets/black-gold-marble.png"),
    #000000;
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

.hero.section {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: min(580px, calc(100svh - 154px));
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 173, 84, 0.3);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.hero::after {
  z-index: 2;
  background:
    linear-gradient(rgba(216, 173, 84, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 173, 84, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  aspect-ratio: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.82;
  filter: contrast(1.06) saturate(0.98);
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(100% - 40px, var(--max));
  min-height: min(580px, calc(100svh - 154px));
  margin: 0 auto;
  padding: 82px 0 28px;
  align-content: center;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy::before {
  width: 132px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1 {
  max-width: none;
  color: var(--gold-soft);
  font-size: 82px;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.8);
}

.hero-line {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.hero-actions {
  justify-content: center;
}

.hero-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 900px);
  margin: 56px auto 0;
  border-top: 1px solid rgba(216, 173, 84, 0.34);
  border-bottom: 1px solid rgba(216, 173, 84, 0.22);
}

.hero-index p {
  margin: 0;
  padding: 18px 14px;
  color: var(--gold-soft);
  border-right: 1px solid rgba(216, 173, 84, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-index p:last-child {
  border-right: 0;
}

.intro-statement {
  padding: 42px 0 24px;
}

.intro-statement p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.35;
  text-align: center;
}

.selected-work-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 74px 0 82px;
  border-top: 1px solid var(--line-soft);
}

.selected-intro {
  align-self: end;
  padding: 4px 8px 10px 0;
}

.selected-intro h2,
.matrix-heading h2,
.work-hero h1 {
  color: var(--gold-soft);
}

.selected-intro p:not(.section-label),
.matrix-heading p:not(.section-label) {
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 10px;
  content: "->";
}

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

.selected-card {
  min-height: 330px;
  overflow: hidden;
  background: rgba(8, 7, 6, 0.86);
  border: 1px solid rgba(216, 173, 84, 0.22);
  border-radius: var(--radius);
}

.selected-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-bottom: 1px solid rgba(216, 173, 84, 0.18);
}

.selected-card h3 {
  margin: 18px 16px 8px;
  color: var(--gold-soft);
  font-size: 21px;
}

.selected-card p {
  margin: 0 16px 20px;
  font-size: 14px;
  line-height: 1.48;
}

.capability-matrix {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(216, 173, 84, 0.24);
  border-left: 1px solid rgba(216, 173, 84, 0.24);
}

.matrix-grid div {
  min-height: 128px;
  padding: 22px 18px;
  background:
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.7);
  border-right: 1px solid rgba(216, 173, 84, 0.24);
  border-bottom: 1px solid rgba(216, 173, 84, 0.24);
}

.matrix-grid span,
.case-card span,
.brief-list span,
.featured-case dt {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matrix-grid strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.18;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 48px;
  padding: 74px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.about-copy p:not(.section-label),
.about-note p {
  font-size: 18px;
}

.about-note {
  align-self: center;
  padding: 28px;
  background:
    var(--marble-vein),
    rgba(8, 7, 6, 0.78);
  border: 1px solid rgba(216, 173, 84, 0.28);
  border-radius: var(--radius);
}

.about-note p {
  margin: 0;
  color: var(--white-soft);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: center;
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.inquiry-copy p:not(.section-label) {
  max-width: 620px;
  font-size: 18px;
}

.inquiry-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.7)),
    url("assets/black-gold-marble.png"),
    rgba(8, 7, 6, 0.94);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(216, 173, 84, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-card > div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 173, 84, 0.18);
}

.inquiry-card a:not(.button) {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.brief-list p {
  display: inline-block;
  margin: 0 7px 8px 0;
  padding: 6px 9px;
  color: var(--white-soft);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(216, 173, 84, 0.24);
  border-radius: var(--radius);
  font-size: 13px;
}

.work-page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #000000 420px),
    #000000;
}

.work-hero {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - var(--max)) / 2)) 64px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52)),
    url("assets/black-gold-marble.png"),
    #000000;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(216, 173, 84, 0.28);
}

.work-hero h1,
.work-hero p:not(.section-label) {
  max-width: 820px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 72px 0;
}

.case-card {
  min-height: 310px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.88);
  border: 1px solid rgba(216, 173, 84, 0.25);
  border-radius: var(--radius);
}

.featured-case {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: 34px;
  min-height: 0;
  background:
    var(--marble-vein),
    linear-gradient(145deg, rgba(216, 173, 84, 0.16), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.9);
}

.case-card h2 {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 32px;
}

.case-card p {
  max-width: 740px;
  margin-bottom: 22px;
}

.case-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: 14px;
  line-height: 1.45;
}

.featured-case dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.featured-case dl div {
  padding: 16px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(216, 173, 84, 0.2);
  border-radius: var(--radius);
}

.featured-case dd {
  margin: 0;
  color: var(--white);
}

.proof-policy {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.82fr);
  gap: 42px;
  padding: 54px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.proof-policy p:last-child {
  margin: 0;
  color: var(--white-soft);
  font-size: 18px;
}

.compact-inquiry {
  border-top: 0;
}

.project-house-tease {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line-soft);
}

.project-house-copy p:not(.section-label) {
  max-width: 700px;
  font-size: 18px;
}

.project-house-copy .button {
  margin-top: 8px;
}

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

.project-house-rooms div {
  min-height: 170px;
  padding: 22px;
  background:
    var(--marble-vein),
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.84);
  border: 1px solid rgba(216, 173, 84, 0.25);
  border-radius: var(--radius);
}

.project-house-rooms span,
.project-lane-strip span,
.studio-project-card span,
.template-frame span,
.project-facts span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-house-rooms strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
}

.project-house-rooms p {
  margin: 10px 0 0;
}

.project-page,
.project-detail-page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #000000 460px),
    #000000;
}

.projects-hero,
.project-detail-hero {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2)) 72px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54)),
    url("assets/black-gold-marble.png"),
    #000000;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(216, 173, 84, 0.28);
}

.projects-hero h1,
.project-detail-hero h1 {
  max-width: 840px;
  color: var(--gold-soft);
}

.projects-hero p,
.project-detail-hero p {
  max-width: 760px;
  color: var(--white-soft);
  font-size: 19px;
}

.project-lane-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid rgba(216, 173, 84, 0.35);
  border-left: 1px solid rgba(216, 173, 84, 0.35);
}

.project-lane-strip div {
  min-height: 118px;
  padding: 20px 16px;
  background: rgba(8, 7, 6, 0.78);
  border-right: 1px solid rgba(216, 173, 84, 0.3);
  border-bottom: 1px solid rgba(216, 173, 84, 0.3);
}

.project-lane-strip strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.3;
}

.project-gallery {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: 24px;
  padding: 64px 0 78px;
}

.project-gallery-heading {
  padding-top: 4px;
}

.project-gallery-heading h2 {
  color: var(--gold-soft);
}

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

.studio-project-card {
  position: relative;
  min-height: 320px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
    url("assets/black-gold-marble.png"),
    rgba(8, 7, 6, 0.9);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(216, 173, 84, 0.26);
  border-radius: var(--radius);
}

.studio-project-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(216, 173, 84, 0.22) 58.5%, transparent 60%),
    linear-gradient(rgba(255, 250, 240, 0.03) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  opacity: 0.65;
}

.studio-project-card > * {
  position: relative;
}

.studio-project-card.is-live {
  border-color: rgba(240, 213, 138, 0.7);
  box-shadow: var(--gold-glow);
}

.studio-project-card h3 {
  color: var(--gold-soft);
  font-size: 28px;
}

.studio-project-card p {
  margin-bottom: 28px;
}

.studio-project-card a {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: var(--gold);
  border-top: 1px solid rgba(216, 173, 84, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.studio-project-card a::after {
  content: "->";
}

.project-template-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.78fr);
  gap: 38px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.template-frame {
  min-height: 300px;
  padding: 28px;
  background:
    var(--marble-vein),
    linear-gradient(145deg, rgba(216, 173, 84, 0.1), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.92);
  border: 1px solid rgba(216, 173, 84, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.template-frame strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
}

.template-frame p {
  max-width: 410px;
  margin-top: 22px;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
  padding: 70px 0;
}

.project-facts {
  display: grid;
  gap: 12px;
  align-content: start;
}

.project-facts div,
.project-story article {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.84);
  border: 1px solid rgba(216, 173, 84, 0.25);
  border-radius: var(--radius);
}

.project-facts strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
}

.project-story {
  display: grid;
  gap: 14px;
}

.project-story h2 {
  color: var(--gold-soft);
}

.project-story p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.journal-tease {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.72fr);
  gap: 38px;
  align-items: center;
  padding: 76px 0;
  border-top: 1px solid var(--line-soft);
}

.journal-tease-copy p:not(.section-label) {
  max-width: 700px;
  font-size: 18px;
}

.journal-tease-list {
  display: grid;
  gap: 12px;
}

.journal-tease-list a {
  display: block;
  padding: 22px;
  background:
    var(--marble-vein),
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.86);
  border: 1px solid rgba(216, 173, 84, 0.26);
  border-radius: var(--radius);
  text-decoration: none;
}

.journal-tease-list span,
.blog-rooms span,
.post-card span,
.post-sidebar span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-tease-list strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.14;
}

.blog-page,
.post-page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #000000 480px),
    #000000;
}

.blog-hero {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2)) 72px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58)),
    url("assets/creative-alchemy-media.jpg"),
    #000000;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(216, 173, 84, 0.28);
}

.blog-hero h1 {
  color: var(--gold-soft);
}

.blog-hero p {
  max-width: 780px;
  color: var(--white-soft);
  font-size: 19px;
}

.blog-rooms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid rgba(216, 173, 84, 0.35);
  border-left: 1px solid rgba(216, 173, 84, 0.35);
}

.blog-rooms div {
  min-height: 142px;
  padding: 22px 18px;
  background:
    linear-gradient(145deg, rgba(216, 173, 84, 0.07), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.78);
  border-right: 1px solid rgba(216, 173, 84, 0.3);
  border-bottom: 1px solid rgba(216, 173, 84, 0.3);
}

.blog-rooms strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.18;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.82fr);
  gap: 40px;
  align-items: center;
  padding: 74px 0;
  border-top: 1px solid var(--line-soft);
}

.blog-feature-copy p:not(.section-label) {
  max-width: 720px;
  font-size: 18px;
}

.blog-feature-frame {
  min-height: 320px;
  padding: 30px;
  background:
    var(--marble-vein),
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.66)),
    url("assets/black-gold-marble.png"),
    rgba(8, 7, 6, 0.92);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(216, 173, 84, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-feature-frame span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-feature-frame strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
}

.blog-feature-frame p {
  max-width: 470px;
  margin-top: 24px;
  color: var(--white-soft);
}

.blog-index {
  display: grid;
  grid-template-columns: minmax(190px, 0.25fr) minmax(0, 1fr);
  gap: 26px;
  padding: 68px 0 82px;
  border-top: 1px solid var(--line-soft);
}

.blog-index-heading h2 {
  color: var(--gold-soft);
}

.post-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.post-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.9);
  border: 1px solid rgba(216, 173, 84, 0.24);
  border-radius: var(--radius);
}

.post-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(216, 173, 84, 0.34) 49%, transparent 51%),
    radial-gradient(circle at 70% 28%, rgba(240, 213, 138, 0.18), transparent 48%);
  opacity: 0.7;
}

.post-card h3 {
  color: var(--gold-soft);
  font-size: 27px;
}

.post-card p {
  max-width: 520px;
  margin-bottom: 48px;
}

.post-card a {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: var(--gold);
  border-top: 1px solid rgba(216, 173, 84, 0.26);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.post-card a::after {
  content: "->";
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.82fr);
  gap: 44px;
  padding: 82px 0;
}

.post-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 24px;
  background:
    var(--marble-vein),
    linear-gradient(145deg, rgba(216, 173, 84, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.84);
  border: 1px solid rgba(216, 173, 84, 0.26);
  border-radius: var(--radius);
}

.post-sidebar .text-link {
  margin: 0 0 28px;
}

.post-sidebar strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.post-sidebar p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.post-body {
  max-width: 820px;
}

.post-body h1 {
  max-width: 820px;
  color: var(--gold-soft);
  font-size: 64px;
}

.post-body h2 {
  margin-top: 42px;
  color: var(--gold-soft);
  font-size: 34px;
}

.post-body p {
  font-size: 19px;
}

.post-lede {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px !important;
  line-height: 1.36;
}

@media (max-width: 980px) {
  .hero.section,
  .hero-shell {
    min-height: min(590px, calc(100svh - 112px));
  }

  .hero h1 {
    font-size: 58px;
  }

  .selected-work-section,
  .capability-matrix,
  .journal-tease,
  .about-section,
  .inquiry-section,
  .featured-case,
  .proof-policy,
  .project-house-tease,
  .project-gallery,
  .project-template-preview,
  .project-detail-layout,
  .blog-feature,
  .blog-index,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .selected-grid,
  .matrix-grid,
  .project-card-grid,
  .blog-rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-lane-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .post-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  .hero.section {
    min-height: min(560px, calc(100svh - 130px));
  }

  .hero-shell {
    width: min(100% - 28px, var(--max));
    min-height: min(560px, calc(100svh - 130px));
    padding: 56px 0 22px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-line {
    font-size: 19px;
  }

  .hero-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }

  .hero-index p:nth-child(2) {
    border-right: 0;
  }

  .hero-index p {
    padding: 13px 8px;
    font-size: 11px;
  }

  .intro-statement p {
    font-size: 21px;
    text-align: left;
  }

  .selected-work-section,
  .capability-matrix,
  .journal-tease,
  .about-section,
  .inquiry-section,
  .case-grid,
  .project-house-tease,
  .project-gallery,
  .project-template-preview,
  .project-detail-layout,
  .blog-feature,
  .blog-index,
  .post-layout {
    padding: 56px 0;
  }

  .selected-grid,
  .matrix-grid,
  .case-grid,
  .project-house-rooms,
  .project-card-grid,
  .post-card-grid {
    grid-template-columns: 1fr;
  }

  .project-lane-strip,
  .blog-rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selected-card {
    min-height: 0;
  }

  .selected-card img {
    height: 190px;
  }

  .matrix-grid div {
    min-height: 0;
  }

  .inquiry-card,
  .case-card,
  .about-note {
    padding: 22px;
  }

  .work-hero {
    padding: 62px 14px 44px;
  }

  .projects-hero,
  .project-detail-hero,
  .blog-hero {
    padding: 62px 14px 44px;
  }

  .case-card h2 {
    font-size: 27px;
  }

  .blog-feature-frame {
    min-height: 260px;
    padding: 24px;
  }

  .blog-feature-frame strong {
    font-size: 27px;
  }

  .post-body h1 {
    font-size: 41px;
  }

  .post-body h2 {
    font-size: 28px;
  }

  .post-body p {
    font-size: 17px;
  }

  .post-lede {
    font-size: 21px !important;
  }
}
