:root {
  --bg: #d9d3c8;
  --bg-soft: #e4ded4;
  --bg-panel: rgba(17, 24, 32, 0.84);
  --bg-panel-strong: rgba(11, 16, 23, 0.95);
  --text: #f7f3eb;
  --muted: #b6bec8;
  --muted-strong: #d8dee4;
  --line: rgba(194, 164, 94, 0.18);
  --line-strong: rgba(194, 164, 94, 0.42);
  --gold: #c2a45e;
  --gold-bright: #d8bb73;
  --gold-soft: rgba(194, 164, 94, 0.12);
  --steel: #8ca8bf;
  --steel-soft: rgba(140, 168, 191, 0.14);
  --danger: #c96d65;
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius-xl: 2rem;
  --radius-lg: 1.35rem;
  --radius-md: 1rem;
  --site-width: min(1220px, calc(100% - 2rem));
  --section-gap: clamp(4.8rem, 8vw, 7rem);
  --section-break-gap: calc(var(--section-gap) * 2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: #d9d3c8;
}

body.home-page {
  background: #d9d3c8;
}

body.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(194, 164, 94, 0.12), transparent 28%),
    linear-gradient(180deg, #091019 0%, #0c141d 25%, #d9d3c8 25%, #d9d3c8 100%);
}

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

.page-main {
  position: relative;
  z-index: 1;
}

.page-main::before {
  content: none;
}

.page-main > * {
  position: relative;
  z-index: 1;
}

.services-offer-heading h2,
#pricing.service-capabilities-heading h2,
#consultation .section-heading h2,
#faq .section-heading h2 {
  color: #2b241c;
  text-shadow: none;
}

.pricing-section,
#consultation,
#faq {
  --text: #2b241c;
  --muted: #6d655b;
  --muted-strong: #4e463d;
  --bg-panel: rgba(252, 247, 239, 0.92);
  --bg-panel-strong: rgba(248, 241, 232, 0.98);
  --line: rgba(194, 164, 94, 0.22);
  --line-strong: rgba(194, 164, 94, 0.42);
  --shadow-lg: 0 28px 72px rgba(96, 79, 46, 0.14);
  --shadow-md: 0 18px 38px rgba(96, 79, 46, 0.12);
  color: var(--text);
}

.pricing-section .section-kicker,
#consultation .section-kicker,
#faq .section-kicker,
.pricing-section .section-heading p:not(.section-kicker),
#consultation .section-heading p:not(.section-kicker),
#faq .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

body::before {
  content: none;
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
}

.site-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, opacity 220ms ease;
}

