:root {
  --paper: #f5f4f1;
  --white: #fff;
  --ink: #171717;
  --muted: #595854;
  --line: #d2d0cb;
  --accent: #755d34;
  --warm: #e7e1d6;
  --max: 1280px;
  --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}
body[dir="rtl"] { font-family: Arial, sans-serif; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: 0; }
h2 { margin-bottom: 0; font-size: 4rem; font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 600; }

.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }
.top-note {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
  font-size: .7rem;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.brand img { width: 31px; height: 38px; object-fit: contain; filter: brightness(0); }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: .82rem; }
.desktop-nav a, .social-links a { position: relative; }
.desktop-nav a::after, .social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .social-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.language-control select {
  appearance: none;
  min-width: 52px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 8px 17px 8px 2px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='none' stroke='%23171717' d='m1 1 4 4 4-4'/%3E%3C/svg%3E") right 6px center/10px 6px no-repeat;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 700;
}
.header-inquiry {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
}
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; position: relative; }
.menu-button span { display: block; width: 21px; height: 1px; background: currentColor; position: absolute; left: 10px; transition: transform .2s ease; }
.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 24px; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: absolute; top: var(--header); left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }

.hero {
  position: relative;
  min-height: calc(84svh - 116px);
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: #dedbd5;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 51%; }
.hero-shade { position: absolute; inset: 0; background: rgba(246,245,241,.54); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(246,245,241,.42);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  padding: 88px 0 118px;
}
.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow.light { color: rgba(255,255,255,.68); }
.hero .eyebrow.light { color: var(--accent); }
.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 400;
  white-space: pre-line;
}
.hero-copy { max-width: 620px; color: #343432; font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 12px 21px;
  font-size: .85rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--accent); }
