:root {
  --navy-950: #07182b;
  --navy-900: #0b223d;
  --navy-800: #12385e;
  --navy-100: #eaf0f6;
  --red: #c41230;
  --red-dark: #971025;
  --gold: #c9a45b;
  --gold-light: #e3c887;
  --white: #ffffff;
  --paper: #f5f7f9;
  --ink: #112033;
  --muted: #5d6976;
  --line: rgba(11, 34, 61, 0.15);
  --shell: min(1240px, calc(100vw - 48px));
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 15px;
  background: var(--white);
  color: var(--navy-900);
  border: 2px solid var(--red);
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy-900);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 1px 0 var(--gold), 0 12px 28px rgba(7, 24, 43, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 92px;
  height: 62px;
  overflow: hidden;
  background: var(--white);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-copy strong span {
  color: var(--red);
}

.brand-copy small {
  margin-top: 7px;
  color: #8a682e;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav > a {
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--red);
}

.nav-call {
  color: var(--red);
}

.menu-button {
  display: none;
}

/* Shared buttons and links */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 2px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(151, 16, 37, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 0.82rem !important;
}

.button-outline {
  border-color: var(--navy-900);
  background: transparent;
  color: var(--navy-900);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--red);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  border-bottom: 4px solid var(--gold);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(145deg, rgba(196, 18, 48, 0.1), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 44px;
  padding-block: 34px;
}

.hero-copy {
  min-width: 0;
  padding: 48px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1,
.section h2,
.intro-band h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(3.25rem, 5vw, 5.5rem);
}

.hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--gold-light);
}

.hero-lede {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.07rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 31px;
}

.hero .text-link {
  color: var(--white);
}

