:root {
  --ivory: #f5f0e7;
  --paper: #fffaf2;
  --plum: #4b173f;
  --plum-2: #6d315c;
  --lilac: #c8b3cc;
  --lilac-soft: #e6dce7;
  --rust: #c75a32;
  --rust-dark: #9e3e21;
  --charcoal: #252329;
  --muted: #6c666d;
  --line: rgba(55, 38, 51, .18);
  --radius: 24px;
  --shadow: 0 22px 55px rgba(50, 26, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--charcoal);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 231, .92);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1440px, calc(100% - 48px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  letter-spacing: .08em;
}
.brand span:last-child { display: grid; }
.brand b { font-size: 14px; }
.brand small { color: var(--muted); font-size: 9px; letter-spacing: .05em; }
.brand-mark {
  display: flex;
  align-items: end;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 50%;
  background: var(--plum);
}
.brand-mark i { width: 7px; border-radius: 5px 5px 1px 1px; }
.brand-mark i:nth-child(1) { height: 12px; background: var(--lilac); }
.brand-mark i:nth-child(2) { height: 22px; background: var(--paper); }
.brand-mark i:nth-child(3) { height: 16px; background: var(--rust); }
.desktop-nav { display: flex; gap: clamp(18px, 3vw, 42px); }
.desktop-nav a, .mobile-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rust);
  transform: scaleX(0);
  transition: transform .2s;
}
.desktop-nav a.active::after, .desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions, .language-switch { display: flex; align-items: center; }
.language-switch {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.lang-btn {
  width: 36px;
  height: 30px;
  border: 0;
  border-radius: 100px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.lang-btn.active { color: white; background: var(--plum); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--plum);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: .2s;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
  scroll-margin-top: 76px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--rust-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .99;
}
h1 { max-width: 890px; font-size: clamp(52px, 7.4vw, 112px); }
h2 { font-size: clamp(40px, 5vw, 72px); }
h3 { line-height: 1.25; }
.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--plum);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--plum); }
.button-primary:hover { background: var(--plum-2); }
.button-quiet { background: transparent; }
.button-quiet:hover { color: white; background: var(--plum); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-lead {
  max-width: 780px;
  margin: 28px 0;
  color: #504b51;
  font-size: clamp(16px, 1.3vw, 20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-facts {
  max-width: 760px;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-facts li { padding: 17px 12px 0 0; display: grid; gap: 3px; }
.hero-facts span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.hero-facts b { font-size: 14px; }
.material-stage {
  position: relative;
  min-height: 620px;
}
.stage-card {
  position: absolute;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stage-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: .4;
  background-image: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.18) 4px 5px), repeating-linear-gradient(90deg, transparent 0 5px, rgba(0,0,0,.1) 5px 6px);
}
.stage-card span { position: relative; z-index: 1; }
.stage-card.plum { inset: 3% 7% 41% 8%; color: white; background: var(--plum); transform: rotate(4deg); }
.stage-card.lilac { inset: 31% 29% 15% 0; background: var(--lilac); transform: rotate(-6deg); }
.stage-card.rust { inset: 50% 0 2% 44%; color: white; background: var(--rust); transform: rotate(7deg); }
.thread-card {
  position: absolute;
  z-index: 3;
  top: 40%;
  left: 37%;
  width: 150px;
  height: 210px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 75px 75px 14px 14px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.thread-card i {
  width: 42px;
  height: 42px;
  align-self: center;
  border: 9px solid var(--plum);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--lilac);
}
.thread-card strong { font-family: "Newsreader", serif; font-size: 42px; text-align: center; }
.thread-card small { font-size: 8px; text-align: center; text-transform: uppercase; }

.signal-strip {
  padding: 17px 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: white;
  background: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.signal-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--rust); }
.intro-note {
  display: grid;
  grid-template-columns: 80px 1.1fr .9fr;
  gap: 42px;
  align-items: start;
}
.section-index { color: var(--rust); font-family: "Newsreader", serif; font-size: 42px; }
.note-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.note-panel p { margin: 0; }

.section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
}
.section-heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.direction-card {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.direction-card > span { color: var(--rust); font-size: 11px; font-weight: 700; }
.direction-card h3 { margin: auto 0 14px; font-family: "Newsreader", serif; font-size: 30px; font-weight: 600; }
.direction-card p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.direction-card a { font-size: 12px; font-weight: 700; text-decoration: none; }
.direction-card.featured { background: var(--lilac-soft); }
.direction-card.dark { color: white; background: var(--charcoal); }
.direction-card.dark p { color: #cac5cb; }
.direction-card.rust-card { color: white; background: var(--rust); }
.direction-card.rust-card > span, .direction-card.rust-card p { color: white; }

.split-section, .file-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.material-visual {
  min-height: 650px;
  padding: 30px;
  display: flex;
  align-items: end;
  color: white;
  border-radius: 220px 220px 28px 28px;
  background-color: var(--plum);
  background-image: repeating-linear-gradient(0deg, transparent 0 7px, rgba(255,255,255,.09) 7px 8px), repeating-linear-gradient(90deg, transparent 0 6px, rgba(255,255,255,.08) 6px 7px);
  box-shadow: var(--shadow);
}
.material-visual span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 100px; font-size: 10px; text-transform: uppercase; }
.section-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); }
.swatch-list { display: grid; gap: 5px; }
.swatch-list > div {
  padding: 14px 0;
  display: flex;
  gap: 15px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.swatch { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--line); }
