:root {
  --bg: #f2ecdf;
  --paper: #faf6ed;
  --navy: #0e203c;
  --navy-deep: #08162b;
  --text: #14243f;
  --muted: #525a62;
  --gold: #bd8127;
  --gold-ink: #9b641a;
  --line: rgba(14, 32, 60, .22);
  --line-dark: rgba(250, 246, 237, .22);
  --radius-control: 2px;
  --container: 1240px;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", Baskerville, Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  transform: translateY(-180%);
  background: var(--navy);
  color: var(--paper);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section-index {
  width: max-content;
  margin: 0;
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.065em;
}

.section-heading h2 span {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.section-heading > p:last-child,
.works-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.065em;
}

.brand-name span { color: var(--gold); }

.brand-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
}

.site-nav a {
  position: relative;
  padding: 30px 0 28px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .2s ease;
}

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

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--navy);
  border-radius: var(--radius-control);
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
  font-weight: 650;
  transition: background .2s ease, color .2s ease;
}

.header-cta:hover {
  background: transparent;
  color: var(--navy);
}

.menu-toggle { display: none; }

.hero {
  padding: 68px 0 0;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: end;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy { padding: 30px 0 54px; }

.hero h1 {
  max-width: 630px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(66px, 6.1vw, 88px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.07em;
}

.hero-lead {
  max-width: 545px;
  margin: 34px 0 30px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.68;
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.button-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.messenger-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}

.button small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  opacity: .65;
}

.button-primary {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.button-primary:hover { background: var(--navy-deep); }

.button-secondary {
  min-height: auto;
  padding: 6px 0 7px;
  border: 0;
  border-bottom: 1px solid var(--navy);
  border-radius: 0;
  color: var(--navy);
}

.button-secondary:hover { color: var(--gold-ink); }

.hero-proof {
  display: flex;
  gap: 18px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof strong {
  color: var(--text);
  font-weight: 650;
}

.hero-media { margin: 0; }

.hero-media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(.88) contrast(1.02);
  transition: filter .2s ease;
}

.hero-media:hover img { filter: saturate(.96) contrast(1.02); }

.hero-media figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.hero-media figcaption strong {
  margin-left: 8px;
  color: var(--gold-ink);
  font-size: 18px;
  font-weight: 500;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin-top: 54px;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 21px 24px;
  font-size: 13px;
}

.hero-facts li:first-child { padding-left: 0; }
.hero-facts li + li { border-left: 1px solid var(--line); }
.hero-facts strong { font-weight: 700; }
.hero-facts span { color: var(--muted); text-align: left; }

.concept {
  padding: 134px 0 82px;
  background: var(--bg);
}

.concept-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 400px);
  align-items: end;
  gap: 34px;
  margin-bottom: 62px;
}

.concept-heading > p:last-child { padding-bottom: 4px; }

.concept-gallery {
  display: grid;
  grid-template-columns: .94fr 1.12fr .94fr;
  align-items: start;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--navy);
}

.concept-gallery figure { margin: 0; }
.concept-gallery figure:nth-child(2) { transform: translateY(-24px); }

.concept-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(.88) contrast(1.01);
}

.concept-gallery figcaption {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
}

