/* Aurora Sandstorm — securedroute */
:root {
  --sand: #e8dcc8;
  --sand-light: #f3ebe0;
  --sand-deep: #c4a882;
  --mineral: #d9cbb5;
  --emerald: #2d8a6e;
  --aurora: #3db88a;
  --aurora-glow: rgba(61, 184, 138, 0.35);
  --violet: #6b5b7a;
  --violet-haze: #8a7a96;
  --pale-gold: #e8d5a3;
  --gold: #d4b96a;
  --ink: #2a2420;
  --ink-soft: #4a423c;
  --dust: #a89880;
  --white: #fffaf4;
  --error: #9b3d3d;
  --ok: #1f6b52;
  --radius: 2px;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Sora", sans-serif;
  --space: clamp(1rem, 2vw, 1.75rem);
  --shell: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: var(--ink);
  background:
    radial-gradient(ellipse 110% 70% at 90% -5%, var(--aurora-glow), transparent 52%),
    radial-gradient(ellipse 80% 60% at 0% 20%, rgba(122, 107, 138, 0.26), transparent 48%),
    radial-gradient(ellipse 60% 40% at 70% 100%, rgba(232, 213, 163, 0.4), transparent 50%),
    linear-gradient(168deg, var(--sand-light) 0%, var(--sand) 48%, #d8cbb8 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: var(--emerald);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--violet);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 235, 224, 0.82);
  border-bottom: 1px solid rgba(196, 168, 130, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--emerald);
}

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

.site-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--emerald);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--sand-deep);
  background: linear-gradient(120deg, rgba(232, 213, 163, 0.45), rgba(61, 184, 138, 0.2));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--sand-deep);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 1.1rem;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(243, 235, 224, 0.96);
    border-bottom: 1px solid rgba(196, 168, 130, 0.35);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(196, 168, 130, 0.25);
  }
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.05em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  font-weight: 700;
  letter-spacing: 0.07em;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-label {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet-haze);
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 38rem;
  color: var(--ink-soft);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 50%, rgba(232, 213, 163, 0.55), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(61, 184, 138, 0.4), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(138, 122, 150, 0.35), transparent 45%);
  opacity: 0;
  transform: translateX(-30%) scale(0.9);
  transition: opacity 0.45s ease, transform 0.7s ease;
  z-index: -1;
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(10%) scale(1.05);
}

.btn-dust {
  color: var(--white);
  background: linear-gradient(115deg, var(--emerald), #3a9a78 45%, var(--violet) 120%);
  border-color: rgba(45, 138, 110, 0.4);
}

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

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.45);
  border-color: var(--sand-deep);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--violet-haze);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero — full-bleed plane, brand as oversized watermark, content low-left */
.hero-route {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-route__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-route__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) sepia(0.08);
}

.hero-route__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 36, 32, 0.15) 0%, transparent 35%),
    linear-gradient(90deg, rgba(232, 220, 200, 0.94) 0%, rgba(232, 220, 200, 0.55) 42%, rgba(45, 138, 110, 0.12) 100%),
    linear-gradient(0deg, rgba(107, 91, 122, 0.22), transparent 40%);
  z-index: 1;
}

.hero-route__mark {
  position: absolute;
  left: 4%;
  top: 12%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.85;
  text-transform: lowercase;
  color: rgba(42, 36, 32, 0.1);
  pointer-events: none;
  user-select: none;
  animation: mark-drift 14s ease-in-out infinite alternate;
}

@keyframes mark-drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(12px, -10px);
  }
}

.hero-route__content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(2.5rem, 7vw, 4.5rem);
  max-width: 32rem;
}

.hero-route__content h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  max-width: 20ch;
  margin: 0 0 1rem;
}

.hero-route .lead {
  margin: 0;
}

.primary-offer {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.primary-offer__visual {
  position: relative;
  order: -1;
}

.primary-offer__visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: sepia(0.1) saturate(0.88);
}