.hero .text-link span {
  color: var(--gold-light);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 33px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.trust-row li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.trust-row li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid rgba(227, 200, 135, 0.7);
  box-shadow: 20px 20px 0 rgba(196, 18, 48, 0.16);
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-badge {
  display: none;
}

/* Intro */
.intro-band {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band-grid {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
  gap: 32px 42px;
}

.section-number {
  margin: 5px 0 0;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.intro-band h2 {
  max-width: 720px;
  color: var(--navy-900);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.intro-band p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 46px;
}

.section h2 {
  color: var(--navy-900);
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Services */
.services {
  background: var(--paper);
}

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

.service-card {
  display: flex;
  min-height: 306px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-800);
  box-shadow: 0 12px 28px rgba(7, 24, 43, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(7, 24, 43, 0.1);
}

.service-card-featured {
  border-top-color: var(--red);
}

.service-card-dark {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  border-top-color: var(--gold);
}

.service-index {
  color: #8a682e;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card-dark .service-index {
  color: var(--gold-light);
}

.service-card h3 {
  margin: 39px 0 11px;
  color: var(--navy-900);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.service-card-dark h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card a {
  display: inline-flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.83rem;
  font-weight: 850;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.service-card a span {
  color: var(--red);
}

.service-card-dark a span {
  color: var(--gold-light);
}

/* Clients */
.clients {
  background: var(--navy-900);
  color: var(--white);
  border-block: 4px solid var(--red);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 22px;
}

.section-kicker .eyebrow {
  margin: 0;
  color: var(--gold-light);
}

.clients .section-number {
  color: var(--red);
}

.clients > .shell > h2 {
  max-width: 920px;
  color: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.client-grid article {
  min-height: 300px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid var(--gold);
}

.client-type {
  display: block;
  min-height: 45px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-grid h3 {
  max-width: 320px;
  margin: 38px 0 14px;
  color: var(--white);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.client-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Work */
.work {
  background: var(--white);
}

.work-heading {
  margin-bottom: 42px;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.work-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(201, 164, 91, 0.65);
  box-shadow: 16px 16px 0 var(--navy-100);
}

.work-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--navy-950);
}

.work-figure figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 20px 25px;
  background: var(--navy-900);
  color: var(--white);
  border-top: 3px solid var(--red);
}

.work-figure figcaption strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
}

.work-figure figcaption span {
  justify-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
}

.section-action > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.section-action-centered {
  justify-content: center;
}

/* Reviews */
.reviews {
  background: var(--navy-950);
  color: var(--white);
  border-block: 4px solid var(--red);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.reviews-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
}

.reviews h2 {
  max-width: 850px;
  color: var(--white);
}

.reviews .eyebrow {
  color: var(--gold-light);
}

.rating-summary {
  display: grid;
  min-width: 205px;
  padding: 23px 25px;
  border: 1px solid rgba(227, 200, 135, 0.55);
  border-top: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.055);
}

.rating-number {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.95;
}

.stars {
  margin-top: 11px;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.rating-summary > span:last-child {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.review-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  margin: 0;
  padding: 31px;
  background: var(--white);
  color: var(--navy-900);
  border-top: 5px solid var(--gold);
}

.review-card::before {
  content: "“";
  height: 38px;
  color: var(--red);
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.8;
}

.review-card blockquote {
  margin: 27px 0 35px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.review-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.review-card figcaption strong {
  font-size: 0.88rem;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-link {
  margin-top: 35px;
  color: var(--white);
}

.review-link span {
  color: var(--gold-light);
}

/* Articles and resources */
.insights {
  background: var(--paper);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--navy-900);
  box-shadow: 0 14px 32px rgba(7, 24, 43, 0.07);
}

.article-card-image {
  height: 215px;
  background-color: var(--navy-100);
  background-image: url("/assets/renovation.jpg");
  background-repeat: no-repeat;
  background-size: 185%;
}

.article-card-image-renovation {
  background-position: 5% 5%;
}

.article-card-image-selling {
  background-position: 93% 7%;
}

.article-card-image-turn {
  background-position: 9% 64%;
}

.article-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.article-meta {
  margin: 0 0 15px;
  color: #7b5a24;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.article-card h3 a {
  text-decoration: none;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.article-card-copy > p:not(.article-meta) {
  margin: 17px 0 27px;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.card-link span {
  color: var(--red);
}

/* Interior pages */
.page-hero {
  overflow: hidden;
  padding: 70px 0;
  background: var(--navy-950);
  color: var(--white);
  border-bottom: 4px solid var(--gold);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold-light);
  text-underline-offset: 4px;
}

.page-hero h1,
.article-header h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-lede {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.page-hero .button {
  margin-top: 31px;
}

.page-hero-media {
  overflow: hidden;
  border: 1px solid rgba(227, 200, 135, 0.7);
  box-shadow: 14px 14px 0 rgba(196, 18, 48, 0.18);
}

.page-hero-media img {
  width: 100%;
  height: auto;
}

.page-section {
  padding: 90px 0;
}

.page-section-paper {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.narrow-heading {
  max-width: 830px;
  margin-bottom: 43px;
}

.narrow-heading h2,
.before-after-callout h2,
.page-cta h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.narrow-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
}

.gallery-feature-grid {
  display: grid;
  gap: 45px;
}

.gallery-panel {
  margin: 0;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(201, 164, 91, 0.65);
  box-shadow: 14px 14px 0 var(--navy-100);
}

.gallery-panel img {
  width: 100%;
  height: auto;
}

.gallery-panel figcaption {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  padding: 25px 28px 28px;
  background: var(--navy-900);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.gallery-panel figcaption strong {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.15;
}

.gallery-panel figcaption span {
  color: rgba(255, 255, 255, 0.68);
}

.before-after-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 60px;
  padding: 58px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  box-shadow: 16px 16px 0 var(--navy-100);
}

.before-after-callout h2 {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.before-after-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.photo-standard-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.photo-standard-list li {
  position: relative;
  padding-left: 22px;
  color: var(--navy-900);
  font-weight: 750;
}

.photo-standard-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.blog-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
}

.blog-hero-mark {
  display: grid;
  min-height: 360px;
  place-content: center;
  padding: 45px;
  background: var(--navy-900);
  border: 1px solid rgba(227, 200, 135, 0.6);
  border-top: 7px solid var(--gold);
  box-shadow: 14px 14px 0 rgba(196, 18, 48, 0.16);
  text-align: center;
}

.blog-hero-mark img {
  width: min(220px, 65%);
  margin: 0 auto 26px;
}

.blog-hero-mark strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.1;
}

.blog-hero-mark span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-header {
  padding: 64px 0 54px;
  background: var(--navy-950);
  border-bottom: 4px solid var(--gold);
}

.article-header-inner {
  width: min(940px, calc(100vw - 48px));
  margin-inline: auto;
}

.article-header .article-meta {
  margin: 24px 0 0;
  color: var(--gold-light);
}

.article-header h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.article-deck {
  max-width: 790px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.17rem;
}

.article-hero-image {
  width: min(1120px, calc(100vw - 48px));
  max-height: 660px;
  margin: 0 auto;
  overflow: hidden;
  border-inline: 1px solid var(--line);
}

.article-hero-image img {
  width: 100%;
  height: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 75px;
  width: min(1050px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 74px 0 92px;
}

.article-body {
  min-width: 0;
  color: #2c3b4b;
  font-size: 1.06rem;
  line-height: 1.78;
}

.article-body > p:first-child {
  margin-top: 0;
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 650;
}

.article-body h2 {
  margin: 58px 0 19px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.article-body h3 {
  margin: 34px 0 12px;
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1.25;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 28px;
  padding-left: 23px;
}

.article-body li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.article-body a {
  color: var(--red-dark);
  font-weight: 750;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.article-takeaway {
  margin: 36px 0;
  padding: 27px 30px;
  background: var(--navy-100);
  border-left: 5px solid var(--red);
}

.article-takeaway strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 124px;
  padding: 27px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.article-aside h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.12;
}

.article-aside p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.91rem;
}

.article-aside .button {
  width: 100%;
  min-height: 47px;
  padding-inline: 15px;
  font-size: 0.83rem;
}

.article-aside ul {
  display: grid;
  gap: 8px;
  margin: 23px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.article-aside a:not(.button) {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.page-cta {
  padding: 66px 0;
  background: var(--navy-900);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
}

.page-cta h2 {
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.page-cta p {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Process */
.process {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 88px;
}

.process-intro {
  position: sticky;
  top: 126px;
  align-self: start;
}

.process-intro h2 {
  max-width: 560px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 27px 0;
  color: var(--muted);
}

.text-link-light {
  color: var(--navy-900);
}

.text-link-light span {
  color: var(--red);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.2;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

/* Booking */
.booking {
  background: var(--white);
}

.booking-fast-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(201, 164, 91, 0.7);
  border-top: 6px solid var(--gold);
  box-shadow: 16px 16px 0 var(--navy-100), 0 30px 70px rgba(7, 24, 43, 0.15);
}

.booking-fast-card::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 290px;
  height: 290px;
  border: 38px solid rgba(196, 18, 48, 0.2);
  transform: rotate(35deg);
}

.booking-fast-card > * {
  position: relative;
  z-index: 1;
}

.booking-fast-card .eyebrow {
  color: var(--gold-light);
}

.booking-fast-card h2 {
  max-width: 750px;
  margin: 0 auto;
  color: var(--white);
}

.booking-fast-card > p:not(.eyebrow):not(.booking-fast-note) {
  max-width: 690px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.booking-link {
  width: min(100%, 520px);
  gap: 10px;
}

.booking-fast-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

/* Footer */
.site-footer {
  padding: 64px 0 28px;
  background: var(--navy-950);
  color: var(--white);
  border-top: 4px solid var(--red);
  box-shadow: inset 0 1px 0 var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 1fr;
  gap: 70px;
}

.brand-footer {
  margin-bottom: 22px;
}

.site-footer .brand-copy strong {
  color: var(--white);
}

.site-footer .brand-copy strong span,
.site-footer .brand-copy small {
  color: var(--gold-light);
}

.site-footer .brand-mark {
  background: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-color: rgba(227, 200, 135, 0.5);
  text-underline-offset: 4px;
}

.footer-grid span:not(.footer-label):not(.brand-mark):not(.brand-copy) {
  color: rgba(255, 255, 255, 0.58);
}

.footer-label {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: inherit;
}

.mobile-cta {
  display: none;
}

/* Responsive navigation and layout */
@media (max-width: 1120px) {
  .header-inner {
    min-height: 86px;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--navy-900);
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 24px;
    background: var(--white);
    color: var(--navy-900);
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    box-shadow: 0 20px 42px rgba(7, 24, 43, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a {
    padding: 10px 0;
    font-size: 0.95rem;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 30px;
  }

  .hero-copy {
    padding-block: 36px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 5.2vw, 4.4rem);
  }

  .service-card {
    min-height: 330px;
    padding: 27px;
  }

  .process-grid {
    gap: 58px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 45px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  body {
    padding-bottom: 58px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 0 28px;
  }

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

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.25rem, 10.5vw, 5.2rem);
  }

  .hero-lede {
    max-width: 680px;
  }

  .hero-visual {
    width: 100%;
    box-shadow: 10px 10px 0 rgba(196, 18, 48, 0.18);
  }

  .intro-band-grid {
    grid-template-columns: 45px 1fr;
    gap: 20px 26px;
  }

  .intro-band-grid > p:last-child {
    grid-column: 2;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reviews-top,
  .page-hero-grid,
  .blog-hero .page-hero-grid,
  .before-after-callout,
  .page-cta-inner {
    grid-template-columns: 1fr;
  }

  .rating-summary {
    min-width: 0;
    width: min(100%, 240px);
  }

  .review-grid,
  .article-card-grid,
  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 230px;
  }

  .page-hero-grid {
    gap: 40px;
  }

  .page-hero-media {
    max-width: 680px;
  }

  .article-card-image {
    height: 290px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-aside {
    position: static;
  }

  .client-grid article {
    min-height: 0;
  }

  .client-type {
    min-height: 0;
  }

  .client-grid h3 {
    margin-top: 25px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .process-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 58px;
    box-shadow: 0 -8px 24px rgba(7, 24, 43, 0.18);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--navy-900);
    font-size: 0.86rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-cta a:last-child {
    background: var(--red);
    color: var(--white);
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-inner {
    min-height: 76px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 62px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.71rem;
    letter-spacing: 0.035em;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .hero-copy {
    padding: 51px 0 43px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-row {
    display: grid;
    margin-top: 27px;
    padding-top: 17px;
  }

  .hero-visual {
    width: calc(100% + 8px);
    margin-left: -4px;
    box-shadow: 7px 7px 0 rgba(196, 18, 48, 0.18);
  }

  .intro-band {
    padding: 38px 0;
  }

  .intro-band-grid {
    grid-template-columns: 1fr;
  }

  .intro-band-grid > p:last-child {
    grid-column: auto;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-action-centered {
    align-items: center;
  }

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

  .service-card {
    min-height: 280px;
    padding: 26px;
  }

  .section-kicker {
    align-items: flex-start;
    gap: 17px;
  }

  .client-grid {
    margin-top: 38px;
  }

  .client-grid article {
    padding: 27px;
  }

  .work-gallery {
    gap: 25px;
  }

  .work-figure {
    margin-inline: -7px;
    box-shadow: 7px 7px 0 var(--navy-100);
  }

  .work-figure figcaption {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 17px 18px;
  }

  .work-figure figcaption strong {
    font-size: 1.28rem;
  }

  .work-figure figcaption span {
    justify-self: start;
    text-align: left;
  }

  .reviews-top {
    gap: 30px;
  }

  .review-grid {
    margin-top: 35px;
  }

  .review-card {
    min-height: 215px;
    padding: 26px;
  }

  .review-card blockquote {
    font-size: 1.48rem;
  }

  .article-card-image {
    height: 215px;
  }

  .page-hero,
  .article-header {
    padding: 50px 0;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .page-hero-media {
    box-shadow: 7px 7px 0 rgba(196, 18, 48, 0.18);
  }

  .page-section {
    padding: 60px 0;
  }

  .gallery-panel {
    margin-inline: -7px;
    box-shadow: 7px 7px 0 var(--navy-100);
  }

  .gallery-panel figcaption {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px;
  }

  .before-after-callout {
    gap: 30px;
    padding: 36px 24px;
    box-shadow: 8px 8px 0 var(--navy-100);
  }

  .blog-hero-mark {
    min-height: 300px;
  }

  .article-header-inner,
  .article-hero-image,
  .article-layout {
    width: calc(100vw - 28px);
  }

  .article-layout {
    padding-block: 55px 65px;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-body h2 {
    margin-top: 46px;
  }

  .page-cta {
    padding: 55px 0;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .booking-fast-card {
    padding: 40px 20px;
    box-shadow: 8px 8px 0 var(--navy-100);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
