:root {
  --ink: #141a1f;
  --ink-2: #1e272e;
  --ink-3: #2c373f;
  --paper: #f6f2eb;
  --paper-2: #eee7dc;
  --white: #ffffff;
  --muted: #5f6569;
  --line: #d8d0c4;
  --gold: #b68a4b;
  --gold-dark: #855f2e;
  --gold-soft: #dfc79e;
  --success: #2f6b4c;
  --error: #9c342d;
  --shadow: 0 18px 55px rgba(20, 26, 31, 0.12);
  --shadow-soft: 0 8px 24px rgba(20, 26, 31, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1220px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.06;
  text-wrap: balance;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  letter-spacing: -0.045em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.015em;
}
p {
  margin: 0 0 1rem;
}
.lede {
  max-width: 66ch;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  color: #373e43;
}
.small {
  font-size: 0.9rem;
  color: var(--muted);
}
.gold {
  color: var(--gold-dark);
}
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}
.section-tight {
  padding: clamp(42px, 6vw, 72px) 0;
}
.section-dark {
  color: #f8f5ef;
  background: var(--ink);
}
.section-dark .eyebrow {
  color: var(--gold-soft);
}
.section-paper-2 {
  background: var(--paper-2);
}
.section-white {
  background: var(--white);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section-head > div {
  max-width: 780px;
}
.section-head p {
  margin-bottom: 0;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-services-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.home-services-grid > .service-card {
  grid-column: span 2;
}
.stack {
  display: grid;
  gap: 18px;
}
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}
.card-body {
  padding: 24px;
}
.card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.card .tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
}
.card p:last-child {
  margin-bottom: 0;
}
.tag {
  align-items: center;
  gap: 7px;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #f1e5d2;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.4rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0.78rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: var(--gold-dark);
}
.button-primary:hover {
  background: #76552d;
}
.button-secondary {
  color: var(--ink);
  border-color: #a98350;
  background: rgba(255, 255, 255, 0.78);
}
.button-dark {
  color: #fff;
  background: var(--ink);
}
.button-light {
  color: var(--ink);
  background: #fff;
}
.button-small {
  min-height: 40px;
  padding: 0.57rem 0.82rem;
  font-size: 0.9rem;
}
.announcement {
  color: #fff;
  background: linear-gradient(90deg, var(--gold-dark), #c59a59);
  font-size: 0.86rem;
}
.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 36px;
}
.announcement span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: #fff;
  background: rgba(20, 26, 31, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 0.88;
}
.brand-text small {
  display: block;
  margin-top: 7px;
  color: var(--gold-soft);
  font-family: var(--font);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 0.65rem 0.72rem;
  border-radius: 7px;
  color: #fff;
  font-size: 0.92rem;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}
.nav-cta {
  margin-left: 0.45rem;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 610px;
}
.hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 96px) clamp(26px, 5vw, 72px) clamp(54px, 7vw, 96px)
    max(20px, calc((100vw - var(--max)) / 2));
}
.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 5.1vw, 5.2rem);
}
.hero-copy .lede {
  max-width: 55ch;
}
.hero-media {
  position: relative;
  min-height: 480px;
}
.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 8%, rgba(255, 255, 255, 0) 42%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-strip {
  background: #fff;
  border-block: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 15px 20px;
  border-right: 1px solid #e8e2d9;
  font-size: 0.88rem;
  font-weight: 700;
}
.trust-item:last-child {
  border-right: 0;
}
.icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--gold-dark);
}
.service-card {
  position: relative;
}
.service-card figure {
  margin: 0;
}
.service-card a {
  font-weight: 800;
  color: var(--gold-dark);
}
.prototype-card-media {
  display: grid;
  grid-template-columns: minmax(90px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: center;
  aspect-ratio: 2 / 1;
  margin: 0;
  padding: 22px;
  color: #fff;
  background-color: #252d32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #252d32, #151b1f);
  background-size: 20px 20px, 20px 20px, auto;
}
.prototype-card-media svg {
  width: 100%;
  max-height: 128px;
  overflow: visible;
}
.prototype-card-media svg path {
  fill: rgba(206, 166, 106, 0.08);
  stroke: #d4ae72;
  stroke-linejoin: round;
  stroke-width: 2;
}
.prototype-card-media svg .prototype-part {
  fill: rgba(255, 255, 255, 0.08);
  stroke: #f5efe6;
}
.prototype-card-media span,
.prototype-capability span,
.prototype-spec-panel > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prototype-card-media strong {
  display: block;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.08;
}
.prototype-capability,
.prototype-spec-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #222a2f;
  background-size: 24px 24px;
  box-shadow: var(--shadow-soft);
}
.prototype-capability strong {
  display: block;
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}
.prototype-capability p {
  margin: 0;
  color: #d8dde0;
}
.prototype-spec-panel > strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.82;
}
.prototype-spec-panel > p {
  max-width: 26ch;
  margin: 1rem 0 1.7rem;
  color: #d8dde0;
}
.prototype-spec-panel dl {
  margin: 0;
}
.prototype-spec-panel dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.prototype-spec-panel dt {
  color: #aeb6ba;
  font-size: 0.78rem;
}
.prototype-spec-panel dd {
  margin: 0;
  font-weight: 800;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}