.topbar-inner {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar-member-copy {
  margin: 0 0 0 auto;
  color: var(--muted-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

.topbar-member-copy a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14rem;
}

.topbar-member-copy a:hover,
.topbar-member-copy a:focus-visible {
  color: #f1dfb1;
}

.social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.site-footer .social-row {
  justify-content: flex-start;
}

.social-link {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  color: transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2.35rem 2.35rem;
  line-height: 0;
  text-decoration: none;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.social-link[aria-label="Facebook"],
.social-link[href*="facebook.com"] {
  background-image: url("Social Icons/Facebook icon.png");
}

.social-link[aria-label="Instagram"],
.social-link[href*="instagram.com"] {
  background-image: url("Social Icons/Insta icon.png");
}

.social-link[aria-label="LinkedIn"],
.social-link[href*="linkedin.com"] {
  background-image: url("Social Icons/linkdin icon.png");
}

.social-link[aria-label="Snapchat"],
.social-link[href*="snapchat.com"] {
  background-image: url("Social Icons/snap icon.png");
}

.social-link[aria-label="TikTok"],
.social-link[href*="tiktok.com"] {
  background-image: url("Social Icons/tt icon.png");
}

.social-link[aria-label="X"],
.social-link[href*="x.com"] {
  background-image: url("Social Icons/x icon.png");
}

.social-link[aria-label="YouTube"],
.social-link[href*="youtube.com"] {
  background-image: url("Social Icons/youtube icon.png");
}

.site-header {
  position: sticky;
  top: 2.65rem;
  z-index: 55;
  backdrop-filter: blur(20px);
  background: rgba(8, 12, 18, 0.82);
  border-bottom: 1px solid var(--line);
  transition: transform 260ms ease, opacity 260ms ease;
}

.login-header {
  position: relative;
  z-index: 20;
  padding: 1.2rem 0 0;
}

.login-header-inner {
  display: flex;
  align-items: center;
}

.login-header .brand img {
  width: clamp(13rem, 22vw, 18rem);
}

.login-main {
  position: relative;
  z-index: 1;
}

.login-hero {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.login-dashboard-showcase {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 29rem);
  gap: 2rem;
  align-items: start;
}

.login-copy {
  max-width: 36rem;
  margin-top: 0;
}

.login-copy-body {
  margin-top: clamp(0.75rem, 1.9vw, 1.35rem);
}

.login-copy h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #2b241c;
}

.login-copy p {
  margin: 0;
  max-width: 32rem;
  color: #2b241c;
  font-size: 1.02rem;
  line-height: 1.8;
}

.login-panel {
  margin-top: -2rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #a7adb5;
  box-shadow: var(--shadow-lg);
}

.login-form {
  display: grid;
  gap: 1rem;
}

.login-form .form-field input {
  border-color: rgba(194, 164, 94, 0.16);
  background: #f6efe5;
  color: #2b241c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.login-form .form-field input::placeholder {
  color: #6d655b;
}

.login-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.login-dashboard-image {
  width: 100%;
  border-radius: 1.1rem;
  border: 1px solid rgba(194, 164, 94, 0.16);
  box-shadow: 0 18px 36px rgba(96, 79, 46, 0.12);
}

body.topbar-collapsed .topbar {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

body.topbar-collapsed .site-header {
  top: 0;
}

body.header-hidden .site-header,
body.header-hidden .topbar {
  transform: translateY(-110%);
}

.header-inner {
  min-height: 5.45rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(10rem, 15vw, 12.75rem);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.02rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: end;
  flex-wrap: wrap;
}

.call-badge {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: #17120b;
  box-shadow: none;
  font-size: 1rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.call-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-badge:hover,
.call-badge:focus-visible {
  transform: translateY(-1px);
}

.call-copy {
  display: grid;
  gap: 0.12rem;
}

.call-copy strong {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.call-copy span,
.call-copy a {
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.call-copy a:hover,
.call-copy a:focus-visible {
  color: var(--gold-bright);
}

.header-social-row {
  gap: 0.45rem;
  justify-content: flex-start;
}

.header-social-row .social-link {
  width: 2.55rem;
  height: 2.55rem;
  background-size: 2.55rem 2.55rem;
}

.nav-toggle {
  display: none;
}

.page-main {
  overflow: clip;
}

.hero,
.subpage-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero > .site-shell,
.subpage-hero > .site-shell {
  position: relative;
  z-index: 2;
}


.hero {
  min-height: calc(100vh - 8.1rem);
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.18), rgba(6, 8, 10, 0.18)),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.06), transparent 15%),
    url("drone.jpg") center center / cover no-repeat;
}

.hero-wipe {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(var(--hero-wipe-columns, 10), minmax(0, 1fr));
  grid-template-rows: repeat(var(--hero-wipe-rows, 6), minmax(0, 1fr));
  background: transparent;
}

.hero-wipe-tile {
  background: #000000;
  opacity: 1;
}

.hero-wipe.is-animating .hero-wipe-tile {
  animation: heroCheckerTile var(--tile-fade-duration, 260ms) linear forwards;
  animation-delay: var(--tile-delay, 0ms);
}

.hero-wipe.is-complete {
  opacity: 0;
  visibility: hidden;
}

@keyframes heroCheckerTile {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.subpage-hero {
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  padding: 6.8rem 0 3.75rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero {
  background-image: url("drone.jpg");
}

.services-hero {
  min-height: auto;
  align-items: flex-start;
  padding: 5.35rem 0 1.75rem;
  background: none;
}

.consultation-hero {
  background-image: url("drone.jpg");
}

.portfolio-hero {
  background-image: url("drone.jpg");
}

.testimonials-hero {
  background-image: url("drone.jpg");
}

.helpdesk-hero {
  background-image: url("drone.jpg");
}

.mobile-hero-banner {
  background-image: url("drone.jpg");
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 25rem);
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after,
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1,
.subpage-hero h1 {
  margin: 1.15rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero p.lead,
.subpage-hero p.lead {
  margin: 0;
  max-width: 39rem;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.75;
}

.hero-title-frame {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  padding: 0.7rem 0.45rem 0.7rem 0.75rem;
  margin-bottom: 1rem;
}

.hero-title-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to right, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to left, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to left, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to top, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to top, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 0.15rem 0.15rem, 0.15rem calc(100% - 0.15rem), calc(100% - 0.15rem) 0.15rem, calc(100% - 0.15rem) calc(100% - 0.15rem), 0.15rem 0.15rem, calc(100% - 0.15rem) 0.15rem, 0.15rem calc(100% - 0.15rem), calc(100% - 0.15rem) calc(100% - 0.15rem);
  opacity: 0.9;
  pointer-events: none;
}

.hero-tech-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0;
  text-shadow: 0 0 18px rgba(140, 168, 191, 0.12);
}

.hero-button-tech {
  position: relative;
  min-width: 15rem;
  border-radius: 0.9rem;
  overflow: hidden;
  letter-spacing: 0.18em;
  isolation: isolate;
}

.hero-button-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(140, 168, 191, 0.95), rgba(194, 164, 94, 0.95) 52%, rgba(216, 187, 115, 0.95));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 0;
}

.hero-button-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to right, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to left, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to left, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to top, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(to top, rgba(247, 243, 235, 0.9) 1.5px, transparent 1.5px);
  background-position: 0 0, 0 100%, 100% 0, 100% 100%, 0 0, 100% 0, 0 100%, 100% 100%;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 200ms ease;
  pointer-events: none;
  z-index: 2;
}

.hero-button-tech span {
  position: relative;
  z-index: 3;
  transition: color 260ms ease;
}

.hero-button-tech:hover::before {
  opacity: 1;
}

.hero-button-tech:hover::after {
  opacity: 0;
}

.hero-button-tech:hover span {
  color: #ffffff;
}

.hero-button-tech-secondary {
  border-color: rgba(140, 168, 191, 0.26);
  background: rgba(7, 11, 16, 0.42);
  box-shadow: inset 0 0 0 1px rgba(140, 168, 191, 0.08);
}

