/* ROOT */
:root {
  --dark: #1c1917;
  --dark-2: #434341;
  --light: #f4f0ea;
  --text-dark: #1c1917;
  --text-light: #f7f3ee;
  --muted-dark: #6f675d;
  --muted-light: rgba(247, 243, 238, 0.78);
  --line-dark: rgba(34, 30, 25, 0.12);
  --line-light: rgba(247, 243, 238, 0.18);

--gold: #c6a46d;
--gold-light: #d6bc92;

/* Shared warm tan system */
--tan-hover: rgba(214, 188, 146, 0.75);
--tan-hover-strong: #e2cfaf;
--dark-hover: rgba(28, 25, 23, 0);

/* Card / dark-surface tan treatments */
--card-tan: rgba(198, 164, 109, 0.08);
--card-tan-strong: rgba(198, 164, 109, 0.12);
--card-tan-border: rgba(198, 164, 109, 0.35);
--card-tan-border-strong: rgba(198, 164, 109, 0.45);

  --hero-overlay-strong: rgba(18, 16, 14, 0.76);
  --hero-overlay-mid: rgba(18, 16, 14, 0.42);
  --hero-overlay-soft: rgba(18, 16, 14, 0.16);
  --hero-overlay-top: rgba(13, 12, 11, 0.16);
  --hero-overlay-center: rgba(13, 12, 11, 0.08);
  --hero-overlay-bottom: rgba(13, 12, 11, 0.7);

  --glass-dark: rgba(19, 17, 15, 0.58);
  --glass-dark-strong: rgba(19, 17, 15, 0.74);
  --glass-dark-soft: rgba(19, 17, 15, 0.22);
  --glass-dark-mid: rgba(19, 17, 15, 0.64);
  --glass-border-light: rgba(247, 243, 238, 0.14);
  --field-border-light: rgba(247, 243, 238, 0.12);
  --field-bg-light: rgba(255, 255, 255, 0.03);
  --placeholder-light: rgba(247, 243, 238, 0.62);
  --scroll-light: rgba(247, 243, 238, 0.72);

  --gold-tint-soft: rgba(195, 162, 124, 0.05);
  --gold-tint-mid: rgba(195, 162, 124, 0.08);
  --gold-line: rgba(195, 162, 124, 0.18);
  --gold-line-strong: rgba(195, 162, 124, 0.5);

  --panel-dark: rgba(20, 19, 17, 0.98);
  --panel-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  --lightbox-bg: rgba(17, 15, 13, 0.82);
  --lightbox-close-bg: rgba(20, 18, 16, 0.92);
  --lightbox-close-bg-hover: rgba(40, 36, 32, 0.96);
  --lightbox-image-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);

  --mobile-sticky-bg: rgba(24, 23, 21, 0.96);
  --cta-bg: #111;
  --image-placeholder: #d8d2ca;
  --quote-mark: rgba(34, 30, 25, 0.5);

  --content: 1380px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --hero-image: url('/assets/hero/hero-01.jpg');
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* BASE */
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

input,
button {
  font: inherit;
}

p {
  margin: 0;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: none;
}

/* Only in-page text links should be underlined */
p a,
li a,
.faq-list p a,
.lead-card p a,
.hero-copy p a,
.process-intro p a,
.services-intro p a,
.areas-intro p a,
.faq-intro p a,
.cta-grid p a,
.featured-intro p a,
.trust-intro p a {
  text-decoration-line: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

p a:hover,
p a:focus-visible,
li a:hover,
li a:focus-visible,
.faq-list p a:hover,
.faq-list p a:focus-visible,
.lead-card p a:hover,
.lead-card p a:focus-visible,
.hero-copy p a:hover,
.hero-copy p a:focus-visible,
.process-intro p a:hover,
.process-intro p a:focus-visible,
.services-intro p a:hover,
.services-intro p a:focus-visible,
.areas-intro p a:hover,
.areas-intro p a:focus-visible,
.faq-intro p a:hover,
.faq-intro p a:focus-visible,
.cta-grid p a:hover,
.cta-grid p a:focus-visible,
.featured-intro p a:hover,
.featured-intro p a:focus-visible,
.trust-intro p a:hover,
.trust-intro p a:focus-visible {
  text-decoration-thickness: 2px;
}

/* TEXT DECORATION OVERRIDES */
.outline-btn,
.solid-btn,
.text-link,
.link-arrow,
.areas-list a,
.mobile-sticky a,
.footer-nav a,
.process-link,
.footer-menu-item > a,
.footer-flyup a {
  text-decoration: none;
}

/* LAYOUT */
.container {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

/* BUTTONS */
.outline-btn,
.solid-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.outline-btn,
.solid-btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--text-light);
}

