:root {
  --navy-950: #04172f;
  --navy-900: #08254c;
  --navy-800: #0b3264;
  --navy-700: #174878;
  --gold-500: #c99a3e;
  --gold-400: #ddb65f;
  --gold-300: #ecd28f;
  --ivory-100: #fdfbf6;
  --ivory-200: #f8f2e7;
  --ivory-300: #eee4d4;
  --ink: #17243a;
  --muted: #627084;
  --white: #ffffff;
  --radius-sm: 0.85rem;
  --radius-md: 1.35rem;
  --radius-lg: 2rem;
  --shadow-sm: 0 12px 30px rgba(8, 37, 76, 0.08);
  --shadow-lg: 0 25px 70px rgba(8, 37, 76, 0.16);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  overflow-x: hidden;
  background: var(--ivory-100);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.45rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.announcement-bar {
  position: relative;
  z-index: 1031;
  padding: 0.45rem 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.announcement-bar i {
  color: var(--gold-400);
  margin-right: 0.35rem;
}

.announcement-divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.25);
}

.navbar {
  z-index: 1030;
  min-height: 5rem;
  border-bottom: 1px solid rgba(8, 37, 76, 0.07);
  background: rgba(253, 251, 246, 0.94);
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(8, 37, 76, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(201, 154, 62, 0.58);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 3px var(--navy-900), inset 0 0 0 4px rgba(201, 154, 62, 0.25);
}

.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-script {
  color: var(--navy-900);
  font-family: "Parisienne", cursive;
  font-size: 1.6rem;
}

.brand-subtitle {
  margin-top: 0.15rem;
  color: var(--navy-900);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar .nav-link {
  position: relative;
  padding: 0.65rem 0.65rem !important;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 600;
}

.navbar .nav-link::after {
  position: absolute;
  right: 0.65rem;
  bottom: 0.35rem;
  left: 0.65rem;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  color: var(--navy-900);
  box-shadow: none !important;
}

.btn {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.btn-gold {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(201, 154, 62, 0.2);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  border-color: var(--gold-400);
  background: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(201, 154, 62, 0.3);
}

.btn-outline-navy {
  border: 1px solid rgba(8, 37, 76, 0.32);
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy-900);
}

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

.nav-cta {
  min-height: 2.8rem;
  padding-inline: 1.15rem;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(4.5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 4% 0%, rgba(221, 182, 95, 0.16), transparent 28rem),
    linear-gradient(150deg, #fffdf9 0%, var(--ivory-200) 100%);
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -15rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(201, 154, 62, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 10%;
  right: 45%;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(201, 154, 62, 0.14);
}

.hero-glow-two {
  bottom: 5%;
  left: 2%;
  width: 5rem;
  height: 5rem;
  background: rgba(201, 154, 62, 0.09);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(201, 154, 62, 0.13);
}

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

.hero h1 {
  max-width: 44rem;
  margin-bottom: 1.5rem;
  color: var(--navy-900);
  font-size: clamp(3.2rem, 6.7vw, 6.2rem);
  line-height: 0.97;
}

.hero h1 span {
  color: var(--gold-500);
  font-family: "Parisienne", cursive;
  font-size: 1.06em;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: #4c5b70;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions .btn-lg,
.options-section .btn-lg {
  min-height: 3.65rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.98rem;
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.7rem;
  margin-top: 1.8rem;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-locations > i {
  color: var(--gold-500);
  font-size: 1rem;
}

.location-dot {
  color: var(--gold-500);
}

.hero-visual {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
  padding: 0 1rem 1.7rem 1.7rem;
}

.hero-visual::before {
  position: absolute;
  top: -1.3rem;
  right: -0.2rem;
  width: 72%;
  height: 80%;
  border: 1px solid rgba(201, 154, 62, 0.48);
  border-radius: 46% 46% 1.75rem 1.75rem;
  content: "";
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 35rem;
  border-radius: 48% 48% 1.75rem 1.75rem;
  background: var(--ivory-300);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(4, 23, 47, 0.18));
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
  object-position: 63% center;
}

.commission-badge {
  position: absolute;
  top: 1.5rem;
  right: -1.3rem;
  z-index: 2;
  display: flex;
  width: 8.2rem;
  height: 8.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 182, 95, 0.75);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  box-shadow: inset 0 0 0 5px var(--navy-900), inset 0 0 0 6px rgba(221, 182, 95, 0.55), 0 14px 32px rgba(4, 23, 47, 0.25);
  font-size: 0.63rem;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.commission-badge > i {
  margin-bottom: 0.3rem;
  color: var(--gold-400);
  font-size: 1.25rem;
}

.commission-badge strong {
  display: block;
  color: var(--gold-300);
  font-size: 0.8rem;
}

.hero-note {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  min-width: 16.5rem;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(201, 154, 62, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.note-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 1.2rem;
}

.hero-note strong,
.hero-note small {
  display: block;
}

.hero-note strong {
  color: var(--navy-900);
  font-size: 0.86rem;
}

.hero-note small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.73rem;
}

.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--navy-900);
  color: var(--white);
}

.trust-item {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  color: var(--gold-400);
  font-size: 1.4rem;
}

.trust-item span {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.72rem;
}

.trust-item strong {
  color: var(--white);
  font-size: 0.9rem;
}

.section-pad {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.section-intro {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.reference-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.reference-note i {
  color: var(--gold-500);
}

.services-section {
  background: var(--ivory-100);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2.15rem;
  border: 1px solid rgba(8, 37, 76, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(8, 37, 76, 0.045);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(201, 154, 62, 0.18);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(201, 154, 62, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1.6rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--ivory-200);
  color: var(--gold-500);
  font-size: 1.45rem;
}

.service-card p {
  min-height: 5.2rem;
  margin: 0.85rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-link {
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-link i {
  margin-left: 0.3rem;
  color: var(--gold-500);
}

.document-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(201, 154, 62, 0.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--ivory-200), #fff);
}

.document-panel::before {
  position: absolute;
  top: -8rem;
  left: -6rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(201, 154, 62, 0.17);
  border-radius: 50%;
  content: "";
}

.document-panel h3 {
  font-size: clamp(1.8rem, 3.3vw, 2.55rem);
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.5rem;
}

.document-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #3d4d63;
  font-size: 0.92rem;
  font-weight: 600;
}

.document-list i {
  color: var(--gold-500);
}

.options-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.76);
}

.options-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 55%);
}

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

.options-section > .container > .row > div:first-child > p {
  max-width: 31rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.02rem;
}

.options-orb {
  position: absolute;
  border: 1px solid rgba(221, 182, 95, 0.15);
  border-radius: 50%;
}

.options-orb-one {
  top: -12rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
}

.options-orb-two {
  bottom: -7rem;
  left: 30%;
  width: 13rem;
  height: 13rem;
}

.option-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.option-cta > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.option-card {
  display: flex;
  min-height: 9.7rem;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.option-card:hover {
  border-color: rgba(221, 182, 95, 0.38);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.option-card > i:first-child {
  flex: 0 0 auto;
  color: var(--gold-400);
  font-size: 1.45rem;
}

.option-card h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.option-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.55;
}

.option-card-wide {
  min-height: auto;
  align-items: center;
}

.option-card-wide > div {
  flex: 1;
}

.option-card-wide > a {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
}

.area-section {
  background: var(--ivory-200);
}

.area-map {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  border: 1px solid rgba(8, 37, 76, 0.1);
  border-radius: var(--radius-lg);
  background: #ece6d9;
  box-shadow: var(--shadow-sm);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(8, 37, 76, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 37, 76, 0.075) 1px, transparent 1px);
  background-size: 45px 45px;
  transform: rotate(-8deg) scale(1.2);
}

.map-road {
  position: absolute;
  height: 1rem;
  border-top: 2px solid rgba(201, 154, 62, 0.48);
  border-bottom: 2px solid rgba(201, 154, 62, 0.48);
  border-radius: 50%;
}

.map-road-one {
  top: 47%;
  left: -15%;
  width: 135%;
  transform: rotate(-18deg);
}

.map-road-two {
  top: 43%;
  left: 15%;
  width: 80%;
  transform: rotate(68deg);
}

.area-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.91);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(8, 37, 76, 0.12);
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.area-pin span {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 154, 62, 0.25);
}