.hero-overlay {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

.hero-overlay.hero-overlay-pending {
  opacity: 0;
  transform: translateY(2rem);
}

.hero-overlay.hero-overlay-live {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-sidecard {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-panel);
  box-shadow: var(--shadow-md);
}

.hero-sidecard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(140, 168, 191, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-sidecard strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-sidecard p {
  margin: 0 0 1.1rem;
  color: var(--muted-strong);
  line-height: 1.7;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-metrics span {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-metrics strong {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.button,
.button-secondary,
.button-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.button::before,
.button-secondary::before,
.button-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -140%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-22deg);
  transition: left 320ms ease;
}

.button:hover::before,
.button-secondary:hover::before,
.button-ghost:hover::before {
  left: 130%;
}

.button {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #19140c;
  box-shadow: 0 16px 36px rgba(194, 164, 94, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-ghost {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--gold-bright);
}

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

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(194, 164, 94, 0.08);
}

.pricing-section .button-secondary,
.pricing-section .button-ghost,
#consultation .button-secondary,
#consultation .button-ghost,
#faq .button-secondary,
#faq .button-ghost {
  border-color: rgba(194, 164, 94, 0.24);
  background: rgba(255, 249, 241, 0.82);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(96, 79, 46, 0.08);
}

.pricing-section .button-secondary:hover,
.pricing-section .button-ghost:hover,
#consultation .button-secondary:hover,
#consultation .button-ghost:hover,
#faq .button-secondary:hover,
#faq .button-ghost:hover {
  background: rgba(247, 239, 227, 0.96);
}

.section {
  position: relative;
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 44rem;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.parallax-block {
  position: relative;
  padding: 1.25rem 0 0;
}

.parallax-stage {
  position: relative;
  min-height: clamp(30rem, 72vh, 46rem);
  overflow: hidden;
  isolation: isolate;
  border-radius: 2rem;
}

.parallax-media,
.parallax-shade,
.parallax-copy {
  position: absolute;
  inset: 0;
}

.parallax-media {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 2rem;
  transform: none;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34);
}

.parallax-shade {
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, 0.2), rgba(6, 8, 11, 0.72)),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.04), transparent 28%);
  opacity: 0.62;
}

.parallax-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
  transform: none;
  opacity: 1;
}

.parallax-subheading {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(247, 243, 235, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.parallax-subheading::before,
.parallax-subheading::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.parallax-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

.parallax-followup {
  padding-top: var(--section-gap);
}

.parallax-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
  gap: 1.35rem;
  align-items: start;
}

.parallax-side-stack {
  display: grid;
  gap: 1rem;
}

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


.panel,
.card,
.review-card,
.faq-item,
.service-card,
.story-panel,
.route-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--bg-panel);
  box-shadow: var(--shadow-md);
}

.panel::before,
.card::before,
.review-card::before,
.faq-item::before,
.service-card::before,
.story-panel::before,
.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(140, 168, 191, 0.07), transparent 40%);
  opacity: 0.55;
}

.pricing-section .panel::before,
.pricing-section .card::before,
.pricing-section .review-card::before,
.pricing-section .route-card::before,
#consultation .panel::before,
#consultation .card::before,
#consultation .review-card::before,
#consultation .route-card::before,
#faq .panel::before,
#faq .card::before,
#faq .review-card::before,
#faq .route-card::before {
  background: linear-gradient(135deg, rgba(194, 164, 94, 0.08), rgba(140, 168, 191, 0.05) 45%, transparent 72%);
  opacity: 0.9;
}

.panel::after,
.card::after,
.review-card::after,
.faq-item::after,
.service-card::after,
.story-panel::after,
.route-card::after,
.service-list-card::after,
.gallery-card::after,
.contact-point::after,
.contact-form-panel::after,
.contact-stack::after,
.mobile-panel::after,
.faq-accordion-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to right, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to left, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to left, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to bottom, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to bottom, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to top, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px),
    linear-gradient(to top, rgba(247, 243, 235, 0.72) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 0 0, 0 100%, 100% 0, 100% 100%, 0 0, 100% 0, 0 100%, 100% 100%;
  opacity: 0.9;
  z-index: 1;
}

.panel > *,
.card > *,
.review-card > *,
.service-card-copy > *,
.story-panel > *,
.route-card > *,
.service-list-card > *,
.contact-point > *,
.contact-form-panel > *,
.contact-stack > *,
.mobile-panel > *,
.gallery-card-copy > *,
.faq-accordion-copy > * {
  position: relative;
  z-index: 2;
}

.intro-panel {
  padding: 2rem;
}

.intro-panel h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.intro-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-bright);
  font-size: 1.85rem;
  font-weight: 800;
}

.stat-card span {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.service-constellation {
  position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
    padding-top: 11rem;
  }

.service-slab {
  position: relative;
  min-height: 38rem;
  display: grid;
  align-items: end;
  padding: 1.25rem;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(74, 116, 191, 0.98), rgba(55, 90, 152, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  isolation: isolate;
  }

.service-constellation.is-staged .service-slab {
  opacity: var(--service-opacity, 0.28);
  transform: translateY(var(--service-shift, 6.5rem));
  will-change: transform, opacity;
}

.service-constellation.is-staged .service-slab-video {
  --service-opacity: var(--service-opacity-video, 0.28);
  --service-shift: var(--service-shift-video, 6.5rem);
}

.service-constellation.is-staged .service-slab-brand {
  --service-opacity: var(--service-opacity-brand, 0.28);
  --service-shift: var(--service-shift-brand, 6.5rem);
}

.service-constellation.is-staged .service-slab-photo {
  --service-opacity: var(--service-opacity-photo, 0.28);
  --service-shift: var(--service-shift-photo, 6.5rem);
}

.service-slab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 14, 0.06), rgba(6, 10, 14, 0.46));
  z-index: 1;
}

.service-slab::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 243, 235, 0.18);
  clip-path: inherit;
  z-index: 3;
  pointer-events: none;
}

.service-slab-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-slab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1.04);
    transition: transform 360ms ease, filter 360ms ease;
  }

.service-slab:hover .service-slab-image img,
.service-slab:focus-within .service-slab-image img {
  transform: scale(1.12);
  filter: saturate(1) contrast(1.05);
}

.service-slab-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.65rem;
  padding: 10rem 0.25rem 0.45rem;
}