.solid-btn:hover,
.solid-btn:focus-visible {
  background: rgba(214, 195, 165, 0.75);
  border-color: rgba(214, 195, 165, 0.92);
  color: var(--text-dark);
}

.outline-btn:hover,
.outline-btn:focus-visible {
  background: rgba(17, 17, 17, 0.75);
  border-color: rgba(17, 17, 17, 0.92);
  color: var(--text-light);
}

.text-link {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-light);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--hero-overlay-strong) 0%, var(--hero-overlay-mid) 36%, var(--hero-overlay-soft) 72%),
    linear-gradient(180deg, var(--hero-overlay-top) 0%, var(--hero-overlay-center) 45%, var(--hero-overlay-bottom) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 5.8rem 0 2rem;
  color: var(--text-light);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 860px;
  padding-top: 0.2rem;
}

.home-feature-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  display: block;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 0.65rem;
  margin-bottom: 1.15rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  max-width: 20ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  max-width: 25ch;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.04;
  margin-bottom: 0.35rem;
}

.hero-copy p,
.process-intro p,
.services-intro p,
.areas-intro p,
.faq-intro p,
.cta-grid p,
.featured-intro p,
.trust-intro p {
  max-width: 38ch;
}

.cta-grid p {
  max-width: 60ch;
}

.cta-grid h2 {
  max-width: 30ch;
}

.hero-copy p {
  color: var(--muted-light);
  margin-top: 1.15rem;
  font-size: 1rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* LEAD FORM */
.lead-card {
  width: min(100%, 390px);
  justify-self: end;
  background: var(--glass-dark);
  border: 1px solid var(--glass-border-light);
  backdrop-filter: blur(12px);
  padding: 1rem;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.lead-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.lead-title {
  font-size: clamp(1.8rem, 2vw, 2.45rem);
  max-width: none;
}

.lead-card p {
  color: var(--muted-light);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.lead-form {
  display: grid;
  gap: 0.72rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid var(--field-border-light);
  background: var(--field-bg-light);
  padding: 0.88rem 0.92rem;
  min-height: 46px;
}

.lead-form input {
  color: var(--text-light);
}

.lead-form input::placeholder {
  color: var(--placeholder-light);
}

.lead-form select {
  color: var(--placeholder-light);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lead-form select:valid {
  color: var(--text-light);
}

.lead-form select option {
  color: #000;
}

.lead-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--muted-light);
}

.lead-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 30px;
  height: 30px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  color: var(--scroll-light);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 34px;
  margin: 0.55rem auto 0;
  background: currentColor;
  opacity: 0.55;
}

/* SHARED SECTION LAYOUT */
.band-light {
  background: var(--light);
  color: var(--text-dark);
}

.band-dark {
  background:
    radial-gradient(circle at top right, var(--gold-tint-mid), transparent 24%),
    linear-gradient(135deg, #1b1816 0%, #141210 100%);
  color: var(--text-light);
}

.section {
  padding: 2.8rem 0;
}

.label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 1rem;
}

.label::after {
  content: '';
  width: 52px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.band-dark .label,
.cta-label {
  color: var(--muted-light);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.7rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-grid,
.trust-grid,
.cta-grid,
.services-wrap,
.areas-grid,
.faq-grid,
.process-grid {
  display: grid;
  gap: 0;
}

.trust-grid {
  column-gap: 2rem;
}

.featured-intro,
.process-intro,
.trust-intro,
.trust-quote,
.services-intro,
.areas-intro,
.faq-intro {
  padding: 2.3rem 1.25rem 1.6rem 0;
}

/* FEATURED STORY CARDS */
.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0 0;
}

.work-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  min-height: 255px;
  padding: 1.6rem 1.3rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line-dark);
}