.primary-offer__visual::after {
  content: "";
  position: absolute;
  inset: -6% auto auto -6%;
  width: 48%;
  height: 35%;
  background: linear-gradient(135deg, rgba(232, 213, 163, 0.55), var(--aurora-glow));
  z-index: -1;
  animation: dust-drift 9s ease-in-out infinite alternate;
}

@keyframes dust-drift {
  from {
    transform: translate(0, 0);
    opacity: 0.65;
  }
  to {
    transform: translate(14px, 8px);
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .primary-offer {
    grid-template-columns: 1fr;
  }

  .primary-offer__visual {
    order: 0;
  }
}

.offer-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(106, 91, 122, 0.25);
}

.offer-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(106, 91, 122, 0.2);
}

.offer-list a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
}

.offer-list a:hover {
  color: var(--emerald);
}

.offer-list p {
  margin: 0.35rem 0 0;
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.offer-meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--violet);
  white-space: nowrap;
}

.evidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.evidence blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.evidence p {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
}

.evidence footer {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--violet-haze);
}

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

.band-mineral {
  position: relative;
  background:
    linear-gradient(125deg, rgba(138, 122, 150, 0.16), rgba(45, 138, 110, 0.1)),
    repeating-linear-gradient(
      12deg,
      transparent,
      transparent 14px,
      rgba(196, 168, 130, 0.07) 14px,
      rgba(196, 168, 130, 0.07) 15px
    );
}

.media-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem 2rem;
}

.media-item a {
  text-decoration: none;
  color: inherit;
}

.media-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: saturate(0.88);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.media-item a:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}

.media-item h3 {
  margin: 0 0 0.4rem;
}

.media-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

.page-hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding-bottom: 0;
}

.page-hero--split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

@media (max-width: 800px) {
  .page-hero--split {
    grid-template-columns: 1fr;
  }
}

.process-steps {
  counter-reset: step;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.process-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(106, 91, 122, 0.22);
}

.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--emerald);
}

.process-steps h3 {
  margin: 0 0 0.4rem;
}

.process-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.price-rows {
  margin-top: 2rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(106, 91, 122, 0.22);
  align-items: baseline;
}

.price-row:first-child {
  border-top: 1px solid rgba(106, 91, 122, 0.22);
}

@media (max-width: 700px) {
  .price-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.faq-list {
  margin: 2rem 0 0;
}

.faq-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(106, 91, 122, 0.22);
}

.faq-item:first-child {
  border-top: 1px solid rgba(106, 91, 122, 0.22);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.form {
  max-width: 34rem;
  display: grid;
  gap: 1.1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  letter-spacing: 0.02em;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--sand-deep);
  background: rgba(255, 250, 244, 0.65);
  color: var(--ink);
  border-radius: var(--radius);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--aurora);
  outline-offset: 1px;
}

.field-error {
  color: var(--error);
  font-size: 0.85rem;
  min-height: 1.2em;
}

.form-status {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.form-status.is-ok {
  color: var(--ok);
}

.form-status.is-err {
  color: var(--error);
}

.form.is-success .form-fields {
  display: none;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 1.5rem 0 2rem;
}

.article-body p {
  max-width: 40rem;
}

.meta-line {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--violet-haze);
}

.site-footer {
  margin-top: 3rem;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(196, 168, 130, 0.4);
  background: linear-gradient(180deg, transparent, rgba(196, 168, 130, 0.18));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-tag,
.footer-address {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-haze);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-base {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 168, 130, 0.3);
  font-size: 0.85rem;
  color: var(--dust);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0 1.25rem;
  background: linear-gradient(100deg, rgba(232, 220, 200, 0.97), rgba(217, 203, 181, 0.97));
  border-top: 1px solid rgba(106, 91, 122, 0.3);
  box-shadow: 0 -12px 40px rgba(42, 36, 32, 0.08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  align-content: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.12em;
}

.fade-rise {
  animation: fade-rise 1s ease both;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.18s;
}

.delay-2 {
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
