/* ═══ RESET & BASE ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1c2e;
  --navy-mid: #162439;
  --navy-light: #1e3450;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: rgba(201,168,76,.15);
  --white: #ffffff;
  --off-white: #f7f5f2;
  --text: #0f1c2e;
  --text-mid: #3a4a5e;
  --text-light: #6a7a8e;
  --border: #e4e9f0;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══ NAV ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(15,28,46,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -.2px;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 999px;
  font-size: 13px !important;
  transition: opacity var(--transition) !important;
}
.nav-cta:hover { opacity: .85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══ HERO ════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-img.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,28,46,.88) 0%, rgba(15,28,46,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 64px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  background: rgba(201,168,76,.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 700px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-commission {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: inline-flex;
}
.commission-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.commission-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.commission-text small {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ═══ BUTTONS ════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary--dark { background: var(--navy); color: var(--gold); }
.btn-primary--gold { background: var(--gold); color: var(--navy); font-size: 15px; padding: 16px 36px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* ═══ STRIP ══════════════════════════════════════════════ */
.strip {
  background: var(--gold);
  padding: 14px 32px;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-item {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .02em;
}
.strip-icon { font-size: 8px; color: var(--navy); opacity: .6; }
.strip-sep { color: rgba(15,28,46,.3); font-size: 18px; }

/* ═══ SECTIONS ════════════════════════════════════════════ */
.section { padding: 96px 32px; }
.section--dark { background: var(--navy); }
.section--light { background: var(--off-white); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.container--narrow {
  max-width: 760px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--gold { color: var(--gold); }

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 48px;
}
.section-headline em { font-style: normal; color: var(--gold); }
.section-headline--white { color: var(--white); }

/* ═══ BENEFITS ═══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: var(--white);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(15,28,46,.1);
  transform: translateY(-3px);
}
.benefit-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-body h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.benefit-body p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}
.benefit-card--cta {
  background: var(--navy);
  border-color: var(--navy);
  align-items: center;
  justify-content: center;
}
.benefit-card--cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(15,28,46,.3); }
.benefit-cta-inner { text-align: center; }
.benefit-cta-label {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.benefit-cta-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  line-height: 1.45;
}

/* ═══ STEPS ══════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-line {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: rgba(201,168,76,.25);
}
.step-line.last { display: none; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ═══ GALLERY ════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
}
.gallery-item:first-child {
  grid-column: span 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ═══ SPLIT ══════════════════════════════════════════════ */
.split-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-mid);
}
.list-dot {
  color: var(--gold);
  font-size: 8px;
  margin-top: 5px;
  flex-shrink: 0;
}
.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,28,46,.12);
}
.split-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* ═══ CONTACT ════════════════════════════════════════════ */
.contact-sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-top: -28px;
  margin-bottom: 40px;
  font-weight: 300;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,.6);
  background: rgba(255,255,255,.1);
}
.btn-submit { width: 100%; justify-content: center; font-size: 15px; padding: 16px; }
.form-note {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

.contact-direct {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--white); }
.contact-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.1);
}

/* ═══ FOOTER ═════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
}

/* ═══ ANIMATIONS ════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card:nth-child(2) { transition-delay: .07s; }
.benefit-card:nth-child(3) { transition-delay: .14s; }
.benefit-card:nth-child(4) { transition-delay: .21s; }
.benefit-card:nth-child(5) { transition-delay: .07s; }
.benefit-card:nth-child(6) { transition-delay: .14s; }
.benefit-card:nth-child(7) { transition-delay: .21s; }
.step:nth-child(2) { transition-delay: .1s; }
.step:nth-child(3) { transition-delay: .2s; }
.step:nth-child(4) { transition-delay: .3s; }
.gallery-item:nth-child(2) { transition-delay: .08s; }
.gallery-item:nth-child(3) { transition-delay: .16s; }
.gallery-item:nth-child(4) { transition-delay: .08s; }
.gallery-item:nth-child(5) { transition-delay: .16s; }
.gallery-item:nth-child(6) { transition-delay: .24s; }

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-line { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(15,28,46,.98);
    padding: 20px 32px 28px;
    gap: 18px;
  }
  .nav-hamburger { display: flex; }
  .nav { position: fixed; }

  .hero-content { padding: 0 20px; padding-top: 80px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-commission { flex-direction: row; }

  .section { padding: 64px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 1; }

  .container--split { grid-template-columns: 1fr; gap: 40px; }
  .split-visual img { height: 300px; }
  .split-visual { order: -1; }

  .form-row { grid-template-columns: 1fr; }
  .contact-direct { flex-direction: column; gap: 20px; }
  .contact-divider { display: none; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .strip-sep { display: none; }
  .strip-inner { gap: 10px; justify-content: flex-start; }
}
