/* Modern editorial refinement for an institutional product audience. */
:root {
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --surface: rgba(255, 253, 250, .78);
  --surface-strong: #fffdfa;
}

.site-header {
  border-bottom-color: rgba(93, 71, 56, .12);
  background: rgba(250, 248, 245, .84);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

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

.hero {
  padding: 142px 0 96px;
  background:
    linear-gradient(rgba(95, 71, 56, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 71, 56, .024) 1px, transparent 1px),
    radial-gradient(circle at 76% 34%, rgba(235, 169, 65, .14), transparent 28%),
    linear-gradient(180deg, #faf8f5 0%, #f7f2ec 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.orbit-two {
  display: none;
}

.orbit-one {
  width: 560px;
  height: 560px;
  right: -340px;
  top: 70px;
}

.hero-grid {
  grid-template-columns: minmax(340px, .86fr) minmax(560px, 1.34fr);
  gap: clamp(48px, 6vw, 82px);
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 550;
  line-height: .99;
  letter-spacing: -.052em;
}

.hero-lede {
  max-width: 585px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.66;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -3% -5% 11%;
  z-index: -1;
  border-radius: 22px;
  background: rgba(235, 169, 65, .09);
  transform: rotate(1.4deg);
}

.product-window {
  border-color: rgba(80, 59, 47, .20);
  border-radius: 18px;
  box-shadow: 0 36px 100px rgba(55, 37, 26, .14), 0 3px 10px rgba(55, 37, 26, .05);
  transform: perspective(1600px) rotateY(-.55deg) rotateX(.25deg);
}

.window-body {
  grid-template-columns: 140px 1fr;
  height: 438px;
}

.processing-line span {
  width: 72%;
}

.error-code {
  margin-top: 80px;
}

.window-sidebar {
  padding-inline: 13px;
}

.button {
  border-radius: 10px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

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

.nav-cta {
  border-radius: 9px;
}

.workflow-card {
  border-radius: 20px;
}

.workflow-card {
  min-height: 410px;
  border: 1px solid rgba(98, 75, 60, .14);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .72) inset;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.workflow-cards {
  gap: 14px;
  border: 0;
}

.workflow-card:first-child {
  border-left: 1px solid rgba(98, 75, 60, .14);
}

.workflow-card:hover {
  z-index: 2;
  border-color: rgba(160, 74, 42, .24);
  box-shadow: 0 24px 64px rgba(72, 49, 35, .09);
  transform: translateY(-6px);
}

.card-icon {
  border-radius: 12px;
}

.section {
  padding: clamp(76px, 7vw, 96px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading h2,
.model-copy h2,
.authority-heading h2,
.ai-governance-head h2,
.split-heading h2,
.roadmap-copy h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
}

.micro,
.status-pill,
.asset-main strong,
.asset-main span,
.asset-main small,
.record-fields dd,
.result-grid strong {
  font-size: max(8px, .62vw);
}

.art-one {
  background: #cfbca8;
}

.art-one i {
  inset: 7px 10px 6px;
  width: auto;
  height: auto;
  border: 1px solid #5c4638;
  border-bottom: 0;
  background: transparent;
  clip-path: none;
}

.art-one b {
  left: 23px;
  top: 17px;
  width: 14px;
  height: 24px;
  border: 1px solid #5c4638;
  border-radius: 0;
}

.art-one em {
  left: 6px;
  bottom: 6px;
  width: 48px;
  background: #796052;
}

.contact-inner h2 {
  font-size: clamp(42px, 5vw, 66px);
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product-window {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 112px 0 78px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 63px);
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-visual::before {
    inset: 8% -1% -3% 8%;
  }

  .window-body {
    grid-template-columns: 1fr;
    height: 430px;
  }
}

/* Contact form */

.contact-section {
  padding: 112px 0 118px;
}

.contact-inner {
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(70px, 9vw, 138px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  max-width: 520px;
  font-size: clamp(48px, 5.2vw, 70px);
  letter-spacing: -.05em;
}

.contact-copy > p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: #f1d7cc;
  font-size: 14px;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 25px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  background: rgba(83, 31, 18, .14);
  box-shadow: 0 28px 70px rgba(75, 25, 12, .18);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span:first-child {
  color: #ffece4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form select {
  appearance: auto;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .55);
}

.contact-form .contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
}

.contact-form .contact-consent input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #fff;
}

.contact-form .contact-consent > span {
  color: #f0d6cb;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  gap: 22px;
  align-items: center;
  min-height: 52px;
}

.contact-form .button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.contact-status {
  max-width: 340px;
  margin: 0;
  color: #f8e1d7;
  font-size: 12px;
  line-height: 1.5;
}

.contact-status.is-success {
  color: #fff;
}

.contact-status.is-error {
  color: #ffe0a8;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-copy {
    position: static;
  }

  .contact-copy h2 {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .contact-section {
    padding: 86px 0 92px;
  }

  .contact-inner {
    gap: 38px;
  }

  .contact-copy h2 {
    font-size: 44px;
  }

  .contact-copy > p:last-child {
    margin-top: 23px;
  }

  .contact-form {
    gap: 21px;
    padding: 26px 20px;
    border-radius: 15px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form .button {
    width: 100%;
  }
}

/* Brand narrative: from accumulated images to usable knowledge. */
.hero h1 {
  max-width: 650px;
}

.product-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(235, 169, 65, .08), transparent 24%),
    var(--cream);
}

.knowledge-section {
  background:
    linear-gradient(rgba(95, 71, 56, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 71, 56, .018) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px, 48px 48px, auto;
}

.authority-list span {
  background: rgba(255, 253, 250, .76);
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: 54px 96px;
  align-items: end;
}

.authority-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.authority-body > p {
  max-width: 560px;
  margin: 0;
  color: #72675f;
  font-size: 16px;
  line-height: 1.72;
}

.authority-list {
  margin-bottom: 0;
}

.authority-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.authority-principles article {
  display: grid;
  grid-template-columns: 42px minmax(160px, .55fr) 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.authority-principles article + article {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.authority-principles span {
  color: var(--terra);
  font-size: 10px;
}

.authority-principles h3,
.authority-principles p {
  margin: 0;
}

.authority-principles h3 {
  font-size: 15px;
}

.authority-principles p {
  color: #786d65;
  font-size: 11px;
}

.ai-governance-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(227, 151, 96, .13), transparent 29%),
    #171513;
  color: #fffaf5;
}

.ai-governance-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .62fr);
  gap: 80px;
  align-items: end;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.ai-governance-head h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.ai-governance-head > p {
  max-width: 510px;
  margin: 0 0 7px;
  color: #bcb2ab;
  font-size: 15px;
  line-height: 1.75;
}

.ai-governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-governance-grid article {
  min-height: 270px;
  padding: 34px 34px 38px 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.ai-governance-grid article + article {
  padding-left: 34px;
}

.ai-governance-grid article:last-child {
  border-right: 0;
}

.ai-governance-grid span {
  color: #d98a60;
  font-size: 10px;
}

.ai-governance-grid h3 {
  max-width: 300px;
  margin: 82px 0 15px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.ai-governance-grid p {
  max-width: 340px;
  margin: 0;
  color: #a9a09a;
  font-size: 12px;
  line-height: 1.7;
}

.governance-section {
  background: #f8f5f1;
}

.governance-grid {
  gap: 12px;
  border-top: 0;
}

.governance-item,
.governance-item:first-child,
.governance-item:nth-child(3) {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(98, 75, 60, .13);
  border-radius: 16px;
  background: rgba(255, 253, 250, .8);
  transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.governance-item:hover {
  border-color: rgba(160, 74, 42, .22);
  box-shadow: 0 18px 48px rgba(65, 44, 31, .07);
  transform: translateY(-4px);
}

.governance-item > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(160, 74, 42, .2);
  border-radius: 50%;
}

.governance-item h3 {
  margin-top: 42px;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 236, 216, .13), transparent 28%),
    linear-gradient(135deg, #964226, #ab5231);
}

.deployment-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(235, 169, 65, .12), transparent 24%),
    #eee9e3;
}