.work-card > a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dark);
}

.work-card span {
  color: var(--muted-dark);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem 1.25rem;
  padding: 2rem 0 0;
  align-content: start;
}

.step {
  text-align: left;
  color: var(--muted-light);
  font-size: 0.82rem;
  max-width: 220px;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 0.9rem;
  border-radius: 50%;
  border: 1px solid var(--gold-line-strong);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.98rem;
}

.step strong {
  display: block;
  color: var(--text-light);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

/* TRUST */
.trust-quote .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--quote-mark);
  margin-bottom: 1rem;
}

.trust-quote .quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.08;
  max-width: 15ch;
}

.trust-quote .quote-meta {
  margin-top: 1rem;
  color: var(--muted-dark);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-image img {
  height: 100%;
  min-height: 300px;
}

.trust-image a,
.lightbox-trigger {
  display: block;
  cursor: zoom-in;
}

/* SERVICES */
.services-grid {
  display: grid;
  gap: 1.4rem;
  padding: 0 0 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 1.85rem 1.6rem;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(247, 243, 238, 0.16);
  border-radius: 0;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card h3 {
  font-size: 2rem;
  line-height: 1.04;
  margin: 0;
}

.service-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-light);
  max-width: 36ch;
}

.service-card:not(.service-card-featured) h3 {
  margin-top: 0.7rem;
}

.service-card-featured {
  background: rgba(214, 173, 84, 0.08);
  border: 1px solid rgba(214, 173, 84, 0.35);
}

.service-card:hover {
  border-color: rgba(247, 243, 238, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.service-card-featured:hover {
  border-color: rgba(214, 173, 84, 0.45);
  background: rgba(214, 173, 84, 0.11);
}

.service-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* PLANS */
#plans .featured-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0 0;
}

#plans .plan-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  min-height: 255px;
  padding: 1.6rem 1.3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
}

#plans .plan-card.service-card-featured {
  background: rgba(214, 173, 84, 0.1);
  border-color: rgba(214, 173, 84, 0.35);
}

#plans .plan-card .plan-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

#plans .plan-card .plan-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#plans .plan-card strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
}

#plans .plan-card span {
  color: var(--muted-light);
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 979px) {
  #plans .featured-cards {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.8rem;
  padding: 0 0 1rem;
}

#support .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.8rem;
  align-content: start;
}

@media (max-width: 979px) {
  #support .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-list details {
  border-top: 1px solid var(--line-dark);
  padding-top: 1rem;
  padding-bottom: 0.2rem;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: '–';
}

.faq-list p {
  color: var(--muted-dark);
  max-width: 40ch;
  margin-top: 0.7rem;
}

.faq-list-dark {
  border-bottom: 1px solid var(--line-light);
}

.faq-list-dark details {
  border-top: 1px solid var(--line-light);
}

.faq-list-dark summary {
  color: var(--text-light);
}

.faq-list-dark p {
  color: var(--muted-light);
}

.faq-list-dark summary::after {
  color: var(--gold-light);
}

/* CTA BAND */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  color: var(--text-light);
  background: var(--cta-bg);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, var(--lightbox-close-bg), rgba(35, 29, 24, 0.62)),
    url('../assets/footer/Footer-2.jpg');
  background-size: cover;
  background-position: center center;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--glass-dark) 0%, var(--glass-dark-soft) 42%, var(--glass-dark-mid) 100%);
}

.cta-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: center;
  padding: 3.25rem 0;
  gap: 2rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cta-band .container {
  max-width: 1400px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #191715 0%, #141311 100%);
  color: var(--muted-light);
  padding: 1.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.footer-meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.process-link {
  color: var(--text-light);
}

/* FOOTER FLYUP */
.footer-menu {
  position: relative;
  display: block;
}

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.footer-menu-item {
  position: relative;
}

.footer-menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.2rem 0;
}

