:root {
  --bg: #080b1f;
  --panel: #101633;
  --panel-2: #241127;
  --ink: #fffdf5;
  --muted: #d8cfbc;
  --dark: #070916;
  --paper: #fff7df;
  --paper-muted: #746b58;
  --line: rgba(246, 210, 130, 0.34);
  --gold: #d6a443;
  --gold-2: #ffe3a0;
  --gold-3: #9d6a22;
  --royal: #101941;
  --wine: #5a162b;
  --wine-2: #2b0d1d;
  --shadow: 0 30px 94px rgba(0, 0, 0, 0.56);
  --royal-glow: 0 0 0 1px rgba(255, 227, 160, 0.18), 0 26px 76px rgba(0, 0, 0, 0.38), 0 0 44px rgba(214, 164, 67, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% -8%, rgba(246, 210, 130, 0.2), transparent 27%),
    radial-gradient(circle at 14% 12%, rgba(90, 22, 43, 0.5), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(16, 25, 65, 0.82), transparent 38%),
    linear-gradient(135deg, #080b1f 0%, #111944 34%, #351126 68%, #080b1f 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 227, 160, 0.16), transparent 42%),
    linear-gradient(115deg, rgba(255, 248, 232, 0.055), transparent 36%, rgba(90, 22, 43, 0.2) 68%, transparent);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 227, 160, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16, 25, 65, 0.9), rgba(43, 13, 29, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 248, 232, 0.1);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(135deg, rgba(8, 11, 31, 0.98), rgba(43, 13, 29, 0.95));
}