.deployment-grid {
  display: block;
}

.deployment-copy {
  display: grid;
  grid-template-columns: .34fr 1.42fr .74fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: 54px;
}

.deployment-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.deployment-copy h2 em {
  color: var(--terra);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
}

.deployment-copy > p:last-child {
  max-width: 360px;
  margin: 12px 0 0;
  color: #70655d;
  font-size: 14px;
}

.deployment-options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.deployment-card {
  position: relative;
  min-height: 300px;
  padding: 34px 42px 38px;
  overflow: hidden;
  border: 1px solid rgba(98, 75, 60, .16);
  border-radius: 20px;
  background: rgba(255, 253, 250, .82);
  box-shadow: 0 18px 60px rgba(70, 48, 34, .07);
}

.deployment-card > span {
  position: absolute;
  top: 34px;
  right: 36px;
  color: #9c8f86;
  font-size: 10px;
}

.deployment-card small {
  color: var(--terra);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.deployment-card h3 {
  max-width: 540px;
  margin: 72px 0 18px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.deployment-card p {
  max-width: 580px;
  margin: 0;
  color: #71665e;
  font-size: 13px;
}

.deployment-card.hosted::before {
  content: "";
  position: absolute;
  inset: auto -80px -150px auto;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(235, 169, 65, .22);
  border-radius: 50%;
  background: transparent;
}

.deployment-card.hosted {
  border-color: #26211e;
  background: #1c1a18;
  color: #fffaf5;
  box-shadow: 0 24px 72px rgba(28, 22, 18, .18);
}

.deployment-card.hosted small {
  color: #e7a55e;
}

.deployment-card.hosted > span {
  color: #8f8580;
}

.deployment-card.hosted p {
  color: #bdb3ad;
}

@media (max-width: 1050px) {
  .authority-layout,
  .ai-governance-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .authority-body > p,
  .ai-governance-head > p {
    max-width: 720px;
  }

  .authority-principles article {
    grid-template-columns: 34px 1fr;
  }

  .authority-principles p {
    grid-column: 2;
  }

  .deployment-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .deployment-copy > p:last-child {
    max-width: 620px;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(250, 248, 245, .94);
  }

  .deployment-options {
    grid-template-columns: 1fr;
  }

  .authority-principles,
  .ai-governance-grid {
    grid-template-columns: 1fr;
  }

  .authority-principles article + article {
    border-left: 0;
    padding-left: 0;
  }

  .ai-governance-head {
    padding-bottom: 42px;
  }

  .ai-governance-head h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .ai-governance-grid article,
  .ai-governance-grid article + article {
    min-height: 0;
    padding: 29px 0 33px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .ai-governance-grid h3 {
    margin-top: 46px;
  }

  .deployment-card {
    min-height: 0;
    padding: 30px 28px 34px;
  }

  .deployment-card h3 {
    margin-top: 58px;
  }
}

/* FAQ and contact */

.faq-section {
  background: #f4f0eb;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 126px;
}

.faq-intro h2,
.faq-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 25px 0 30px;
  color: #70655d;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 44px 25px 0;
  color: #302823;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  position: absolute;
  top: 31px;
  right: 4px;
  width: 18px;
  height: 18px;
}

.faq-item summary > span::before,
.faq-item summary > span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--terra);
  transition: transform .2s ease;
}