.footer-menu-item.has-flyup > a::after {
  content: '+';
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-flyup {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(0);
  min-width: 230px;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.7rem;
  background: var(--panel-dark);
  border: 1px solid var(--field-border-light);
  box-shadow: var(--panel-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 40;
}

.footer-flyup::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 8px 7px 0 7px;
  border-style: solid;
  border-color: var(--panel-dark) transparent transparent transparent;
}

.footer-flyup a {
  color: var(--muted-light);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-flyup a:hover,
.footer-flyup a:focus-visible {
  color: var(--text-light);
}

.footer-menu-item:hover > a,
.footer-menu-item:focus-within > a {
  color: var(--text-light);
}

.footer-menu-item.has-flyup:hover .footer-flyup,
.footer-menu-item.has-flyup:focus-within .footer-flyup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* MOBILE STICKY */
.mobile-sticky {
  position: sticky;
  bottom: 0;
  z-index: 25;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--mobile-sticky-bg);
  border-top: 1px solid var(--field-border-light);
}

.mobile-sticky a {
  flex: 1;
  text-align: center;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(17, 15, 13, 0.86);
  backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(1280px, 94vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  min-height: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: transparent;
}

.lightbox-close {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.lightbox-close:hover {
  background: rgba(40, 36, 32, 0.96);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.9);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.lightbox-nav:hover {
  background: rgba(40, 36, 32, 0.96);
}

.lightbox-prev {
  left: -5.25rem;
}

.lightbox-next {
  right: -5.25rem;
}

.lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }
}

@media (max-width: 767px) {
  .lightbox {
    padding: 1rem;
  }

  .lightbox-inner {
    width: 100%;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .lightbox-nav {
    width: 52px;
    height: 52px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 0.35rem;
  }

  .lightbox-next {
    right: 0.35rem;
  }
}

/* RESPONSIVE: DESKTOP */
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: end;
  }

  .featured-grid {
    grid-template-columns: 0.85fr 2.15fr;
    align-items: center;
  }

  .process-grid {
    grid-template-columns: 0.85fr 2.15fr;
    align-items: center;
    min-height: 430px;
  }

  .trust-grid {
    grid-template-columns: 0.8fr 0.95fr 1.25fr;
    align-items: center;
    column-gap: 1.35rem;
    min-height: 430px;
  }

  .trust-quote .quote-text {
    line-height: 1.12;
    max-width: 30ch;
  }

  .services-wrap {
    grid-template-columns: 0.72fr 2.28fr;
    align-items: center;
    column-gap: 1.5rem;
    min-height: 430px;
  }

  .services-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 0.85rem;
    align-items: stretch;
  }

  .areas-grid,
  .faq-grid {
    grid-template-columns: 0.85fr 2.15fr;
    align-items: center;
  }

  .cta-grid,
  .footer-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
  }

  .footer-meta {
    text-align: right;
  }

  .mobile-sticky {
    display: none;
  }
}

