:root {
  --dark: #070707;
  --dark-soft: #111;
  --text: #151515;
  --muted: #666;
  --gold: #b89455;
  --white: #fff;
  --border: #ddd;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--dark); }
body { font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--dark); overflow-x: hidden; }
body.request-page,
body.contact-page { background: var(--dark); color: var(--white); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(184,148,85,.14), transparent 36%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  animation: loaderAutoHide 2.4s ease forwards;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader-seen .page-loader,
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-frame {
  width: min(420px, 100%);
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 42px 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 90px rgba(0,0,0,.46), inset 0 0 0 1px rgba(255,255,255,.025);
  text-align: center;
}
.loader-brand {
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: .9;
}
.loader-brand small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.35;
  text-transform: uppercase;
}
.loader-progress {
  width: min(240px, 72vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}
.loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(184,148,85,.72);
  animation: loaderProgress 1.05s ease-in-out infinite;
}
.loader-frame p {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.loader-corner {
  position: absolute;
  width: 54px;
  height: 54px;
  border-color: rgba(184,148,85,.86);
  border-style: solid;
}
.loader-corner-top {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}
.loader-corner-bottom {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

@keyframes loaderProgress {
  0% { transform: translateX(-110%); }
  48% { transform: translateX(72%); }
  100% { transform: translateX(250%); }
}

@keyframes loaderAutoHide {
  0%, 82% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.hero {
  min-height: 720px;
  color: var(--white);
  position: relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.2) 100%),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1800&q=85') center / cover no-repeat;
}

.navbar {
  width: min(calc(100% - 40px), 1320px);
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  padding: 14px clamp(18px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 10;
  background: rgba(5,5,5,.46);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.26);
}

.logo, .footer-logo {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: .9;
}
.logo small, .footer-logo small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.25;
  margin-top: 7px;
  text-transform: uppercase;
}
.logo { transition: color .2s ease, transform .2s ease; }
.logo:hover { color: var(--gold); transform: translateY(-1px); }
.logo-mark { color: var(--gold); margin-right: 2px; }
.nav-links { display: flex; align-items: center; gap: clamp(8px, 1vw, 16px); margin-left: auto; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a {
  position: relative;
  padding: 12px 10px;
  border-radius: 999px;
  opacity: .92;
  transition: opacity .2s, color .2s, background .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
  background: rgba(255,255,255,.055);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active {
  opacity: 1;
  color: var(--gold);
  background: rgba(255,255,255,.07);
}
.nav-button {
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,148,85,.92);
  padding: 13px 24px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  box-shadow: 0 12px 30px rgba(184,148,85,.24);
}
.nav-links .nav-button::after {
  left: 24px;
  right: 24px;
  bottom: 8px;
}
.nav-button:hover {
  background: #c9aa6d;
  color: var(--white);
}
.nav-button.is-active {
  color: var(--white);
  background: #c9aa6d;
  box-shadow: 0 14px 34px rgba(184,148,85,.34);
}
.nav-button.is-active::after {
  background: rgba(255,255,255,.86);
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}
.language-switch {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  user-select: none;
}
.language-switch button {
  min-width: 30px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.language-switch button:hover {
  color: var(--white);
  transform: translateY(-1px);
}
.language-switch button.active {
  color: var(--gold);
  background: rgba(184,148,85,.16);
  box-shadow: inset 0 0 0 1px rgba(184,148,85,.32), 0 0 22px rgba(184,148,85,.12);
  text-shadow: 0 0 18px rgba(184,148,85,.34);
}
.language-switch span {
  color: rgba(255,255,255,.25);
  font-size: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}
.menu-toggle:hover span { background: var(--gold); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(112px, 13vw, 155px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
}
.hero-copy { min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 22px;
  color: var(--gold);
  border: 1px solid rgba(184,148,85,.58);
  background: rgba(184,148,85,.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.02; text-transform: uppercase; margin-bottom: 28px; max-width: 760px; }
.hero p { max-width: 540px; font-size: 18px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions {
  width: min(320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  position: absolute;
  right: calc(clamp(20px, 3vw, 44px) - max(20px, calc((100vw - var(--max)) / 2)));
  bottom: 123px;
  z-index: 2;
}
.hero-actions .button {
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 22px;
  height: 42px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: .9;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, opacity .25s ease;
}
.scroll-down span {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1.65s ease-in-out infinite;
}
.scroll-down:hover,
.scroll-down:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,148,85,.16), 0 0 24px rgba(184,148,85,.24);
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.scroll-down:hover span,
.scroll-down:focus-visible span { background: var(--gold); }

@keyframes scrollDot {
  0% { transform: translateY(20px); opacity: 0; }
  22% { opacity: 1; }
  72% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 0; }
}

.marquee-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(184,148,85,.28);
  border-bottom: 1px solid rgba(184,148,85,.28);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(184,148,85,.16), transparent 22%, transparent 78%, rgba(184,148,85,.16)),
    #070707;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 44px);
  animation: marqueeMove 26s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
  color: rgba(255,255,255,.9);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 900;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '';
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(184,148,85,.68);
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.request-hero {
  min-height: 560px;
  color: var(--white);
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.52) 58%, rgba(0,0,0,.28) 100%),
    url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=86') center / cover no-repeat;
}
.contact-hero {
  min-height: 620px;
  color: var(--white);
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.22) 100%),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=86') center / cover no-repeat;
}
.contact-hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(130px, 16vw, 190px);
}
.contact-hero h1 {
  width: min(880px, 100%);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.contact-hero p {
  width: min(680px, 100%);
  color: #e2e2e2;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.8;
}
.request-hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(120px, 15vw, 170px);
}
.request-hero h1 {
  width: min(760px, 100%);
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.request-hero p {
  width: min(640px, 100%);
  color: #e2e2e2;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.8;
}

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 30px; font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--white); }
.button-outline { border: 1px solid #222; color: #111; }
.button-dark-outline { border: 1px solid rgba(255,255,255,.8); color: var(--white); }
.button-glass {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(12px);
}
.button-glass:hover,
.button-dark-outline:hover {
  border-color: rgba(184,148,85,.85);
  color: var(--gold);
}
.center { text-align: center; margin-top: 42px; }

.section { padding: clamp(56px, 8vw, 78px) clamp(20px, 4vw, 24px); }
.intro-section,
.process-section {
  background: var(--white);
  color: var(--text);
}
.section-heading { text-align: center; width: min(760px, 100%); margin: 0 auto 50px; }
.eyebrow { display: block; font-size: 11px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
h2 { font-size: clamp(30px, 4vw, 42px); line-height: 1.15; margin-bottom: 22px; }
.section-heading p { color: var(--muted); line-height: 1.8; }

.features-grid, .process-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; }
.features-grid { grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 36px); }
.feature-card { text-align: center; padding: 20px 18px; }
.icon { font-size: 40px; margin-bottom: 20px; }
.feature-card h3, .process-step h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.feature-card p, .process-step p { color: var(--muted); line-height: 1.65; font-size: 14px; }

