:root {
  color-scheme: dark;
  --bg: #070706;
  --bg-soft: #10100f;
  --ink: #f7f0e4;
  --muted: #bcb3a5;
  --line: rgba(247, 240, 228, 0.14);
  --gold: #d7b66d;
  --gold-soft: #f4dfac;
  --ivory: #fff8e9;
  --steel: #9eb5bd;
  --emerald: #597a6b;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 182, 109, 0.14), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(158, 181, 189, 0.12), transparent 26%),
    linear-gradient(135deg, #070706 0%, #11100e 46%, #f4ead7 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(244, 223, 172, 0.18), transparent);
  transform: translateX(-115%);
  animation: page-sheen 1.35s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.45), rgba(7, 7, 6, 0.96) 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 10, 9, 0.7);
  box-shadow: 0 20px 60px var(--shadow);
  backdrop-filter: blur(22px);
  animation: topbar-in 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.topbar.is-scrolled {
  background: rgba(7, 7, 6, 0.9);
  border-color: rgba(215, 182, 109, 0.28);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.58);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(215, 182, 109, 0.65);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(215, 182, 109, 0.28), rgba(255, 248, 233, 0.06));
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  box-shadow: inset 0 0 18px rgba(215, 182, 109, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.04);
  box-shadow: inset 0 0 22px rgba(215, 182, 109, 0.2), 0 0 22px rgba(215, 182, 109, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(247, 240, 228, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-links a.is-active {
  color: var(--gold-soft);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(215, 182, 109, 0.45);
  border-radius: var(--radius);
  background: rgba(215, 182, 109, 0.08);
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 150px 24px 76px;
}

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

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
  transform: scale(1.05);
  transition: transform 0.2s linear;
  animation: hero-image-in 1.6s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94) 0%, rgba(7, 7, 6, 0.67) 45%, rgba(7, 7, 6, 0.25) 76%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.2), rgba(7, 7, 6, 0.9) 86%, #070706 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-proof {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-copy-in 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero .eyebrow {
  animation-delay: 0.22s;
}

.hero h1 {
  animation-delay: 0.34s;
}

.hero-copy {
  animation-delay: 0.48s;
}

.hero-actions {
  animation-delay: 0.62s;
}

.hero-proof {
  animation-delay: 0.78s;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 670px;
  color: rgba(247, 240, 228, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.38) 50%, transparent 72%);
  transform: translateX(-115%);
  transition: transform 0.55s ease;
}

.button span {
  position: relative;
  z-index: 1;
}

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

.button:hover::after {
  transform: translateX(115%);
}

.button-primary {
  background: linear-gradient(135deg, var(--ivory), var(--gold) 48%, #8b6a2d);
  color: #15100a;
  box-shadow: 0 18px 40px rgba(215, 182, 109, 0.22);
}

.button-primary:hover {
  box-shadow: 0 24px 56px rgba(215, 182, 109, 0.32);
}

.button-secondary {
  border-color: rgba(255, 248, 233, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 12px;
  max-width: 560px;
  margin-top: 54px;
}

.hero-proof div {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-proof div::before,
.service-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(244, 223, 172, 0.18), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hero-proof div:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 182, 109, 0.36);
  background: rgba(255, 255, 255, 0.075);
}

.hero-proof div:hover::before,
.service-card:hover::before,
.contact-form:hover::before {
  opacity: 1;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.hero-proof span {
  margin-top: 8px;
  color: rgba(247, 240, 228, 0.68);
  font-size: 0.82rem;
  line-height: 1.4;
}

.section {
  padding: 112px 24px;
  background: #070706;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split,
.proof-grid,
.contact-grid,
.signature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.split > p,
.proof-list,
.faq-list,
.contact-grid > div > p,
.signature-panel > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 248, 233, 0.07), transparent 42%),
    linear-gradient(180deg, #070706, #0f0f0d);
}

.section-heading {
  display: block;
  max-width: 880px;
  margin-bottom: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 182, 109, 0.24);
}