/* RESPONSIVE: TABLET */
@media (max-width: 979px) {
  .hero-inner {
    align-items: start;
    padding: 6.6rem 0 6.2rem;
  }

  .hero-grid {
    align-items: start;
    gap: 1.4rem;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 1.2rem;
  }

  h1 {
    font-size: clamp(3.15rem, 13vw, 4.9rem);
    max-width: 8ch;
  }

  .hero-copy p {
    max-width: 20ch;
    font-size: 1.05rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .lead-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-top: 1rem;
    background: var(--glass-dark-strong);
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }

  .featured-cards,
  .services-grid,
  .areas-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
  .footer-menu-list {
    justify-content: flex-start;
    gap: 0.9rem 1.2rem;
  }

  .footer-flyup {
    left: 0;
    bottom: 100%;
    transform: translateX(0) translateY(0);
  }

  .footer-flyup::after {
    left: 24px;
    transform: none;
  }

  .footer-menu-item.has-flyup:hover .footer-flyup,
  .footer-menu-item.has-flyup:focus-within .footer-flyup {
    transform: translateX(0) translateY(0);
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .outline-btn,
  .solid-btn,
  .text-link {
    padding: 0.9rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 5.9rem 0 6.2rem;
  }

  .eyebrow {
    font-size: 0.64rem;
    gap: 0.6rem;
    margin-bottom: 0.95rem;
  }

  .eyebrow::after {
    width: 38px;
  }

  h1 {
    font-size: clamp(2.95rem, 14.5vw, 4.4rem);
    line-height: 0.96;
    max-width: 7ch;
  }

  .hero-copy p {
    font-size: 1rem;
    max-width: 18ch;
    margin-top: 1rem;
  }

  .lead-card {
    padding: 0.9rem;
  }

  .lead-title {
    font-size: 1.55rem;
  }

  .lead-card p {
    font-size: 0.9rem;
  }

  .lead-form input {
    min-height: 44px;
    padding: 0.82rem 0.88rem;
  }

  .featured-cards,
  .process-steps {
    gap: 0.85rem;
  }

  .featured-intro,
  .process-intro,
  .trust-intro,
  .trust-quote,
  .services-intro,
  .areas-intro,
  .faq-intro {
    padding: 2.3rem 1.25rem 1.6rem 0;
  }

  .cta-grid {
    padding-bottom: 3rem;
  }

  .footer-menu-list {
    gap: 0.7rem 1rem;
  }

  .footer-flyup {
    min-width: 210px;
    padding: 0.85rem 0.9rem;
  }

  .footer-flyup a {
    font-size: 0.76rem;
  }
}
/* trust image */

.trust-image a,
.trust-image .lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.trust-image a img,
.trust-image .lightbox-trigger img {
  display: block;
  width: 100%;
  height: auto;
}
/* RESPONSIVE: SMALL MOBILE */
@media (max-width: 479px) {
  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
    max-width: 6.8ch;
  }

  .hero-copy p {
    max-width: 16.5ch;
  }

  .lead-kicker {
    font-size: 0.62rem;
  }

  .mobile-sticky {
    padding: 0.6rem 0.75rem;
    gap: 0.6rem;
  }

  .mobile-sticky .outline-btn,
  .mobile-sticky .solid-btn {
    padding: 0.85rem 0.7rem;
    font-size: 0.68rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
/* FAQ PAGE */
#faq .faq-list,
#support .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
  padding: 0 0 1rem;
  align-content: start;
}

.faq-heading {
  grid-column: 1 / -1;
  margin: 1.4rem 0 0.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.faq-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

#faq .faq-list details,
#support .faq-list details {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.44);
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#faq .faq-list details:hover,
#support .faq-list details:hover {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(34, 30, 25, 0.18);
}

#faq .faq-list details[open],
#support .faq-list details[open] {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(198, 164, 109, 0.45);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
}

#faq .faq-list summary,
#support .faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.15rem 3.2rem 1.05rem 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.06;
  color: var(--text-dark);
}

#faq .faq-list summary::-webkit-details-marker,
#support .faq-list summary::-webkit-details-marker {
  display: none;
}

#faq .faq-list summary::after,
#support .faq-list summary::after {
  content: '+';
  position: absolute;
  right: 1.05rem;
  top: 1.1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line-strong);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1;
}

#faq .faq-list details[open] summary::after,
#support .faq-list details[open] summary::after {
  content: '–';
}

#faq .faq-list p,
#support .faq-list p {
  color: var(--muted-dark);
  max-width: 42ch;
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

@media (max-width: 979px) {
  #faq .faq-list,
  #support .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .faq-heading {
    margin-top: 1.15rem;
    padding-top: 0.95rem;
    font-size: 0.68rem;
  }

  #faq .faq-list summary,
  #support .faq-list summary {
    padding: 1rem 2.9rem 0.95rem 1rem;
    font-size: 1.35rem;
  }

  #faq .faq-list summary::after,
  #support .faq-list summary::after {
    right: 0.9rem;
    top: 0.95rem;
    width: 1.4rem;
    height: 1.4rem;
  }

  #faq .faq-list p,
  #support .faq-list p {
    padding: 0 1rem 1rem;
    font-size: 0.93rem;
  }
}

/* SERVICE AREAS */
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0 0;
  align-content: start;
}

.areas-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line-dark);
  color: var(--text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.areas-list a::after {
  content: '→';
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.areas-list a:hover,
.areas-list a:focus-visible {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(198, 164, 109, 0.45);
  color: var(--text-dark);
  transform: translateY(-1px);
}

@media (max-width: 979px) {
  .areas-list {
    grid-template-columns: 1fr;
  }
}