:root {
  --ink: #1f2428;
  --muted: #626e76;
  --line: #dce2e5;
  --soft: #f3f6f4;
  --paper: #ffffff;
  --aqua: #9fb6bf;
  --moss: #697d67;
  --clay: #a86852;
  --stone: #e9ece8;
  --charcoal: #272d30;
  --bronze: #b7895b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #eef2ef;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(16px, 3.5vw, 40px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  min-width: 0;
  max-width: 100%;
}

.brand img {
  width: 152px;
  height: auto;
}

.topbar nav {
  display: flex;
  gap: 8px;
}

.topbar nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #344047;
  font-size: 14px;
  text-decoration: none;
}

.topbar nav a:hover {
  background: var(--soft);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 80px;
  min-width: 0;
  max-width: 100%;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
  min-width: 0;
}

.intro-copy h1 {
  max-width: 800px;
  margin: 8px 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  overflow-wrap: break-word;
}

.intro-copy p {
  max-width: 760px;
  color: #465159;
  font-size: 18px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-panel {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.intro-panel span,
.variant-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-panel strong,
.variant-label strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.intro-panel p,
.variant-label p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.variant {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 56px 0 16px;
  min-width: 0;
}

.variant-label {
  position: sticky;
  top: 92px;
}

.ad {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #d8dedf;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 36, 40, 0.12);
  min-width: 0;
  max-width: 100%;
}

.job-copy {
  font-size: 16px;
  line-height: 1.52;
}

.job-copy > section + section,
.job-copy > .split-sections {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.job-copy h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.24;
  overflow-wrap: break-word;
}

.job-copy p {
  margin: 0;
  color: #47535a;
  font-size: 17px;
}

.job-copy p + p {
  margin-top: 12px;
}

.job-copy ul {
  margin: 0;
  padding-left: 19px;
}

.job-copy li {
  margin: 8px 0;
}

.lead-section {
  font-size: 18px;
}

.split-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  min-width: 0;
}

.split-sections section {
  min-width: 0;
}

.apply {
  margin-top: 32px;
  padding: 24px 26px;
  background: #f4f6f4;
  border: 1px solid #dde4e1;
  border-radius: 8px;
}

.apply a {
  color: #1f2428;
  font-weight: 800;
}

.magazine-ad {
  background: #fbfaf7;
}

.magazine-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 30px;
  padding: 40px 42px 34px;
  background: #fbfaf7;
  min-width: 0;
}

.magazine-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d8d2c7;
}

.magazine-brand img {
  width: 178px;
}

.magazine-brand span {
  color: var(--moss);
  font-weight: 800;
}

.magazine-title {
  align-self: center;
}

.magazine-title p:first-child {
  margin: 0 0 16px;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
}

.magazine-title h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.magazine-title h2 span {
  display: block;
  color: var(--muted);
  font-size: 0.52em;
  line-height: 1.2;
}

.magazine-title p:last-child {
  max-width: 440px;
  margin: 24px 0 0;
  color: #465159;
  font-size: 19px;
  line-height: 1.5;
}

.magazine-hero figure {
  margin: 0;
}

.magazine-hero figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}

.magazine-body {
  padding: 10px 46px 46px;
}

.magazine-body .lead-section {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  padding-top: 34px;
  border-top: 1px solid #d8d2c7;
}

.magazine-body .lead-section h3 {
  color: var(--clay);
  font-size: 18px;
  text-transform: uppercase;
}

.magazine-body .lead-section p {
  grid-column: 2;
}

.showroom-ad {
  background: white;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.46fr) minmax(0, 0.54fr);
  min-height: 620px;
  background: #f8faf8;
  min-width: 0;
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.gallery-copy img {
  width: 180px;
  margin-bottom: 46px;
}

.gallery-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.04;
  overflow-wrap: normal;
}

.gallery-copy p:last-child {
  color: #465159;
  font-size: 19px;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 10px;
  padding: 10px;
  min-width: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.showroom-body {
  padding: 42px 48px 48px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  min-width: 0;
}

.feature-row span {
  padding: 16px;
  background: #eef4f4;
  border: 1px solid #d8e4e4;
  border-radius: 4px;
  color: #273135;
  font-weight: 800;
  text-align: center;
}

.premium-sales-ad {
  background: #f7f7f3;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  min-height: 590px;
  background: #e8ece7;
  min-width: 0;
}

.sales-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.sales-statement img {
  width: 178px;
  margin-bottom: 52px;
}

.sales-statement p {
  margin: 0 0 16px;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
}

.sales-statement h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.sales-hero figure {
  margin: 0;
  padding: 22px 22px 22px 0;
}

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

.sales-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--charcoal);
  color: white;
  min-width: 0;
}

.sales-ribbon span {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  text-align: center;
}

.premium-body {
  padding: 42px 48px 48px;
}

.premium-body .lead-section {
  padding-left: 28px;
  border-left: 5px solid var(--bronze);
}

.image-board {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  margin-top: 64px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.image-board h2 {
  margin: 8px 0 12px;
  font-size: 34px;
  line-height: 1.05;
}

.image-board p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

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

.intro > *,
.variant > *,
.magazine-hero > *,
.gallery-hero > *,
.sales-hero > *,
.image-board > *,
.split-sections > *,
.feature-row > *,
.sales-ribbon > *,
.image-strip > * {
  min-width: 0;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .intro,
  .variant,
  .magazine-hero,
  .gallery-hero,
  .sales-hero,
  .image-board {
    grid-template-columns: 1fr;
  }

  .variant-label {
    position: static;
  }

  .magazine-body .lead-section {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .magazine-body .lead-section p {
    grid-column: auto;
  }

  .gallery-hero,
  .sales-hero {
    min-height: 0;
  }

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

  .sales-hero figure {
    padding: 0 22px 22px;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
  }

  .topbar nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .topbar nav a {
    padding: 8px 9px;
  }

  main {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 24px;
  }

  .intro-copy h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .variant {
    padding-top: 38px;
    gap: 16px;
  }

  .magazine-hero,
  .gallery-copy,
  .sales-statement,
  .magazine-body,
  .showroom-body,
  .premium-body,
  .image-board {
    padding: 20px;
  }

  .magazine-brand img,
  .gallery-copy img,
  .sales-statement img {
    width: 150px;
  }

  .gallery-copy img,
  .sales-statement img {
    margin-bottom: 28px;
  }

  .magazine-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .magazine-title h2,
  .gallery-copy h2,
  .sales-statement h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .magazine-title p:last-child,
  .gallery-copy p:last-child {
    font-size: 16px;
  }

  .job-copy {
    font-size: 15px;
  }

  .job-copy h3 {
    font-size: 21px;
  }

  .job-copy p {
    font-size: 15px;
  }

  .magazine-hero figure img {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid,
  .split-sections,
  .feature-row,
  .sales-ribbon,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    min-height: 0;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .sales-hero figure {
    padding: 0 24px 24px;
  }

  .sales-hero figure img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .apply {
    padding: 20px;
  }
}