.service-slab-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(247, 243, 235, 0.2);
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.32);
  color: rgba(247, 243, 235, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-slab h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.service-slab p {
  margin: 0;
  max-width: 20rem;
  color: rgba(247, 243, 235, 0.9);
  line-height: 1.8;
}

.service-slab-video .service-slab-image img {
  object-position: 58% center;
}

.service-slab-brand .service-slab-image img {
  object-position: center center;
}

.service-slab-photo .service-slab-image img {
  object-position: 52% center;
}

.service-constellation-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 1.45rem;
}

.service-constellation-cta {
  min-width: min(100%, 21rem);
}

.service-constellation.is-staged .service-constellation-footer {
  opacity: var(--service-cta-opacity, 0.28);
  transform: translateY(var(--service-cta-shift, 5rem));
  will-change: transform, opacity;
  transition: transform 260ms ease, opacity 260ms ease;
}

.services-offer-heading {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: min(100%, 54rem);
  margin: 0;
  text-align: center;
  justify-items: center;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: var(--services-title-opacity, 0);
}

.services-offer-heading h2 {
    display: grid;
    gap: 0.12em;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
    transform: translateY(var(--services-title-shift, 1.5rem));
  }

.services-offer-heading h2 span {
  display: block;
  white-space: nowrap;
}

.service-card {
  display: grid;
  min-height: 100%;
}

.service-card-media {
  aspect-ratio: 1.1 / 0.9;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-copy {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  position: relative;
  z-index: 2;
}

.service-card-copy h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.service-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-card-link {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-layout,
.consult-layout,
.route-grid,
.testimonial-grid,
.service-list-grid,
.gallery-grid {
  display: grid;
  gap: 1.2rem;
}

.story-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 28rem;
  box-shadow: var(--shadow-lg);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel {
  padding: 2rem;
}

.story-panel h2,
.story-panel h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.03;
}

.story-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.82;
}

.split-checks {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 1.8rem;
}

.split-checks span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted-strong);
  line-height: 1.55;
}

.split-checks span::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--gold-bright), var(--steel));
  box-shadow: 0 0 0 0.32rem rgba(194, 164, 94, 0.08);
}

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

.card {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  background: var(--gold-soft);
  color: var(--gold-bright);
  font-size: 1rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pattern-break {
  position: relative;
  padding: 4.8rem 0;
  background:
    radial-gradient(circle at top, rgba(194, 164, 94, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.84), rgba(7, 9, 12, 0.84));
}

.pattern-break-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.pattern-break h2 {
  margin: 0;
  max-width: 36rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.pattern-break p {
  margin: 0;
  max-width: 32rem;
  color: var(--muted-strong);
  line-height: 1.8;
}

.consult-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }

.contact-stack,
.contact-form-panel {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
    height: 100%;
  }

.contact-stack h2,
.contact-form-panel h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.contact-stack p,
.contact-form-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-point {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

#consultation .contact-point {
  border-color: rgba(194, 164, 94, 0.16);
  background: rgba(255, 250, 244, 0.76);
}

.contact-point-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #000000;
}

.contact-point-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  color: #17120b;
}

.contact-point-icon svg path,
.contact-point-icon svg circle,
.contact-point-icon svg rect,
.contact-point-icon svg line,
.contact-point-icon svg polyline {
  stroke: #17120b;
}

.contact-point strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-point span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-point::after {
  display: none;
}

.contact-stack::after,
.contact-form-panel::after {
  display: none;
}

.contact-submit-button {
  box-shadow: none;
}

.contact-submit-button::before {
  display: none;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
  box-shadow: none;
}

.resume-upload-card {
  margin-top: 1.2rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

#consultation .resume-upload-card {
  border-color: rgba(194, 164, 94, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(250, 243, 234, 0.86)),
    rgba(255, 255, 255, 0.7);
}

.resume-upload-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(194, 164, 94, 0.09), transparent 52%);
}

.resume-upload-card > * {
  position: relative;
  z-index: 2;
}

.resume-upload-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.resume-upload-avatar {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #17120b;
}

.resume-upload-avatar span {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resume-upload-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.resume-upload-copy strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.resume-upload-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.resume-upload-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.resume-upload-card.has-file .resume-upload-actions {
  justify-content: center;
}

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

.resume-upload-trigger,
.resume-upload-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.1rem;
  border-radius: 0.95rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.resume-upload-trigger {
  border: 1px solid rgba(194, 164, 94, 0.28);
  background: linear-gradient(135deg, rgba(194, 164, 94, 0.18), rgba(140, 168, 191, 0.1));
  color: var(--gold-bright);
}

.resume-upload-remove {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

.resume-upload-remove[hidden] {
  display: none !important;
}

.resume-upload-trigger:hover,
.resume-upload-remove:hover {
  transform: translateY(-1px);
}

.resume-upload-trigger:hover {
  border-color: rgba(216, 187, 115, 0.42);
  color: var(--text);
}

.resume-upload-remove:hover {
  border-color: rgba(194, 164, 94, 0.2);
  color: var(--text);
}

.resume-upload-meta {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: center;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.form-field span {
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028)),
    rgba(10, 14, 20, 0.9);
  color: var(--text);
  padding: 0.92rem 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

#consultation .form-field input,
#consultation .form-field textarea,
#consultation .form-field select {
  border-color: rgba(194, 164, 94, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(246, 238, 227, 0.92)),
    rgba(255, 255, 255, 0.85);
  color: #2b241c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.form-field select {
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23d8bb73' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, calc(100% - 1rem) 50%;
  background-size: auto, 1rem;
  color: var(--text);
  padding-right: 2.8rem;
}

.form-field select option {
  background: #0b1017;
  color: #f3efe7;
}

#consultation .form-field select option {
  background: #f6efe5;
  color: #2b241c;
}