.faq-item summary > span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary > span::after {
  transform: rotate(0);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 6px;
}

.faq-item p {
  max-width: 690px;
  margin: -2px 44px 26px 0;
  color: #71665e;
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 100px 0;
  color: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  align-items: end;
}

.contact-inner h2 {
  margin: 0;
  font-weight: 500;
  line-height: 1.01;
}

.contact-action p {
  margin: 0 0 28px;
  color: #f0d3c5;
}

.faq-page {
  background: var(--cream);
}

.faq-page-hero {
  padding: 170px 0 88px;
  border-bottom: 1px solid var(--line);
}

.faq-page-hero .hero-lede {
  max-width: 720px;
}

.faq-page-note {
  max-width: 720px;
  margin: 25px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--amber);
  color: #81766e;
  font-size: 12px;
}

.faq-directory {
  padding: 92px 0 124px;
}

.faq-group {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(55px, 8vw, 130px);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.faq-group:first-child {
  padding-top: 0;
}

.faq-group:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-group-heading span {
  display: block;
  margin-bottom: 18px;
  color: var(--terra);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.faq-group-heading h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.faq-back {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .faq-layout,
  .faq-group {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .faq-item summary {
    padding-block: 22px;
    font-size: 15px;
  }

  .faq-item p {
    margin-right: 10px;
    font-size: 13px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-page-hero {
    padding: 124px 0 70px;
  }

  .faq-directory {
    padding: 70px 0 88px;
  }

  .faq-group {
    padding: 48px 0;
  }
}

@media (max-width: 430px) {
  .contact-inner h2 {
    font-size: 42px;
  }
}

/* FAQ home redesign */

.faq-section {
  padding: 112px 0 120px;
  background:
    radial-gradient(circle at 86% 14%, rgba(235, 169, 65, .11), transparent 25%),
    #f4f0eb;
}

.faq-layout {
  display: block;
}

.faq-intro {
  position: static;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: end;
  margin-bottom: 54px;
}

.faq-intro h2 {
  font-size: clamp(43px, 4.6vw, 62px);
  line-height: 1.02;
}

.faq-intro-copy {
  max-width: 520px;
  padding-bottom: 7px;
}

.faq-intro-copy p {
  margin: 0 0 25px;
  color: #70655d;
  font-size: 15px;
  line-height: 1.75;
}

.faq-home-list {
  overflow: hidden;
  border: 1px solid #d7cec7;
  border-radius: 18px;
  background: rgba(250, 248, 245, .78);
  box-shadow: 0 24px 70px rgba(61, 43, 32, .07);
}

.faq-home-list .faq-item:last-child {
  border-bottom: 0;
}

.faq-home-list .faq-item summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  padding: 22px 30px;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}

.faq-home-list .faq-item summary:hover,
.faq-home-list .faq-item summary:focus-visible,
.faq-home-list .faq-item[open] summary {
  background: #fffdfb;
}

.faq-home-list .faq-number {
  position: static;
  width: auto;
  height: auto;
  color: var(--terra);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.faq-home-list .faq-question-text {
  position: static;
  width: auto;
  height: auto;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.faq-home-list .faq-number::before,
.faq-home-list .faq-number::after,
.faq-home-list .faq-question-text::before,
.faq-home-list .faq-question-text::after {
  content: none;
}

.faq-home-list .faq-icon {
  position: relative;
  top: auto;
  right: auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(160, 74, 42, .32);
  border-radius: 50%;
}

.faq-home-list .faq-icon::before,
.faq-home-list .faq-icon::after {
  top: 10px;
  left: 5px;
  width: 10px;
}

.faq-home-list .faq-item p {
  max-width: 850px;
  margin: -2px 76px 29px 96px;
  color: #665b54;
  font-size: 14px;
  line-height: 1.78;
}

.site-nav a[aria-current="page"] {
  color: var(--terra);
}

.site-nav a[aria-current="page"]::after {
  right: 0;
}

@media (max-width: 900px) {
  .faq-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro-copy {
    max-width: 630px;
  }
}

@media (max-width: 760px) {
  .faq-section {
    padding: 86px 0 92px;
  }

  .faq-intro {
    margin-bottom: 38px;
  }

  .faq-intro h2 {
    font-size: 42px;
  }

  .faq-home-list {
    margin-inline: -2px;
    border-radius: 14px;
  }

  .faq-home-list .faq-item summary {
    grid-template-columns: 32px minmax(0, 1fr) 22px;
    gap: 10px;
    min-height: 72px;
    padding: 18px 17px;
  }

  .faq-home-list .faq-question-text {
    font-size: 18px;
  }

  .faq-home-list .faq-item p {
    margin: -1px 18px 24px 59px;
    font-size: 13px;
  }
}

/* Contact layout final overrides */

.contact-section {
  padding: 112px 0 118px;
}

.contact-inner {
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(70px, 9vw, 138px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .contact-section {
    padding: 86px 0 92px;
  }

  .contact-inner {
    gap: 38px;
  }
}

/* Current Catalogue product capture */

.hero-product-shot {
  margin: 0;
}

.hero-product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(80, 59, 47, .24);
  border-radius: 18px;
  background: #171411;
  box-shadow: 0 38px 90px rgba(65, 46, 34, .18), 0 3px 0 rgba(255, 255, 255, .55) inset;
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.hero-product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .05) inset;
  pointer-events: none;
}

.hero-product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1050px) {
  .hero-product-frame {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero-product-shot {
    margin-inline: -8px;
  }

  .hero-product-frame {
    border-radius: 12px;
  }
}
