:root {
  --ink: #171612;
  --charcoal: #201f1b;
  --charcoal-2: #292721;
  --gold: #c69a3b;
  --gold-light: #e4bf70;
  --cream: #f4efe4;
  --paper: #fbfaf7;
  --white: #fff;
  --muted: #655f55;
  --line: #dcd3c3;
  --danger: #9d3029;
  --success: #23623c;
  --container: 1240px;
  --text: 830px;
  --shadow: 0 18px 55px rgba(32, 27, 19, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.7 "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

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

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

.skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 14px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--gold);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.18s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(23, 22, 18, 0.985);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.header-strip {
  min-height: 31px;
  color: #d4cec1;
  background: #0d0d0b;
  border-bottom: 1px solid #343129;
  font-size: 12px;
  letter-spacing: 0.025em;
}

.header-strip-inner {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-strip a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.header-main {
  border-bottom: 1px solid #3c382f;
}

.header-inner {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand b {
  color: var(--white);
  font: 700 29px/1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

.brand b span {
  color: var(--gold-light);
}

.brand small {
  max-width: 105px;
  display: block;
  color: #d4cec1;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-left: auto;
  align-self: stretch;
}

.desktop-nav > a,
.nav-services > summary {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1px;
  color: #f1ede5;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav > a::after,
.nav-services > summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-services > summary:hover::after,
.nav-services.is-current > summary::after,
.nav-services[open] > summary::after {
  transform: scaleX(1);
}

.desktop-nav > a:hover,
.nav-services > summary:hover,
.nav-services[open] > summary {
  color: var(--gold-light);
}

.nav-services {
  position: static;
}

.nav-services > summary {
  height: 100%;
  cursor: pointer;
  list-style: none;
}

.nav-services > summary::-webkit-details-marker {
  display: none;
}

.nav-services > summary::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  margin: -4px 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-services[open] > summary::before {
  margin-top: 4px;
  transform: rotate(225deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: min(980px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px 28px;
  padding: 31px 34px 34px;
  color: var(--white);
  background: #181713;
  border-top: 3px solid var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
}

.mega-group {
  min-width: 0;
}

.mega-heading {
  display: block;
  min-height: 34px;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mega-group a {
  display: block;
  padding: 6px 0;
  color: #e7e1d6;
  font-size: 13.5px;
  line-height: 1.4;
  text-decoration: none;
}

.mega-group a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--gold-light);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

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

.button-gold,
.button.gold {
  color: #16130c;
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover,
.button.gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-outline,
.button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline:hover,
.button.ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.quote-button {
  min-width: 129px;
  min-height: 43px;
  padding-inline: 15px;
  font-size: 12.5px;
  white-space: nowrap;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid #5e584d;
  cursor: pointer;
}

.menu-icon {
  width: 21px;
  display: grid;
  gap: 4px;
}

.menu-icon i {
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

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

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  color: var(--white);
  background: #171612;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.35);
}

.mobile-nav-inner {
  display: grid;
  padding-top: 18px;
  padding-bottom: 25px;
}

.mobile-nav-inner > a,
.mobile-services > summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid #343129;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav-inner > a[aria-current="page"] {
  color: var(--gold-light);
}

.mobile-services > summary {
  position: relative;
  cursor: pointer;
  list-style: none;
}

.mobile-services > summary::-webkit-details-marker {
  display: none;
}

.mobile-services > summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--gold-light);
  font-size: 23px;
  font-weight: 400;
}

.mobile-services[open] > summary::after {
  content: "−";
}

.mobile-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 11px 0 17px;
}

.mobile-service-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  color: #e5ded1;
  background: #22201b;
  border: 1px solid #2f2c26;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
}

.hero {
  position: relative;
  min-height: clamp(410px, 42vw, 510px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

[data-page-type="home"] .hero {
  min-height: clamp(470px, 48vw, 580px);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.91) 0%, rgba(10, 9, 7, 0.66) 48%, rgba(10, 9, 7, 0.17) 78%),
    linear-gradient(0deg, rgba(10, 9, 7, 0.5), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: 68px;
  padding-bottom: 58px;
}

.eyebrow,
.kicker {
  color: var(--gold-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin: 0.22em 0;
  font-size: clamp(2.55rem, 4.7vw, 4.65rem);
  letter-spacing: -0.035em;
}

[data-page-type="home"] h1 {
  font-size: clamp(2.75rem, 5vw, 5rem);
}

h2 {
  margin: 0 0 0.6em;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  letter-spacing: -0.025em;
}

h3 {
  margin: 0 0 0.45em;
  font-size: 1.32rem;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0.8em 0 0;
  color: #f0ece5;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.breadcrumbs {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b6458;
  font-size: 13px;
}

.breadcrumbs a {
  color: #5c4b29;
  font-weight: 700;
}

main {
  background: var(--paper);
}

.content-wrap {
  display: block;
  padding-top: 56px;
  padding-bottom: 70px;
}

.prose {
  width: min(100%, 980px);
  margin-inline: auto;
  font-size: 1.03rem;
}

.prose p,
.prose li {
  max-width: 76ch;
}

.prose a {
  color: #74561d;
  font-weight: 700;
}

.prose a:hover {
  color: #4e370e;
}

.intro-block {
  max-width: var(--text);
  margin-bottom: 32px;
  padding: 3px 0 3px 25px;
  border-left: 4px solid var(--gold);
}

.intro-block:empty {
  display: none;
}

.intro-block > p:first-child {
  margin-top: 0;
}

.intro-block > p:first-child:not(.kicker) {
  color: #3f392f;
  font-size: 1.18rem;
  line-height: 1.65;
}

.intro-block em {
  color: #8a651d;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-nav {
  margin: 0 0 28px;
  padding: 20px 23px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.section-nav-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-nav > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.section-nav a {
  color: #55411a;
  font-size: 13px;
  line-height: 1.45;
}

.content-section {
  position: relative;
  margin-bottom: 24px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--white);
  border: 1px solid #e4ded2;
  box-shadow: var(--shadow);
}

.content-section.is-tinted {
  background: #f5f0e6;
  box-shadow: none;
}

.content-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(30px, 5vw, 52px);
  width: 52px;
  height: 3px;
  background: var(--gold);
}

.content-section > h2 {
  max-width: 760px;
}

.content-section > p:first-of-type {
  margin-top: 0;
}

.content-section ul,
.content-section ol {
  max-width: 760px;
  margin: 24px 0 0;
  padding-left: 1.25em;
}

.content-section li {
  margin: 0.5em 0;
  padding-left: 0.3em;
}

.content-section.has-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  padding: 0;
  list-style: none;
}

.content-section.has-list ul > li {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid rgba(117, 104, 82, 0.2);
}

.content-section.has-list ul > li::before {
  content: "";
  position: absolute;
  top: 1.22em;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.subsection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.subsection-card {
  padding: 24px 24px 21px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #ded5c5;
  border-top: 3px solid var(--gold);
}

.subsection-card p:last-child,
.subsection-card ul:last-child {
  margin-bottom: 0;
}

.faq-section {
  padding-bottom: 38px;
}

.faq-list {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 19px 48px 19px 0;
  color: #2d2922;
  font: 700 1.1rem/1.4 Georgia, "Times New Roman", serif;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 3px;
  color: #815f1c;
  font: 400 28px/1 sans-serif;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 30px 18px 0;
}

.faq-answer > :first-child {
  margin-top: 0;
}

.inline-visual {
  position: relative;
  margin: 34px 0;
  overflow: hidden;
  background: #222;
  box-shadow: var(--shadow);
}

.inline-visual picture,
.inline-visual img {
  width: 100%;
}

.inline-visual img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.inline-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 13px;
  color: #f5efe5;
  background: rgba(18, 17, 14, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-shell {
  margin: 28px 0 0;
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8cebc;
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.form-shell > h2 {
  margin-top: 0;
}

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

.field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #2f2b24;
  font-weight: 800;
}

.field label span {
  color: #815f1c;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid #8b8376;
  border-radius: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #735519;
  outline: 3px solid rgba(198, 154, 59, 0.3);
  outline-offset: 1px;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(157, 48, 41, 0.14);
}

.field small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.check {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.check input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.check label {
  font-weight: 600;
}

.check .field-error {
  grid-column: 2;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-errors {
  margin: 0 0 22px;
  padding: 16px 18px;
  color: #6d201b;
  background: #fff0ee;
  border: 2px solid #bc4b43;
}

.form-errors p {
  margin: 4px 0;
}

.form-errors ul {
  margin: 9px 0 0;
}

.form-errors a {
  color: #6d201b;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.form-note {
  margin: 24px 0;
  padding: 13px 16px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.form-status {
  min-height: 27px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-success {
  padding: 8px 0;
}

.form-success h3 {
  color: var(--success);
  font-size: 1.8rem;
}

.closing-cta {
  color: var(--white);
  background: var(--charcoal);
  border-top: 1px solid #3b382f;
}

.closing-cta-grid {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.closing-copy {
  max-width: 780px;
}

.closing-copy h2 {
  margin-bottom: 0.38em;
  color: var(--white);
}

.closing-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #d6d1c7;
}

.closing-actions {
  display: grid;
  gap: 11px;
  min-width: 210px;
}

.site-footer {
  padding: 58px 0 0;
  color: #d5d0c7;
  background: #0f0f0d;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(5, minmax(0, 1fr));
  gap: 32px 23px;
}

.footer-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-intro p {
  max-width: 230px;
  margin: 18px 0 9px;
  color: #bab5ac;
  font-size: 14px;
}

.footer-intro > span {
  margin-top: 4px;
  color: #99938a;
  font-size: 12px;
}

.footer-phone {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.footer-grid h2 {
  margin: 3px 0 14px;
  color: var(--gold-light);
  font: 800 11px/1.4 "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 7px 0;
  color: #d8d3ca;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-grid > div > a:not(.brand):hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-fine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #8f8980;
  border-top: 1px solid #33312b;
  font-size: 11.5px;
}

.footer-fine p {
  margin: 0;
}

.prime-line {
  white-space: nowrap;
}

.prime-line a {
  color: #c3b089;
  font-weight: 700;
  text-decoration: none;
}

.prime-line a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.not-found {
  min-height: 60vh;
  padding: 90px 0;
}

.sitemap-grid {
  columns: 3;
  column-gap: 36px;
}

.sitemap-grid a {
  display: block;
  margin: 7px 0;
  break-inside: avoid;
}

@media (max-width: 1220px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .quote-button {
    min-width: 142px;
  }

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

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

  .hero,
  [data-page-type="home"] .hero {
    min-height: 510px;
  }

  .hero-copy {
    padding-top: 74px;
    padding-bottom: 48px;
  }

  h1,
  [data-page-type="home"] h1 {
    font-size: clamp(2.45rem, 8.6vw, 4.1rem);
  }

  .subsection-grid,
  .content-section.has-list ul {
    grid-template-columns: 1fr;
  }

  .closing-cta-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .closing-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-strip {
    display: none;
  }

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

  .brand b {
    font-size: 27px;
  }

  .brand small {
    display: none;
  }

  .quote-button {
    min-width: 0;
    min-height: 44px;
    padding-inline: 11px;
    font-size: 11.5px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav-inner {
    width: calc(100% - 30px);
  }

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

  .mobile-actions {
    display: grid;
  }

  .hero,
  [data-page-type="home"] .hero {
    min-height: 510px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(10, 9, 7, 0.94) 0%, rgba(10, 9, 7, 0.58) 62%, rgba(10, 9, 7, 0.23) 100%),
      linear-gradient(90deg, rgba(10, 9, 7, 0.42), transparent);
  }

  .hero-copy {
    padding-top: 60px;
    padding-bottom: 38px;
  }

  h1,
  [data-page-type="home"] h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.35rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .breadcrumbs {
    min-height: 44px;
    font-size: 12px;
  }

  .content-wrap {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .intro-block {
    padding-left: 18px;
  }

  .section-nav {
    padding: 17px;
  }

  .section-nav > div {
    display: grid;
    gap: 7px;
  }

  .content-section {
    margin-right: -1px;
    margin-left: -1px;
    padding: 29px 21px;
  }

  .content-section::before {
    left: 21px;
  }

  .inline-visual {
    margin-right: -15px;
    margin-left: -15px;
  }

  .inline-visual img {
    aspect-ratio: 4 / 3;
  }

  .form-shell {
    margin-right: -15px;
    margin-left: -15px;
    padding: 27px 16px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .closing-cta-grid {
    min-height: 0;
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .closing-actions {
    display: grid;
  }

  .site-footer {
    padding-top: 46px;
  }

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

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

  .footer-fine {
    align-items: flex-start;
    flex-direction: column;
  }

  .prime-line {
    white-space: normal;
  }

  .sitemap-grid {
    columns: 1;
  }
}

@media (max-width: 390px) {
  .quote-button {
    max-width: 118px;
    padding-inline: 8px;
    font-size: 10.5px;
  }

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

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

/* G&M V2.2: unified header, CTA and footer */
.gm-skip-link{position:fixed!important;z-index:2000!important;top:10px!important;left:16px!important;width:auto!important;height:auto!important;padding:11px 16px!important;overflow:visible!important;clip:auto!important;clip-path:none!important;color:#171612!important;background:#fff!important;border:2px solid var(--gold)!important;border-radius:7px!important;font-size:14px!important;font-weight:800!important;text-decoration:none!important;transform:translateY(-220%)!important;transition:transform .18s ease!important}.gm-skip-link:focus,.gm-skip-link:focus-visible{transform:translateY(0)!important}
.site-header{position:sticky;top:0;z-index:1000;color:var(--white);background:rgba(17,17,15,.99);box-shadow:0 11px 32px rgba(0,0,0,.21);backdrop-filter:blur(14px)}.site-header .container{width:min(1380px,calc(100% - 52px))}.header-strip{min-height:34px;color:#d9d2c4;background:#0a0a09;border-bottom:1px solid rgba(228,191,112,.22);font-size:12px;letter-spacing:.025em}.header-strip-inner{min-height:34px;display:flex;align-items:center;justify-content:space-between;gap:28px}.header-tagline{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.header-strip-phone{min-height:26px;display:inline-flex;align-items:center;gap:7px;padding:2px 0;color:var(--gold-light)!important;font-weight:850;text-decoration:none!important;white-space:nowrap}.header-strip-phone span{color:#f5f0e6;font-size:10px;letter-spacing:.08em;text-transform:uppercase}.header-main{border-bottom:1px solid rgba(228,191,112,.18)}.header-inner{position:relative;height:82px;display:flex;align-items:center;gap:21px}
.brand.header-brand,.brand.footer-brand{min-width:max-content;display:inline-flex;align-items:center;gap:10px;color:#fff;text-decoration:none}.brand-mark{display:inline-block;color:#fff;font:700 30px/1 Georgia,"Times New Roman",serif;letter-spacing:-.055em}.brand-mark>span{color:var(--gold-light)}.brand-name{display:inline-block;max-width:112px;color:#ede7dc;font-size:9px;font-weight:850;line-height:1.2;letter-spacing:.105em;text-transform:uppercase}
.desktop-nav{min-width:0;display:flex;align-items:center;justify-content:center;gap:6px;margin-left:auto;align-self:center}.desktop-nav>a,.nav-services>summary{position:relative;min-height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0 10px;overflow:hidden;color:#f3eee5;background:rgba(255,255,255,.025);border:1px solid rgba(228,191,112,.18);border-radius:999px;font-size:12px;font-weight:760;line-height:1;text-decoration:none;white-space:nowrap;isolation:isolate;transition:color .2s ease,background-color .2s ease,border-color .2s ease,box-shadow .2s ease}.desktop-nav>a::after{content:none!important}.desktop-nav>a:hover,.desktop-nav>a:focus-visible,.nav-services>summary:hover,.nav-services>summary:focus-visible,.nav-services[open]>summary{color:#17130b;background:var(--gold-light);border-color:var(--gold-light);box-shadow:0 8px 22px rgba(198,154,59,.18)}.desktop-nav>a[aria-current=page],.nav-services.is-current>summary{color:#17130b;background:var(--gold);border-color:var(--gold)}.nav-services{position:static}.nav-services>summary{height:38px;cursor:pointer;list-style:none!important}.nav-services>summary::marker,.nav-services>summary::-webkit-details-marker{display:none;content:""}.nav-services>summary::before{content:"";position:absolute;top:-110%;bottom:-110%;left:-55%;width:34%;margin:0;border:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.48),transparent);opacity:0;transform:skewX(-22deg);pointer-events:none}.nav-services>summary::after{content:"";position:static;width:7px;height:7px;margin:-4px 1px 0 8px;background:transparent;border:0;border-right:1.6px solid currentColor;border-bottom:1.6px solid currentColor;transform:rotate(45deg) scaleX(1);transition:transform .18s ease,margin .18s ease}.nav-services[open]>summary::after{margin-top:4px;transform:rotate(225deg) scaleX(1)}
.glint-target{position:relative;overflow:hidden;isolation:isolate}.desktop-nav>a::before,.quote-button::before{content:"";position:absolute;z-index:2;top:-115%;bottom:-115%;left:-55%;width:34%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);opacity:0;transform:skewX(-22deg);pointer-events:none}.desktop-nav>a.is-glinting::before,.nav-services>summary.is-glinting::before,.quote-button.is-glinting::before,.desktop-nav>a:hover::before,.nav-services>summary:hover::before,.quote-button:hover::before{animation:gm-nav-glint .68s ease-out}@keyframes gm-nav-glint{0%{left:-55%;opacity:0}18%{opacity:.78}100%{left:130%;opacity:0}}
.mega-menu{top:calc(100% + 9px);width:min(1080px,calc(100vw - 72px));grid-template-columns:repeat(4,minmax(0,1fr));gap:25px 31px;padding:34px 38px 37px;background:#171713;border:1px solid rgba(228,191,112,.24);border-top:3px solid var(--gold);border-radius:0 0 12px 12px;box-shadow:0 32px 70px rgba(0,0,0,.45)}.mega-group a{border-radius:5px;padding:7px 8px;margin-left:-8px;transition:color .18s ease,background-color .18s ease}.mega-group a:hover,.mega-group a:focus-visible{color:#fff;background:rgba(228,191,112,.12);text-decoration:none}.header-actions{display:flex;align-items:center;gap:11px;margin-left:4px}.quote-button{min-width:124px;min-height:44px;padding:10px 16px;border-radius:999px;font-size:12px;white-space:nowrap;box-shadow:0 8px 24px rgba(198,154,59,.18)}.menu-toggle{width:46px;height:46px;display:none;align-items:center;justify-content:center;padding:0;color:#fff;background:rgba(255,255,255,.035);border:1px solid rgba(228,191,112,.42);border-radius:50%;appearance:none;cursor:pointer}.menu-toggle:hover{color:#17130b;background:var(--gold-light);border-color:var(--gold-light)}.mobile-nav{top:100%;background:#151512;border-top:1px solid rgba(228,191,112,.2);border-bottom:3px solid var(--gold)}
.closing-cta{color:var(--ink);background:#f7f2e8;border-top:1px solid #ded3be}.closing-cta-grid{min-height:300px;grid-template-columns:minmax(0,1fr) auto;gap:72px;padding-top:68px;padding-bottom:68px}.closing-copy{max-width:820px}.closing-copy h2{max-width:820px;margin:0 0 17px;color:var(--ink);font-size:clamp(2.5rem,4.5vw,4.15rem);line-height:.98}.closing-copy p:not(.eyebrow){max-width:760px;margin:0;color:#48433b;font-size:17px;line-height:1.7}.closing-actions{min-width:220px;display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap;gap:16px}.closing-actions .button{min-width:194px;min-height:52px;border-radius:999px;padding-inline:23px}.closing-actions .button-outline{color:var(--ink);background:transparent;border-color:#756a58}.closing-actions .button-outline:hover{color:#fff;background:var(--ink);border-color:var(--ink)}
.site-footer{padding:68px 0 0;color:#d9d4ca;background:#0c0d0c;border-top:4px solid var(--gold)}.footer-grid{display:grid;grid-template-columns:minmax(255px,1.35fr) repeat(4,minmax(145px,1fr));gap:48px 38px;align-items:start}.footer-intro{display:flex;flex-direction:column;align-items:flex-start;padding-right:22px}.footer-brand .brand-mark{font-size:34px}.footer-brand .brand-name{max-width:122px;font-size:9.5px}.footer-intro p{max-width:285px;margin:24px 0 16px;color:#bbb6ad;font-size:14px;line-height:1.7}.footer-intro>span{margin-top:8px;color:#9e988f;font-size:12px}.footer-phone{display:inline-flex;align-items:center;min-height:38px;padding:0 13px;color:#17130b;background:var(--gold-light);border-radius:999px;font-weight:850;line-height:1;text-decoration:none}.footer-phone:hover{color:#17130b;background:#fff}.footer-grid h2{margin:4px 0 20px;color:var(--gold-light);font-size:11px;font-weight:850;line-height:1.4;letter-spacing:.13em;text-transform:uppercase}.footer-grid .footer-column>a{position:relative;display:block;margin:0;padding:7px 0 7px 13px;color:#ddd8ce;font-size:13px;line-height:1.45;text-decoration:none;transition:color .18s ease,transform .18s ease}.footer-grid .footer-column>a::before{content:"";position:absolute;top:15px;left:0;width:5px;height:5px;background:rgba(228,191,112,.68);border-radius:50%}.footer-grid .footer-column>a:hover,.footer-grid .footer-column>a:focus-visible{color:#fff;transform:translateX(3px);text-decoration:none}.footer-fine{min-height:66px;margin-top:54px;padding-top:21px;padding-bottom:21px;color:#a49e95;border-top:1px solid #34332e;font-size:11.5px}.prime-line a{color:#d4ba80}
@media(max-width:1320px){.desktop-nav{display:none}.header-actions{margin-left:auto}.menu-toggle{display:inline-flex}.quote-button{min-width:145px}.footer-grid{grid-template-columns:minmax(250px,1.2fr) repeat(2,minmax(170px,1fr))}}
@media(max-width:920px){.site-header .container{width:min(100% - 36px,1380px)}.header-tagline{max-width:62%}.closing-cta-grid{grid-template-columns:1fr;gap:34px}.closing-actions{justify-content:flex-start}.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.footer-intro{grid-column:1/-1;padding-right:0}}
@media(max-width:650px){.site-header .container{width:min(100% - 28px,1380px)}.header-strip{display:block;min-height:31px}.header-strip-inner{min-height:31px;justify-content:center}.header-tagline{display:none}.header-strip-phone{font-size:12px}.header-inner{height:72px;gap:9px}.brand.header-brand{gap:7px}.header-brand .brand-mark{font-size:27px}.header-brand .brand-name{display:none}.quote-button{min-width:0;min-height:43px;max-width:130px;padding-inline:12px;font-size:11px}.menu-toggle{width:43px;height:43px}.closing-cta-grid{min-height:0;padding-top:52px;padding-bottom:54px}.closing-copy h2{font-size:clamp(2.25rem,12vw,3.25rem)}.closing-actions{display:grid;grid-template-columns:1fr}.closing-actions .button{width:100%;min-width:0}.site-footer{padding-top:52px}.footer-grid{grid-template-columns:1fr 1fr;gap:38px 22px}.footer-intro{grid-column:1/-1}.footer-fine{align-items:flex-start;flex-direction:column;gap:9px}}
@media(max-width:430px){.footer-grid{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.desktop-nav>a.is-glinting::before,.nav-services>summary.is-glinting::before,.quote-button.is-glinting::before,.desktop-nav>a:hover::before,.nav-services>summary:hover::before,.quote-button:hover::before{animation:none!important}}
.footer-grid .footer-intro .footer-phone{color:#17130b!important;background:var(--gold-light)!important}.footer-grid .footer-intro .footer-phone:hover{color:#17130b!important;background:#fff!important}

/* G&M V2.3: centre the footer telephone pill */
.footer-grid .footer-intro .footer-phone{min-width:152px;justify-content:center;text-align:center;padding-inline:16px;white-space:nowrap}

/* G&M V2.4: lock the footer telephone text to the exact centre of its pill. */
.footer-grid .footer-intro .footer-phone {
  display: grid !important;
  place-items: center !important;
  width: 152px;
  min-width: 152px;
  height: 40px;
  min-height: 40px;
  padding: 0 !important;
  box-sizing: border-box;
  line-height: 1 !important;
  text-align: center !important;
  text-indent: 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* G&M V2.5: compact Facebook links and Contact-page timeline */
.facebook-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.hero-social-strip {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 15px;
  padding: 7px 8px 7px 12px;
  color: #f8f3e9;
  background: rgba(10, 10, 9, .78);
  border: 1px solid rgba(228, 191, 112, .48);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
  backdrop-filter: blur(8px);
}

.hero-social-strip > a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.hero-social-strip > a:hover,
.hero-social-strip > a:focus-visible {
  color: var(--gold-light);
  text-decoration: none;
}

.facebook-share-button {
  cursor: pointer;
}

.facebook-share-compact {
  min-height: 30px;
  padding: 5px 11px;
  color: #1a160d;
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
}

.facebook-share-compact:hover,
.facebook-share-compact:focus-visible {
  color: #1a160d;
  background: #fff;
  border-color: #fff;
}

.facebook-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.facebook-section-copy {
  min-width: 0;
}

.facebook-third-party-note {
  max-width: 680px;
  color: #665f55;
  font-size: 14px;
}

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

.facebook-actions .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.facebook-embed-shell {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  background: #f7f2e8;
  border: 1px solid #d9cfbc;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(37, 31, 23, .12);
}

.facebook-embed-shell iframe {
  width: 100%;
  max-width: 500px;
  height: 420px;
  display: block;
  border: 0;
}

.facebook-embed-fallback {
  margin: 0;
  padding: 12px 16px;
  color: #514a40;
  background: #fffaf0;
  border-top: 1px solid #ded3be;
  font-size: 13px;
  line-height: 1.5;
}

.footer-facebook {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #d9d4ca;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.footer-facebook:hover,
.footer-facebook:focus-visible {
  color: var(--gold-light);
  text-decoration: none;
}

@media (max-width: 820px) {
  .facebook-section {
    grid-template-columns: 1fr;
  }

  .facebook-embed-shell {
    max-width: 500px;
  }
}

@media (max-width: 540px) {
  .hero-social-strip {
    align-items: stretch;
    border-radius: 12px;
  }

  .hero-social-strip > a,
  .facebook-share-compact {
    width: 100%;
    justify-content: center;
  }

  .facebook-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .facebook-actions .button {
    width: 100%;
    justify-content: center;
  }

  .facebook-embed-shell iframe {
    height: 360px;
  }
}


/* G&M V2.6: uniform header sheen, uncropped mobile imagery and dismissible Facebook floater. */
.desktop-nav > a.glint-target::before,
.quote-button.glint-target::before {
  content: none !important;
  animation: none !important;
}

.desktop-nav > a.glint-target::after,
.nav-services > summary.glint-target::after,
.quote-button.glint-target::after {
  content: "" !important;
  position: absolute;
  z-index: 3;
  top: -115%;
  bottom: -115%;
  left: -52%;
  width: 30%;
  height: auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  opacity: 0;
  transform: skewX(-22deg) scaleX(1);
  transform-origin: center;
  pointer-events: none;
}

.desktop-nav > a.glint-target.is-glinting::after,
.nav-services > summary.glint-target.is-glinting::after,
.quote-button.glint-target.is-glinting::after {
  animation: gm-nav-glint-v26 .50s ease-out;
}

@keyframes gm-nav-glint-v26 {
  0% { left: -52%; opacity: 0; }
  16% { opacity: .82; }
  100% { left: 128%; opacity: 0; }
}

.facebook-sticky-card {
  position: fixed;
  z-index: 980;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  width: min(360px, calc(100vw - 28px));
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 40px 13px 14px;
  color: #f8f3e9;
  background: rgba(12, 12, 10, .96);
  border: 1px solid rgba(228, 191, 112, .58);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(.97);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.facebook-sticky-card.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.facebook-sticky-card > a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.facebook-sticky-card > a:hover,
.facebook-sticky-card > a:focus-visible {
  color: var(--gold-light);
  text-decoration: none;
}

.facebook-sticky-card .facebook-share-compact {
  flex: 0 0 auto;
}

.facebook-sticky-close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  font: 700 19px/1 Arial, sans-serif;
  cursor: pointer;
}

.facebook-sticky-close:hover,
.facebook-sticky-close:focus-visible {
  color: #17130b;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 760px) {
  /* Show the complete hero photograph on phones instead of cropping it arbitrarily. */
  .hero,
  [data-page-type="home"] .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    background: #11110f;
  }

  .hero picture,
  .hero picture img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero picture {
    order: 0;
    display: block;
    background: #0b0b0a;
  }

  .hero picture img {
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    order: 1;
    width: min(100% - 30px, var(--container));
    margin-inline: auto;
    padding-top: 32px;
    padding-bottom: 39px;
  }

  .inline-visual img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .facebook-sticky-card {
    right: 10px;
    bottom: 10px;
    width: min(330px, calc(100vw - 20px));
    padding: 12px 39px 12px 13px;
    gap: 7px;
  }

  .facebook-sticky-card > a {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .facebook-sticky-card .facebook-share-compact {
    width: auto;
    min-height: 31px;
  }
}

@media (max-width: 430px) {
  .facebook-sticky-card {
    width: calc(100vw - 18px);
    right: 9px;
    bottom: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-nav > a.glint-target.is-glinting::after,
  .nav-services > summary.glint-target.is-glinting::after,
  .quote-button.glint-target.is-glinting::after {
    animation: none !important;
  }

  .facebook-sticky-card {
    transition: none;
  }
}

/* Keep the Services chevron stable while the V2.6 sheen uses ::after. */
.nav-services > summary.glint-target::before,
.nav-services > summary.glint-target.is-glinting::before,
.nav-services > summary.glint-target:hover::before,
.nav-services > summary.glint-target:focus-visible::before {
  animation: none !important;
  opacity: 1 !important;
}

/* G&M V2.7: footer-safe Facebook floater and richer Services interactions. */
.facebook-sticky-card {
  bottom: var(--facebook-sticky-bottom, clamp(14px, 2vw, 28px));
  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease,
    bottom .18s ease;
}

.facebook-sticky-card.is-footer-suppressed {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate3d(0, 16px, 0) scale(.97) !important;
}

/* The mobile Services drawer now mirrors every category and link in the
   desktop mega-menu instead of showing a shortened list. */
.mobile-service-links {
  gap: 12px;
  padding: 14px 0 18px;
}

.mobile-service-group {
  min-width: 0;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #1d1c18;
  border: 1px solid rgba(228, 191, 112, .18);
  border-radius: 9px;
}

.mobile-service-heading {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--gold-light);
  background: rgba(228, 191, 112, .06);
  border-bottom: 1px solid rgba(228, 191, 112, .16);
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.mobile-service-group a {
  min-height: 43px;
  padding: 9px 12px;
  color: #e9e3d8;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mobile-service-group a:last-child {
  border-bottom: 0;
}

.mobile-service-group a:hover,
.mobile-service-group a:focus-visible,
.mobile-service-group a[aria-current="page"] {
  color: #17130b;
  background: var(--gold-light);
  text-decoration: none;
}

/* A non-blocking halo follows the real pointer within the open desktop
   Services menu. It grows over a category and compresses on click. */
.service-pointer-halo {
  position: fixed;
  z-index: 1600;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(236, 200, 120, .9);
  border-radius: 50%;
  background: rgba(228, 191, 112, .08);
  box-shadow:
    0 0 0 4px rgba(228, 191, 112, .08),
    0 0 20px rgba(228, 191, 112, .2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72);
  transition:
    width .14s ease,
    height .14s ease,
    opacity .12s ease,
    visibility .12s ease,
    transform .14s ease,
    background-color .14s ease,
    border-color .14s ease;
  will-change: left, top, width, height, transform;
}

.service-pointer-halo.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.service-pointer-halo.is-over-link {
  width: 40px;
  height: 40px;
  border-color: rgba(247, 211, 132, .98);
  background: rgba(228, 191, 112, .13);
  box-shadow:
    0 0 0 5px rgba(228, 191, 112, .08),
    0 0 25px rgba(228, 191, 112, .27);
}

.service-pointer-halo.is-pressed {
  width: 23px;
  height: 23px;
  transform: translate(-50%, -50%) scale(.9);
  background: rgba(228, 191, 112, .24);
}

.mega-group a,
.nav-services > summary {
  transform-origin: center;
}

.mega-group a.is-service-wiggling,
.nav-services > summary.is-service-wiggling {
  animation: gm-service-wiggle-v27 .30s ease-in-out both;
}

.mega-group a.is-service-clicking,
.nav-services > summary.is-service-clicking {
  transform: scale(.96);
}

@keyframes gm-service-wiggle-v27 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  22% { transform: translate3d(-1.6px, 0, 0) rotate(-.55deg); }
  48% { transform: translate3d(1.5px, 0, 0) rotate(.5deg); }
  72% { transform: translate3d(-.8px, 0, 0) rotate(-.25deg); }
}

@media (max-width: 760px) {
  .facebook-sticky-card {
    bottom: var(--facebook-sticky-bottom, 10px);
  }
}

@media (max-width: 430px) {
  .facebook-sticky-card {
    bottom: var(--facebook-sticky-bottom, 9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-pointer-halo {
    display: none !important;
  }

  .mega-group a.is-service-wiggling,
  .nav-services > summary.is-service-wiggling {
    animation: none !important;
  }

  .mega-group a.is-service-clicking,
  .nav-services > summary.is-service-clicking {
    transform: none !important;
  }

  .facebook-sticky-card {
    transition: none !important;
  }
}
