/* Luxury Footer Legal Links */
.footer-legal-link {
  display: block;
  margin-bottom: 0.7em;
  padding: 0.7em 1.1em;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(232,184,91,0.08) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 2px 12px rgba(232,184,91,0.04);
  border: 1px solid rgba(232,184,91,0.13);
  transition: background 0.2s, box-shadow 0.2s, border 0.2s;
  text-align: left;
}
.footer-legal-link:hover {
  background: linear-gradient(90deg, rgba(232,184,91,0.16) 0%, rgba(255,255,255,0.04) 100%);
  box-shadow: 0 4px 18px rgba(232,184,91,0.10);
  border: 1px solid rgba(232,184,91,0.22);
}
.footer-legal-title {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: 0.1em;
}
.footer-legal-desc {
  display: block;
  font-size: 0.93rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1em;
  letter-spacing: 0.01em;
}
:root {
  --bg: #0B0B0F;
  --bg-deep: #141420;
  --surface: #141420;
  --surface-strong: #141420;
  --surface-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(212, 175, 55, 0.28);
  --text: #F5F2E8;
  --text-muted: #b7bcc9;
  --text-soft: #8e97a8;
  --gold: #D4AF37;
  --gold-soft: #f3d7a0;
  /* Brand logo header/footer */
  .site-header .logo {
    display: flex;
    align-items: center;
    font-family: Fraunces, Georgia, serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.01em;
    text-decoration: none;
  }
  .site-header .logo img {
    height: 2.2rem;
    margin-right: 0.7em;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(212,175,55,0.08);
  }
  .site-footer .footer-brand {
    display: flex;
    align-items: center;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5em;
  }
  .site-footer .footer-brand img {
    height: 1.7rem;
    margin-right: 0.5em;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(212,175,55,0.08);
  }
  --teal: #66d9c0;
  --rose: #f17b88;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --ease: 260ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(232, 184, 91, 0.1), transparent 28%),
    radial-gradient(circle at left center, rgba(102, 217, 192, 0.08), transparent 24%),
    linear-gradient(180deg, #0b0e14 0%, #10131c 40%, #0a0d14 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

img,
video {
  max-width: 100%;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  z-index: -2;
  pointer-events: none;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: 3%;
  right: -100px;
  background: radial-gradient(circle, rgba(232, 184, 91, 0.56), transparent 70%);
}

.orb-b {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 12%;
  background: radial-gradient(circle, rgba(102, 217, 192, 0.34), transparent 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  transition: background-color var(--ease), border-color var(--ease), backdrop-filter var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 12, 17, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.42rem 0.6rem;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

.lang-btn:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.lang-btn.active {
  color: #10131a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--ease), transform var(--ease);
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease);
}

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

.btn-primary {
  color: #10131a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 40px rgba(232, 184, 91, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(232, 184, 91, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(232, 184, 91, 0.08);
  border-color: rgba(232, 184, 91, 0.48);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroPulse 9s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.09);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 7, 11, 0.93) 10%, rgba(8, 11, 16, 0.7) 48%, rgba(8, 11, 16, 0.86) 100%),
    radial-gradient(circle at 78% 22%, rgba(102, 217, 192, 0.16), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(232, 184, 91, 0.18), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 72px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-title,
h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero-title {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  max-width: 980px;
}

.service-page-title {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  max-width: 860px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: wordIn 620ms ease forwards;
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle,
.section-subtext,
.card p,
.card li,
.footer-block p,
.cta-copy p,
.legal-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-subtitle {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e7e9ef;
  font-size: 0.92rem;
}

.scroll-indicator {
  margin-top: 36px;
  width: 44px;
  height: 66px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  animation: bounceY 1.3s ease-in-out infinite;
}

@keyframes bounceY {
  0%,
  100% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(8px);
  }
}

.section,
.service-main,
.legal-main {
  position: relative;
  padding: 104px 0;
}

.service-main,
.legal-main {
  padding-top: 140px;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(232, 184, 91, 0.03), rgba(102, 217, 192, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 780px;
}

.section-heading-left {
  max-width: 760px;
}

h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.section-subtext {
  margin-top: 14px;
  max-width: 760px;
}

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 184, 91, 0.08), transparent 38%, rgba(102, 217, 192, 0.08));
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 184, 91, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.badge {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0f1218;
  font-weight: 800;
}

.lane-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 700;
}

