:root {
  --brand-red: #7f2428;
  --brand-red-dark: #64191d;
  --brand-red-soft: #f7eeee;
  --button-green: #58bd5d;
  --ink: #201c1c;
  --muted: #655d5d;
  --line: #e8ded9;
  --paper: #ffffff;
  --warm: #f6f1ec;
  --gold: #b9935a;
  --max: 1160px;
  --shadow: 0 24px 70px rgba(47, 30, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand-red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 14px 24px 16px;
}

.brand-stack {
  display: grid;
  gap: 5px;
}

.brand {
  display: inline-flex;
  text-decoration: none;
}

.brand-logo {
  height: auto;
  width: min(270px, 48vw);
}

.brand-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-left: 4px;
}

.brand-contact a {
  color: rgba(255, 255, 255, 0.92);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.brand-contact a:hover,
.brand-contact a:focus-visible {
  color: rgba(255, 255, 255, 0.76);
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav-links a {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

.site-header .button {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.site-header .button:hover,
.site-header .button:focus-visible {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.button {
  align-items: center;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.8px;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.button.secondary {
  background: transparent;
  color: var(--brand-red);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--brand-red-soft);
}

.hero {
  min-height: calc(100vh - 88px);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  min-height: calc(100vh - 88px);
}

.hero-copy {
  align-self: center;
  padding: 78px 24px 78px max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.hero h1 {
  color: var(--brand-red);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-rule,
.section-rule {
  background: var(--brand-red);
  height: 3px;
  margin: 0 0 30px;
  width: 82px;
}

.hero .lede {
  color: #4b4444;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.35;
  margin: 0 0 32px;
  max-width: 620px;
  overflow-wrap: normal;
}

.hero .lede span {
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image {
  min-height: 520px;
  position: relative;
}

.hero-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-image::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.72) 24%, rgba(255, 255, 255, 0) 54%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.intro {
  background: linear-gradient(180deg, #fff, var(--warm));
  padding: 82px 24px;
}

.intro-inner,
.section-inner,
.page-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.intro-card {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.75fr 1.25fr;
}

.pronunciation {
  border-right: 1px solid var(--line);
  color: var(--brand-red);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  margin: 0;
  padding-right: 36px;
}

.pronunciation span {
  color: var(--muted);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  margin-top: 14px;
  text-transform: uppercase;
}

.intro-copy h2,
.section-heading h2,
.page-title h1 {
  color: var(--brand-red);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 22px;
}

.intro-copy p,
.service-copy p,
.page-inner p,
.page-inner li {
  color: var(--muted);
  font-size: 18px;
}

.services {
  padding: 88px 24px 96px;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 760px;
}

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

.service {
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: 110px 260px minmax(0, 1fr);
  padding: 34px 0;
}

.service-icon {
  align-items: center;
  align-self: start;
  border: 1px solid rgba(153, 51, 51, 0.28);
  color: var(--brand-red);
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  height: 82px;
  justify-content: center;
  width: 82px;
}

.service h3 {
  color: var(--brand-red);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.service-copy p {
  margin: 0 0 16px;
}

.service-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #d9d9d9;
  color: var(--ink);
  padding: 58px 24px 26px;
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-grid h2,
.footer-grid h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.footer-grid h3 {
  transform: translateY(-8px);
}

.footer-column-head {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 10px;
  min-height: 50px;
}

.footer-logo {
  height: auto;
  object-fit: contain;
  width: 140px;
}

.footer-brand {
  max-width: 330px;
}

.footer-grid p,
.footer-grid a {
  color: #3f3a3a;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.footer-grid a {
  display: inline;
  text-decoration: none;
}

.footer-grid p {
  margin: 0 0 18px;
}

.footer-grid p:last-child {
  margin-bottom: 0;
}

.footer-brand p {
  line-height: 1.45;
  margin: 0;
}

.footer-brand .footer-column-head {
  margin-bottom: 10px;
}

.footer-grid > div:not(.footer-brand) .footer-column-head,
.footer-links .footer-column-head {
  justify-content: center;
  margin-bottom: 10px;
  padding-top: 0;
}

.footer-links {
  display: grid;
  gap: 0;
  justify-items: start;
}

.footer-links a + a {
  margin-top: 16px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--brand-red);
  text-decoration: underline;
}

.copyright {
  border-top: 1px solid rgba(32, 28, 28, 0.18);
  color: #4d4747;
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 36px auto 0;
  max-width: var(--max);
  padding-top: 20px;
  text-align: center;
}

.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 42px 24px 34px;
}

.page-title {
  margin: 0 auto;
  max-width: var(--max);
}

.page-title p {
  color: var(--muted);
  font-size: 21px;
  margin: 0;
  max-width: 760px;
}

.page-content {
  padding: 38px 24px 88px;
}

.split {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}

.contact-panel h2,
.form-card h2,
.page-inner h2 {
  color: var(--brand-red);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}

.contact-panel p {
  margin: 0 0 18px;
}

.contact-panel a {
  color: var(--brand-red);
  text-decoration: none;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  text-decoration: underline;
}

.form-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 30px;
}

form {
  display: grid;
  gap: 18px;
}

label {
  color: #3d3636;
  display: grid;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

input,
textarea {
  border: 1px solid #d6cac5;
  color: var(--ink);
  font: 16px Arial, sans-serif;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.check {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 20px minmax(0, 1fr);
}

.check input {
  margin-top: 3px;
  min-height: auto;
}

.check span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.legal-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.effective-date {
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin: 0;
}

.legal-list section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.legal-list h3 {
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  margin: 18px 0 8px;
}

.legal-list ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 6px;
}

.brand-hero {
  background: var(--brand-red);
  color: #fff;
  min-height: calc(100vh - 88px);
  padding: 34px 24px 48px;
}

.brand-hero-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 170px);
}

.brand-hero-top {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.brand-hero-top img {
  height: auto;
  width: min(300px, 52vw);
}

.brand-hero-top div {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.brand-hero-top a {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.brand-hero-copy {
  align-self: center;
  justify-self: center;
  max-width: 920px;
  padding: 64px 0;
  text-align: center;
}

.brand-hero-copy h1 {
  color: #fff;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.brand-hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin: 42px auto 0;
  max-width: 760px;
  text-transform: uppercase;
}

.light-button {
  align-items: center;
  background: #fff;
  border: 1px solid #fff;
  color: var(--brand-red);
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.8px;
  margin-top: 38px;
  min-height: 48px;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.light-button:hover,
.light-button:focus-visible {
  background: transparent;
  color: #fff;
}

.brand-hero-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.brand-hero-grid span {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 24px 18px 0;
  text-align: center;
  text-transform: uppercase;
}

.minimal-intro,
.minimal-services {
  background: var(--brand-red);
  color: #fff;
  padding: 92px 24px;
}

.minimal-intro {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.minimal-services {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 76px;
}

.minimal-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.minimal-heading {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.78fr 1.22fr;
}

.minimal-heading.compact {
  align-items: end;
  margin-bottom: 46px;
}

.minimal-heading > p:first-child {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.minimal-heading span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 1.2px;
  margin-top: 8px;
}

.minimal-heading h2 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  max-width: 850px;
}

.minimal-heading.compact p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
  max-width: 520px;
}

.principle-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
}

.principle-grid article,
.minimal-service-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  padding: 28px 0;
}

.principle-grid article {
  padding-right: 36px;
}

.principle-grid h3,
.minimal-service-list h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.principle-grid p,
.minimal-service-list p {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.minimal-service-list {
  display: grid;
}

.minimal-service-list article {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 80px minmax(0, 1fr);
}

.minimal-service-list span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 18px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.minimal-service-list h3 {
  margin-bottom: 8px;
}

.minimal-close {
  background: var(--brand-red);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 86px 24px 98px;
  text-align: center;
}

.minimal-close p {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 900px;
}

.studio-shell {
  background: #f8f8f6;
  min-height: 100vh;
}

.studio-toolbar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.studio-brand {
  color: var(--brand-red);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.studio-toolbar h1 {
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  margin: 4px 0 0;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-grid {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
}

.studio-editor {
  align-content: start;
  background: #fff;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 0;
  min-height: calc(100vh - 81px);
  overflow: auto;
}

.studio-panel {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  padding: 24px 28px 30px;
}

.studio-panel h2 {
  color: var(--brand-red);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.studio-services {
  display: grid;
  gap: 22px;
}

.studio-service-field {
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 16px;
}

.studio-service-field legend {
  color: var(--brand-red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 0 8px;
  text-transform: uppercase;
}

.studio-preview {
  background: #fff;
  min-height: calc(100vh - 81px);
  overflow: hidden;
}

.studio-preview-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 42%, rgba(255, 255, 255, 0.55) 58%, rgba(255, 255, 255, 0.08)),
    url("/images/prosirvity-advisory-hero.png") center / cover;
  display: flex;
  min-height: 520px;
  padding: 64px max(28px, 8vw);
}

.studio-preview-brand {
  color: var(--brand-red);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.studio-preview h2 {
  color: var(--brand-red);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 24px;
  max-width: 640px;
}

.studio-preview-hero p:not(.studio-preview-brand) {
  color: #4b4444;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.35;
  margin: 0 0 26px;
  max-width: 560px;
}

.studio-preview-hero span {
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  min-height: 46px;
  padding: 13px 20px;
  text-transform: uppercase;
}

.studio-preview-intro,
.studio-preview-services {
  padding: 64px max(28px, 8vw);
}

.studio-preview-intro {
  background: linear-gradient(180deg, #fff, var(--warm));
}

.studio-preview-kicker {
  color: var(--brand-red);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.studio-preview-intro p,
.studio-preview-services p {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.studio-preview-services > div {
  border-top: 1px solid var(--line);
  display: grid;
}

.studio-preview-services section {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 70px 210px minmax(0, 1fr);
  padding: 28px 0;
}

.studio-preview-services span {
  align-items: center;
  border: 1px solid rgba(153, 51, 51, 0.28);
  color: var(--brand-red);
  display: inline-flex;
  font-family: Arial, sans-serif;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.studio-preview-services h3 {
  color: var(--brand-red);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.studio-preview-services p {
  font-size: 15px;
  grid-column: 3;
  margin: 0;
}

.replica-hero {
  background: var(--brand-red);
  color: #fff;
  min-height: 760px;
  padding: 32px 24px 0;
}

.replica-hero-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.replica-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  min-height: 112px;
}

.replica-logo {
  max-width: 300px;
  width: 34vw;
}

.replica-contact {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  padding-top: 4px;
  text-align: right;
}

.replica-contact a {
  color: #fff;
  text-decoration: none;
}

.replica-title {
  margin: 34px auto 0;
  max-width: 930px;
  text-align: center;
}

.replica-title h1 {
  color: #fff;
  font-size: clamp(52px, 6.2vw, 90px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
  text-transform: uppercase;
}

.replica-title h1 span,
.replica-title .tagline span {
  display: block;
}

.replica-title .prosperity {
  font-size: clamp(64px, 7.6vw, 112px);
}

.replica-title .tagline {
  color: #fff;
  font-family: "Segoe UI Light", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 3.9vw, 56px);
  font-weight: 300;
  line-height: 1.22;
  margin: 70px 0 0;
  text-transform: uppercase;
}

.green-button {
  background: var(--button-green);
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  margin-top: 76px;
  min-width: 170px;
  padding: 17px 29px;
  text-decoration: none;
  text-transform: uppercase;
}

.road-section {
  background: linear-gradient(180deg, var(--brand-red) 0 230px, #fff 230px);
  padding: 0 24px 74px;
}

.road-frame {
  height: min(430px, 45vw);
  margin: 0 auto;
  max-width: 1024px;
  overflow: hidden;
}

.road-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.replica-intro {
  background: #fff;
  padding: 0 24px 62px;
}

.replica-intro-inner {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.95fr) 360px;
  margin: 0 auto;
  max-width: 1040px;
}

.replica-pronunciation {
  align-items: center;
  border-bottom: 3px solid #cfcfcf;
  color: var(--brand-red);
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 20px;
  padding-bottom: 8px;
  overflow-wrap: anywhere;
  text-transform: none;
}

.replica-pronunciation img {
  height: auto;
  max-width: 220px;
  width: min(220px, 58vw);
}

.replica-pronunciation span {
  align-self: center;
  color: var(--brand-red);
  display: inline-block;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 8px;
  transform: translateY(3px);
  text-transform: none;
}

.replica-subtitle {
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  margin: -14px 0 28px;
}

.replica-copy p,
.replica-service p {
  color: #111;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.28;
  margin: 0 0 10px;
}

.replica-copy strong,
.replica-service strong {
  font-weight: 800;
}

.success-card {
  align-self: start;
  background: #fff;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.22);
  margin-top: 98px;
}

.success-card img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.replica-mid-cta {
  margin: 50px auto 0;
  text-align: center;
}

.meeting-section {
  background: #fff;
  padding: 0 24px 78px;
}

.meeting-frame {
  margin: 0 auto;
  max-width: 1040px;
  overflow: hidden;
}

.meeting-frame img {
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.replica-services {
  background: #fff;
  padding: 0 24px 76px;
}

.replica-services-inner {
  margin: 0 auto;
  max-width: 1010px;
}

.replica-services h2 {
  color: #b04a4a;
  font-size: 44px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 0 0 36px;
  text-align: center;
}

.replica-service {
  margin: 0 0 30px;
  max-width: 850px;
}

.replica-service h3 {
  color: #111;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}

.replica-footer {
  background: #999;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  padding: 34px 24px;
  text-align: center;
}

.replica-footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  margin: 0 auto;
  max-width: var(--max);
}

.replica-footer img {
  height: 54px;
  margin: 0 auto;
  object-fit: contain;
  width: 54px;
}

.replica-footer a {
  color: #fff;
  display: block;
  margin-bottom: 9px;
  text-decoration: none;
}

@media (max-width: 880px) {
  .nav {
    align-items: center;
    flex-direction: column;
  }

  .brand-stack {
    justify-items: center;
  }

  .brand-contact {
    justify-content: center;
    padding-left: 0;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-grid,
  .intro-card,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 24px 32px;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.35) 34%, rgba(255, 255, 255, 0) 68%);
  }

  .pronunciation {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 28px;
  }

  .service {
    gap: 18px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .service-icon {
    font-size: 28px;
    height: 62px;
    width: 62px;
  }

  .service-copy {
    grid-column: 1 / -1;
  }

  .replica-hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .replica-top,
  .replica-intro-inner,
  .replica-footer-inner {
    grid-template-columns: 1fr;
  }

  .replica-top {
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }

  .replica-logo {
    width: min(320px, 80vw);
  }

  .replica-contact {
    text-align: center;
  }

  .replica-title .tagline {
    margin-top: 56px;
  }

  .road-section {
    background: linear-gradient(180deg, var(--brand-red) 0 140px, #fff 140px);
    padding-top: 0;
  }

  .road-frame {
    height: 260px;
  }

  .success-card {
    margin-top: 0;
  }

  .meeting-frame img {
    aspect-ratio: 4 / 3;
  }

  .replica-footer-inner {
    display: grid;
    text-align: center;
  }

  .replica-footer img {
    margin: 0 auto;
  }

  .brand-hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .brand-hero-inner {
    min-height: auto;
  }

  .brand-hero-top {
    align-items: center;
    flex-direction: column;
  }

  .brand-hero-top div {
    justify-items: center;
  }

  .brand-hero-copy {
    padding: 64px 0 52px;
  }

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

  .brand-hero-grid span {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0;
  }

  .brand-hero-grid span:first-child {
    border-top: 0;
  }

  .minimal-heading,
  .minimal-heading.compact,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    margin-top: 48px;
  }

  .principle-grid article {
    padding-right: 0;
  }

  .studio-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 16px 18px;
  }

  .studio-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .studio-actions .button {
    width: 100%;
  }

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

  .studio-editor {
    border-right: 0;
    min-height: auto;
  }

  .studio-panel {
    padding: 22px 18px 26px;
  }

  .studio-preview {
    border-top: 1px solid var(--line);
    min-height: auto;
  }

  .studio-preview-hero {
    min-height: 420px;
    padding: 48px 22px;
  }

  .studio-preview-intro,
  .studio-preview-services {
    padding: 44px 22px;
  }

  .studio-preview-services section {
    gap: 14px;
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .studio-preview-services p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero .lede {
    font-size: 20px;
    line-height: 1.45;
    max-width: 100%;
  }

  .hero .lede span {
    display: block;
  }

  .services,
  .intro,
  .closing,
  .page-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service h3 {
    font-size: 25px;
  }

  .replica-title h1 {
    font-size: 42px;
  }

  .replica-title .prosperity {
    font-size: 50px;
  }

  .replica-title .tagline {
    font-size: 31px;
  }

  .brand-hero-copy h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .brand-hero-copy p {
    font-size: 24px;
    margin-top: 30px;
  }

  .minimal-intro,
  .minimal-services {
    padding: 66px 18px;
  }

  .minimal-heading h2 {
    font-size: 38px;
  }

  .minimal-heading.compact p {
    font-size: 18px;
  }

  .minimal-service-list article {
    gap: 18px;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .minimal-service-list h3 {
    font-size: 24px;
  }

  .minimal-close {
    padding: 62px 18px 72px;
  }

  .replica-pronunciation {
    font-size: 26px;
  }

  .replica-pronunciation span {
    display: block;
    font-size: 15px;
    margin-top: 4px;
  }

  .replica-copy p,
  .replica-service p {
    font-size: 13px;
  }
}