.section h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.8rem);
  line-height: 1.04;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2 {
  max-width: 820px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 248, 233, 0.075), rgba(255, 255, 255, 0.015)),
    #0d0d0c;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 182, 109, 0.36);
  background-color: rgba(255, 255, 255, 0.075);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(215, 182, 109, 0.24), rgba(89, 122, 107, 0.1) 54%, rgba(255, 255, 255, 0.04)),
    #10100f;
  border-color: rgba(215, 182, 109, 0.38);
}

.service-index {
  color: rgba(244, 223, 172, 0.72);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-index {
  color: var(--gold-soft);
  transform: translateX(4px);
}

.service-card h3 {
  margin: 28px 0 14px;
  color: var(--ivory);
}

.service-card p {
  color: rgba(247, 240, 228, 0.74);
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 240, 228, 0.78);
}

.service-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.signature {
  background:
    linear-gradient(110deg, rgba(247, 240, 228, 0.96), rgba(230, 217, 192, 0.86) 48%, rgba(89, 122, 107, 0.34)),
    #efe4cf;
  color: #13110d;
}

.signature .eyebrow {
  color: #765b24;
}

.signature-panel {
  position: sticky;
  top: 120px;
}

.signature h2 {
  color: #12100d;
}

.signature-panel p {
  color: rgba(19, 17, 13, 0.74);
}

.quality-list {
  display: grid;
  gap: 14px;
}

.quality-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(19, 17, 13, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 45px rgba(39, 31, 16, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.quality-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 55px rgba(39, 31, 16, 0.12);
}

.quality-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #15120d;
  color: var(--gold-soft);
}

.quality-item p {
  margin-bottom: 0;
  color: rgba(19, 17, 13, 0.68);
  line-height: 1.65;
}

.portfolio-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 182, 109, 0.1), transparent 28%),
    linear-gradient(180deg, #070706, #11100f 52%, #070706);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e0e0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 248, 233, 0.1), transparent 42%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(244, 223, 172, 0.18), transparent 30%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(215, 182, 109, 0.42);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

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

.project-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 2;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 233, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(7, 7, 6, 0.54);
  transform: perspective(900px) rotateX(0deg);
  transition: transform 0.35s ease;
}

.project-card:hover .project-visual {
  transform: perspective(900px) rotateX(4deg) translateY(-4px);
}

.project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-visual span {
  display: inline-flex;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 248, 233, 0.2);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.32);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-visual div {
  height: 44px;
  margin-top: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.project-visual div:nth-child(3) {
  width: 74%;
}

.project-visual div:nth-child(4) {
  width: 48%;
}

.project-rose .project-visual {
  background:
    linear-gradient(135deg, rgba(117, 65, 91, 0.92), rgba(226, 171, 194, 0.44), rgba(7, 7, 6, 0.68)),
    #4b2438;
}

.project-cacao .project-visual {
  background:
    linear-gradient(135deg, rgba(154, 78, 20, 0.88), rgba(245, 227, 194, 0.36), rgba(7, 7, 6, 0.62)),
    #5e2e12;
}

.project-auto .project-visual {
  background:
    linear-gradient(135deg, rgba(35, 47, 58, 0.95), rgba(91, 112, 123, 0.26), rgba(7, 7, 6, 0.78)),
    #121a21;
}

.project-cyan .project-visual {
  background:
    radial-gradient(circle at 72% 66%, rgba(225, 63, 155, 0.52), transparent 28%),
    radial-gradient(circle at 20% 28%, rgba(37, 202, 236, 0.45), transparent 30%),
    linear-gradient(135deg, rgba(9, 10, 12, 0.92), rgba(7, 7, 6, 0.72)),
    #030405;
}

.project-mono .project-visual {
  background:
    radial-gradient(circle at 58% 12%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(7, 7, 6, 0.9)),
    #030303;
}

.project-royal .project-visual {
  background:
    linear-gradient(135deg, rgba(201, 147, 20, 0.72), rgba(239, 228, 207, 0.28), rgba(7, 7, 6, 0.64)),
    #8f670b;
}

.project-gold .project-visual {
  background:
    linear-gradient(135deg, rgba(215, 182, 109, 0.42), rgba(7, 7, 6, 0.72)),
    #11100e;
}

.project-ivory .project-visual {
  background:
    linear-gradient(135deg, rgba(255, 248, 233, 0.82), rgba(158, 181, 189, 0.2) 52%, rgba(7, 7, 6, 0.58)),
    #efe4cf;
}

.project-emerald .project-visual {
  background:
    linear-gradient(135deg, rgba(89, 122, 107, 0.62), rgba(215, 182, 109, 0.16), rgba(7, 7, 6, 0.72)),
    #0c1210;
}

.project-content {
  position: relative;
  z-index: 1;
  padding: 24px 6px 4px;
}

.project-content span,
.pricing-label {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-content h3 {
  max-width: 320px;
  margin: 18px 0 12px;
  color: var(--ivory);
  font-size: 1.32rem;
}

.project-content p {
  margin: 0;
  color: rgba(247, 240, 228, 0.7);
  line-height: 1.68;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.project-meta li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 248, 233, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 240, 228, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
}

.project-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.project-link::after {
  content: "->";
  margin-left: 9px;
  transition: transform 0.2s ease;
}

.project-link:hover::after {
  transform: translateX(4px);
}

.offers-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 248, 233, 0.08), transparent 42%),
    #0b0b0a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 248, 233, 0.06), rgba(255, 255, 255, 0.018)),
    #0f0f0e;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(244, 223, 172, 0.16), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 182, 109, 0.36);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.pricing-card.highlighted {
  background:
    linear-gradient(145deg, rgba(215, 182, 109, 0.28), rgba(255, 248, 233, 0.07), rgba(89, 122, 107, 0.12)),
    #11100e;
  border-color: rgba(215, 182, 109, 0.46);
}

