/* ============================================================
   NOTARIUS SOKOLOVA — Premium Design System
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #0f1c2e;
  --navy-mid:    #152537;
  --navy-light:  #1e3448;
  --gold:        #b8964e;
  --gold-light:  #d4b07a;
  --gold-pale:   #f0e6d3;
  --cream:       #f8f6f1;
  --cream-dark:  #f0ede6;
  --white:       #ffffff;
  --text-dark:   #1a2332;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border:      #e4e0d8;
  --border-dark: #c8c4bc;

  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:   1200px;
  --section-pad: clamp(64px, 8vw, 120px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 28, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 150, 78, 0.15);
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
}

.nav-logo-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}

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

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 4vw, 60px) 80px;
  padding-left: calc((100vw - var(--max-width)) / 2 + clamp(20px, 4vw, 60px));
  position: relative;
  z-index: 2;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-label-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 150, 78, 0.3);
}

.btn-primary svg {
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.btn-secondary:hover {
  color: var(--white);
}

.btn-secondary svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.btn-secondary:hover svg {
  opacity: 1;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 25%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) contrast(1.05);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,150,78,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   STATS
   ============================================================ */

#stats {
  background: var(--cream);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid transparent;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.stat-item.animated::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-suffix {
  font-size: 0.5em;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */

#services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 56px;
}

.section-header .section-label {
  margin-bottom: 16px;
}

.section-header .display-lg {
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background var(--transition);
  cursor: default;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: var(--cream);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-price-from {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-price-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */

#advantages {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

#advantages .section-label {
  color: var(--gold);
}

#advantages .display-lg {
  color: var(--white);
  margin-bottom: 16px;
}

#advantages .section-header p {
  color: rgba(255,255,255,0.55);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.advantage-card {
  background: var(--navy);
  padding: 48px 44px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
  background: var(--navy-light);
  border-color: rgba(184,150,78,0.15);
}

.advantage-card:hover::before {
  transform: scaleY(1);
}

.advantage-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: rgba(184,150,78,0.12);
  line-height: 1;
  margin-bottom: -10px;
}

.advantage-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.advantage-text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================================
   PROCESS
   ============================================================ */

#process {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  padding: 0 36px;
  position: relative;
  z-index: 1;
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-step:hover .step-num {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(184,150,78,0.15);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.step-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT
   ============================================================ */

#about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.95) contrast(1.02) saturate(0.95);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  right: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.about-image-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.about-image-badge-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-image-badge-text {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-name {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.15;
}

.about-title {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-bio {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.about-credentials li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */

#faq {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}

.faq-intro {
  position: sticky;
  top: 100px;
}

.faq-intro .section-label {
  margin-bottom: 16px;
}

.faq-intro .display-md {
  color: var(--navy);
  margin-bottom: 20px;
}

.faq-intro p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question[aria-expanded="true"] {
  color: var(--gold);
  background: var(--cream);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: var(--gold);
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  color: var(--text-mid);
  transition: color var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon svg {
  color: var(--navy);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */

#contact {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

#contact .section-label {
  color: var(--gold);
}

#contact .display-lg {
  color: var(--white);
  margin-bottom: 16px;
}

#contact .section-header p {
  color: rgba(255,255,255,0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-block:first-child { padding-top: 0; }
.contact-block:last-child { border-bottom: none; }

.contact-block-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-block-value {
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}

.contact-block-value a {
  color: var(--white);
  transition: color var(--transition);
}

.contact-block-value a:hover {
  color: var(--gold);
}

.contact-block-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  line-height: 1.5;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 40px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form-select {
  cursor: pointer;
  color: rgba(255,255,255,0.6);
}

.form-select option {
  background: var(--navy-mid);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #080f18;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 12px 24px;
  transition: color var(--transition);
}

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

.mobile-nav-cta {
  margin-top: 16px;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 36px !important;
  border-radius: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 120px 40px 60px;
    padding-left: 40px;
  }

  .hero-image {
    height: 55vw;
    max-height: 480px;
  }

  .hero-image::before {
    background: linear-gradient(to bottom, var(--navy) 0%, transparent 20%);
  }

  .hero-scroll { display: none; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps::before { display: none; }

  .process-step {
    padding: 0;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 24px;
    align-items: start;
  }

  .step-num {
    margin-bottom: 0;
    grid-row: 1 / 3;
  }

  .step-title { align-self: end; padding-bottom: 8px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    max-width: 420px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .about-image-badge {
    right: 16px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 100px 20px 48px;
  }

  .hero-image {
    height: 80vw;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    border-left: none;
  }

  .stat-item {
    padding: 32px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }

  .advantage-card {
    padding: 32px 24px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ============================================================
   FOCUS STYLES (ACCESSIBILITY)
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: rgba(184, 150, 78, 0.25);
  color: var(--navy);
}

/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  margin: 0 auto 16px;
  color: var(--gold);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
