:root {
  --bone: #dcd9c2;
  --bone-hover: #e9e4cb;
  --brand: #615d47;
  --brand-dark: #4c4936;
  --brand-light: #dcd9c2;
  --brand-soft: #ebe9dd;
  --sage: #edf2e8;
  --sage-line: #dde5d5;
  --tint: #f2f4f5;
  --tint-2: #e7eaec;
  --ink: #14171a;
  --ink-soft: #1f2429;
  --text: #2c3237;
  --muted: #5f6b72;
  --line: #dfe3e6;
  --nav-h: 76px;
  --topbar-h: 38px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: #ffffff;
  overflow-x: clip;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.14;
  color: var(--ink);
  overflow-wrap: break-word;
}

p {
  overflow-wrap: anywhere;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--ink);
  color: #ffffff;
  padding: 12px 18px;
}

.skip-link:focus {
  left: 0;
}

.tag {
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0.85rem 1.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--brand {
  background: var(--bone);
  color: var(--ink);
}

.btn--brand:hover {
  background: var(--bone-hover);
  transform: translate(0, -2px);
  box-shadow: 0 12px 28px rgba(20, 23, 26, 0.3);
}

.btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translate(0, -2px);
}

.btn--dark {
  background: var(--ink);
  color: #ffffff;
}

.btn--dark:hover {
  background: var(--ink-soft);
  transform: translate(0, -2px);
}

.btn--line {
  color: var(--ink);
  border-color: var(--line);
}