.site-header:hover {
  border-color: rgba(255, 227, 160, 0.66);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.38), 0 0 36px rgba(214, 164, 67, 0.14), inset 0 1px 0 rgba(255, 248, 232, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.24s ease;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(214, 164, 67, 0.55);
  box-shadow: 0 6px 20px -8px rgba(214, 164, 67, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
  animation: brandLogoPulse 4.5s ease-in-out infinite;
}

@keyframes brandLogoPulse {
  0%, 100% {
    border-color: rgba(214, 164, 67, 0.55);
    box-shadow: 0 6px 20px -8px rgba(214, 164, 67, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(255, 227, 160, 0);
  }
  50% {
    border-color: rgba(255, 227, 160, 0.9);
    box-shadow: 0 8px 24px -8px rgba(214, 164, 67, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 22px rgba(255, 227, 160, 0.35);
  }
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
}

.brand:hover .brand-logo {
  animation-play-state: paused;
  border-color: rgba(255, 227, 160, 0.95);
  box-shadow: 0 10px 28px -8px rgba(214, 164, 67, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 28px rgba(255, 227, 160, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo { animation: none; }
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  font-family: var(--serif);
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: rgba(255, 253, 245, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(243, 210, 138, 0.13);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 116px 24px 92px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 227, 160, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(8, 11, 31, 0.96), rgba(43, 13, 29, 0.78) 48%, rgba(16, 25, 65, 0.26)),
    linear-gradient(0deg, rgba(8, 11, 31, 0.98), rgba(8, 11, 31, 0.08) 48%);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-content {
  padding-bottom: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(1.95rem, 4.1vw, 3.65rem);
  line-height: 1.08;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.62);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 253, 245, 0.82);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 248, 232, 0.46) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.24s ease, transform 0.48s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.main-nav a:focus-visible,
.nav-toggle:focus-visible,
.scroll-down:focus-visible,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 227, 160, 0.76);
  outline-offset: 3px;
}

.btn.primary {
  border-color: rgba(255, 248, 232, 0.22);
  background: linear-gradient(135deg, #f5d88f, #c9963f 52%, #8d6124);
  color: #090a0f;
  box-shadow: 0 14px 34px rgba(201, 150, 63, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn.primary:hover {
  box-shadow: 0 18px 44px rgba(201, 150, 63, 0.34), 0 0 34px rgba(255, 227, 160, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn.secondary {
  border-color: rgba(255, 227, 160, 0.42);
  background: rgba(255, 248, 232, 0.09);
  color: var(--ink);
}

.btn.secondary:hover,
.btn.light:hover {
  border-color: rgba(255, 227, 160, 0.72);
  box-shadow: 0 14px 38px rgba(214, 164, 67, 0.16);
}

.btn.light {
  background: var(--paper);
  color: var(--dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.home-stats {
  margin-top: 72px;
  margin-bottom: 0;
}

.hero-stats div {
  padding: 22px;
  background: linear-gradient(135deg, rgba(16, 25, 65, 0.88), rgba(43, 13, 29, 0.78));
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 8;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 232, 0.54);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1b8, #c9963f 62%, #7c511d);
  color: #090a0f;
  cursor: pointer;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  animation: floatDown 2.4s ease-in-out infinite;
  box-shadow: 0 14px 34px rgba(201, 150, 63, 0.3), 0 0 0 rgba(255, 227, 160, 0);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.scroll-down span {
  width: 13px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.scroll-down:hover {
  background: linear-gradient(135deg, #fff8d8, #f0c16d);
  color: #090a0f;
  border-color: rgba(255, 248, 232, 0.86);
  box-shadow: 0 18px 42px rgba(201, 150, 63, 0.38), 0 0 32px rgba(255, 227, 160, 0.34);
}

@keyframes floatDown {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.45rem;
  color: var(--gold-2);
  font-family: var(--serif);
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section > .eyebrow + h2,
.process > h2 {
  position: relative;
}

.section > .eyebrow + h2::after,
.process > h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.intro-grid,
.story,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 54px;
  align-items: start;
}

.intro-grid p,
.story-copy p,
.feature-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.service-preview article,
.process-grid article,
.values-grid article,
.services-list article,
.contact-panel,
.contact-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 227, 160, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 227, 160, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 25, 65, 0.74), rgba(43, 13, 29, 0.48));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 248, 232, 0.05);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.service-preview article::before,
.process-grid article::before,
.values-grid article::before,
.services-list article::before,
.contact-panel::before,
.contact-form::before,
.mini-card::before,
.timeline div::before,
.feature-media::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 10%), rgba(255, 227, 160, 0.24), transparent 34%),
    linear-gradient(120deg, transparent, rgba(255, 248, 232, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-preview article > *,
.process-grid article > *,
.values-grid article > *,
.services-list article > *,
.contact-panel > *,
.contact-form > *,
.mini-card > *,
.timeline div > *,
.cta-band > * {
  position: relative;
  z-index: 1;
}

.service-preview article:hover,
.process-grid article:hover,
.values-grid article:hover,
.services-list article:hover,
.contact-panel:hover,
.contact-form:focus-within {
  border-color: rgba(255, 227, 160, 0.74);
  box-shadow: var(--royal-glow), inset 0 1px 0 rgba(255, 248, 232, 0.13);
  transform: translateY(-4px);
}

.service-preview article:hover::before,
.process-grid article:hover::before,
.values-grid article:hover::before,
.services-list article:hover::before,
.contact-panel:hover::before,
.contact-form:focus-within::before,
.mini-card:hover::before,
.timeline div:hover::before,
.feature-media:hover::before,
.cta-band:hover::before {
  opacity: 1;
}

.service-preview article {
  min-height: 240px;
  padding: 26px;
}

.icon,
.services-list article > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-2);
  font-weight: 900;
  font-family: var(--serif);
}

.service-preview p,
.process-grid p,
.values-grid p,
.services-list p,
.contact-panel p {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 210, 138, 0.18);
  box-shadow: var(--shadow);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.feature-media:hover {
  border-color: rgba(255, 227, 160, 0.58);
  box-shadow: var(--royal-glow), var(--shadow);
  transform: translateY(-3px);
}

.feature-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 62% 50%;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.feature-media:hover img {
  filter: saturate(1.04) contrast(1.1);
  transform: scale(1.035);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 28px;
  color: rgba(255, 253, 245, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
}

.process {
  padding-top: 20px;
}

.process > h2 {
  max-width: 780px;
}

.process-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.process-grid article,
.values-grid article {
  padding: 24px;
}

.process-grid strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 210, 138, 0.18);
  background: rgba(201, 150, 63, 0.14);
  color: var(--gold-2);
  transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.process-grid article:hover strong,
.values-grid article:hover .icon,
.service-preview article:hover .icon,
.services-list article:hover > span {
  text-shadow: 0 0 24px rgba(255, 227, 160, 0.44);
}

.process-grid article:hover strong {
  border-color: rgba(255, 227, 160, 0.66);
  background: rgba(214, 164, 67, 0.22);
  box-shadow: 0 0 24px rgba(214, 164, 67, 0.18);
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 92px;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 227, 160, 0.44);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 248, 232, 0.26), transparent 20%),
    linear-gradient(135deg, #ffe3a0 0%, #c18a31 31%, #5a162b 66%, #101941 100%);
  color: #fffdf5;
  box-shadow: var(--shadow);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.cta-band:hover {
  border-color: rgba(255, 248, 232, 0.72);
  box-shadow: var(--royal-glow), var(--shadow);
}

.cta-band .eyebrow {
  color: #ffe3a0;
}

.cta-band h2 {
  max-width: 790px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 126px max(24px, calc((100vw - var(--max)) / 2)) 108px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 227, 160, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(8, 11, 31, 0.95), rgba(43, 13, 29, 0.68), rgba(16, 25, 65, 0.22)),
    linear-gradient(0deg, var(--bg), transparent 42%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  filter: saturate(0.9) contrast(1.08) brightness(0.86);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 253, 245, 0.82);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.services-list article {
  min-height: 360px;
  padding: 28px;
}

.services-list h2 {
  font-size: clamp(1.42rem, 2vw, 2.05rem);
}

.story {
  padding-bottom: 30px;
}

.values-grid {
  padding-top: 36px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 227, 160, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 227, 160, 0.22);
}

.timeline div {
  position: relative;
  isolation: isolate;
  min-height: 170px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(16, 25, 65, 0.92), rgba(43, 13, 29, 0.7));
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.timeline div:hover {
  background: linear-gradient(135deg, rgba(24, 35, 86, 0.96), rgba(90, 22, 43, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255, 227, 160, 0.38), 0 0 32px rgba(214, 164, 67, 0.16);
}

.timeline strong {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-2);
  font-size: 1.55rem;
}

.timeline span {
  color: var(--muted);
}

.contact-layout {
  align-items: stretch;
}

.contact-panel,
.contact-form {
  padding: 32px;
}

.contact-panel a {
  color: var(--gold-2);
  font-weight: 800;
}

.mini-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 227, 160, 0.28);
  background: rgba(214, 164, 67, 0.14);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.mini-card:hover {
  border-color: rgba(255, 227, 160, 0.66);
  box-shadow: 0 0 30px rgba(214, 164, 67, 0.16);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card span {
  margin-top: 7px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 245, 0.9);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 227, 160, 0.3);
  border-radius: var(--radius);
  background: rgba(8, 11, 31, 0.42);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 227, 160, 0.72);
  background: rgba(8, 11, 31, 0.58);
  box-shadow: 0 0 24px rgba(214, 164, 67, 0.14);
}

.contact-form select option {
  color: #111;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: start;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 227, 160, 0.28);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer div:nth-child(2) {
  display: flex;
  gap: 14px;
}

.site-footer a {
  color: rgba(247, 243, 236, 0.86);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold-2);
  text-shadow: 0 0 18px rgba(255, 227, 160, 0.28);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .hero-stats,
  .page-hero > div {
    animation: royalRise 0.72s ease both;
  }

  .hero-stats {
    animation-delay: 0.08s;
  }
}

@keyframes royalRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 17, 20, 0.97);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 86px;
  }

  .hero-bg {
    object-position: 58% 50%;
  }

  .hero-stats,
  .service-preview,
  .process-grid,
  .values-grid,
  .timeline,
  .services-list,
  .intro-grid,
  .story,
  .contact-layout,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .split-feature {
    gap: 28px;
  }

  .feature-media img {
    min-height: 320px;
  }

  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  h1 {
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-lead,
  .page-hero p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .hero-stats {
    margin-bottom: 34px;
  }

  .hero-stats div {
    padding: 14px 16px;
  }

  .hero-stats strong {
    font-size: 1.08rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-stats div,
  .service-preview article,
  .process-grid article,
  .values-grid article,
  .services-list article,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .page-hero {
    min-height: 100vh;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 108px;
    padding-bottom: 92px;
  }

  .site-footer div:nth-child(2) {
    flex-direction: column;
  }
}