.swatch.natural { background: #d6c3a7; }
.swatch.synthetic { background: var(--lilac); }
.swatch.paper { background: white; }
.swatch.other { background: var(--rust); }
.swatch-list span { display: grid; }
.swatch-list b { font-size: 13px; }
.swatch-list small { color: var(--muted); }

.options-section { border-top: 1px solid var(--line); }
.tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.tabs button {
  padding: 18px;
  border: 0;
  border-top: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.tabs button[aria-selected="true"] { border-color: var(--rust); color: var(--plum); background: var(--lilac-soft); }
.tab-panels article {
  min-height: 280px;
  padding: 50px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--paper);
}
.tab-panels article > b { color: var(--lilac); font-family: "Newsreader", serif; font-size: 70px; }
.tab-panels h3 { margin: 0 0 15px; font-family: "Newsreader", serif; font-size: 34px; }
.tab-panels p { max-width: 760px; margin: 0; color: var(--muted); }

.process-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1440px) / 2));
  padding-left: max(24px, calc((100% - 1440px) / 2));
  color: white;
  background: var(--plum);
}
.section-heading.light p { color: #cdbdca; }
.section-heading.light .eyebrow { color: #ee8c67; }
.process-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.process-list li { min-height: 260px; padding: 26px; border-top: 1px solid rgba(255,255,255,.24); border-left: 1px solid rgba(255,255,255,.24); }
.process-list li:last-child { border-right: 1px solid rgba(255,255,255,.24); }
.process-list span { color: #ef9b7b; font-size: 11px; }
.process-list div { margin-top: 80px; }
.process-list h3 { margin: 0 0 10px; font-family: "Newsreader", serif; font-size: 27px; }
.process-list p { margin: 0; color: #d8ced6; font-size: 13px; }

.file-card {
  position: relative;
  min-height: 510px;
  padding: 25px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--lilac);
  box-shadow: var(--shadow);
}
.file-tag { position: relative; z-index: 2; padding: 9px 13px; border-radius: 100px; background: var(--paper); font-size: 10px; }
.file-grid {
  position: absolute;
  inset: 80px 25px 25px;
  border-radius: 20px;
  background-color: var(--paper);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
}
.file-grid::after {
  position: absolute;
  inset: 14% 17%;
  border: 24px solid var(--plum);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 18px var(--rust), inset 0 0 0 42px var(--paper);
}
.file-corner { position: absolute; z-index: 2; right: 42px; bottom: 35px; color: var(--plum); font-family: "Newsreader", serif; font-size: 54px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { padding: 12px 0 12px 28px; border-top: 1px solid var(--line); position: relative; }
.check-list li::before { position: absolute; left: 0; content: "↳"; color: var(--rust); }

.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.case-grid article { min-height: 290px; padding: 25px; display: flex; flex-direction: column; border-radius: var(--radius); background: var(--lilac-soft); }
.case-grid article:nth-child(2) { background: #ddd1bf; }
.case-grid article:nth-child(3) { color: white; background: var(--rust); }
.case-grid article:nth-child(4) { color: white; background: var(--charcoal); }
.case-grid span { font-size: 11px; }
.case-grid h3 { margin: auto 0 15px; font-family: "Newsreader", serif; font-size: 26px; }
.case-grid p { margin: 0; font-size: 13px; opacity: .8; }

.trade-section { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; border-top: 1px solid var(--line); }
.trade-content > p { margin: 0 0 40px; color: var(--muted); }
.code-row { display: flex; gap: 10px; }
.code-row span { width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--plum); font-weight: 700; background: var(--paper); }

.property-section { display: grid; grid-template-columns: 1fr .8fr; padding: 0; overflow: hidden; border-radius: 28px; color: white; background: var(--charcoal); }
.property-panel { padding: clamp(45px, 7vw, 100px); }
.property-panel .eyebrow { color: #ed8e6b; }
.property-panel h2 { font-size: clamp(40px, 4.4vw, 68px); }
.property-panel > p:not(.eyebrow) { max-width: 680px; margin: 28px 0; color: #c9c4ca; }
.text-link { font-weight: 700; text-decoration: none; }
.property-grid {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--lilac);
}
.property-grid i { border: 1px solid rgba(75,23,63,.16); }
.property-grid span { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; color: var(--plum); font-family: "Newsreader", serif; font-size: 180px; }

.brief-builder { border-top: 1px solid var(--line); }
.brief-builder fieldset { margin: 0; padding: 28px 0; display: grid; grid-template-columns: .55fr 1.45fr; border: 0; border-bottom: 1px solid var(--line); }
.brief-builder legend { display: contents; }
.brief-builder legend span { color: var(--rust); margin-right: 20px; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice {
  position: relative;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.choice input { position: absolute; opacity: 0; }
.choice:has(input:checked) { border-color: var(--plum); color: white; background: var(--plum); }
.choice:focus-within { outline: 3px solid rgba(199, 90, 50, .35); outline-offset: 2px; }
.brief-output { margin-top: 34px; padding: 28px; display: flex; justify-content: space-between; gap: 30px; align-items: center; border-radius: var(--radius); background: var(--lilac-soft); }
.brief-output > div:first-child { max-width: 760px; }
.brief-output span { color: var(--rust-dark); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.brief-output p { margin: 8px 0 0; }
.brief-actions { flex: 0 0 auto; display: flex; gap: 8px; }

.company-section { display: grid; grid-template-columns: .25fr 1fr; column-gap: 60px; background: var(--paper); }
.registry-label { padding-top: 10px; display: grid; align-content: start; gap: 20px; }
.registry-label span { font-size: 10px; font-weight: 700; text-transform: uppercase; }
.registry-label b { color: var(--lilac); font-family: "Newsreader", serif; font-size: 72px; }
.company-main h2 { max-width: 1000px; font-size: clamp(37px, 5vw, 70px); }
.company-main > p:last-child { color: var(--muted); }
.registry-grid { grid-column: 2; margin: 55px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.registry-grid div { padding: 20px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.registry-grid .wide { grid-column: span 2; }
.registry-grid dt { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.registry-grid dd { margin: 8px 0 0; font-size: 13px; font-weight: 600; }

.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.people-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.people-grid article > span { color: var(--rust-dark); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.people-grid h3 { margin: 50px 0 8px; font-family: "Newsreader", serif; font-size: 29px; }
.people-grid article > p { margin: 0; color: var(--muted); }
.people-grid .ownership { grid-column: 1 / -1; }
.ownership > div { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ownership p { margin: 0; padding: 16px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); }
.ownership strong { color: var(--rust); font-size: 22px; }

.activity-section { border-top: 1px solid var(--line); }
.activity-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 50px; }
.activity-list p { margin: 0; padding: 16px 0; display: grid; grid-template-columns: 70px 1fr; border-bottom: 1px solid var(--line); font-size: 13px; }
.activity-list b { color: var(--rust-dark); }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 22px 42px 22px 0; position: relative; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::after { position: absolute; right: 8px; content: "+"; color: var(--rust); font-size: 24px; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: 0; padding: 0 50px 22px 0; color: var(--muted); }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; color: white; background: var(--plum); }
.contact-copy .eyebrow { color: #ee9878; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; color: #d5c8d2; }
.contact-email { margin: 45px 0 18px; display: block; font-family: "Newsreader", serif; font-size: clamp(32px, 4vw, 58px); text-decoration-thickness: 2px; text-underline-offset: 8px; }
address { color: #d5c8d2; font-size: 13px; font-style: normal; }
.contact-form { padding: 34px; border-radius: var(--radius); color: var(--charcoal); background: var(--paper); }
.contact-form label { margin-bottom: 20px; display: grid; gap: 8px; }
.contact-form label span { font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--rust); }
.contact-form .button { width: 100%; }
.form-note { color: var(--muted); font-size: 10px; }
.form-status { min-height: 24px; margin: 8px 0 0; color: var(--plum); font-size: 12px; font-weight: 700; }

footer {
  padding: 38px max(24px, calc((100% - 1440px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: #d0cbd0;
  background: var(--charcoal);
  font-size: 11px;
}
footer > div { display: flex; flex-direction: column; gap: 6px; }
footer > div:nth-child(2) { text-align: center; }
footer > div:last-child { text-align: right; }
.footer-brand b { color: white; letter-spacing: .1em; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav {
    position: fixed;
    inset: 76px 0 auto;
    padding: 30px 24px;
    display: grid;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    transform: translateY(-140%);
    transition: transform .25s;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a { padding: 14px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .material-stage { min-height: 500px; }
  .section-heading, .trade-section, .faq-section { grid-template-columns: 1fr; gap: 30px; }
  .direction-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .brief-builder fieldset { grid-template-columns: 1fr; gap: 18px; }
  .contact-section { gap: 45px; }
}

@media (max-width: 760px) {
  .header-inner, .section { width: min(100% - 30px, 1440px); }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .brand small { display: none; }
  .hero { min-height: auto; gap: 20px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  h2 { font-size: clamp(38px, 12vw, 55px); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .material-stage { min-height: 430px; }
  .stage-card.plum { inset: 2% 3% 43% 5%; }
  .stage-card.lilac { inset: 32% 24% 14% 0; }
  .thread-card { left: 32%; transform: scale(.85) rotate(2deg); }
  .signal-strip { padding: 15px; gap: 8px; overflow: hidden; white-space: nowrap; justify-content: flex-start; }
  .signal-strip span { font-size: 9px; }
  .intro-note, .split-section, .file-section, .contact-section { grid-template-columns: 1fr; }
  .section-index { display: none; }
  .direction-grid, .case-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 280px; }
  .material-visual { min-height: 450px; }
  .tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(130px, 1fr)); }
  .tab-panels article { padding: 30px 24px; grid-template-columns: 1fr; }
  .tab-panels article > b { font-size: 48px; }
  .process-section { width: 100%; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 200px; border-right: 1px solid rgba(255,255,255,.24); }
  .process-list div { margin-top: 45px; }
  .file-section { gap: 50px; }
  .file-card { min-height: 400px; }
  .trade-section { display: grid; }
  .property-section { width: calc(100% - 30px); grid-template-columns: 1fr; }
  .property-panel { padding: 45px 24px; }
  .property-grid { min-height: 300px; }
  .property-grid span { font-size: 120px; }
  .brief-output { align-items: stretch; flex-direction: column; }
  .brief-actions { flex-direction: column; }
  .company-section { width: 100%; padding-right: 15px; padding-left: 15px; grid-template-columns: 1fr; }
  .registry-label { grid-template-columns: 1fr auto; }
  .registry-label b { font-size: 50px; }
  .registry-grid { grid-column: 1; grid-template-columns: 1fr 1fr; }
  .registry-grid .wide { grid-column: 1 / -1; }
  .people-grid, .ownership > div, .activity-list { grid-template-columns: 1fr; }
  .contact-section { width: 100%; padding-right: 15px; padding-left: 15px; }
  .contact-form { padding: 24px; }
  .contact-email { font-size: 33px; }
  footer { grid-template-columns: 1fr; gap: 24px; }
  footer > div:nth-child(2), footer > div:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