.btn--line:hover {
  border-color: var(--ink);
  transform: translate(0, -2px);
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: var(--topbar-h);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar-inner {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
}

.topbar a:hover {
  color: #ffffff;
}

.topbar svg {
  color: var(--brand-light);
  flex: 0 0 auto;
}

.nav {
  position: fixed;
  top: var(--topbar-h);
  right: 0;
  left: 0;
  z-index: 90;
  background: rgba(20, 23, 26, 0.55);
  backdrop-filter: blur(12px);
  transition: background-color 0.4s ease, top 0.4s ease;
}

.nav.scrolled {
  background: rgba(20, 23, 26, 0.96);
}

.nav-inner {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 42px;
  transition: height 0.3s ease;
}

.nav.scrolled .logo img {
  height: 36px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.nav-phone svg {
  color: var(--brand-light);
  flex: 0 0 auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background: var(--bone-hover);
  transform: translate(0, -1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nav-icon-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 26px 24px 34px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-top {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-top img {
  width: auto;
  height: 38px;
}

.mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.mobile-links {
  flex: 1 1 auto;
  overflow-y: auto;
  list-style: none;
  padding-top: 12px;
}

.mobile-links li {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile-links a {
  display: block;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
}

.mobile-foot {
  flex: 0 0 auto;
  display: grid;
  gap: 11px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-foot .btn {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(100vh, 820px);
  padding-top: calc(var(--nav-h) + var(--topbar-h) + 3rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
  text-align: center;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 68%;
}

.hero-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(11, 14, 16, 0.74) 0%, rgba(11, 14, 16, 0.46) 42%, rgba(11, 14, 16, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  color: #ffffff;
}

.hero-sub {
  max-width: 40rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
}

.section {
  padding-top: clamp(3.6rem, 7vw, 6rem);
  padding-bottom: clamp(3.6rem, 7vw, 6rem);
  background: #ffffff;
}

.section--tint {
  background: var(--tint);
}

.section--dark {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.section-head {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.4rem, 4.5vw, 3.4rem);
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 3.8rem);
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.split-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.split-text h2 + p {
  margin-top: 1.3rem;
}

.split-text p {
  color: var(--muted);
}

.split-text p + p {
  margin-top: 1rem;
}

.factbox {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2rem;
}

.factbox div {
  padding: 1.1rem 0.9rem;
  border-radius: 12px;
  background: var(--tint);
  text-align: center;
}

.factbox strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand-dark);
}

.factbox span {
  display: block;
  margin-top: 3px;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--muted);
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

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

.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20, 23, 26, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translate(0, -4px);
  box-shadow: 0 18px 40px rgba(20, 23, 26, 0.13);
}

.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pos-38 {
  object-position: 50% 38%;
}

.pos-46 {
  object-position: 50% 46%;
}

.pos-58 {
  object-position: 50% 58%;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.3rem 1.4rem 1.6rem 1.4rem;
}

.card-body h3 {
  font-size: 1.25rem;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.card-list {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 7px;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.card-list svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--brand);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card:hover .card-link svg {
  transform: translate(4px, 0);
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin-top: 2.6rem;
  background: var(--sage-line);
  border: 1px solid var(--sage-line);
  border-radius: 14px;
  overflow: hidden;
}

.steps li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 1.3rem 1.5rem;
  background: var(--sage);
  list-style: none;
  font-size: 0.96rem;
  color: var(--ink);
}

.steps svg {
  flex: 0 0 auto;
  margin-top: 5px;
  color: #4e6b45;
}

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

.why-card {
  padding: 1.9rem 1.6rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translate(0, -4px);
  box-shadow: 0 16px 36px rgba(20, 23, 26, 0.1);
}

.why-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.why-card h3 {
  margin-top: 1.1rem;
  font-size: 1.2rem;
}

.why-card p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.quote-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.quote-ico {
  display: block;
  color: var(--brand);
}

.quote-text p {
  margin-top: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}

.total-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.total-side h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.total-side h2 + p {
  margin-top: 1.2rem;
  color: var(--muted);
}

.total-media {
  margin-top: 2rem;
}

.total-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.quote-cite {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.total-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.total-lead h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.total-lead p {
  margin-top: 1rem;
  color: var(--muted);
}

.band-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.band-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

.band-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(11, 14, 16, 0.88) 0%, rgba(11, 14, 16, 0.74) 100%);
}

.band-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(3.6rem, 7vw, 5.6rem);
  padding-bottom: clamp(3.6rem, 7vw, 5.6rem);
  text-align: center;
}

.band-inner .tag {
  color: var(--brand-light);
}

.band-inner h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: #ffffff;
}

.band-inner p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-side h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.contact-side > p {
  margin-top: 1.1rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-text strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-text a,
.contact-text span {
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-text a:hover {
  color: var(--brand);
}

.contact-photo {
  margin-top: 1.8rem;
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 16px 44px rgba(20, 23, 26, 0.08);
}

.form-card h3 {
  font-size: 1.5rem;
}

.form-card > p {
  margin-top: 0.5rem;
  font-size: 0.93rem;
  color: var(--muted);
}

#contact-form {
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 15px;
  margin-top: 1.6rem;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--tint);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.field textarea {
  min-height: 122px;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #646f76;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #ffffff;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 15px;
}

#contact-form button[type="submit"] {
  width: 100%;
  margin-top: 5px;
  background: var(--ink);
  color: #ffffff;
}

#contact-form button[type="submit"]:hover {
  background: var(--ink-soft);
}

.ms-recaptcha-notice {
  text-align: center;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding-top: clamp(3.4rem, 6vw, 5.4rem);
  padding-bottom: 26px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: #ffffff;
}

.footer-cta p {
  margin-top: 0.7rem;
  max-width: 46ch;
  font-size: 0.97rem;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
}

.footer-brand img {
  width: auto;
  height: 58px;
}

.footer-brand p {
  margin-top: 1.3rem;
  max-width: 34ch;
  font-size: 0.93rem;
}

.footer-person {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-person strong {
  display: block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-person span {
  display: block;
  margin-top: 5px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #ffffff;
}

.footer-person a {
  display: inline-block;
  margin-top: 3px;
  font-size: 0.95rem;
  color: var(--brand-light);
}

.footer-person a:hover {
  color: #ffffff;
}

.footer-col h4 {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  margin-top: 0.9rem;
}

.footer-col li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col a,
.footer-col span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col svg {
  color: var(--brand-light);
  flex: 0 0 auto;
}

.footer-base {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
  .nav-links a {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle,
  .nav-icon-call {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .split,
  .contact-grid,
  .total-grid,
  .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    margin-top: 0;
  }

  .quote-media {
    order: -1;
  }

  .split-media {
    order: -1;
  }

  .split-media img {
    aspect-ratio: 4 / 3;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-cta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar .topbar-tag {
    display: none;
  }

  .topbar-inner {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav-inner,
  .topbar-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: min(100vh, 660px);
    padding-top: calc(var(--nav-h) + var(--topbar-h) + 2rem);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.4vw, 2.9rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

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

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .footer-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .nav-inner {
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .logo img {
    height: 34px;
  }
}

@media (max-height: 640px) {
  .mobile-menu {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .mobile-top {
    padding-bottom: 14px;
  }

  .mobile-top img {
    height: 32px;
  }

  .mobile-links a {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.3rem;
  }

  .mobile-foot {
    padding-top: 14px;
  }

  .mobile-foot .btn {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}
