@font-face {
  font-family: 'OverpassLocal';
  src: url('/fonts/overpass.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'DharmaGothicLocal';
  src: url('/fonts/dharma-gothic-e.woff2') format('woff2');
  font-display: swap;
}

:root {
  --rd-red: #ef3b33;
  --rd-ink: #2a2a2b;
  --rd-muted: #747474;
  --rd-line: #ddd9d4;
  --rd-cream: #f3f0eb;
  --rd-paper: #ffffff;
  --rd-charcoal: #252526;
  --rd-blue: #071525;
  --rd-display: 'IvyPresto Headline Reg', Georgia, 'Times New Roman', serif;
  --rd-body: 'OverpassLocal', Arial, Helvetica, sans-serif;
  --rd-logo: 'DharmaGothicLocal', Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--rd-ink);
  background: var(--rd-paper);
  font-family: var(--rd-body);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.rd-menu-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.rd-shell {
  min-height: 100vh;
  background: #fff;
}

.rd-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 92px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.03));
  transition: background 220ms ease, height 220ms ease;
}

.rd-header.is-scrolled {
  height: 76px;
  background: rgba(8, 18, 31, 0.94);
  backdrop-filter: blur(12px);
}

.rd-header__inner {
  width: min(1180px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.rd-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 208px;
}

.rd-logo__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--rd-red);
  font-family: var(--rd-logo);
  font-size: 45px;
  line-height: 0.86;
  text-transform: uppercase;
}

.rd-logo__copy {
  display: grid;
  gap: 2px;
  color: #fff;
}

.rd-logo__copy strong {
  font-family: var(--rd-logo);
  font-size: 34px;
  line-height: 0.82;
  font-weight: 400;
  text-transform: uppercase;
}

.rd-logo__copy span {
  max-width: 150px;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.rd-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  line-height: 1;
}

.rd-nav a {
  position: relative;
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.rd-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--rd-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.rd-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 25px;
  border-radius: 999px;
  color: #161616;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.rd-header__contact:hover {
  color: #fff;
  background: var(--rd-red);
}

.rd-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.rd-menu-button span,
.rd-menu-button::before,
.rd-menu-button::after {
  content: '';
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .rd-menu-button span {
  opacity: 0;
}

.rd-menu-toggle:checked ~ .rd-header .rd-menu-button span {
  opacity: 0;
}

body.menu-open .rd-menu-button::before {
  transform: translateY(7px) rotate(45deg);
}

.rd-menu-toggle:checked ~ .rd-header .rd-menu-button::before {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .rd-menu-button::after {
  transform: translateY(-7px) rotate(-45deg);
}

.rd-menu-toggle:checked ~ .rd-header .rd-menu-button::after {
  transform: translateY(-7px) rotate(-45deg);
}

.rd-menu-toggle:checked ~ .rd-header .rd-menu-button {
  opacity: 0;
  pointer-events: none;
}

.rd-menu-toggle:checked ~ .rd-header {
  pointer-events: none;
}

.rd-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  padding: 110px 28px 38px;
  color: #fff;
  background: rgba(7, 21, 37, 0.98);
  overflow-x: hidden;
  overflow-y: auto;
}

body.menu-open .rd-mobile-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 28px;
}

.rd-menu-toggle:checked ~ .rd-mobile-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 28px;
}

.rd-mobile-panel nav {
  display: grid;
  align-content: start;
  gap: 0;
}

.rd-mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--rd-display);
  font-size: 34px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.rd-mobile-panel__contact {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.rd-mobile-panel__contact a {
  min-height: 52px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: var(--rd-body);
  font-size: 15px;
  font-weight: 800;
}

.rd-mobile-phone {
  color: #111;
  background: #fff;
}

.rd-mobile-quote {
  color: #fff;
  background: var(--rd-red);
}

.rd-mobile-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 120;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--rd-red);
  cursor: pointer;
}

.rd-mobile-close::before,
.rd-mobile-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.rd-mobile-close::before {
  transform: rotate(45deg);
}

.rd-mobile-close::after {
  transform: rotate(-45deg);
}

.rd-hero {
  position: relative;
  min-height: 810px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.rd-hero--home {
  min-height: 840px;
}

.rd-hero--contact {
  min-height: 790px;
  align-items: center;
}

.rd-hero__media {
  position: absolute;
  inset: 0;
}

.rd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.18));
}