.button-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.button-outline-light:hover { border-color: var(--white); }
.text-link { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .84rem; font-weight: 650; }
.light-link { color: var(--ink); }
.hero-facts {
  position: absolute;
  z-index: 3;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  display: flex;
  border-top: 1px solid rgba(23,23,23,.45);
  padding-top: 14px;
}
.hero-facts div { width: 155px; padding-left: 18px; border-left: 1px solid rgba(23,23,23,.24); }
.hero-facts strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; font-weight: 400; }
.hero-facts span { display: block; color: #4c4b48; font-size: .7rem; line-height: 1.35; }

.proof-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-inner {
  width: min(var(--max), calc(100% - 44px));
  min-height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.proof-inner p { margin: 0; color: var(--muted); font-size: .82rem; }
.proof-models { display: flex; align-self: stretch; border-left: 1px solid var(--line); }
.proof-models span { min-width: 74px; display: grid; place-items: center; border-right: 1px solid var(--line); font-size: .76rem; font-weight: 750; }

.section { padding: 124px max(22px, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: .65fr 2.35fr; gap: 60px; align-items: start; }
.section-heading h2 { max-width: 980px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.intro { background: var(--white); }
.intro-copy {
  margin: 72px 0 86px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
.intro-copy p { max-width: 610px; color: var(--muted); }
.intro-copy .lead { color: var(--ink); font-size: 1.25rem; }
.capability-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-list article { min-height: 310px; padding: 25px 24px 26px 0; border-right: 1px solid var(--line); }
.capability-list article:not(:first-child) { padding-left: 24px; }
.capability-list article:last-child { border-right: 0; }
.index { display: block; margin-bottom: 92px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.capability-list h3 { min-height: 50px; margin-bottom: 14px; }
.capability-list p { margin: 0; color: var(--muted); font-size: .88rem; }

.process {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: 0;
  background: var(--paper);
  padding: 0;
}
.process-visual { position: relative; min-height: 820px; }
.process-visual img { width: 100%; height: 100%; object-fit: cover; }
.image-note { position: absolute; left: 22px; bottom: 18px; margin: 0; padding: 8px 11px; background: rgba(255,255,255,.92); font-size: .7rem; }
.process-content { align-self: center; max-width: 610px; padding: 100px 70px; }
.process-content h2 { font-family: Georgia, "Times New Roman", serif; font-size: 3.65rem; font-weight: 400; }
.process-list { list-style: none; padding: 0; margin: 52px 0 28px; border-top: 1px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: .9rem; }
.process-list h3 { margin-bottom: 6px; font-size: 1rem; }
.process-list p, .small-print { margin: 0; color: var(--muted); font-size: .84rem; }
.small-print { font-size: .7rem; }

.work { background: var(--ink); color: var(--white); }
.work .eyebrow { color: #c8ad7e; }
.work-heading { grid-template-columns: .55fr 1.45fr 1fr; }
.work-heading h2 { color: var(--white); }
.work-heading p:last-child { align-self: end; margin-bottom: 4px; color: rgba(255,255,255,.58); }
.work-grid { display: grid; grid-template-columns: 1.28fr 1fr 1fr; gap: 18px; margin-top: 72px; }
.work-link { display: block; color: inherit; text-decoration: none; }
.work-grid figure { margin: 0; overflow: hidden; border-radius: 0; }
.work-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.84); transition: filter .35s ease; }
.work-grid figure:hover img { filter: saturate(1); }
.work-grid figcaption { display: flex; justify-content: space-between; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.28); font-size: .88rem; font-weight: 650; }
.work-grid small { color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 400; text-align: right; }

.video-band { background: var(--warm); display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.video-band .eyebrow.light { color: var(--accent); }
.video-copy h2 { font-family: Georgia, "Times New Roman", serif; font-size: 3.6rem; font-weight: 400; }
.video-copy > p:last-child { margin-top: 26px; color: var(--muted); }
.video-frame { aspect-ratio: 16 / 9; overflow: hidden; background: #0d0d0d; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }

.facilities { background: var(--white); }
.factory-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; margin-top: 72px; }
.factory-gallery figure { margin: 0; min-width: 0; }
.factory-gallery img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.82); }
.factory-gallery figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0 18px; border-bottom: 1px solid var(--line); font-size: .84rem; font-weight: 700; }
.factory-gallery figcaption small { color: var(--muted); font-size: .7rem; font-weight: 400; text-align: right; }
.location-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 72px; }
.location-list article { border-top: 1px solid var(--ink); }
.facility-copy { display: grid; grid-template-columns: .8fr 1fr 1.25fr; gap: 22px; padding-top: 20px; }
.facility-meta { color: var(--accent); font-size: .75rem; font-weight: 750; }
.facility-copy h3 { font-size: 1.15rem; }
.facility-copy p:last-child { color: var(--muted); font-size: .84rem; }

.fit-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; background: var(--paper); border-top: 1px solid var(--line); }
.fit-section h2 { font-family: Georgia, "Times New Roman", serif; font-size: 3.6rem; font-weight: 400; }
.brief-checklist > p { max-width: 570px; }
.brief-checklist ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.brief-checklist li { position: relative; padding: 16px 8px 16px 24px; border-bottom: 1px solid var(--line); }
.brief-checklist li::before { content: ""; position: absolute; left: 2px; top: 24px; width: 6px; height: 6px; background: var(--accent); }

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  padding: 124px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}
.contact h2 { font-family: Georgia, "Times New Roman", serif; font-size: 4rem; font-weight: 400; }
.contact-intro > p:not(.eyebrow) { max-width: 540px; margin-top: 26px; color: rgba(255,255,255,.62); }
.direct-contact { margin-top: 38px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.direct-contact a { border-bottom: 1px solid rgba(255,255,255,.45); }
.inquiry-form { align-self: start; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label { display: block; margin-bottom: 20px; color: rgba(255,255,255,.66); font-size: .74rem; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  padding: 12px 2px;
  background: transparent;
  color: var(--white);
  outline: none;
}
.inquiry-form select option { color: var(--ink); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--white); }
.inquiry-form textarea { min-height: 115px; resize: vertical; }
.form-actions { display: flex; gap: 12px; }
.form-note { max-width: 620px; margin: 16px 0 0; color: rgba(255,255,255,.46); font-size: .7rem; }

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr .65fr auto;
  gap: 28px;
  align-items: end;
  padding: 50px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--white);
  font-size: .76rem;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 32px; height: 39px; object-fit: contain; }
.footer-brand strong { font-size: .8rem; }
.footer-brand p { margin: 4px 0 0; color: var(--muted); }
.footer address { color: var(--muted); font-style: normal; }
.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.copyright { margin: 0; color: var(--muted); }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
  font-size: .7rem;
  font-weight: 800;
}