.form-field textarea {
  min-height: 14rem;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035)),
    rgba(12, 16, 23, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 0.18rem rgba(194, 164, 94, 0.12);
}

#consultation .form-field input:focus,
#consultation .form-field textarea:focus,
#consultation .form-field select:focus {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(248, 240, 229, 0.96)),
    rgba(255, 255, 255, 0.92);
}

.consent-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.5rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-row input {
  margin-top: 0.15rem;
}

.career-form-panel .form-field input[type="file"] {
  padding: 0.8rem 0.9rem;
  cursor: pointer;
}

.career-form-panel .form-field input[type="file"]::file-selector-button {
  margin-right: 0.8rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(194, 164, 94, 0.3);
  border-radius: 999px;
  background: rgba(194, 164, 94, 0.12);
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.pricing-section {
  margin-bottom: var(--section-break-gap);
}

#pricing.is-staged {
  opacity: var(--pricing-title-opacity, 0.28);
  transform: translateY(var(--pricing-title-shift, 4rem));
  will-change: transform, opacity;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.1rem;
}

.pricing-toggle {
  width: fit-content;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 38px rgba(5, 7, 11, 0.18);
}

.pricing-section .pricing-toggle {
  border-color: rgba(194, 164, 94, 0.22);
  background: rgba(255, 248, 238, 0.88);
  box-shadow: 0 18px 32px rgba(96, 79, 46, 0.1);
}

.pricing-toggle-button {
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pricing-toggle-button:hover,
.pricing-toggle-button:focus-visible {
  color: var(--text);
}

.pricing-toggle-button.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.pricing-section .pricing-toggle-button.is-active {
  background: rgba(194, 164, 94, 0.16);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-section.is-staged .pricing-toggle {
  opacity: var(--pricing-toggle-opacity, 0.28);
  transform: translateY(var(--pricing-toggle-shift, 4.5rem));
  will-change: transform, opacity;
}

.pricing-section.is-staged .pricing-card {
  opacity: var(--pricing-opacity, 0.28);
  transform: translateY(var(--pricing-shift, 6.5rem));
  will-change: transform, opacity;
}

.pricing-section.is-staged .pricing-card:nth-child(1) {
  --pricing-opacity: var(--pricing-opacity-1, 0.28);
  --pricing-shift: var(--pricing-shift-1, 6.5rem);
}

.pricing-section.is-staged .pricing-card:nth-child(2) {
  --pricing-opacity: var(--pricing-opacity-2, 0.28);
  --pricing-shift: var(--pricing-shift-2, 6.5rem);
}

.pricing-section.is-staged .pricing-card:nth-child(3) {
  --pricing-opacity: var(--pricing-opacity-3, 0.28);
  --pricing-shift: var(--pricing-shift-3, 6.5rem);
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.4rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--bg-panel);
  box-shadow: 0 20px 46px rgba(5, 7, 11, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 164, 94, 0.2);
  box-shadow: 0 26px 54px rgba(5, 7, 11, 0.24);
}

.pricing-section .pricing-card:hover {
  box-shadow: 0 24px 48px rgba(96, 79, 46, 0.14);
}

.pricing-card-highlighted {
  --pricing-scale: 1;
  border-color: rgba(194, 164, 94, 0.28);
  background:
    linear-gradient(135deg, rgba(194, 164, 94, 0.12), rgba(140, 168, 191, 0.08)),
    var(--bg-panel);
  box-shadow: 0 28px 62px rgba(5, 7, 11, 0.28);
}

.pricing-card-head h3 {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  text-align: center;
}

.pricing-value-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.pricing-value {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.pricing-term {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

.pricing-description {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
}

.pricing-feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 1.95rem;
  color: var(--muted-strong);
  line-height: 1.7;
}

.pricing-feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-card-button {
  width: 100%;
  min-height: 3.45rem;
  align-self: end;
}

.pricing-assistant-cta {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
  transition: transform 240ms ease, opacity 240ms ease;
}

.pricing-section.is-staged .pricing-assistant-cta {
  opacity: var(--pricing-cta-opacity, 0.28);
  transform: translateY(calc(var(--pricing-cta-shift, 5.5rem) * 0.6));
  will-change: transform, opacity;
}

.pricing-assistant-button {
  min-width: min(100%, 34rem);
  padding-inline: 1.6rem;
  text-align: center;
  box-shadow: none;
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    background-color 220ms ease;
}

.pricing-section.is-staged .pricing-assistant-button {
  opacity: var(--pricing-cta-opacity, 0.28);
  transform: translateY(var(--pricing-cta-shift, 5.5rem)) scale(calc(0.94 + (var(--pricing-cta-opacity, 0.28) * 0.06)));
  will-change: transform, opacity;
}

.pricing-assistant-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -140%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-22deg);
  transition: left 320ms ease;
  z-index: 1;
  pointer-events: none;
}

.pricing-assistant-button:hover,
.pricing-assistant-button:focus-visible {
  box-shadow: none;
}

.pricing-assistant-button:hover::before,
.pricing-assistant-button:focus-visible::before {
  left: 130%;
}

#consultation.is-staged .consult-section-heading {
  opacity: var(--consult-heading-opacity, 0.28);
  transform: translateY(var(--consult-heading-shift, 4rem));
  will-change: transform, opacity;
}

#consultation.is-staged .contact-stack,
#consultation.is-staged .contact-form-panel {
  opacity: var(--consult-panel-opacity, 0.28);
  transform: translateY(var(--consult-panel-shift, 6rem));
  will-change: transform, opacity;
}