.rd-hero--home .rd-hero__media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.31) 45%, rgba(0, 0, 0, 0.18));
}

.rd-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 160px 0 94px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(310px, 0.28fr);
  gap: 48px;
  align-items: end;
}

.rd-hero--interior .rd-hero__inner {
  grid-template-columns: minmax(0, 820px);
  padding-bottom: 86px;
}

.rd-hero--contact .rd-hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  align-items: center;
  padding-bottom: 58px;
}

.rd-eyebrow {
  margin: 0 0 22px;
  color: var(--rd-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.rd-hero h1,
.rd-serif {
  margin: 0;
  font-family: var(--rd-display);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.rd-hero h1 {
  max-width: 870px;
  color: #fff;
  font-size: clamp(74px, 7.2vw, 104px);
  line-height: 1.04;
}

.rd-hero--interior h1,
.rd-hero--contact h1 {
  font-size: clamp(68px, 6.2vw, 96px);
}

.rd-hero__side {
  max-width: 375px;
  align-self: end;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.rd-hero__side p,
.rd-hero__copy {
  margin: 0 0 28px;
  font-size: 19px;
  line-height: 1.55;
}

.rd-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #1d1d1d;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.rd-pill:hover {
  color: #fff;
  background: var(--rd-red);
}

.rd-pill--red {
  color: #fff;
  background: var(--rd-red);
}

.rd-pill--red:hover {
  color: #161616;
  background: #fff;
}

.rd-pill--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.rd-pill--outline:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.rd-section {
  position: relative;
  padding: 106px 0;
  background: #fff;
}

.rd-section--tight {
  padding: 76px 0;
}

.rd-section--cream {
  background: var(--rd-cream);
}

.rd-section--dark {
  color: #fff;
  background: var(--rd-charcoal);
}

.rd-section__inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.rd-story {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) 1px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.rd-story__line {
  width: 1px;
  min-height: 410px;
  background: var(--rd-red);
}

.rd-story h2,
.rd-section-title {
  margin: 0;
  font-family: var(--rd-display);
  font-size: clamp(50px, 5.3vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.2px;
}

.rd-story p,
.rd-rich p,
.rd-lead {
  color: #5d5b59;
  font-size: 18px;
  line-height: 1.66;
}

.rd-story__meta {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.rd-micro-stat {
  padding-top: 20px;
  border-top: 1px solid var(--rd-line);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

a.rd-micro-stat:hover {
  color: var(--rd-red);
  border-color: var(--rd-red);
  transform: translateY(-2px);
}

.rd-micro-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--rd-display);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.rd-micro-stat span {
  color: #6b6966;
  font-size: 14px;
  line-height: 1.45;
}

.rd-image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(310px, 0.64fr);
  min-height: 610px;
}

.rd-image-band__photo {
  min-height: 610px;
  background: #d7d4cf;
}

.rd-image-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-image-band__panel {
  display: grid;
  align-content: end;
  min-height: 610px;
  padding: 64px;
  color: #fff;
  background: var(--rd-red);
}

.rd-image-band__panel h2 {
  margin: 0 0 22px;
  font-family: var(--rd-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.02;
}

.rd-image-band__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.rd-dark-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.rd-dark-split p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
}

.rd-taxonomy-band {
  display: grid;
  gap: 34px;
}

.rd-taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rd-line);
  border: 1px solid var(--rd-line);
}

.rd-tax-card {
  position: relative;
  min-height: 315px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: #fff;
}

.rd-tax-card__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 240ms ease, transform 360ms ease;
}

.rd-tax-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-tax-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.66));
  opacity: 0;
  transition: opacity 240ms ease;
}

.rd-tax-card:hover .rd-tax-card__image {
  opacity: 1;
  transform: scale(1.045);
}

.rd-tax-card:hover::after {
  opacity: 1;
}

.rd-tax-card__body {
  position: relative;
  z-index: 1;
  min-height: 315px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 32px;
}