.concept-gallery figcaption > span {
  color: var(--gold-ink);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.concept-gallery h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.concept-gallery p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.works {
  padding: 100px 0 138px;
  background: var(--paper);
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.works-heading .section-index { margin-bottom: 17px; }
.works-heading h2 span {
  display: block;
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}
.works-heading > p { padding-bottom: 5px; }

.portfolio-carousel {
  padding-top: 18px;
  border-top: 1px solid var(--navy);
}

.portfolio-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar { display: none; }

.portfolio-item {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(.86) contrast(1.02);
  transition: filter .2s ease, transform .2s ease;
}

.portfolio-item:hover img {
  transform: scale(1.012);
  filter: saturate(.96) contrast(1.02);
}

.portfolio-item figcaption {
  padding: 13px 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.portfolio-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.portfolio-position {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.portfolio-controls { display: flex; gap: 24px; }

.portfolio-button {
  padding: 5px 0 7px;
  border: 0;
  border-bottom: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.portfolio-button:hover { color: var(--gold-ink); border-color: var(--gold-ink); }
.portfolio-button:disabled { opacity: .35; cursor: default; }

.text-button {
  display: inline-block;
  margin-top: 30px;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}

.text-button:hover { color: var(--gold-ink); border-color: var(--gold-ink); }

.making {
  padding: 122px 0 132px;
  background: var(--navy);
  color: var(--paper);
}

.making-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  align-items: end;
  gap: clamp(60px, 9vw, 130px);
  margin-bottom: 88px;
}

.making-heading .section-index { margin-bottom: 20px; }
.making-heading h2 { color: var(--paper); }
.section-heading.making-heading > p.making-lead {
  margin: 0;
  padding-bottom: 4px;
  color: rgba(250, 246, 237, .74);
  font-size: 16px;
  line-height: 1.72;
}
.making .section-index,
.contact .section-index { color: var(--gold); }

.steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 0 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.steps li:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
.steps li:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }
.steps li:nth-child(3) { grid-column: 4 / 10; grid-row: 2; }
.steps li:nth-child(4) { grid-column: 1 / 7; grid-row: 3; }
.steps li:nth-child(5) { grid-column: 7 / 13; grid-row: 3; }

.step-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-body { grid-column: 2; }

.step-number {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.steps h3 {
  margin: 0 0 13px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.steps p {
  margin: 0;
  color: rgba(250, 246, 237, .72);
  font-size: 15px;
  line-height: 1.68;
}

.step-note {
  grid-column: 2;
  width: max-content;
  margin-top: 19px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing {
  padding: 124px 0 82px;
  background: var(--bg);
}

.pricing-box {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 66px 90px;
  padding-top: 36px;
  border-top: 1px solid var(--navy);
}

.price-copy h2 {
  max-width: 340px;
  margin: 18px 0 24px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.06em;
}

.price-copy > p:not(.section-index) {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.price-copy .price-from {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price-from strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
  font-weight: 500;
}

.price-copy .price-small { color: var(--muted); font-size: 12px; }

.price-factors {
  align-self: start;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.price-factors h3 {
  margin: 0;
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.price-factors ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-factors li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  padding: 17px 0 19px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 17px;
  font-weight: 650;
}

.price-factors li span {
  color: var(--gold-ink);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
}

.benefits {
  padding: 126px 0 136px;
  background: var(--navy);
  color: var(--paper);
}

.benefits-heading {
  padding-bottom: 52px;
}

.benefits-heading h2 {
  max-width: 610px;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(48px, 4.5vw, 68px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}

.benefits-heading h2 em {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) repeat(2, minmax(0, .55fr));
  grid-template-rows: repeat(2, minmax(160px, auto));
  border-bottom: 1px solid var(--line-dark);
}

.benefits article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 0 29px 30px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.benefits article:first-child {
  grid-row: 1 / 3;
  justify-content: flex-end;
  padding: 32px 54px 34px 0;
  border-left: 0;
}

.benefits span {
  margin-bottom: auto;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.benefits h3 {
  max-width: 260px;
  margin: 26px 0 9px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.benefits article:first-child h3 {
  max-width: 370px;
  margin-top: 56px;
  font-size: 38px;
  letter-spacing: -.045em;
}

.benefits p {
  max-width: 270px;
  margin: 0;
  color: rgba(250, 246, 237, .6);
  font-size: 14px;
  line-height: 1.55;
}

.benefits article:first-child p {
  max-width: 340px;
  font-size: 16px;
}

.reviews {
  padding: 142px 0 152px;
  background: var(--paper);
}

.reviews-heading {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: end;
  gap: 34px;
  margin-bottom: 56px;
}

.reviews-heading h2 span {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 38px;
}

.review-quote {
  margin: 0;
  border-top: 1px solid var(--navy);
}

.review-quote:first-child {
  grid-column: 3 / 13;
  padding: 42px 0 72px;
}

.review-quote:nth-child(2) {
  grid-column: 1 / 7;
  padding: 30px 0 0;
}

.review-quote:nth-child(3) {
  grid-column: 7 / 13;
  padding: 30px 0 0;
}

.review-quote > p {
  margin: 0 0 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.45;
}

.review-quote:first-child > p {
  max-width: 940px;
  font-size: clamp(36px, 3.8vw, 55px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.review-quote cite {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-controls { display: none; }

.contact {
  padding: 120px 0 94px;
  background: var(--navy);
  color: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(62px, 8vw, 120px);
}

.contact-copy .section-index { margin-bottom: 22px; }

.contact-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(56px, 5.7vw, 82px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.065em;
}

.contact-copy > p:last-of-type {
  max-width: 540px;
  margin: 25px 0 34px;
  color: rgba(250, 246, 237, .76);
  font-size: 16px;
  line-height: 1.7;
}

.button-dark {
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.button-dark:hover { background: transparent; color: var(--paper); }

.button-light {
  min-height: auto;
  padding: 6px 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(250, 246, 237, .7);
  border-radius: 0;
  color: var(--paper);
}

.button-light:hover { color: var(--gold); border-color: var(--gold); }

.contact-visual { margin: 0; }

.contact-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(.82) contrast(1.03);
}

.contact-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-style: italic;
}

.contact-visual figcaption strong {
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
}

.contact-visual figcaption span {
  color: rgba(250, 246, 237, .65);
  font-size: 13px;
}

.site-footer {
  padding: 32px 0 38px;
  border-top: 1px solid var(--line-dark);
  background: var(--navy);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 36px;
}

.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-note, .footer-inner p { color: rgba(250, 246, 237, .56); }
.footer-inner p { margin: 0; font-size: 12px; }

@media (min-width: 821px) {
  body { font-size: 17px; }
  .section-index { font-size: 12px; }
  .section-heading > p:last-child, .works-heading > p { font-size: 18px; }
  .brand-name { font-size: 26px; }
  .brand-note { font-size: 11px; }
  .site-nav a, .header-cta { font-size: 14px; }
  .hero-lead { font-size: 18px; }
  .button { font-size: 14px; }
  .hero-proof { font-size: 13px; }
  .hero-facts li { font-size: 14px; }
  .concept-gallery h3 { font-size: 18px; }
  .concept-gallery p { font-size: 15px; }
  .portfolio-item figcaption, .portfolio-button, .text-button { font-size: 14px; }
  .section-heading.making-heading > p.making-lead { font-size: 18px; }
  .steps h3 { font-size: 28px; }
  .steps p { font-size: 17px; }
  .step-number { font-size: 15px; }
  .step-note { font-size: 12px; }
  .price-copy > p:not(.section-index) { font-size: 17px; }
  .price-copy .price-small { font-size: 14px; }
  .price-factors li { font-size: 18px; }
  .benefits h3 { font-size: 22px; }
  .benefits p { font-size: 15px; }
  .benefits article:first-child h3 { font-size: 40px; }
  .benefits article:first-child p { font-size: 17px; }
  .review-quote cite { font-size: 12px; }
  .contact-copy > p:last-of-type { font-size: 18px; }
  .footer-inner p { font-size: 13px; }
}

@media (max-width: 1100px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .header-inner { grid-template-columns: 165px 1fr auto; gap: 22px; }
  .site-nav { gap: 22px; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 42px; }
  .hero h1 { font-size: 66px; }
  .hero-media img { height: 580px; }
  .hero-facts li { flex-direction: column; gap: 2px; }
  .hero-facts span { text-align: left; }
  .concept-heading { grid-template-columns: 120px 1fr 330px; gap: 26px; }
  .making-heading { grid-template-columns: 1fr 350px; gap: 60px; }
  .steps { gap: 62px 24px; }
  .pricing-box { grid-template-columns: 300px 1fr; gap: 58px; }
  .contact-inner { grid-template-columns: .9fr minmax(420px, 1.1fr); gap: 54px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 74px; }
  .header-inner { min-height: 72px; grid-template-columns: 1fr auto auto; }

  .menu-toggle {
    position: relative;
    z-index: 61;
    width: 38px;
    height: 38px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: var(--navy);
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 90px 30px 40px;
    transform: translateX(100%);
    background: var(--paper);
    transition: transform .25s ease;
  }

  .site-nav.is-open { transform: translateX(0); }

  .site-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.04em;
  }

  .site-nav a::after { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { padding: 0; }
  .hero h1 { max-width: 710px; font-size: clamp(62px, 10.5vw, 78px); }
  .hero-lead { max-width: 620px; }
  .hero-media { display: none; }
  .hero-media img { height: auto; aspect-ratio: 1.45 / 1; }
  .hero-facts { margin-top: 44px; }
  .hero-facts li { padding: 18px; }
  .hero-facts li:first-child { padding-left: 0; }

  .concept { padding-top: 100px; }
  .concept-heading { display: grid; grid-template-columns: 100px 1fr; gap: 24px; }
  .concept-heading > p:last-child { grid-column: 2; max-width: 520px; margin-top: -8px; }
  .concept-gallery { margin-top: 48px; gap: 18px; }
  .concept-gallery figure:nth-child(2) { transform: translateY(-16px); }

  .works { padding-top: 88px; padding-bottom: 104px; }
  .works-heading { grid-template-columns: 1fr; gap: 22px; }
  .works-heading > p { max-width: 560px; }
  .portfolio-item { flex-basis: calc((100% - 18px) / 2); }

  .making { padding: 92px 0 98px; }
  .making-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 62px; }
  .making-heading > .making-lead { max-width: 650px; }
  .steps { grid-template-columns: 1fr; gap: 52px; }
  .steps li:nth-child(1), .steps li:nth-child(2), .steps li:nth-child(3), .steps li:nth-child(4), .steps li:nth-child(5) { grid-column: 1; grid-row: auto; }

  .pricing { padding-top: 104px; }
  .pricing-box { grid-template-columns: 1fr; gap: 48px; }
  .price-copy { display: grid; grid-template-columns: 1fr 1fr; column-gap: 38px; }
  .price-copy .section-index, .price-copy h2 { grid-column: 1 / -1; }
  .price-copy h2 { max-width: 600px; }

  .benefits { padding: 102px 0 112px; }
  .benefits-heading {
    padding-bottom: 44px;
  }
  .benefits-heading h2 { max-width: 600px; }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .benefits article { min-height: 176px; }
  .benefits article:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 270px;
    padding-right: 0;
  }
  .benefits article:nth-child(even) {
    padding-right: 28px;
    padding-left: 0;
    border-left: 0;
  }

  .reviews { padding: 108px 0 116px; }
  .reviews-heading { grid-template-columns: 100px 1fr; }
  .review-quote:first-child { grid-column: 2 / 13; }

  .contact { padding: 96px 0 80px; }
  .contact-inner { grid-template-columns: 1fr; gap: 62px; }
  .contact-copy { max-width: 680px; }
  .contact-visual img { height: auto; aspect-ratio: 1.5 / 1; }
}

@media (max-width: 540px) {
  .container { width: calc(100% - 28px); }
  .header-inner { min-height: 66px; }
  .brand-name { font-size: 21px; }
  .header-cta { display: none; }

  .hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(44px, 12.4vw, 56px); line-height: .94; }
  .hero-lead { margin: 26px 0; font-size: 15px; }
  .contact-buttons { width: 100%; align-items: stretch; flex-direction: column; gap: 12px; }
  .contact-buttons .button { width: 100%; min-height: 54px; justify-content: center; padding: 0 18px; }
  .button-secondary { border: 1px solid var(--navy); }
  .button-light { border: 1px solid rgba(250, 246, 237, .7); }
  .hero-proof { flex-direction: column; gap: 2px; }
  .hero-grid { gap: 38px; }
  .hero-media figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .hero-media figcaption strong { font-size: 16px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts li, .hero-facts li:first-child { padding: 14px 0; }
  .hero-facts li + li { border-top: 1px solid var(--line); border-left: 0; }

  .section-heading h2 { font-size: 44px; }
  .concept { padding: 82px 0 64px; }
  .concept-heading { display: block; margin-bottom: 36px; }
  .concept-heading .section-index { margin-bottom: 14px; }
  .concept-heading > p:last-child { margin-top: 18px; }
  .concept-gallery { display: flex; gap: 14px; margin-top: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .concept-gallery::-webkit-scrollbar { display: none; }
  .concept-gallery figure, .concept-gallery figure:nth-child(2) { flex: 0 0 84%; transform: none; scroll-snap-align: start; }

  .works { padding: 72px 0 86px; }
  .works-heading { margin-bottom: 34px; }
  .portfolio-track { gap: 14px; }
  .portfolio-item { flex-basis: 82%; }
  .portfolio-nav { margin-top: 20px; }

  .making { padding: 76px 0 82px; }
  .making-heading { margin-bottom: 48px; }
  .steps { gap: 44px; }
  .steps li { grid-template-columns: 44px 1fr; gap: 0 16px; padding-top: 20px; }
  .step-icon { width: 38px; height: 38px; }
  .steps h3 { font-size: 23px; }
  .steps p { font-size: 14px; }

  .pricing { padding: 84px 0 36px; }
  .pricing-box { padding-top: 26px; gap: 38px; }
  .price-copy { display: block; }
  .price-copy h2 { font-size: 44px; }
  .price-factors h3 { font-size: 27px; }
  .price-factors li { grid-template-columns: 42px 1fr; font-size: 16px; }

  .benefits { padding: 78px 0 88px; }
  .benefits-heading { display: block; padding-bottom: 34px; }
  .benefits-heading h2 { font-size: 43px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits article,
  .benefits article:nth-child(even) {
    min-height: 152px;
    padding: 22px 0 24px;
    border-left: 0;
  }
  .benefits article:first-child {
    grid-column: auto;
    min-height: 244px;
    padding: 26px 0 28px;
  }
  .benefits article:first-child h3 { margin-top: 54px; font-size: 33px; }
  .benefits article:first-child p { font-size: 16px; }

  .reviews { padding: 84px 0 92px; }
  .reviews-heading { display: block; margin-bottom: 36px; }
  .reviews-heading .section-index { margin-bottom: 14px; }
  .review-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .review-track::-webkit-scrollbar { display: none; }
  .review-quote:first-child, .review-quote:nth-child(2), .review-quote:nth-child(3) { flex: 0 0 90%; min-width: 0; padding: 26px 0 0; scroll-snap-align: start; }
  .review-quote:first-child > p, .review-quote > p { font-size: 25px; line-height: 1.4; }
  .review-controls { display: flex; justify-content: space-between; margin-top: 34px; }
  .review-arrow { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--navy); font-size: 12px; font-weight: 650; cursor: pointer; }

  .contact { padding: 78px 0 62px; }
  .contact-copy h2 { font-size: 50px; }
  .contact-copy > p:last-of-type { margin: 20px 0 28px; }
  .contact-visual figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }

  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner p:first-of-type { display: none; }
}

@media (min-width: 901px) {
  .hero {
    height: calc(100svh - 83px);
    min-height: 560px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    padding-top: clamp(20px, 4svh, 54px);
  }

  .hero-grid {
    min-height: 0;
    align-items: stretch;
  }

  .hero-copy {
    align-self: center;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(62px, min(6.1vw, 10.2svh), 88px);
  }

  .hero-lead {
    margin-top: clamp(20px, 3.4svh, 34px);
    margin-bottom: clamp(18px, 3svh, 30px);
  }

  .hero-proof {
    margin-top: clamp(16px, 2.8svh, 28px);
  }

  .hero-media {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .hero-media img {
    min-height: 0;
    height: 100%;
  }

  .hero-media figcaption {
    padding-top: clamp(10px, 1.5svh, 15px);
  }

  .hero-facts {
    margin-top: clamp(18px, 3svh, 40px);
  }

  .hero-facts li {
    padding-top: clamp(13px, 2svh, 20px);
    padding-bottom: clamp(13px, 2svh, 20px);
  }
}

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