#consultation.is-staged .contact-stack {
  --consult-panel-opacity: var(--consult-panel-opacity-1, 0.28);
  --consult-panel-shift: var(--consult-panel-shift-1, 6rem);
}

#consultation.is-staged .contact-form-panel {
  --consult-panel-opacity: var(--consult-panel-opacity-2, 0.28);
  --consult-panel-shift: var(--consult-panel-shift-2, 6rem);
}

.pricing-popular-pill {
  position: absolute;
  top: -0.95rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-section .pricing-popular-pill {
  border-color: rgba(194, 164, 94, 0.18);
  background: rgba(250, 243, 233, 0.96);
  color: #6a5d49;
}

.pricing-pill-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0.55rem rgba(216, 187, 115, 0.75);
}

.pricing-help-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.85rem;
}

.pricing-help-row p {
  margin: 0;
  max-width: 31rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-capabilities-heading {
  margin-top: 0;
  padding-top: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.service-capabilities-heading.spacer-top {
  margin-top: var(--section-break-gap);
}

.service-capabilities-heading h2,
.consult-section-heading h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.service-list-card {
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
}

.service-list-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
}

.service-list-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-list-card li + li {
  margin-top: 0.45rem;
}

.review-shell {
  position: relative;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.review-control {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--gold-bright);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.review-control:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(194, 164, 94, 0.08);
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  transition: transform 320ms ease;
}

.review-card {
  padding: 1.45rem;
  position: relative;
  z-index: 2;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.review-person {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.review-avatar {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--steel));
  color: #11161d;
  font-weight: 800;
}

.review-person strong {
  display: block;
  font-size: 0.95rem;
}

.review-person span,
.review-source {
  color: var(--muted);
  font-size: 0.82rem;
}

.review-stars {
  margin-bottom: 0.9rem;
  color: var(--gold-bright);
  letter-spacing: 0.16em;
}

.review-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.78;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: var(--text);
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 1.3rem;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: rgba(8, 12, 18, 0.8);
  box-shadow: var(--shadow-md);
}

#faq .faq-accordion {
  background: rgba(252, 247, 239, 0.88);
  border-color: rgba(194, 164, 94, 0.18);
}

#faq.is-staged .faq-section-heading {
  opacity: var(--faq-heading-opacity, 0.28);
  transform: translateY(var(--faq-heading-shift, 4rem));
  will-change: transform, opacity;
}

.faq-accordion-list {
  display: grid;
  gap: 1.1rem;
}

.faq-scroll-item {
  display: grid;
  gap: 0.75rem;
}

#faq.is-staged .faq-scroll-item {
  opacity: var(--faq-item-opacity, 0.28);
  transform: translateY(var(--faq-item-shift, 5.25rem));
  will-change: transform, opacity;
}

#faq.is-staged .faq-scroll-item:nth-child(1) {
  --faq-item-opacity: var(--faq-item-opacity-1, 0.28);
  --faq-item-shift: var(--faq-item-shift-1, 5.25rem);
}

#faq.is-staged .faq-scroll-item:nth-child(2) {
  --faq-item-opacity: var(--faq-item-opacity-2, 0.28);
  --faq-item-shift: var(--faq-item-shift-2, 5.25rem);
}

#faq.is-staged .faq-scroll-item:nth-child(3) {
  --faq-item-opacity: var(--faq-item-opacity-3, 0.28);
  --faq-item-shift: var(--faq-item-shift-3, 5.25rem);
}

#faq.is-staged .faq-scroll-item:nth-child(4) {
  --faq-item-opacity: var(--faq-item-opacity-4, 0.28);
  --faq-item-shift: var(--faq-item-shift-4, 5.25rem);
}

#faq.is-staged .faq-scroll-item:nth-child(5) {
  --faq-item-opacity: var(--faq-item-opacity-5, 0.28);
  --faq-item-shift: var(--faq-item-shift-5, 5.25rem);
}

.faq-accordion-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-accordion-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100% - 3.5rem);
  padding: 0.95rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

#faq .faq-accordion-title {
  border-color: rgba(194, 164, 94, 0.14);
  background: rgba(255, 250, 243, 0.84);
  color: #2b241c;
}

.faq-accordion-tab.is-active .faq-accordion-title,
.faq-accordion-tab:hover .faq-accordion-title {
  border-color: rgba(194, 164, 94, 0.22);
  background: rgba(255, 255, 255, 0.065);
}

#faq .faq-accordion-tab.is-active .faq-accordion-title,
#faq .faq-accordion-tab:hover .faq-accordion-title {
  background: rgba(247, 239, 227, 0.96);
}

.faq-accordion-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

#faq .faq-accordion-icon {
  background: rgba(246, 236, 221, 0.9);
  border-color: rgba(194, 164, 94, 0.16);
  color: #8a7758;
}

.faq-accordion-tab.is-active .faq-accordion-icon,
.faq-accordion-tab:hover .faq-accordion-icon {
  border-color: rgba(194, 164, 94, 0.24);
  background: rgba(194, 164, 94, 0.1);
  color: var(--gold-bright);
}

.faq-accordion-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 320ms ease, opacity 320ms ease;
}

.faq-accordion-panel.is-active {
  max-height: 20rem;
  opacity: 1;
  pointer-events: auto;
}

.faq-accordion-copy {
  margin-left: auto;
  width: min(100%, 40rem);
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(194, 164, 94, 0.34);
  background: linear-gradient(135deg, rgba(216, 187, 115, 0.96), rgba(194, 164, 94, 0.96));
  color: #17120b;
  opacity: 0;
  transform: translateY(-0.55rem) scale(0.985);
  transform-origin: top right;
  transition: opacity 320ms ease, transform 320ms ease;
}