.feature h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}
.feature p {
  margin: 0;
  color: #cfd4d7;
  font-size: 0.92rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}
.owner-portrait img {
  min-height: 0;
  aspect-ratio: 1;
  object-position: center;
}
.service-illustration {
  position: relative;
  margin: 0;
}
.service-illustration img {
  display: block;
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.service-illustration figcaption {
  padding: 12px 14px;
  color: #4b5358;
  background: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
}
.check-list,
.plain-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.65rem;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  content: "✓";
  color: var(--gold-dark);
  font-weight: 900;
}
.plain-list li {
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.metric {
  padding: 27px;
  border-right: 1px solid var(--line);
}
.metric:last-child {
  border-right: 0;
}
.metric strong {
  display: block;
  color: var(--gold-dark);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}
.metric span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.page-hero {
  padding: clamp(58px, 8vw, 102px) 0;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #2d383e);
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 40px;
  align-items: end;
}
.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}
.page-hero p {
  max-width: 62ch;
  color: #d7dde0;
}
.page-kicker {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.breadcrumbs {
  margin-bottom: 1.4rem;
  font-size: 0.82rem;
  color: #bdc4c8;
}
.breadcrumbs a {
  color: #fff;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 54px;
  align-items: start;
}
.content-grid article h2 {
  margin-top: 2.7rem;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}
.content-grid article h3 {
  margin-top: 2rem;
}
.content-grid article ul,
.content-grid article ol {
  padding-left: 1.4rem;
}
.side-card {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.side-card h2 {
  font-size: 1.4rem;
}
.side-card nav a {
  display: block;
  padding: 0.62rem 0;
  border-bottom: 1px solid #eee7dd;
  color: #3b4246;
  text-decoration: none;
}
.side-card nav a:hover {
  color: var(--gold-dark);
}
.table-wrap {
  overflow-x: auto;
  margin: 1.4rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}
th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid #e9e2d7;
  text-align: left;
  vertical-align: top;
}
th {
  color: #fff;
  background: var(--ink-2);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
tr:last-child td {
  border-bottom: 0;
}
.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: #f0e5d3;
}
.notice strong {
  display: block;
  margin-bottom: 0.25rem;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.process-list-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-step {
  position: relative;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.process-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--gold-dark);
  font-weight: 900;
}
.process-step h3 {
  font-size: 1rem;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.evidence-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.evidence-card.wide {
  grid-column: span 8;
}
.evidence-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #ddd;
}
.evidence-card.wide img {
  aspect-ratio: 2/1;
}
.evidence-card-board img {
  object-position: 50% 58%;
  transform: scale(1.14);
  transform-origin: 50% 58%;
}
.evidence-card .card-body {
  padding: 20px;
}
.evidence-card .meta {
  margin-bottom: 0.45rem;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.price-panel {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.price-panel .price {
  margin: 0.4rem 0 1.2rem;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.price-panel .price small {
  font-size: 1rem;
  letter-spacing: 0;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.faq summary {
  position: relative;
  padding: 19px 55px 19px 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  position: absolute;
  right: 20px;
  content: "+";
  color: var(--gold-dark);
  font-size: 1.35rem;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details > div {
  padding: 0 20px 20px;
  color: #434b50;
}
.quote-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: start;
}
.quote-aside {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}
.quote-form {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.form-section {
  margin: 0 0 2.1rem;
  padding: 0 0 2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.form-section:last-of-type {
  border-bottom: 0;
}
.form-section legend {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.18rem;
  font-weight: 900;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.field {
  display: grid;
  gap: 7px;
}
.field-full {
  grid-column: 1 / -1;
}
label {
  font-size: 0.88rem;
  font-weight: 800;
}
.required {
  color: var(--error);
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.82rem;
  border: 1px solid #bdb6ab;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(182, 138, 75, 0.18);
  outline: none;
}
.hint {
  color: var(--muted);
  font-size: 0.8rem;
}
.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}
.checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}
.form-status {
  display: none;
  margin: 1rem 0;
  padding: 14px;
  border-radius: 8px;
}
.form-status[aria-live]:not(:empty) {
  display: block;
}
.form-status.error {
  color: #711d17;
  background: #f9dfdc;
}
.form-status.success {
  color: #1f5238;
  background: #def1e6;
}
.file-list {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}
.project-type-section {
  position: relative;
}
.form-step,
.field-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.choice-card {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  min-height: 100%;
  padding: 17px;
  border: 1px solid #bdb6ab;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.choice-card:hover {
  border-color: var(--gold-dark);
}
.choice-card:has(input:checked) {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(182, 138, 75, 0.16);
  background: #fffaf2;
}
.choice-card input,
.radio-row input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
}
.choice-card strong,
.choice-card small {
  display: block;
}
.choice-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}
.branch-section[hidden],
.conditional-field[hidden],
.cabinetry-file-guidance[hidden] {
  display: none !important;
}
.branch-section > .branch-notice {
  margin-bottom: 16px;
}
.branch-section > .form-grid {
  margin-top: 18px;
}
.radio-list,
.checkbox-group {
  margin: 0;
  padding: 0;
  border: 0;
}
.radio-list > legend,
.checkbox-group > legend {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 800;
}
.radio-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid #d8d0c4;
  border-radius: 8px;
  background: #fff;
}
.radio-row + .radio-row,
.checkbox-group > .checkbox + .checkbox {
  margin-top: 8px;
}
.conditional-field {
  margin-top: 12px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  background: #f8f3ea;
}
.helper-panel {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
}
.helper-panel summary {
  padding: 13px 15px;
  font-weight: 800;
  cursor: pointer;
}
.helper-panel > div {
  padding: 0 15px 14px;
}
.helper-panel p {
  margin: 0.7rem 0 0;
}
.cabinetry-file-guidance {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: #f8f3ea;
}
.error-summary {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 2px solid var(--error);
  border-radius: 10px;
  color: #711d17;
  background: #fff3f1;
}
.error-summary[hidden] {
  display: none;
}
.error-summary h3,
.error-summary p {
  margin: 0 0 8px;
}
.error-summary ul {
  margin: 0;
  padding-left: 20px;
}
.error-summary a {
  color: #711d17;
  font-weight: 800;
}
.field-error {
  margin: 2px 0 0;
  color: #8a241e;
  font-size: 0.8rem;
  font-weight: 700;
}
[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 2px rgba(156, 52, 45, 0.14);
}
.simple-form {
  max-width: 860px;
}
.simple-form .form-status {
  grid-column: 1 / -1;
}
.cta-band {
  color: #fff;
  background: linear-gradient(100deg, #9a713b, #c59756);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 45px;
}
.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.cta-band p {
  margin: 0;
  color: #fff7ea;
}
.site-footer {
  padding: 70px 0 25px;
  color: #d7dcdf;
  background: #101519;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}
.site-footer .small {
  color: #adb3b7;
}
.site-footer h2,
.site-footer h3 {
  color: #fff;
}
.site-footer h2 {
  font-size: 1.8rem;
}
.site-footer h3 {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li {
  margin: 0.55rem 0;
}
.site-footer a {
  color: #d7dcdf;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.cookie-banner {
  position: fixed;
  z-index: 3000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  max-width: 780px;
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  margin-left: auto;
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  color: #fff;
  background: #172027;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner h2 {
  font-size: 1.35rem;
}
.cookie-banner p {
  color: #d7dde0;
  font-size: 0.9rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.cookie-panel.is-open {
  display: grid;
  gap: 13px;
}
.cookie-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}
.cookie-choice input {
  width: 20px;
  min-height: 20px;
}
.legal-date {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #ece3d5;
  color: #654b2e;
  font-size: 0.77rem;
  font-weight: 800;
}
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.error-page h1 {
  font-size: clamp(5rem, 15vw, 11rem);
  color: var(--gold-dark);
}
@media (max-width: 1200px) {
  .main-nav {
    position: absolute;
    inset: calc(100% + 8px) 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: var(--ink);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 0.8rem;
  }
  .nav-cta {
    margin: 6px 0 0;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-left: max(20px, calc((100vw - var(--max)) / 2));
    padding-right: max(20px, calc((100vw - var(--max)) / 2));
  }
  .hero-media {
    min-height: 440px;
  }
  .hero-media::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 26%);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-item:nth-child(3) {
    border-right: 0;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-services-grid > .service-card {
    grid-column: auto;
  }
  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 780px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }
  .announcement .container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 4px;
  }
  .announcement span:nth-child(n + 3) {
    display: none;
  }
  .nav-wrap {
    min-height: 72px;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-copy {
    padding-top: 54px;
    padding-bottom: 48px;
  }
  .hero-copy h1 {
    max-width: 12ch;
  }
  .hero-media {
    min-height: 310px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    border-right: 1px solid #e8e2d9;
    border-bottom: 1px solid #e8e2d9;
  }
  .trust-item:nth-child(2n) {
    border-right: 0;
  }
  .trust-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .page-hero .container,
  .content-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .metric {
    border-bottom: 1px solid var(--line);
  }
  .metric:nth-child(2) {
    border-right: 0;
  }
  .metric:nth-child(n + 3) {
    border-bottom: 0;
  }
  .page-kicker {
    display: none;
  }
  .side-card {
    position: static;
  }
  .process-list {
    grid-template-columns: 1fr 1fr;
  }
  .evidence-card,
  .evidence-card.wide {
    grid-column: span 12;
  }
  .quote-aside {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 2.7rem;
  }
  .brand-text {
    font-size: 1rem;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .trust-grid,
  .metrics,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:nth-child(2n),
  .trust-item:nth-child(3) {
    border-right: 0;
  }
  .metric,
  .metric:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metric:last-child {
    border-bottom: 0;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .button-row,
  .button {
    width: 100%;
  }
  .cookie-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
