:root {
  --ink: #07080a;
  --ink-soft: #111317;
  --graphite: #1b1e23;
  --steel: #aeb4bc;
  --silver: #d6d9de;
  --silver-bright: #f4f5f7;
  --paper: #f4f4f2;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(10, 12, 15, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-soft);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  fill: currentColor;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 8, 10, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: #0b0c0e;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.035);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.main-nav a {
  position: relative;
  color: #e8eaed;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--silver);
  transition: right 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.nav-cta {
  padding: 10px 17px;
  color: var(--ink) !important;
  background: var(--silver-bright);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 42%, rgba(198, 203, 211, 0.10), transparent 30%),
    linear-gradient(128deg, #07080a 0%, #0d0f12 56%, #16191e 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image: linear-gradient(120deg, transparent 0 46%, rgba(255,255,255,.04) 46% 46.2%, transparent 46.2% 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 80%, transparent);
}

.hero-light {
  position: absolute;
  z-index: -1;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  background: var(--silver-bright);
}

.hero-light-one {
  top: 6%;
  right: 4%;
}

.hero-light-two {
  bottom: -15%;
  left: -12%;
  width: 500px;
  height: 500px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 105px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #d8dce2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.eyebrow.dark {
  color: #5d626a;
}

.hero h1,
.section-heading h2,
.profile-copy h2,
.banner-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 5.3rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero h1 strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--silver-bright);
  font-weight: 700;
}

.hero-summary {
  max-width: 590px;
  margin: 30px 0 0;
  color: #bdc1c7;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f4f5f7, #bfc4cb);
  box-shadow: 0 14px 35px rgba(196, 202, 211, 0.17);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(196, 202, 211, 0.27);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.035);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.09);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-contact-strip a {
  min-width: min(100%, 240px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dde0e4;
  text-decoration: none;
}

.hero-contact-strip small {
  display: block;
  margin-bottom: 2px;
  color: #858b94;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.logo-halo {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
}

.logo-halo::before,
.logo-halo::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
}

.logo-halo::after {
  inset: 58px;
}