.pricing-card h3 {
  position: relative;
  margin: 24px 0 16px;
  color: var(--ivory);
  font-size: 1.35rem;
}

.pricing-card .price {
  position: relative;
  margin-bottom: 30px;
  color: rgba(247, 240, 228, 0.7);
}

.pricing-card .price strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.pricing-card ul {
  position: relative;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 240, 228, 0.76);
}

.pricing-card li {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 248, 233, 0.1);
  line-height: 1.55;
}

.process-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 181, 189, 0.12), transparent 32%),
    #070706;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.timeline article {
  position: relative;
  min-height: 250px;
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.4s ease;
}

.timeline article:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 182, 109, 0.32);
}

.timeline article:hover::before {
  width: 82%;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  color: var(--gold-soft);
  font-weight: 800;
}

.timeline h3 {
  margin: 58px 0 12px;
}

.timeline p {
  max-width: 230px;
  color: var(--muted);
  line-height: 1.65;
}

.proof-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(215, 182, 109, 0.08), transparent 42%),
    #0d0d0c;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list p {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 22px;
  border-left: 1px solid rgba(215, 182, 109, 0.45);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.proof-list p:hover {
  transform: translateX(8px);
  border-color: rgba(244, 223, 172, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.guarantees-section {
  background:
    linear-gradient(120deg, rgba(255, 248, 233, 0.08), transparent 40%),
    #070706;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guarantee-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 248, 233, 0.06), rgba(255, 255, 255, 0.018)),
    #0f0f0e;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.guarantee-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 182, 109, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.guarantee-grid span {
  color: var(--gold-soft);
  font-weight: 800;
}

.guarantee-grid h3 {
  margin: 54px 0 12px;
}

.guarantee-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.faq-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 182, 109, 0.1), transparent 28%),
    #070706;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-list details[open] {
  border-color: rgba(215, 182, 109, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 54px 22px 22px;
  color: var(--ivory);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 182, 109, 0.38);
  border-radius: 50%;
  color: var(--gold-soft);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-list details[open] summary::after {
  background: rgba(215, 182, 109, 0.12);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 24px;
  color: rgba(247, 240, 228, 0.7);
  line-height: 1.72;
}