.rd-tax-card h3 {
  margin: 0;
  font-family: var(--rd-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.rd-tax-card p {
  margin: 0;
  color: #6b6966;
  font-size: 15px;
  line-height: 1.5;
  transition: color 180ms ease;
}

.rd-tax-card:hover h3,
.rd-tax-card:hover p {
  color: #fff;
}

.rd-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 34px 0 42px;
}

.rd-search {
  position: relative;
  max-width: 420px;
}

.rd-search input {
  width: 100%;
  min-height: 55px;
  padding: 0 24px;
  border: 1px solid var(--rd-line);
  border-radius: 999px;
  color: #333;
  background: #fff;
}

.rd-count-note {
  color: #77736e;
  font-size: 14px;
  text-align: right;
}

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

.rd-list-card {
  display: grid;
  grid-template-rows: 245px 1fr;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--rd-line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rd-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.rd-list-card__media {
  overflow: hidden;
  background: #dbd7d1;
}

.rd-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.rd-list-card:hover .rd-list-card__media img {
  transform: scale(1.045);
}

.rd-list-card__body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
}

.rd-list-card h2,
.rd-list-card h3 {
  margin: 0;
  font-family: var(--rd-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.06;
}

.rd-list-card p {
  margin: 0;
  color: #68645f;
  font-size: 15px;
  line-height: 1.52;
}

.rd-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 76px;
  align-items: start;
}

.rd-rich {
  max-width: 760px;
}

.rd-rich h2,
.rd-rich h3,
.rd-rich h4 {
  margin: 46px 0 16px;
  font-family: var(--rd-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
}

.rd-rich h3 {
  font-size: 34px;
}

.rd-rich ul,
.rd-rich ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding-left: 26px;
  color: #5d5b59;
}

.rd-rich li {
  padding-left: 6px;
}

.rd-rich a {
  color: var(--rd-red);
  font-weight: 800;
}

.rd-rich details {
  margin: 14px 0;
  border: 1px solid var(--rd-line);
  background: #fff;
}

.rd-rich summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--rd-ink);
  font-weight: 800;
}

.rd-rich details p {
  margin: 0;
  padding: 0 22px 20px;
}

.rd-side-panel {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 20px;
  padding: 32px;
  color: #fff;
  background: var(--rd-charcoal);
}

.rd-side-panel h2 {
  margin: 0;
  font-family: var(--rd-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
}

.rd-side-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.rd-side-links {
  display: grid;
  gap: 0;
  margin-top: 10px;
}

.rd-side-links a {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.rd-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rd-line);
  border: 1px solid var(--rd-line);
}

.rd-related a {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  background: #fff;
}

.rd-related strong {
  font-family: var(--rd-display);
  font-size: 29px;
  line-height: 1.08;
  font-weight: 400;
}

.rd-related span {
  color: #6b6966;
  font-size: 14px;
  line-height: 1.45;
}

.rd-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 58px;
  align-items: start;
}

.rd-contact-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.rd-contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
}

.rd-contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--rd-red);
  font-weight: 900;
}

.rd-contact-item strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.rd-form {
  padding: 42px;
  border-radius: 32px;
  background: rgba(245, 244, 241, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.rd-form h2 {
  margin: 0 0 22px;
  color: #111;
  font-family: var(--rd-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
}

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

.rd-form label {
  display: grid;
  gap: 7px;
  color: #54514c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rd-form label.full {
  grid-column: 1 / -1;
}

.rd-form input,
.rd-form select,
.rd-form textarea {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #111;
  background: #fff;
  outline: none;
}

.rd-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 23px) 23px, calc(100% - 16px) 23px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.rd-form textarea {
  min-height: 132px;
  padding-top: 18px;
  border-radius: 28px;
  resize: vertical;
}

.rd-form button {
  justify-self: start;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-weight: 800;
  cursor: pointer;
}

.rd-touch-section {
  min-height: 430px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--rd-line);
}

.rd-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.rd-footer__media {
  position: absolute;
  inset: 0;
}

.rd-footer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.rd-footer__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.rd-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 98px 0 54px;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 68px;
  align-items: start;
}

.rd-footer h2 {
  margin: 30px 0 24px;
  font-family: var(--rd-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
}

.rd-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.rd-footer__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rd-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 42px;
}

.rd-footer__columns h3 {
  margin: 0 0 18px;
  color: var(--rd-red);
  font-size: 12px;
  text-transform: uppercase;
}

.rd-footer__columns nav,
.rd-footer__columns div {
  display: grid;
  gap: 10px;
}

.rd-footer__columns a,
.rd-footer__columns span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.rd-footer-map {
  width: min(100%, 520px);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rd-footer-map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
}

.rd-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.rd-hidden-desktop {
  display: none;
}

.rd-final-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.rd-final-cta__media {
  position: absolute;
  inset: 0;
}

.rd-final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
}

.rd-final-cta__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.32));
}

