/* Aurora Sandstorm — securednode */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600&family=Saira+Condensed:wght@400;500;600;700&display=swap");

:root {
  --sand-50: #f8f1e6;
  --sand-100: #efe3d0;
  --sand-200: #e0d0b4;
  --sand-300: #c9b694;
  --sand-800: #3d3327;
  --sand-900: #281f17;
  --aurora: #2c9a76;
  --aurora-deep: #1a6a52;
  --aurora-soft: rgba(44, 154, 118, 0.2);
  --violet: #6d5c91;
  --violet-haze: rgba(109, 92, 145, 0.24);
  --gold: #d2b56a;
  --gold-soft: rgba(210, 181, 106, 0.38);
  --cream: #faf7f0;
  --ink: #281f17;
  --muted: #695b4b;
  --line: rgba(61, 51, 39, 0.14);
  --radius: 2px;
  --font-display: "Saira Condensed", sans-serif;
  --font-body: "Figtree", sans-serif;
  --shadow-dust: 0 20px 44px rgba(40, 31, 23, 0.13);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
  color: var(--ink);
  background:
    radial-gradient(ellipse 75% 48% at 8% -8%, var(--violet-haze), transparent 55%),
    radial-gradient(ellipse 65% 42% at 92% 8%, var(--aurora-soft), transparent 52%),
    radial-gradient(ellipse 55% 38% at 48% 100%, var(--gold-soft), transparent 55%),
    linear-gradient(168deg, var(--cream) 0%, var(--sand-100) 48%, #e6d9c4 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: var(--aurora-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.12;
  margin: 0 0 0.55em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.3rem;
  letter-spacing: 0.07em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 240, 0.8);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  color: var(--aurora);
}

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

.nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand-800);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--aurora-deep);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.88rem 1.6rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(circle at 28% 38%, rgba(210, 181, 106, 0.55), transparent 40%),
    radial-gradient(circle at 72% 58%, rgba(44, 154, 118, 0.48), transparent 42%),
    radial-gradient(circle at 48% 82%, rgba(109, 92, 145, 0.38), transparent 45%);
  opacity: 0;
  transform: translateX(-28%) scale(0.78);
  transition: opacity 0.45s ease, transform 0.55s ease;
  z-index: -1;
  animation: dust-wave 8s ease-in-out infinite;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(0) scale(1.06);
}

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

.btn-primary {
  background: linear-gradient(125deg, var(--aurora-deep), var(--aurora) 52%, var(--violet));
  color: #faf8f3;
}

.btn-primary:hover {
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--sand-300);
}

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

/* Hero — brand-dominant, top-weighted composition */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: grid;
  align-items: start;
  overflow: hidden;
  margin-bottom: 3.5rem;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06) brightness(0.92);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(185deg, rgba(40, 31, 23, 0.55) 0%, rgba(40, 31, 23, 0.25) 42%, rgba(44, 154, 118, 0.28) 100%),
    radial-gradient(ellipse at 20% 70%, rgba(109, 92, 145, 0.4), transparent 48%),
    radial-gradient(ellipse at 85% 20%, rgba(210, 181, 106, 0.28), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  color: var(--cream);
  animation: drift-in 1.15s ease both;
}

.hero-content .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  line-height: 0.92;
  margin: 0 0 2.2rem;
  color: var(--cream);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: brand-rise 1.3s ease both;
}

.hero-content .brand-mark span {
  color: var(--gold);
}

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 0.9rem;
  max-width: 18ch;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero-content p {
  color: rgba(250, 247, 240, 0.88);
  font-weight: 300;
  font-size: 1.12rem;
  max-width: 30rem;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.hero-content .btn-primary {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

@keyframes drift-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brand-rise {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    letter-spacing: 0.22em;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 0.14em;
  }
}

@keyframes dust-wave {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head p {
  margin: 0;
}

.lead-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.2rem;
  align-items: center;
  padding: 1.5rem 0 4rem;
}

.lead-block img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: saturate(0.88);
  box-shadow: var(--shadow-dust);
}

.lead-meta {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

.offer-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.offer-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, padding 0.3s ease;
}

.offer-row:hover {
  background: rgba(255, 255, 255, 0.32);
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}

.offer-row h3 {
  margin: 0;
  color: var(--ink);
}

.offer-row p {
  margin: 0;
  font-size: 0.98rem;
}

.offer-row .price {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--aurora-deep);
  white-space: nowrap;
  font-size: 1.05rem;
}

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

.evidence blockquote {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--gold);
}

.evidence p {
  font-size: 1.02rem;
  color: var(--sand-800);
}

.evidence footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

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

.service-tile,
.post-tile {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.service-tile img,
.post-tile img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.service-tile:hover img,
.post-tile:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.service-tile h3,
.post-tile h3 {
  margin: 0;
  color: var(--ink);
}

.service-tile p,
.post-tile p {
  margin: 0;
  font-size: 0.95rem;
}

.meta-line {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero p {
  max-width: 38rem;
}

.prose {
  max-width: 42rem;
}

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

.prose ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.45rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.detail-side {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  align-self: start;
  position: sticky;
  top: 5.5rem;
}

.detail-side dl {
  margin: 0 0 1.5rem;
}

.detail-side dt {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-top: 1rem;
}

.detail-side dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

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

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-800);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--sand-300);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

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

.form .error {
  color: #8b3a2f;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--aurora);
  background: var(--aurora-soft);
  color: var(--sand-900);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-left-color: #8b3a2f;
  background: rgba(139, 58, 47, 0.12);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.area-item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.area-item h3 {
  margin-bottom: 0.4rem;
}

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

.team-grid figure {
  margin: 0;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.team-grid figcaption strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--ink);
}

.team-grid figcaption span {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(109, 92, 145, 0.08));
}

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

.footer-grid h2 {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
}

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

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

.footer-grid a {
  text-decoration: none;
  color: var(--sand-800);
}

.footer-grid a:hover {
  color: var(--aurora-deep);
}

.footer-bottom {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  max-width: 420px;
  margin-left: auto;
  padding: 1.25rem 1.35rem;
  background:
    linear-gradient(145deg, rgba(250, 247, 240, 0.96), rgba(224, 208, 180, 0.95)),
    var(--sand-100);
  border: 1px solid var(--sand-300);
  box-shadow: var(--shadow-dust);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: drift-in 0.5s ease both;
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.cookie-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
}

.js-error {
  margin: 0.5rem 0;
  padding: 0.6rem 0.8rem;
  background: rgba(139, 58, 47, 0.12);
  color: #8b3a2f;
  font-size: 0.9rem;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--violet);
  margin-bottom: 0.2em;
}

.hero-custom {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.hero-custom .hero-media {
  position: absolute;
  inset: 0;
}

.hero-custom .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(40, 31, 23, 0.7), rgba(40, 31, 23, 0.2));
}

.hero-custom .wrap {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  color: var(--cream);
}

.hero-custom h1 {
  color: var(--cream);
}

.hero-custom p {
  color: rgba(250, 247, 240, 0.88);
  max-width: 36rem;
}

@media (max-width: 900px) {
  .lead-block,
  .detail-layout,
  .footer-grid,
  .evidence,
  .grid-cards,
  .team-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .offer-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(250, 247, 240, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a {
    padding: 0.7rem 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    position: relative;
  }

  .detail-side {
    position: static;
  }

  .hero-content .brand-mark {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }
}