.request-section {
  background:
    radial-gradient(circle at top left, rgba(184,148,85,.12), transparent 34%),
    #050505;
  color: var(--white);
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(184,148,85,.13), transparent 32%),
    #050505;
  color: var(--white);
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.request-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}
.contact-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}
.photo-request-form,
.request-info-card,
.contact-form,
.contact-card {
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.photo-request-form,
.contact-form { padding: clamp(28px, 4vw, 46px); }
.form-heading { margin-bottom: 30px; }
.form-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}
.form-heading p {
  color: #cfcfcf;
  line-height: 1.75;
}
.request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}
.request-step {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(184,148,85,.32);
  background: rgba(255,255,255,.045);
}
.request-step strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.request-step span {
  color: #f4f0e9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field { display: grid; gap: 9px; }
.form-field.full { grid-column: 1 / -1; }
.form-field,
.form-field input,
.form-field select,
.form-field textarea {
  min-width: 0;
}
.form-field span,
.confirm-field {
  color: #ededed;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.form-field small {
  color: #9f9f9f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: rgba(255,255,255,.055);
  color: var(--white);
  padding: 16px 15px;
  outline: 0;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.form-field select { color-scheme: dark; }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.42); }
.form-field input[type="date"] {
  display: block;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input[type="date"]::-webkit-date-and-time-value {
  min-width: 0;
  text-align: left;
}
.upload-field input[type="file"] {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.upload-box {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px dashed rgba(184,148,85,.58);
  background:
    linear-gradient(135deg, rgba(184,148,85,.12), rgba(255,255,255,.035));
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.upload-box strong {
  min-width: 0;
  color: var(--white);
  font-size: 16px;
  letter-spacing: .3px;
}
.upload-box small {
  min-width: 0;
  color: #bdbdbd;
  line-height: 1.55;
}
.upload-box em {
  min-width: 0;
  max-width: 100%;
  display: block;
  overflow: hidden;
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-field:hover .upload-box,
.upload-field input[type="file"]:focus + .upload-box {
  border-color: rgba(184,148,85,.95);
  background:
    linear-gradient(135deg, rgba(184,148,85,.18), rgba(255,255,255,.045));
  box-shadow: 0 0 0 3px rgba(184,148,85,.14), 0 18px 45px rgba(0,0,0,.24);
  transform: translateY(-1px);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(184,148,85,.9);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 3px rgba(184,148,85,.18), 0 0 26px rgba(184,148,85,.14);
}
.form-field.error input,
.form-field.error select,
.form-field.error textarea,
.form-field.error .upload-box,
.confirm-field.error {
  border-color: #d78a75;
}
.confirm-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.confirm-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}
.form-message {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.5;
}
.form-message.error { color: #f0a08d; }
.request-submit { min-width: 210px; }
.request-submit .submit-loading { display: none; }
.request-submit.loading .submit-label { display: none; }
.request-submit.loading .submit-loading { display: inline; }
.request-submit.loading { opacity: .76; pointer-events: none; }
.privacy-note {
  margin-top: 18px;
  color: #a8a8a8;
  font-size: 13px;
  line-height: 1.6;
}

.request-sidebar {
  display: grid;
  gap: 18px;
}
.contact-sidebar {
  display: grid;
  gap: 18px;
}
.request-info-card,
.contact-card { padding: clamp(24px, 3vw, 34px); }
.request-info-card p,
.contact-card p {
  color: #d0d0d0;
  line-height: 1.75;
}
.contact-card {
  display: grid;
  gap: 16px;
}
.contact-card a {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #f0f0f0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.contact-card a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-card a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.info-list { display: grid; gap: 18px; }
.info-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.info-list dt {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.info-list dd {
  color: #e7e7e7;
  line-height: 1.6;
}
.photo-number-mockup {
  margin-top: 24px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(184,148,85,.22), rgba(255,255,255,.04));
  border: 1px solid rgba(184,148,85,.34);
}
.mock-photo-back {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #111;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(214,214,214,.94));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.mock-photo-back span {
  color: #333;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}
.mock-photo-back strong {
  align-self: flex-end;
  padding: 10px 12px;
  color: #111;
  border: 1px dashed rgba(0,0,0,.42);
  font-size: 14px;
  letter-spacing: 1px;
}
.help-card .button { margin-top: 24px; }

.team-section { background: var(--dark); color: var(--white); padding: clamp(56px, 8vw, 80px) clamp(20px, 4vw, 24px); display: grid; grid-template-columns: minmax(280px, 430px) minmax(320px, 680px); justify-content: center; gap: clamp(34px, 6vw, 70px); align-items: center; }
.team-content p { color: #d5d5d5; line-height: 1.75; margin-bottom: 32px; }
.team-image { min-height: 330px; background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)), url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat; filter: grayscale(1); }

.process-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 40px); text-align: center; }
.process-step strong { display: block; font-size: 46px; font-weight: 300; margin-bottom: 22px; }
.trusted { width: min(var(--max), 100%); margin: 70px auto 0; text-align: center; }
.logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 34px; margin-top: 22px; color: #777; font-size: clamp(22px, 3vw, 34px); font-weight: 800; }

.cta-section {
  color: var(--white);
  padding: clamp(70px, 10vw, 112px) clamp(20px, 4vw, 24px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.58)),
    url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1700&q=85') center / cover no-repeat;
}
.cta-content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.cta-copy h2 {
  width: min(720px, 100%);
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
}
.cta-copy p {
  width: min(640px, 100%);
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-side {
  display: grid;
  gap: 18px;
}
.cta-card {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  gap: 18px;
  background: rgba(8,8,8,.72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.cta-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cta-card a {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #f0f0f0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.cta-card a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.cta-card a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.map-card {
  overflow: hidden;
  background: rgba(8,8,8,.72);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.map-card-heading {
  padding: 24px 24px 18px;
}
.map-card-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.map-card-heading p {
  color: #d0d0d0;
  line-height: 1.6;
  font-size: 14px;
}
.map-frame {
  aspect-ratio: 16 / 10;
  min-height: 250px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.14);
  background: #0b0b0b;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.9) brightness(.8);
  opacity: .88;
}

.footer {
  background:
    radial-gradient(circle at top right, rgba(184,148,85,.13), transparent 32%),
    linear-gradient(180deg, #0a0a0a 0%, #030303 100%);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: clamp(54px, 7vw, 82px) clamp(20px, 5vw, 64px) 26px;
  font-size: 14px;
}
.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(140px, .65fr) minmax(190px, .75fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.footer-brand p,
.footer-cta p {
  color: #cfcfcf;
  line-height: 1.75;
}
.footer-brand p {
  width: min(390px, 100%);
  margin-top: 22px;
}
.footer-links,
.footer-contact,
.footer-cta {
  display: grid;
  gap: 13px;
}
.footer-links span,
.footer-contact span,
.footer-cta span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer a {
  color: #e5e5e5;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a,
.footer-contact a {
  width: fit-content;
}
.footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-cta {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
}
.footer-cta .button {
  width: fit-content;
  margin-top: 8px;
}
.footer-cta .button:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  width: min(var(--max), 100%);
  margin: clamp(42px, 6vw, 64px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8d8d8d;
  font-size: 12px;
}
.footer-bottom a {
  color: #bdbdbd;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.scroll-progress {
  --progress: 0;
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--gold);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.96);
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.scroll-progress.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-progress svg {
  position: absolute;
  inset: 5px;
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
}
.scroll-progress circle {
  fill: none;
  stroke-width: 3;
}
.progress-track { stroke: rgba(255,255,255,.14); }
.progress-ring {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 125.66;
  stroke-dashoffset: calc(125.66 - (125.66 * var(--progress)) / 100);
  filter: drop-shadow(0 0 7px rgba(184,148,85,.55));
  transition: stroke-dashoffset .12s linear;
}
.scroll-progress span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(1px);
}
.scroll-progress:hover,
.scroll-progress:focus-visible {
  box-shadow: none;
  transform: translateY(-3px) scale(1.02);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    background: rgba(5,5,5,.96);
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    box-shadow: 0 20px 70px rgba(0,0,0,.38);
    backdrop-filter: blur(18px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 16px; }
  .nav-links a::after { display: none; }
  .nav-links a.is-active {
    background: rgba(184,148,85,.16);
    box-shadow: inset 0 0 0 1px rgba(184,148,85,.34);
  }
  .nav-button { text-align: center; margin-top: 8px; }
  .hero { min-height: clamp(640px, 92svh, 700px); }
  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: clamp(58px, 6vw, 78px);
    padding-bottom: 188px;
  }
  .hero-eyebrow {
    min-height: 30px;
    margin-bottom: 16px;
    font-size: 10px;
  }
  .hero h1 {
    max-width: 610px;
    font-size: clamp(42px, 5.6vw, 52px);
    line-height: 1;
    margin-bottom: 16px;
  }
  .hero p {
    max-width: 500px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.45;
  }
  .hero-actions {
    width: min(320px, 100%);
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 58px;
    justify-self: auto;
    margin-top: 0;
    transform: translateX(-50%);
  }
  .scroll-down { bottom: 20px; }
}

@media (max-width: 900px) {
  .hero-content {
    width: calc(100% - 48px);
    gap: 30px;
    padding-top: 68px;
    padding-bottom: 174px;
  }
  .hero h1 { font-size: clamp(38px, 6.4vw, 48px); max-width: 560px; }
  .hero-actions {
    width: min(320px, 100%);
    grid-template-columns: 1fr;
    bottom: 48px;
  }
  .hero-actions .button { min-height: 54px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .request-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-content { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand,
  .footer-cta { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .team-section { grid-template-columns: 1fr; gap: 36px; }
  .team-image { min-height: 300px; }
}

@media (max-width: 680px) {
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .loader-frame {
    min-height: 230px;
    padding: 36px 26px;
  }
  .loader-brand {
    letter-spacing: 3px;
  }
  .loader-brand small {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .navbar { width: min(calc(100% - 24px), 1320px); padding: 10px 12px; gap: 10px; border-radius: 28px; }
  .navbar .logo { min-width: 0; font-size: 21px; letter-spacing: 2px; }
  .navbar .logo small { font-size: 7px; letter-spacing: .6px; }
  .nav-controls { gap: 6px; flex: 0 0 auto; }
  .language-switch { min-height: 34px; gap: 3px; padding: 3px 5px; font-size: 10px; letter-spacing: .8px; }
  .language-switch button { min-width: 28px; height: 26px; }
  .menu-toggle { width: 38px; height: 38px; flex: 0 0 38px; }
  .menu-toggle span { width: 16px; margin: 4px auto; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 100svh; background-position: 58% center; }
  .request-hero { min-height: 520px; background-position: center; }
  .request-hero-content { padding-top: 100px; }
  .contact-hero { min-height: 560px; background-position: center; }
  .contact-hero-content { padding-top: 104px; }
  .contact-hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .hero-content { width: calc(100% - 40px); margin-left: 20px; margin-right: 20px; padding-top: 46px; padding-bottom: 160px; gap: 16px; }
  .hero-eyebrow { max-width: 100%; min-height: 27px; padding: 0 10px; font-size: 9px; letter-spacing: 1.4px; }
  .hero h1 { font-size: clamp(28px, 8.8vw, 34px); line-height: 1.02; }
  .hero p { font-size: 13px; line-height: 1.4; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: min(320px, calc(100% - 40px));
    position: static;
    right: auto;
    left: auto;
    bottom: auto;
    justify-self: center;
    margin-top: 86px;
    transform: none;
  }
  .hero-actions .button { width: 100%; max-width: none; min-height: 50px; padding: 0 14px; font-size: 11px; }
  .scroll-down { bottom: 16px; width: 20px; height: 38px; padding-top: 6px; }
  .marquee-track {
    min-height: 58px;
    gap: 24px;
    padding: 0 20px;
    animation-duration: 22s;
  }
  .marquee-track span {
    gap: 24px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .button { width: 100%; max-width: 320px; padding: 0 22px; }
  .features-grid, .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .request-steps { grid-template-columns: 1fr; }
  .request-step { min-height: auto; }
  .photo-request-form { padding: 24px 20px; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .form-field input[type="date"] {
    inline-size: 100%;
    min-inline-size: 0;
  }
  .upload-box { padding: 20px 18px; }
  .upload-box strong { font-size: 15px; }
  .upload-box em { font-size: 11px; letter-spacing: .7px; }
  .request-submit { width: 100%; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions .button { width: 100%; }
  .cta-card { padding: 24px 20px; }
  .section-heading { margin-bottom: 36px; }
  .team-content h2 br { display: none; }
  .team-image { min-height: 240px; }
  .logos { gap: 20px; }
  .footer { padding: 46px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand,
  .footer-cta { grid-column: auto; }
  .footer-cta { padding: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .logo, .footer-logo { font-size: 22px; letter-spacing: 2px; }
  .logo small, .footer-logo small { font-size: 9px; letter-spacing: 3px; }
  .hero h1 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition: opacity .2s ease, visibility .2s ease;
  }
  .loader-progress span {
    animation: none;
    width: 100%;
  }
  .marquee-track {
    animation: none;
    transform: translateX(0);
  }
}