.logo-frame {
  position: relative;
  width: min(410px, 85vw);
  aspect-ratio: 1;
  padding: 18px;
  overflow: hidden;
  background: #08090b;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  box-shadow:
    0 45px 80px rgba(0, 0, 0, 0.48),
    inset 0 0 0 8px rgba(255, 255, 255, 0.025);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-badge {
  position: absolute;
  right: -8px;
  bottom: 48px;
  min-width: 145px;
  padding: 16px 19px;
  background: rgba(9, 10, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-badge span,
.hero-badge small {
  display: block;
}

.hero-badge span {
  color: var(--silver-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-badge small {
  margin-top: 2px;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #858b93;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 27px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--white);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  to { transform: translateY(200%); }
}

.section {
  padding: clamp(80px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 21px 0 0;
  color: #656a71;
  font-size: 1.03rem;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(0,0,0,.05), transparent 23%),
    var(--paper);
}

.services::after {
  content: "R&R";
  position: absolute;
  right: -25px;
  top: 55px;
  z-index: 0;
  color: rgba(15, 17, 20, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 19vw, 17rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

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

.service-card {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(145deg, #101216, #1a1d22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.20);
}

.service-card:hover::before {
  transform: scale(1.12);
}

.service-number {
  position: absolute;
  top: 22px;
  left: 25px;
  color: #686e77;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: #d4d8de;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 15px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  max-width: 280px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.2;
}

.service-card-wide {
  grid-column: span 3;
  min-height: 190px;
}

.legal-banner {
  padding: 36px 0;
  color: var(--white);
  background: linear-gradient(120deg, #090a0c, #181b20);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.banner-mark {
  width: 104px;
  height: 104px;
  padding: 5px;
  overflow: hidden;
  background: #0b0c0e;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.banner-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.banner-copy p {
  margin: 0 0 7px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.banner-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.1;
}

.profile {
  background: var(--white);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.profile-visual {
  position: relative;
}

.profile-visual::before {
  content: "";
  position: absolute;
  inset: 28px -24px -28px 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.profile-panel {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1.06;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 58px);
  overflow: hidden;
  background: linear-gradient(145deg, #090a0c, #1a1d22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile-panel::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.profile-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.profile-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.8vw, 4.75rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.profile-copy h2 strong {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
}

.profile-rule {
  width: 74px;
  height: 2px;
  margin: 31px 0 26px;
  background: var(--ink);
}

.profile-brand {
  margin: 0 0 26px;
  color: #555a61;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.location {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.07), transparent 25%),
    #0b0d10;
}

.location::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -250px;
  right: -170px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
}

.section-heading.light h2 {
  color: var(--white);
}

.location-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.location-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, #f2f3f5, #b8bec7);
  border-radius: 22px;
}

.location-icon svg {
  width: 38px;
  height: 38px;
}

.location-kicker {
  margin: 0 0 10px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location address {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-style: normal;
  line-height: 1.24;
}

.contact {
  background: #ececea;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
}

.contact-primary {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4.5vw, 48px);
  color: var(--white);
  background: linear-gradient(145deg, #0b0d10, #191c21);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-logo {
  width: 132px;
  height: 132px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.contact-label {
  margin: 0 0 8px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-email {
  display: block;
  margin-bottom: 23px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.25vw, 1.75rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.phone-card {
  min-height: 200px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 16px;
  padding: 25px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(10,12,15,.07);
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.phone-card:hover {
  transform: translateY(-5px);
  background: #f8f8f7;
  box-shadow: 0 22px 42px rgba(0,0,0,.10);
}

.phone-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.phone-icon svg {
  width: 21px;
  height: 21px;
}

.phone-card small,
.phone-card strong {
  display: block;
}

.phone-card small {
  margin-bottom: 3px;
  color: #777c83;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-card strong {
  font-size: clamp(1rem, 1.75vw, 1.25rem);
}

.phone-arrow {
  align-self: start;
  color: #8b9097;
  font-size: 1.2rem;
}

.site-footer {
  padding: 32px 0;
  color: #d7dade;
  background: #07080a;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.footer-brand span {
  margin-top: 4px;
  color: #8f949c;
  font-size: 0.76rem;
}

.footer-contact {
  color: #969ba3;
  font-size: 0.8rem;
}

.footer-contact a {
  color: #d9dce1;
  text-decoration: none;
}

.footer-contact p {
  margin: 7px 0 0;
}

.back-to-top {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--silver-bright);
  border-radius: 50%;
  font-size: 1.25rem;
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px;
    background: rgba(7, 8, 10, 0.985);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: -22px 30px 60px rgba(0,0,0,.38);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--header-height) + 82px);
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 400px;
  }

  .eyebrow,
  .hero-actions,
  .hero-contact-strip {
    justify-content: center;
  }

  .hero-summary {
    margin-inline: auto;
  }

  .hero-contact-strip {
    text-align: left;
  }

  .logo-frame {
    width: min(330px, 78vw);
  }

  .logo-halo {
    width: 370px;
    height: 370px;
  }

  .hero-badge {
    right: 12%;
    bottom: 20px;
  }

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

  .service-card-wide {
    grid-column: span 2;
  }

  .profile-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    max-width: 570px;
    margin-inline: auto;
  }

  .contact-primary {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-text small {
    display: none;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero-layout {
    gap: 26px;
    padding-bottom: 94px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .logo-frame {
    width: min(270px, 76vw);
    padding: 12px;
  }

  .logo-frame::after {
    inset: 12px;
  }

  .logo-halo {
    width: 300px;
    height: 300px;
  }

  .hero-badge {
    right: 1%;
    bottom: 6px;
    min-width: 120px;
    padding: 12px 15px;
  }

  .hero-badge span {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-contact-strip {
    display: grid;
    justify-content: stretch;
  }

  .hero-contact-strip a {
    min-width: 0;
    font-size: 0.89rem;
  }

  .scroll-cue span {
    display: none;
  }

  .services-grid,
  .phone-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .legal-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-mark {
    margin-inline: auto;
  }

  .legal-banner .button {
    width: 100%;
  }

  .profile-visual::before {
    inset: 16px -10px -16px 14px;
  }

  .profile-copy {
    padding-top: 16px;
  }

  .location-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-icon {
    margin-inline: auto;
  }

  .contact-primary {
    min-height: 390px;
  }

  .phone-card {
    min-height: 150px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 430px) {
  .brand-text strong {
    font-size: 0.96rem;
  }

  .hero-visual {
    min-height: 290px;
  }

  .logo-frame {
    width: 238px;
  }

  .logo-halo {
    width: 260px;
    height: 260px;
  }

  .hero-badge {
    right: -3px;
  }

  .section {
    padding-block: 76px;
  }

  .service-card {
    min-height: 210px;
  }

  .footer-brand span {
    display: none;
  }
}