.text-link:hover {
  color: var(--gold);
}

.feature-split,
.detail-grid,
.format-grid,
.lane-grid,
.services-grid,
.industries-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

.feature-split,
.detail-grid,
.format-grid,
.lane-grid,
.services-grid,
.industries-grid,
.mini-grid {
  grid-template-columns: 1fr;
}

.feature-split {
  margin-top: 30px;
}

.feature-split-tight {
  align-items: start;
}

.feature-lead h3,
.lane-card h3,
.service-card h3,
.detail-card h3,
.mini-card h3,
.format-card h3,
.industry-card h3 {
  font-size: 1.18rem;
}

.check-list,
.simple-steps,
.service-card-simple ul,
.legal-card ul {
  margin-top: 14px;
  padding-left: 1.1rem;
  display: grid;
  gap: 10px;
}

.simple-steps {
  padding-left: 1.25rem;
}

.service-links {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-band {
  margin-top: 28px;
}

.service-band-card {
  border-color: rgba(232, 184, 91, 0.18);
}

.service-section,
.story-section {
  margin-top: 34px;
}

.stat-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-row:last-child {
  border-bottom: 0;
}

.stat-row strong {
  color: var(--text);
}

.stat-row span {
  color: var(--text-muted);
  text-align: right;
}

.format-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(10, 12, 16, 0.3)),
    linear-gradient(135deg, rgba(102, 217, 192, 0.09), rgba(232, 184, 91, 0.07));
}

.format-card p {
  margin-top: 10px;
  color: var(--gold-soft);
  font-weight: 700;
}

.detail-divider {
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.08);
}

.industry-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
}

.service-wrap,
.legal-wrap {
  max-width: 1180px;
  margin-inline: auto;
}

.service-stack {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.service-card-simple h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.service-card-simple p {
  margin-top: 10px;
}

.section-cta {
  padding-bottom: 112px;
}

.cta-wrap {
  display: grid;
  gap: 22px;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form label {
  display: grid;
  gap: 8px;
  color: #ebedf4;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(7, 9, 14, 0.74);
  color: var(--text);
  padding: 0.88rem 0.95rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(232, 184, 91, 0.55);
  box-shadow: 0 0 0 4px rgba(232, 184, 91, 0.12);
}

.form-note {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.form-success {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(102, 217, 192, 0.28);
  background: rgba(102, 217, 192, 0.1);
  color: #d7fff6;
}

.form-success.show {
  display: block;
  animation: fadeInUp 360ms ease-out;
}

.cta-contact {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.cta-contact a {
  color: var(--gold-soft);
}

.cta-banner {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0 34px;
  background: rgba(8, 10, 15, 0.64);
}

.footer-wrap {
  display: grid;
  gap: 24px;
}

.footer-block {
  display: grid;
  gap: 10px;
}

.footer-block a {
  color: var(--text-muted);
}

.footer-block a:hover {
  color: var(--gold-soft);
}

.footer-brand,
.footer-heading {
  color: var(--text);
  font-weight: 800;
}

.footer-brand {
  font-family: Fraunces, Georgia, serif;
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  color: var(--text-soft);
}

.legal-card {
  margin-top: 18px;
}

.legal-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding-bottom: 86px;
  }

  .feature-split,
  .detail-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .lane-grid,
  .mini-grid,
  .industries-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 1024px) {
  .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .cta-wrap {
    grid-template-columns: 1fr 0.92fr;
    align-items: start;
  }

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

@media (max-width: 767px) {
  .menu-btn {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(11, 13, 18, 0.97);
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 92vh;
  }

  .lang-switcher {
    order: 2;
  }

  .card {
    padding: 24px;
  }

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

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-row {
    flex-direction: column;
  }

  .stat-row span {
    text-align: left;
  }
}