@media (max-width: 1050px) {
  h2 { font-size: 3.2rem; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero h1 { font-size: 4.1rem; }
  .hero-facts { display: none; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-content { padding: 80px 44px; }
  .process-content h2, .video-copy h2, .fit-section h2 { font-size: 3rem; }
  .work-heading { grid-template-columns: .65fr 1.35fr; }
  .work-heading p:last-child { grid-column: 2; }
  .facility-copy { grid-template-columns: 1fr; gap: 8px; }
  .contact { gap: 48px; }
  .contact h2 { font-size: 3.2rem; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header: 66px; }
  h2 { font-size: 2.45rem; }
  .top-note { min-height: 30px; padding: 0 16px; font-size: .6rem; }
  .top-note span:first-child { max-width: 66%; }
  .site-header { padding: 0 16px; }
  .brand span, .header-inquiry { display: none; }
  .hero { min-height: calc(82svh - 96px); max-height: none; align-items: flex-end; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: rgba(246,245,241,.56); }
  .hero::after { width: 100%; background: rgba(246,245,241,.28); }
  .hero-content { width: calc(100% - 32px); margin-left: 16px; padding: 86px 0 52px; }
  .hero h1 { font-size: 3.15rem; }
  .hero-copy { max-width: 94%; font-size: .96rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; margin-top: 26px; }
  .proof-inner { width: calc(100% - 32px); min-height: 114px; flex-direction: column; align-items: stretch; justify-content: center; gap: 14px; padding: 17px 0; }
  .proof-models { min-height: 40px; border-top: 1px solid var(--line); border-left: 0; }
  .proof-models span { min-width: 0; flex: 1; }
  .section, .contact { padding: 82px 16px; }
  .section-heading, .intro-copy, .fit-section, .contact { grid-template-columns: 1fr; gap: 30px; }
  .intro-copy { margin: 46px 0 58px; gap: 18px; }
  .capability-list { grid-template-columns: 1fr 1fr; }
  .capability-list article { min-height: 265px; }
  .capability-list article:nth-child(2) { border-right: 0; }
  .capability-list article:nth-child(3) { padding-left: 0; }
  .index { margin-bottom: 56px; }
  .process { grid-template-columns: 1fr; }
  .process-visual { min-height: 520px; }
  .process-content { padding: 74px 16px; }
  .process-content h2, .video-copy h2, .fit-section h2 { font-size: 2.55rem; }
  .work-heading { grid-template-columns: 1fr; }
  .work-heading p:last-child { grid-column: auto; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 44px; }
  .work-grid .work-large { grid-column: 1 / -1; }
  .work-grid figcaption { display: block; }
  .work-grid small { display: block; margin-top: 5px; text-align: left; }
  body[dir="rtl"] .work-grid small { text-align: right; }
  .video-band { grid-template-columns: 1fr; gap: 36px; }
  .factory-gallery { grid-template-columns: 1fr; gap: 30px; margin-top: 46px; }
  .factory-gallery figcaption { display: block; }
  .factory-gallery figcaption small { display: block; margin-top: 5px; text-align: left; }
  body[dir="rtl"] .factory-gallery figcaption small { text-align: right; }
  .location-list { grid-template-columns: 1fr; gap: 30px; margin-top: 56px; }
  .brief-checklist ul { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { flex-direction: column; }
  .footer { grid-template-columns: 1fr; padding: 42px 16px 86px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 2.7rem; }
  .whatsapp-float { display: none; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-list article,
  .capability-list article:not(:first-child),
  .capability-list article:nth-child(3) { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .index { margin-bottom: 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .work-large { grid-column: auto; }
}

.inner-body { background: var(--white); }
.inner-main { min-height: 70vh; }
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 90px max(22px, calc((100vw - var(--max)) / 2));
  background-color: #252525;
  background-image: var(--page-hero);
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.page-hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(12,12,12,.55); }
.page-hero-content { position: relative; z-index: 2; width: min(850px, 100%); }
.page-hero .eyebrow { color: #d6bd91; }
.page-hero h1 { margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: 4.8rem; font-weight: 400; }
.page-hero p:last-child { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.page-hero-carousel { background-image: none; }
.page-hero-slides { position: absolute; z-index: 0; inset: 0; }
.page-hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity .7s ease; }
.page-hero-slide.is-active { opacity: 1; }
.page-hero-controls { position: absolute; z-index: 2; right: max(22px, calc((100vw - var(--max)) / 2)); bottom: 34px; display: flex; align-items: center; gap: 12px; }
.page-hero-arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: rgba(12,12,12,.22); color: var(--white); font-size: 1.05rem; cursor: pointer; }
.page-hero-arrow:hover, .page-hero-arrow:focus-visible { background: var(--white); color: var(--ink); }
.page-hero-dots { display: flex; align-items: center; gap: 8px; }
.page-hero-dots button { width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; padding: 0; background: transparent; cursor: pointer; }
.page-hero-dots button.is-active { background: var(--white); }
.collection-hero { min-height: 430px; }
.inner-section { padding: 108px max(22px, calc((100vw - var(--max)) / 2)); }
.inner-section[id] { scroll-margin-top: calc(var(--header) + 16px); }
.inner-section + .inner-section { border-top: 1px solid var(--line); }
.inner-section-heading { display: grid; grid-template-columns: .75fr 1.75fr; gap: 60px; margin-bottom: 64px; }
.inner-section-heading h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.inner-section-heading > div > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--muted); }
.archive-facts { display: flex; gap: 44px; margin-top: 30px; }
.archive-facts strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
.archive-facts span { color: rgba(255,255,255,.68); font-size: .72rem; }
.directory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px 20px; }
.directory-card { display: block; min-width: 0; }
.directory-card-media { position: relative; overflow: hidden; aspect-ratio: 3 / 4; }
.directory-card img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); }
.directory-card-media-evening img { position: absolute; left: 50%; bottom: 0; width: 112%; height: 112%; max-width: none; transform: translateX(-50%); }
.directory-card-media-tailoring img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.directory-card-media-casual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.directory-card-media-outlets img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.directory-card-copy { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--ink); }
.directory-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.1rem; font-weight: 400; }
.directory-card p { grid-column: 1 / -1; max-width: 650px; margin: 0; color: var(--muted); font-size: .84rem; }
.directory-card small { align-self: center; color: var(--accent); font-size: .72rem; font-weight: 700; }
.catalog-preview { background: var(--paper); }
.design-archive-entry { background: var(--paper); }
.design-archive-entry .button { margin-top: 30px; }
.design-archive-hero {
  min-height: 540px;
  padding-top: 72px;
  padding-bottom: 72px;
  background-position: center 18%;
}
.design-archive-hero::before {
  background: linear-gradient(90deg, rgba(10,10,10,.9) 0%, rgba(10,10,10,.76) 34%, rgba(10,10,10,.24) 68%, rgba(10,10,10,.38) 100%);
}
.design-archive-hero .page-hero-content { width: min(590px, 52vw); }
.design-archive-hero h1 {
  max-width: 560px;
  margin: 10px 0 18px;
  font-size: 4.4rem;
  line-height: 1;
}
.design-archive-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.6;
}
.design-archive-hero .archive-facts {
  width: max-content;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.38);
  gap: 0;
}
.design-archive-hero .archive-facts > div { min-width: 150px; }
.design-archive-hero .archive-facts > div + div {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,.28);
}
.design-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 48px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.design-filter-list { display: flex; flex-wrap: wrap; min-width: 0; }
.design-filter-list button { flex: 0 0 auto; min-height: 52px; border: 0; border-bottom: 2px solid transparent; padding: 0 14px; background: transparent; color: var(--muted); font-size: .72rem; cursor: pointer; }
.design-filter-list button:first-child { padding-left: 0; }
.design-filter-list button[aria-pressed="true"] { border-bottom-color: var(--ink); color: var(--ink); font-weight: 750; }
.design-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 18px; }
.design-card { min-width: 0; margin: 0; }
.design-card img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; filter: saturate(.88); }
.design-card figcaption { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0 14px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.design-card figcaption small { color: var(--muted); font-size: .65rem; text-align: right; }
.catalog-grid { columns: 4; column-gap: 18px; }
.catalog-item { break-inside: avoid; margin: 0 0 34px; }
.catalog-item img { width: 100%; height: auto; object-fit: cover; }
.catalog-item.landscape img { aspect-ratio: 4 / 3; }
.catalog-item.portrait img { aspect-ratio: 3 / 4; }
.catalog-item figcaption { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0 14px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.catalog-item figcaption span { max-width: 75%; overflow-wrap: anywhere; }
.catalog-item figcaption small { color: var(--muted); font-size: .65rem; text-align: right; }
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 48px; border-top: 1px solid var(--ink); padding-top: 18px; }
.collection-count { margin: 0; color: var(--accent); font-size: .76rem; font-weight: 700; }
.archive-filter { display: inline-flex; border: 1px solid var(--line); }
.archive-filter button { min-height: 38px; border: 0; border-right: 1px solid var(--line); padding: 0 14px; background: var(--white); color: var(--muted); font-size: .72rem; }
.archive-filter button:last-child { border-right: 0; }
.archive-filter button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.collection-tabs { display: flex; gap: 24px; overflow-x: auto; padding: 18px max(22px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); background: var(--white); white-space: nowrap; }
.collection-tabs a { padding-bottom: 5px; color: var(--muted); font-size: .76rem; }
.collection-tabs a[aria-current="page"] { border-bottom: 1px solid var(--ink); color: var(--ink); font-weight: 700; }
.service-index { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.service-index article { min-height: 300px; padding: 24px 24px 28px 0; border-right: 1px solid var(--line); }
.service-index article:not(:first-child) { padding-left: 24px; }
.service-index article:last-child { border-right: 0; }
.service-index strong { display: block; margin-bottom: 80px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.service-index p { color: var(--muted); font-size: .84rem; }
.workflow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; border-top: 1px solid var(--ink); }
.workflow-grid article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.workflow-grid article > span { color: var(--accent); font-family: Georgia, "Times New Roman", serif; }
.workflow-grid p { margin: 8px 0 0; color: var(--muted); font-size: .85rem; }
.factory-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 18px; }
.factory-item { margin: 0; }
.factory-item img { width: 100%; height: auto; object-fit: cover; }
.factory-item.landscape img { aspect-ratio: 4 / 3; }
.factory-item.portrait img { aspect-ratio: 3 / 4; }
.factory-item figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0 15px; border-bottom: 1px solid var(--line); font-size: .82rem; font-weight: 700; }
.factory-item small { color: var(--muted); font-size: .7rem; font-weight: 400; }
.poster-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.poster-item { margin: 0; min-width: 0; }
.poster-item img { display: block; width: 100%; height: auto; }
.poster-item figcaption { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.about-story { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; }
.about-story h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.about-story p { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.about-facts div { min-height: 180px; padding: 24px; border-right: 1px solid var(--line); }
.about-facts div:first-child { padding-left: 0; }
.about-facts div:last-child { border-right: 0; }
.about-facts strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 2.7rem; font-weight: 400; }
.about-facts span { color: var(--muted); font-size: .78rem; }
.inner-cta { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: end; background: var(--ink); color: var(--white); }
.inner-cta h2 { max-width: 860px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.inner-cta p { color: rgba(255,255,255,.65); }
.inner-footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.inline-links { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.linked-service-index article { display: flex; flex-direction: column; }
.linked-service-index article .text-link { width: max-content; margin-top: auto; }
.breadcrumb-bar { display: flex; gap: 8px; align-items: center; overflow-x: auto; padding: 12px max(22px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .72rem; white-space: nowrap; }
.breadcrumb-bar a { color: var(--muted); }
.breadcrumb-bar a:hover { color: var(--ink); }
.evidence-split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 70px; align-items: center; }
.evidence-split.is-reversed { grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr); }
.evidence-split.is-reversed .evidence-media { order: 2; }
.evidence-media { margin: 0; min-width: 0; }
.evidence-media img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.evidence-media.portrait img { aspect-ratio: 3 / 4; object-position: center top; }
.evidence-media figcaption { padding-top: 10px; color: var(--muted); font-size: .7rem; }
.evidence-copy h2 { margin: 8px 0 24px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.evidence-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.evidence-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.evidence-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
.evidence-list strong { display: block; margin-bottom: 4px; color: var(--ink); }
.page-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.page-facts div { min-height: 150px; padding: 24px; border-right: 1px solid var(--line); }
.page-facts div:first-child { padding-left: 0; }
.page-facts div:last-child { border-right: 0; }
.page-facts strong { display: block; margin-bottom: 34px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 400; }
.page-facts span { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.related-pages { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.related-pages a { min-height: 190px; padding: 24px 28px 26px 0; border-right: 1px solid var(--line); }
.related-pages a:not(:first-child) { padding-left: 28px; }
.related-pages a:last-child { border-right: 0; }
.related-pages small { display: block; margin-bottom: 52px; color: var(--accent); font-size: .68rem; text-transform: uppercase; }
.related-pages strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; }
.landing-hero { min-height: 520px; }
.landing-hero::before { background: linear-gradient(90deg, rgba(10,10,10,.78), rgba(10,10,10,.28)); }
.landing-hero .page-hero-content { width: min(760px, 72vw); }
.landing-hero h1 { max-width: 760px; font-size: 4.45rem; line-height: 1.02; }
.landing-hero p:last-child { max-width: 620px; line-height: 1.65; }
.image-strip-hero { background: #24211f; }
.page-hero-image-strip { position: absolute; z-index: 0; inset: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-hero-image-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.blog-masthead {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: end;
  min-height: 360px;
  padding: 86px max(22px, calc((100vw - var(--max)) / 2)) 72px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
.blog-masthead h1 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  font-weight: 400;
  line-height: .95;
}
.blog-masthead-copy { max-width: 620px; }
.blog-masthead-copy > p:first-child { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; line-height: 1.25; }
.blog-cadence { margin: 24px 0 0; color: var(--accent); font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.blog-latest { padding-top: 76px; }
.blog-section-label { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.blog-section-label p { margin: 0; }
.blog-section-label time { color: var(--muted); font-size: .74rem; }
.blog-feature { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 54px; align-items: center; }
.blog-feature-media { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--paper); }
.blog-feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-feature-media:hover img { transform: scale(1.015); }
.blog-category { margin: 0 0 18px; color: var(--accent); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.blog-feature-copy h2 { margin: 0 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: 3rem; font-weight: 400; line-height: 1.08; }
.blog-feature-copy > p:not(.blog-category) { margin: 0 0 28px; color: var(--muted); line-height: 1.75; }
.blog-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.blog-topic-grid article { min-height: 260px; padding: 22px 22px 28px; border-right: 1px solid var(--line); }
.blog-topic-grid article:first-child { padding-left: 0; }
.blog-topic-grid article:last-child { border-right: 0; }
.blog-topic-grid span { display: block; margin-bottom: 74px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; }
.blog-topic-grid h3 { margin-bottom: 12px; }
.blog-topic-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.blog-directory-filters { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 34px; border-bottom: 1px solid var(--ink); }
.blog-directory-filters button { min-height: 46px; border: 0; border-bottom: 2px solid transparent; padding: 0 20px; background: transparent; color: var(--muted); font: inherit; font-size: .76rem; cursor: pointer; }
.blog-directory-filters button:first-child { padding-left: 0; }
.blog-directory-filters button:hover, .blog-directory-filters button:focus-visible, .blog-directory-filters button.is-active { border-bottom-color: var(--ink); color: var(--ink); }
.blog-directory-list { border-top: 1px solid var(--line); }
.blog-directory-entry { display: grid; grid-template-columns: minmax(180px, .65fr) minmax(0, 1.85fr) auto; gap: 34px; align-items: start; padding: 28px 0 30px; border-bottom: 1px solid var(--line); }
.blog-directory-entry[hidden] { display: none; }
.blog-directory-meta { display: grid; gap: 8px; color: var(--muted); font-size: .72rem; }
.blog-directory-meta span { color: var(--accent); font-weight: 700; text-transform: uppercase; }
.blog-directory-entry h3 { margin: 0 0 9px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; line-height: 1.25; }
.blog-directory-entry h3 a:hover { color: var(--accent); }
.blog-directory-entry p { max-width: 720px; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.65; }
.blog-directory-open { align-self: center; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: .75rem; white-space: nowrap; }
.blog-article { padding-bottom: 110px; }
.article-header { width: min(930px, calc(100% - 44px)); margin: 0 auto; padding: 88px 0 58px; }
.article-back { display: inline-block; margin-bottom: 72px; border-bottom: 1px solid var(--ink); padding-bottom: 4px; color: var(--muted); font-size: .75rem; }
.article-header h1 { max-width: 900px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 4.7rem; font-weight: 400; line-height: 1.02; }
.article-deck { max-width: 760px; margin: 30px 0 28px; color: var(--muted); font-size: 1.15rem; line-height: 1.7; }
.article-meta { display: flex; gap: 24px; color: var(--muted); font-size: .73rem; }
.article-cover { width: min(1180px, calc(100% - 44px)); margin: 0 auto 80px; }
.article-cover img { display: block; width: 100%; height: auto; }
.article-cover figcaption { padding-top: 10px; color: var(--muted); font-size: .72rem; }
.article-layout { display: grid; grid-template-columns: 180px minmax(0, 720px); gap: 80px; justify-content: center; width: min(1080px, calc(100% - 44px)); margin: 0 auto; }
.article-index { position: sticky; top: 112px; align-self: start; display: grid; gap: 10px; border-top: 1px solid var(--ink); padding-top: 14px; }
.article-index p { margin: 0 0 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.article-index a { color: var(--muted); font-size: .72rem; line-height: 1.35; }
.article-index a:hover { color: var(--ink); }
.article-body { min-width: 0; }
.article-body > p, .article-body section > p { font-size: 1rem; line-height: 1.85; }
.article-lead { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem !important; line-height: 1.55 !important; }
.article-body section { scroll-margin-top: 120px; margin-top: 58px; }
.article-body h2 { margin: 0 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: 2.15rem; font-weight: 400; line-height: 1.2; }
.article-note { margin: 54px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 25px 0; }
.article-note strong { color: var(--accent); font-size: .75rem; text-transform: uppercase; }
.article-note p { margin: 13px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; line-height: 1.5; }
.article-checklist { border-top: 1px solid var(--ink); padding-top: 30px; }
.article-checklist ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin: 30px 0 0; padding: 0; list-style: none; }
.article-checklist li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.article-checklist li::before { content: "✓"; margin-right: 10px; color: var(--accent); }
.article-closing { margin-top: 58px; border-left: 2px solid var(--accent); padding-left: 24px; font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem !important; }
.article-figure { margin: 58px 0; }
.article-figure img { display: block; width: 100%; height: auto; }
.article-figure figcaption { padding-top: 10px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.article-sources { border-top: 1px solid var(--ink); padding-top: 30px; }
.article-sources h2 { font-size: 1.75rem; }
.article-sources > p:not(.eyebrow) { color: var(--muted); font-size: .84rem; }
.article-sources a { display: block; margin-top: 12px; border-bottom: 1px solid var(--line); padding-bottom: 10px; font-size: .78rem; line-height: 1.5; }
.article-related { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 56px; border-top: 1px solid var(--line); padding-top: 20px; }
.article-related p { flex-basis: 100%; margin: 0; color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.article-related a { border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: .78rem; }

@media (max-width: 1050px) {
  .design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-grid { columns: 3; }
  .page-hero h1 { font-size: 4rem; }
  .design-archive-hero .page-hero-content { width: min(560px, 62vw); }
  .service-index { grid-template-columns: 1fr 1fr; }
  .service-index article:nth-child(2) { border-right: 0; }
  .service-index article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .service-index article:nth-child(3) { padding-left: 0; }
  .blog-feature-copy h2 { font-size: 2.55rem; }
  .blog-topic-grid { grid-template-columns: 1fr 1fr; }
  .blog-topic-grid article:nth-child(2) { border-right: 0; }
  .blog-topic-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .blog-topic-grid article:nth-child(3) { padding-left: 0; }
  .evidence-split, .evidence-split.is-reversed { gap: 42px; }
  .landing-hero h1 { font-size: 3.8rem; }
}

@media (max-width: 760px) {
  .page-hero { min-height: 470px; padding: 64px 16px; }
  .page-hero h1 { font-size: 3rem; }
  .design-archive-hero {
    min-height: 450px;
    padding-top: 56px;
    padding-bottom: 48px;
    background-position: 66% 18%;
  }
  .design-archive-hero::before {
    background: linear-gradient(180deg, rgba(10,10,10,.34) 0%, rgba(10,10,10,.7) 48%, rgba(10,10,10,.92) 100%);
  }
  .design-archive-hero .page-hero-content { width: 100%; }
  .design-archive-hero h1 { margin-top: 8px; margin-bottom: 14px; font-size: 3rem; }
  .design-archive-hero .page-hero-content > p:not(.eyebrow) { max-width: 520px; font-size: .92rem; }
  .design-archive-hero .archive-facts { margin-top: 22px; padding-top: 14px; }
  .design-archive-hero .archive-facts > div { min-width: 125px; }
  .design-archive-hero .archive-facts > div + div { margin-left: 22px; padding-left: 22px; }
  .page-hero-controls { right: 16px; bottom: 18px; }
  .page-hero-arrow { width: 38px; height: 38px; }
  .collection-hero { min-height: 400px; }
  .inner-section { padding: 76px 16px; }
  .inner-section-heading, .about-story, .inner-cta { grid-template-columns: 1fr; gap: 28px; }
  .inner-section-heading { margin-bottom: 44px; }
  .directory-grid, .factory-page-grid, .poster-grid { grid-template-columns: 1fr; }
  .design-toolbar { align-items: stretch; flex-direction: column; gap: 0; }
  .design-filter-list { width: 100%; }
  .design-filter-list { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .design-filter-list::-webkit-scrollbar { display: none; }
  .design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .design-card figcaption { display: block; }
  .design-card figcaption small { display: block; margin-top: 4px; text-align: left; }
  .catalog-grid { columns: 2; column-gap: 12px; }
  .catalog-item { margin-bottom: 24px; }
  .catalog-item figcaption { display: block; }
  .catalog-item figcaption span { max-width: none; }
  .catalog-item figcaption small { display: block; margin-top: 4px; text-align: left; }
  .collection-toolbar { align-items: flex-start; flex-direction: column; }
  .archive-filter { width: 100%; }
  .archive-filter button { flex: 1; padding: 0 8px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div, .about-facts div:first-child { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-facts div:last-child { border-bottom: 0; }
  .evidence-split, .evidence-split.is-reversed { grid-template-columns: 1fr; gap: 34px; }
  .evidence-split.is-reversed .evidence-media { order: 0; }
  .page-facts, .related-pages { grid-template-columns: 1fr; }
  .page-facts div, .page-facts div:first-child { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .page-facts div:last-child { border-bottom: 0; }
  .page-facts strong { margin-bottom: 12px; }
  .related-pages a, .related-pages a:not(:first-child) { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .related-pages a:last-child { border-bottom: 0; }
  .related-pages small { margin-bottom: 18px; }
  .landing-hero { min-height: 480px; }
  .landing-hero .page-hero-content { width: 100%; }
  .landing-hero h1 { font-size: 2.75rem; }
  .page-hero-image-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-image-strip img:nth-child(n+3) { display: none; }
  .breadcrumb-bar { padding-right: 16px; padding-left: 16px; }
  .archive-facts { gap: 24px; }
  .blog-masthead { grid-template-columns: 1fr; gap: 34px; min-height: 340px; padding: 66px 16px 54px; }
  .blog-masthead h1 { font-size: 4rem; }
  .blog-masthead-copy > p:first-child { font-size: 1.35rem; }
  .blog-latest { padding-top: 54px; }
  .blog-feature { grid-template-columns: 1fr; gap: 30px; }
  .blog-feature-copy h2 { font-size: 2.25rem; }
  .blog-directory-filters { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: thin; }
  .blog-directory-filters button { flex: 0 0 auto; }
  .blog-directory-entry { grid-template-columns: 1fr; gap: 14px; padding: 24px 0 26px; }
  .blog-directory-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; }
  .blog-directory-entry h3 { font-size: 1.3rem; }
  .blog-directory-open { justify-self: start; margin-top: 4px; }
  .blog-topic-grid { grid-template-columns: 1fr; }
  .blog-topic-grid article,
  .blog-topic-grid article:first-child,
  .blog-topic-grid article:nth-child(3) { min-height: 0; padding: 24px 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .blog-topic-grid article:last-child { border-bottom: 0; }
  .blog-topic-grid span { margin-bottom: 24px; }
  .article-header { width: calc(100% - 32px); padding: 60px 0 42px; }
  .article-back { margin-bottom: 50px; }
  .article-header h1 { font-size: 3rem; }
  .article-deck { font-size: 1rem; }
  .article-cover { width: 100%; margin-bottom: 54px; }
  .article-cover figcaption { padding-right: 16px; padding-left: 16px; }
  .article-layout { display: block; width: calc(100% - 32px); }
  .article-index { position: static; grid-template-columns: 1fr 1fr; margin-bottom: 54px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .article-index p { grid-column: 1 / -1; }
  .article-body h2 { font-size: 1.85rem; }
  .article-lead { font-size: 1.25rem !important; }
  .article-checklist ul { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .page-hero h1 { font-size: 2.55rem; }
  .design-archive-hero h1 { font-size: 2.55rem; }
  .directory-card h2 { font-size: 1.7rem; }
  .catalog-grid { columns: 2; }
  .catalog-item figcaption { font-size: .7rem; }
  .blog-masthead h1 { font-size: 3.4rem; }
  .article-header h1 { font-size: 2.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* Analytics consent */
.analytics-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  width: min(560px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid #1b1b1b;
  border-radius: 4px;
  background: #fff;
  color: #151515;
  box-shadow: 0 10px 32px rgb(0 0 0 / 16%);
}

.analytics-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.analytics-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.analytics-consent button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #151515;
  border-radius: 0;
  background: #fff;
  color: #151515;
  font: inherit;
  cursor: pointer;
}

.analytics-consent button[data-consent="granted"] {
  background: #151515;
  color: #fff;
}

.analytics-consent button:focus-visible {
  outline: 2px solid #9a6410;
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .analytics-consent-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .analytics-consent button {
    width: 100%;
  }
}

/* Buyer report landing page */
.report-hero::before { background: linear-gradient(90deg, rgba(10,10,10,.84), rgba(10,10,10,.3)); }
.report-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 28px; margin-top: 32px; }
.report-actions .button { min-height: 48px; background: var(--white); color: var(--ink); }
.report-inline-link { border-bottom: 1px solid rgba(255,255,255,.72); padding-bottom: 4px; font-size: .82rem; font-weight: 700; }
.report-key-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.report-key-points article { min-height: 250px; padding: 28px 36px 34px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.report-key-points article:nth-child(2n) { padding-left: 36px; border-right: 0; }
.report-key-points span, .report-toc span { display: block; margin-bottom: 42px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.report-key-points p, .report-toc small, .report-table-note, .report-decision-grid p { color: var(--muted); font-size: .84rem; }
.report-toc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.report-toc a { min-height: 210px; padding: 28px 36px 30px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.report-toc a:nth-child(2n) { padding-left: 36px; border-right: 0; }
.report-toc strong { display: block; margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 400; }
.report-toc span { margin-bottom: 34px; }
.report-toc small { display: block; }
.report-table-wrap { overflow-x: auto; }
.report-table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: fixed; }
.report-table th { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 18px 16px; text-align: left; font-size: .72rem; text-transform: uppercase; }
.report-table th:first-child { width: 20%; }
.report-table th:nth-child(2) { width: 31%; }
.report-table td { border-bottom: 1px solid var(--line); padding: 22px 16px; vertical-align: top; font-size: .83rem; }
.report-table tr:last-child td { border-bottom-color: var(--ink); }
.report-table-note { margin: 18px 0 0; }
.report-decision-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.report-decision-grid article { min-height: 230px; padding: 28px 30px 30px 0; border-right: 1px solid var(--line); }
.report-decision-grid article:not(:first-child) { padding-left: 30px; }
.report-decision-grid article:last-child { border-right: 0; }
.report-download { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; background: var(--ink); color: var(--white); }
.report-download p { color: rgba(255,255,255,.7); }
.report-download .button { margin-top: 20px; }

@media (max-width: 1050px) {
  .report-download { gap: 44px; }
}

@media (max-width: 760px) {
  .report-key-points, .report-toc, .report-decision-grid, .report-download { grid-template-columns: 1fr; }
  .report-key-points article, .report-key-points article:nth-child(2n), .report-toc a, .report-toc a:nth-child(2n), .report-decision-grid article, .report-decision-grid article:not(:first-child) { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .report-key-points span, .report-toc span { margin-bottom: 18px; }
  .report-download { gap: 28px; }
}