.faq-accordion-panel.is-active .faq-accordion-copy {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.faq-accordion-copy p {
  margin: 0;
  color: #17120b;
  line-height: 1.8;
  font-weight: 600;
}

.faq-accordion-copy::after {
  display: none;
}

.faq-assistant-shell {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.8rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--bg-panel);
  box-shadow: var(--shadow-md);
}

#faq .faq-assistant-shell {
  border-color: rgba(194, 164, 94, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(248, 240, 229, 0.9)),
    rgba(255, 255, 255, 0.75);
}

#faq.is-staged .faq-assistant-shell {
  opacity: var(--faq-assistant-opacity, 0.28);
  transform: translateY(var(--faq-assistant-shift, 6rem));
  will-change: transform, opacity;
}

.faq-assistant-heading {
  display: grid;
  gap: 0.6rem;
}

.faq-assistant-heading h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.faq-assistant-heading p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-assistant-form {
  display: grid;
  gap: 0.95rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(194, 164, 94, 0.12), transparent 38%),
    rgba(8, 12, 18, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

#faq .faq-assistant-form {
  border-color: rgba(194, 164, 94, 0.18);
  background:
    radial-gradient(circle at top left, rgba(194, 164, 94, 0.08), transparent 38%),
    rgba(255, 250, 243, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.faq-assistant-textarea {
  width: 100%;
  min-height: 3rem;
  max-height: 15rem;
  padding: 0;
  border: 0;
  resize: none;
  overflow-y: auto;
  background: transparent;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  outline: none;
}

.faq-assistant-textarea::placeholder {
  color: rgba(216, 222, 228, 0.58);
}

#faq .faq-assistant-textarea::placeholder {
  color: rgba(109, 101, 91, 0.72);
}

.faq-assistant-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.faq-assistant-tip {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-assistant-button {
  width: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0;
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

.faq-assistant-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0.06rem) rotate(-8deg);
}

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

.gallery-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: var(--shadow-md);
  position: relative;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
}

.gallery-card-copy {
  padding: 1.3rem;
  position: relative;
  z-index: 2;
}

.gallery-card-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.gallery-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

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

.route-card {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.route-card h3 {
  margin: 0 0 0.75rem;
}

.route-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.route-card a {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-page {
  padding-bottom: 3rem;
}

.mobile-card-stack {
  display: grid;
  gap: 1rem;
}

.mobile-panel {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mobile-panel h2,
.mobile-panel h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
}

.mobile-panel p,
.mobile-panel li {
  color: var(--muted);
  line-height: 1.74;
}

.mobile-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.4), rgba(6, 9, 13, 0.92)),
    linear-gradient(90deg, #0a0f15, #111923);
  border-top: 1px solid var(--line);
}

.helpdesk-dock {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.helpdesk-fab {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(194, 164, 94, 0.36);
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 187, 115, 0.2), transparent 48%),
    linear-gradient(145deg, rgba(252, 246, 237, 0.98), rgba(239, 230, 216, 0.96));
  box-shadow:
    0 18px 34px rgba(96, 79, 46, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  color: #8a7445;
  text-decoration: none;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.helpdesk-fab:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(216, 187, 115, 0.58);
  box-shadow:
    0 22px 40px rgba(96, 79, 46, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.58) inset;
}

.helpdesk-fab-icon {
  position: relative;
  z-index: 2;
  font-size: 1.22rem;
  line-height: 1;
  flex: 0 0 auto;
}

.helpdesk-fab-icon-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.helpdesk-fab-icon-envelope {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.helpdesk-fab-icon-member {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.helpdesk-fab-icon-envelope svg,
.helpdesk-fab-icon-chat svg,
.helpdesk-fab-icon-member svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  fill: currentColor;
  filter: none;
}

.helpdesk-fab-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(249, 242, 232, 0.97);
  border: 1px solid rgba(194, 164, 94, 0.18);
  box-shadow: 0 12px 26px rgba(96, 79, 46, 0.14);
  color: #4e463d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.helpdesk-fab:hover .helpdesk-fab-label,
.helpdesk-fab:focus-visible .helpdesk-fab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-0.12rem);
}

.helpdesk-fab-assistant {
  border-color: rgba(140, 168, 191, 0.36);
  background:
    radial-gradient(circle at 30% 30%, rgba(140, 168, 191, 0.18), transparent 48%),
    linear-gradient(145deg, rgba(246, 242, 236, 0.98), rgba(231, 237, 242, 0.96));
  color: #647a90;
}

.helpdesk-fab-member {
  border-color: rgba(120, 132, 148, 0.34);
  background:
    radial-gradient(circle at 30% 30%, rgba(174, 182, 193, 0.22), transparent 48%),
    linear-gradient(145deg, rgba(245, 245, 245, 0.98), rgba(214, 219, 226, 0.96));
  color: #5c6673;
}

.helpdesk-fab-ping {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(194, 164, 94, 0.18);
  animation: helpdeskPulse 2.6s ease-out infinite;
}

@keyframes helpdeskPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.footer-banner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.9rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(194, 164, 94, 0.14), rgba(140, 168, 191, 0.12)),
    rgba(255, 255, 255, 0.03);
}

.footer-banner img {
  width: 10.5rem;
}

.footer-symbol {
  width: 8.8rem !important;
}

.footer-banner p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta-button {
  min-width: 11.5rem;
  width: auto;
  padding: 0.95rem 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 1rem;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  line-height: 1;
  text-align: center;
  justify-self: end;
  box-shadow: none;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease, border-color 220ms ease;
}

.footer-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -140%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-22deg);
  transition: left 320ms ease;
  z-index: 1;
  pointer-events: none;
}