.contact-section {
  background:
    linear-gradient(135deg, #070706 0%, #12110f 58%, rgba(244, 223, 172, 0.22) 100%),
    #070706;
}

.contact-direct {
  display: inline-grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 182, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-direct span {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--ivory);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form:hover {
  border-color: rgba(215, 182, 109, 0.34);
  box-shadow: 0 34px 105px rgba(0, 0, 0, 0.42);
}

.contact-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.contact-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 233, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.62);
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(247, 240, 228, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--gold);
}

.checkbox-label span {
  color: rgba(247, 240, 228, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 182, 109, 0.72);
  box-shadow: 0 0 0 4px rgba(215, 182, 109, 0.1);
}

.contact-form ::placeholder {
  color: rgba(247, 240, 228, 0.42);
}

.form-note,
.form-status {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(247, 240, 228, 0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.3em;
  color: var(--gold-soft);
  font-weight: 700;
}

.footer {
  padding: 28px 24px;
  background: #070706;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(247, 240, 228, 0.62);
  font-size: 0.92rem;
}

.footer-inner span:first-child {
  color: var(--gold-soft);
  font-weight: 800;
}

.legal-page {
  padding-top: 150px;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 860px;
}

.legal-content article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.admin-page {
  background:
    linear-gradient(135deg, #070706 0%, #12110f 62%, rgba(244, 223, 172, 0.16) 100%),
    #070706;
}

.admin-shell {
  display: grid;
  gap: 22px;
}

.admin-nav,
.admin-filters,
.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-nav a,
.admin-pagination a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-soft);
  font-weight: 800;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.admin-card,
.admin-lead,
.admin-check {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.admin-alert {
  padding: 14px 16px;
  border: 1px solid rgba(215, 182, 109, 0.34);
  border-radius: var(--radius);
  color: var(--gold-soft);
  background: rgba(215, 182, 109, 0.08);
}

.admin-filters input,
.admin-filters select,
.admin-lead-form select,
.admin-lead-form textarea {
  border: 1px solid rgba(255, 248, 233, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.62);
  color: var(--ink);
  padding: 13px 14px;
}

.admin-filters input {
  min-width: min(100%, 320px);
}

.admin-leads,
.admin-checks {
  display: grid;
  gap: 16px;
}

.admin-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 22px;
}

.admin-lead h2,
.admin-check h2 {
  margin: 12px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.admin-lead p,
.admin-check p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-lead-form {
  display: grid;
  gap: 14px;
}

.admin-lead-form label {
  display: grid;
  gap: 8px;
}

.admin-lead-form span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-check.is-ok {
  border-color: rgba(89, 122, 107, 0.62);
}

.admin-check.is-blocked {
  border-color: rgba(215, 182, 109, 0.48);
}

.admin-check strong {
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 0.78rem;
}

@keyframes topbar-in {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes hero-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.12);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes page-sheen {
  to {
    transform: translateX(115%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-proof {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .topbar.menu-active {
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px;
  }

  .topbar.menu-active .nav-links {
    order: 3;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 248, 233, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 7, 6, 0.96);
    backdrop-filter: blur(20px);
  }

  .topbar.menu-active .nav-links a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 248, 233, 0.09);
  }

  .topbar.menu-active .nav-cta {
    order: 4;
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
  }

  .split,
  .proof-grid,
  .contact-grid,
  .signature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .guarantee-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .signature-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 12px;
    width: calc(100% - 24px);
    height: 62px;
    padding-left: 12px;
  }

  .brand {
    gap: 9px;
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 126px 18px 56px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 6, 0.93), rgba(7, 7, 6, 0.7)),
      linear-gradient(180deg, rgba(7, 7, 6, 0.16), rgba(7, 7, 6, 0.93) 82%, #070706 100%);
  }

  .hero-proof,
  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .guarantee-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading {
    display: block;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .project-card,
  .pricing-card,
  .guarantee-grid article {
    min-height: auto;
  }

  .project-visual {
    min-height: 220px;
  }

  .quality-item {
    grid-template-columns: 1fr;
  }

  .timeline {
    border-top: 0;
    gap: 14px;
  }

  .timeline article {
    min-height: auto;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .timeline h3 {
    margin-top: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-heading {
    display: block;
  }

  .admin-lead {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