.rd-final-cta__inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  padding: 96px 0;
}

.rd-final-cta h2 {
  margin: 0;
  font-family: var(--rd-display);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 400;
  line-height: 1.02;
}

.rd-final-cta p:not(.rd-eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
}

.rd-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .rd-header__inner {
    width: min(100% - 40px, 1180px);
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .rd-nav,
  .rd-header__contact {
    display: none;
  }

  .rd-menu-button {
    display: block;
    justify-self: end;
    color: #fff;
    background: var(--rd-red);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .rd-hero__inner,
  .rd-hero--contact .rd-hero__inner,
  .rd-contact-grid,
  .rd-detail-grid,
  .rd-dark-split,
  .rd-story,
  .rd-footer__inner {
    grid-template-columns: 1fr;
  }

  .rd-story__line {
    display: none;
  }

  .rd-listing,
  .rd-taxonomy-grid,
  .rd-related,
  .rd-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-side-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .rd-header {
    height: 76px;
  }

  .rd-header__inner,
  .rd-section__inner,
  .rd-footer__inner,
  .rd-footer__bottom,
  .rd-hero__inner {
    width: calc(100% - 38px);
  }

  .rd-logo {
    min-width: 0;
  }

  .rd-logo__mark {
    width: 48px;
    height: 48px;
    font-size: 40px;
  }

  .rd-logo__copy span {
    display: none;
  }

  .rd-logo__copy strong {
    font-size: 29px;
  }

  .rd-hero,
  .rd-hero--home,
  .rd-hero--contact {
    min-height: 720px;
  }

  .rd-hero__inner,
  .rd-hero--interior .rd-hero__inner,
  .rd-hero--contact .rd-hero__inner {
    padding: 126px 0 62px;
    gap: 28px;
  }

  .rd-hero h1,
  .rd-hero--interior h1,
  .rd-hero--contact h1 {
    font-size: clamp(48px, 14vw, 61px);
    line-height: 1.04;
  }

  .rd-hero__side {
    max-width: none;
  }

  .rd-hero__side p,
  .rd-hero__copy {
    font-size: 16px;
  }

  .rd-section {
    padding: 72px 0;
  }

  .rd-story h2,
  .rd-section-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .rd-story__meta,
  .rd-form form,
  .rd-listing,
  .rd-taxonomy-grid,
  .rd-related,
  .rd-footer__columns,
  .rd-search-row,
  .rd-image-band {
    grid-template-columns: 1fr;
  }

  .rd-count-note {
    text-align: left;
  }

  .rd-tax-card,
  .rd-tax-card__body {
    min-height: 260px;
  }

  .rd-list-card {
    grid-template-rows: 218px 1fr;
  }

  .rd-detail-grid {
    gap: 42px;
  }

  .rd-rich h2,
  .rd-rich h3,
  .rd-rich h4 {
    font-size: 34px;
  }

  .rd-form {
    padding: 28px;
    border-radius: 24px;
  }

  .rd-form h2 {
    font-size: 38px;
  }

  .rd-contact-grid {
    gap: 32px;
  }

  .rd-image-band__photo,
  .rd-image-band__panel {
    min-height: 360px;
  }

  .rd-image-band__panel {
    padding: 38px 28px;
  }

  .rd-image-band__panel h2 {
    font-size: 42px;
  }

  .rd-footer__inner {
    gap: 46px;
    padding-top: 72px;
  }

  .rd-final-cta {
    min-height: 520px;
  }

  .rd-final-cta__inner {
    width: calc(100% - 38px);
    padding: 76px 0;
  }

  .rd-final-cta h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .rd-hidden-mobile {
    display: none;
  }

  .rd-hidden-desktop {
    display: block;
  }
}


/* Internal "Explore More" related-links section (generated deep pages) */
.internal-links {
  margin: 48px auto;
  max-width: 1180px;
  padding: 0 22px;
}

.internal-links h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 16px;
}

.internal-links ul {
  display: grid;
  gap: 8px 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links a {
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
}

.internal-links a:hover {
  text-decoration: underline;
}

/* === BRAND-LOGO-IMG (white+red 2-tone logo on dark header & footer) === */
.rd-logo {
  gap: 0;
}
.brand-logo.rd-logo__img {
  height: 32px;
  width: auto;
  max-width: 300px;
  display: block;
}
@media (max-width: 760px) {
  .brand-logo.rd-logo__img {
    height: 27px;
  }
}