.footer-cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 55%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 0;
  pointer-events: none;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.footer-cta-button:hover::before {
  left: 130%;
}

.footer-cta-button:hover::after {
  opacity: 1;
  transform: scale(1);
}

.footer-cta-button:active {
  transform: translateY(0);
}

.mobile-footer-symbol {
  width: 5.2rem;
  margin: 0 auto 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1.2rem;
}

.footer-grid h3 {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-bottom {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-scroll-item {
  transition: transform 260ms ease, border-color 260ms ease;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.spacer-top {
  margin-top: 1rem;
}

.consult-section-spacing {
  margin-top: var(--section-break-gap);
}

.consult-section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
  margin-top: 0;
}

.consult-section-heading.consult-section-spacing {
  margin-top: 0;
}

.consult-layout.consult-section-spacing {
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .hero-layout,
  .login-layout,
  .overview-grid,
  .parallax-content-grid,
  .story-layout,
  .consult-layout,
  .footer-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .service-constellation,
  .three-up-grid,
  .service-list-grid,
  .gallery-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

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

  .topbar-inner {
    justify-content: flex-end;
  }

  .topbar-member-copy {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .site-header {
    top: 2.65rem;
  }

  .header-inner {
    min-height: 4.8rem;
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 9.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-bright);
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.55rem);
    display: grid;
    gap: 0.4rem;
    padding: 0.9rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--bg-panel-strong);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.8rem 0.2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    gap: 1.2rem;
  }

  .login-copy {
    margin-top: 0;
    text-align: center;
    justify-self: center;
  }

  .login-copy-body {
    margin-top: 0.85rem;
  }

  .login-copy p {
    margin-inline: auto;
  }

  .login-panel {
    margin-top: 0;
    width: min(100%, 30rem);
    justify-self: center;
  }

  .login-dashboard-showcase {
    padding-top: 1rem;
  }

  .parallax-block {
    padding-top: 1rem;
  }

  .parallax-stage {
    min-height: 32rem;
  }

  .parallax-media,
  .parallax-shade {
    border-radius: 1.45rem;
  }

  .parallax-copy h2 {
    max-width: 16ch;
    font-size: clamp(2.6rem, 10vw, 4.5rem);
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .hero-sidecard {
    padding: 1.35rem;
  }

  .form-grid,
  .feature-grid,
  .service-grid,
  .service-constellation,
  .three-up-grid,
  .service-list-grid,
  .gallery-grid,
  .route-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .pricing-help-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-accordion {
    padding: 1rem;
  }

  .faq-accordion-title {
    max-width: calc(100% - 3rem);
    padding: 0.9rem 1rem;
    font-size: 0.94rem;
  }

  .faq-accordion-copy {
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .faq-assistant-shell {
    padding: 1rem;
  }

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

  .faq-assistant-button {
    width: 100%;
    min-width: 0;
  }

    .review-track {
      grid-auto-columns: 100%;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 1.1rem, 1220px);
  }

  .topbar-inner {
    justify-content: center;
  }

  .social-row {
    justify-content: center;
  }

  .hero,
  .subpage-hero {
    padding-top: 6rem;
  }

  .parallax-block {
    padding-top: 0.85rem;
  }

  .parallax-stage {
    min-height: 26rem;
  }

  .parallax-media,
  .parallax-shade {
    border-radius: 1.1rem;
  }

  .parallax-copy {
    padding: 1.3rem;
  }

  .parallax-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .parallax-subheading {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .section {
    padding: 4rem 0;
  }

  .login-header {
    padding-top: 0.85rem;
  }

  .login-header-inner {
    justify-content: center;
  }

  .login-header .brand img {
    width: min(82vw, 14rem);
  }

  .login-hero {
    padding: 2rem 0 2.6rem;
  }

  .login-layout {
    gap: 1.2rem;
  }

  .login-copy {
    max-width: min(100%, 19rem);
  }

  .login-copy-body {
    margin-top: 0.7rem;
  }

  .login-copy h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 0.98;
  }

  .login-copy p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .login-panel {
    width: min(100%, 21rem);
    margin-top: 0;
    padding: 1.15rem;
    border-radius: 1rem;
  }

  .login-form {
    gap: 0.8rem;
  }

  .login-form .form-field {
    margin-bottom: 0.6rem;
  }

  .login-dashboard-showcase {
    padding: 0 0 3rem;
  }

  .login-dashboard-image {
    border-radius: 0.9rem;
  }

  .intro-panel,
  .card,
  .story-panel,
  .contact-stack,
  .contact-form-panel,
  .service-list-card,
  .review-card,
  .route-card {
    padding: 1.25rem;
  }

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

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .footer-cta-button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .helpdesk-dock {
    right: 1rem;
    bottom: 1rem;
    gap: 0.65rem;
  }

  .helpdesk-fab {
    width: 3.5rem;
    height: 3.5rem;
  }

  .helpdesk-fab-label {
    display: none;
  }

  .service-slab {
        min-height: 31rem;
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
      }

  .service-constellation {
    padding-top: 9rem;
  }

  .service-slab-copy {
      padding-top: 8rem;
    }

  .pricing-card,
  .pricing-toggle-button {
    padding: 1.2rem;
  }

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

    .service-constellation {
      padding-top: 7.5rem;
    }

    .services-offer-heading {
      width: min(100%, 34rem);
    }

    .services-offer-heading h2 span {
      white-space: normal;
    }

  .pricing-card-highlighted {
    transform: none;
  }

  .pricing-feature-list li {
    padding-right: 0.9rem;
  }

  .pricing-assistant-button {
    width: 100%;
    min-width: 0;
  }

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

  .story-media {
    min-height: 20rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