.pin-one {
  top: 18%;
  left: 19%;
}

.pin-two {
  top: 56%;
  left: 12%;
}

.pin-three {
  top: 67%;
  right: 10%;
}

.map-center-mark {
  position: absolute;
  top: 42%;
  left: 54%;
  z-index: 3;
  display: flex;
  width: 8.8rem;
  height: 8.8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 182, 95, 0.6);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 35px rgba(8, 37, 76, 0.22);
  transform: translate(-50%, -50%);
}

.map-center-mark i {
  margin-bottom: 0.2rem;
  color: var(--gold-400);
  font-size: 1.65rem;
}

.map-center-mark span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-900);
  font-weight: 700;
}

.area-list i {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 154, 62, 0.16);
  color: var(--gold-500);
}

.area-note {
  display: flex;
  max-width: 34rem;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem;
  border-left: 3px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.84rem;
}

.area-note i {
  color: var(--gold-500);
}

.process-section {
  background: var(--white);
}

.process-row {
  position: relative;
}

.process-row::before {
  position: absolute;
  top: 3.7rem;
  right: 17%;
  left: 17%;
  border-top: 1px dashed rgba(201, 154, 62, 0.5);
  content: "";
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem 0;
  text-align: center;
}

.process-number {
  position: absolute;
  top: 0.2rem;
  left: calc(50% + 2.6rem);
  color: rgba(201, 154, 62, 0.55);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-icon {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.5rem;
  place-items: center;
  border: 1px solid rgba(201, 154, 62, 0.33);
  border-radius: 50%;
  background: var(--ivory-100);
  color: var(--gold-500);
  box-shadow: inset 0 0 0 7px var(--white), var(--shadow-sm);
  font-size: 1.5rem;
}

.process-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.process-card p {
  max-width: 19rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonials-section {
  background: var(--ivory-200);
}

.testimonial-card {
  margin: 0;
  padding: clamp(1.8rem, 4vw, 2.7rem);
  border: 1px solid rgba(8, 37, 76, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(8, 37, 76, 0.05);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.quote-mark {
  height: 3.2rem;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.testimonial-card blockquote {
  margin-bottom: 1.7rem;
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.client-initials {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 700;
}

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

.testimonial-card figcaption strong {
  color: var(--navy-900);
  font-size: 0.87rem;
}

.testimonial-card figcaption small {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-section {
  padding: 0 0 clamp(5rem, 10vw, 8rem);
  background: var(--ivory-200);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(221, 182, 95, 0.14), transparent 35%);
  content: "";
}

.contact-panel h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.contact-panel p {
  margin-top: 1.2rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-seal {
  position: absolute;
  bottom: -8rem;
  left: 35%;
  display: grid;
  width: 20rem;
  height: 20rem;
  place-items: center;
  border: 1px solid rgba(221, 182, 95, 0.12);
  border-radius: 50%;
  color: rgba(221, 182, 95, 0.05);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 10rem;
}

.contact-seal::after {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(221, 182, 95, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-action {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

button.contact-action {
  font: inherit;
}

.contact-action:hover,
.contact-action:focus-visible,
.contact-action.is-copied {
  border-color: rgba(221, 182, 95, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateX(4px);
}

.contact-action-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--gold-500);
  color: var(--navy-950);
}

.contact-action > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.contact-action small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  line-height: 1.3;
}

.contact-action strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.contact-action > i:last-child {
  color: var(--gold-400);
}

.site-footer {
  padding: 3rem 0 6rem;
  background: var(--ivory-100);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-brand .brand-script,
.footer-brand .brand-subtitle {
  color: var(--navy-900);
}

.site-footer a:hover {
  color: var(--gold-500);
}

.footer-area i {
  margin-right: 0.35rem;
  color: var(--gold-500);
}

.footer-separator {
  margin-inline: 0.35rem;
  color: var(--gold-500);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(8, 37, 76, 0.09);
  color: #7d8797;
  font-size: 0.68rem;
}

.footer-legal-links {
  display: inline-flex;
  gap: 1rem;
}

.footer-legal-links a {
  color: var(--navy-700);
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: 0 !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 62, 0.12), transparent 28rem),
    var(--ivory-100);
}

.legal-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(8, 37, 76, 0.09);
  background: rgba(253, 251, 246, 0.94);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-800);
  font-size: 0.83rem;
  font-weight: 700;
}

.legal-back:hover {
  color: var(--gold-500);
}

.legal-main {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.legal-card {
  max-width: 50rem;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(8, 37, 76, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-kicker {
  margin-bottom: 0.7rem;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.legal-updated {
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-card h2 {
  margin: 2rem 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.legal-card p,
.legal-card li {
  color: #526176;
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-card ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.legal-contact {
  margin-top: 2.25rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory-200);
}

.legal-contact strong {
  color: var(--navy-900);
}

.legal-footer {
  padding: 0 0 2.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 575.98px) {
  .legal-header .brand-subtitle {
    letter-spacing: 0.08em;
  }

  .legal-card {
    border-radius: var(--radius-md);
  }
}

.mobile-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.6rem;
  border-top: 1px solid rgba(8, 37, 76, 0.11);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(8, 37, 76, 0.1);
  backdrop-filter: blur(14px);
}

.mobile-contact-bar a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 100px;
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 700;
}

.mobile-contact-bar a:last-child {
  background: var(--gold-500);
  color: var(--navy-950);
}

@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding-inline: 0.45rem !important;
    font-size: 0.79rem;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 30rem;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 5.75rem;
  }

  section[id] {
    scroll-margin-top: 5.75rem;
  }

  body {
    padding-bottom: 4.1rem;
  }

  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 1rem 0 1.3rem;
    border-top: 1px solid rgba(8, 37, 76, 0.08);
  }

  .navbar .nav-link {
    padding: 0.65rem 0 !important;
    font-size: 0.95rem;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-locations {
    justify-content: center;
  }

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

  .hero-visual {
    max-width: 39rem;
    margin-top: 1rem;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .process-row::before {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 28rem;
  }

  .commission-badge {
    right: -0.3rem;
    width: 7.2rem;
    height: 7.2rem;
  }

  .document-list,
  .area-list {
    grid-template-columns: 1fr;
  }

  .service-card p {
    min-height: auto;
  }

  .process-card {
    padding-bottom: 1.5rem;
  }

  .area-map {
    min-height: 26rem;
  }

  .contact-section .container {
    max-width: none;
    padding-inline: 0;
  }

  .contact-panel {
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {
  .announcement-bar {
    font-size: 0.69rem;
  }

  .navbar {
    min-height: 4.5rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.2rem;
  }

  .brand-script {
    font-size: 1.4rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
  }

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

  .hero-locations {
    padding-inline: 0.75rem;
  }

  .hero-visual {
    padding: 0 0.25rem 1.9rem 0.7rem;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 25rem;
  }

  .hero-note {
    min-width: 14.2rem;
    padding: 0.8rem;
  }

  .note-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .commission-badge {
    top: 1rem;
    width: 6.5rem;
    height: 6.5rem;
    font-size: 0.52rem;
  }

  .commission-badge strong {
    font-size: 0.68rem;
  }

  .trust-item {
    min-height: 6rem;
    flex-direction: column;
    gap: 0.3rem;
  }

  .trust-item span {
    text-align: center;
  }

  .section-pad {
    padding: 4.75rem 0;
  }

  .service-card,
  .testimonial-card {
    padding: 1.65rem;
  }

  .option-card-wide {
    align-items: flex-start;
  }

  .option-card-wide > a {
    display: none;
  }

  .area-map {
    min-height: 23rem;
  }

  .area-pin {
    font-size: 0.63rem;
  }

  .pin-one {
    left: 8%;
  }

  .pin-two {
    left: 4%;
  }

  .pin-three {
    right: 4%;
  }

  .map-center-mark {
    width: 7.3rem;
    height: 7.3rem;
  }

  .contact-action {
    gap: 0.65rem;
    padding-inline: 0.75rem;
  }

  .contact-action-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .contact-action strong {
    font-size: 0.78rem;
  }

  .footer-separator {
    display: none;
  }

  .site-footer .col-lg-4:last-child > * {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
