
:root {
  --navy: #020830;
  --navy-2: #050f3d;
  --gold: #d4af37;
  --gold-light: #f3d87a;
  --white: #ffffff;
  --off-white: #f7f5ef;
  --muted: #c7c7d1;
  --text: #151515;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(2, 8, 48, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, .22);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.menu a:hover {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(212, 175, 55, .25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(212, 175, 55, .36);
}

.btn-outline {
  border-color: rgba(212, 175, 55, .58);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, .12);
  color: var(--gold-light);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background: radial-gradient(circle at 78% 20%, rgba(212, 175, 55, .20), transparent 28%),
  linear-gradient(rgba(2, 8, 48, .88), rgba(2, 8, 48, .92)),
  url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(212, 175, 55, .18);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 160px;
  transform: rotate(12deg);
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 90px;
  transform: rotate(-16deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(46px, 7vw, 84px);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero p {
  color: #e8e8ef;
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(212, 175, 55, .32);
  padding: 36px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.logo-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto 24px;
  border: 1px solid rgba(212, 175, 55, .48);
  display: grid;
  place-items: center;
  background: rgba(2, 8, 48, .35);
}

.logo-monogram {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.hero-card strong {
  display: block;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}

section {
  padding: 100px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--navy);
  margin-bottom: 18px;
}

.section-head p {
  color: #555;
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(2, 8, 48, .08);
  padding: 28px;
  min-height: 210px;
  border-radius: 24px;
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, .14), transparent 42%);
  opacity: 0;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(2, 8, 48, .12);
  border-color: rgba(212, 175, 55, .45);
}

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

.icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
}

.service-card h3 {
  position: relative;
  font-size: 27px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  position: relative;
  color: #666;
  font-size: 14px;
}

.dark-section {
  background: radial-gradient(circle at 20% 10%, rgba(212, 175, 55, .16), transparent 30%),
  linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.dark-section .section-head h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-head p {
  color: var(--muted);
}

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

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

.feature-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, .24);
  background: rgba(255, 255, 255, .045);
}

.feature-item b {
  color: var(--gold-light);
}

.feature-item p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.image-frame {
  min-height: 520px;
  border-radius: 34px;
  background: linear-gradient(rgba(2, 8, 48, .18), rgba(2, 8, 48, .45)),
  url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid rgba(212, 175, 55, .38);
  box-shadow: var(--shadow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(2, 8, 48, .08);
  position: relative;
}

.step::before {
  content: "0" counter(steps);
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 27px;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  min-height: 540px;
  border-radius: 34px;
  background: linear-gradient(rgba(2, 8, 48, .10), rgba(2, 8, 48, .45)),
  url('https://images.unsplash.com/photo-1590650153855-d9e808231d41?auto=format&fit=crop&w=1000&q=80') center/cover;
  border: 1px solid rgba(212, 175, 55, .34);
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--navy);
  margin-bottom: 22px;
}

.about-text p {
  color: #555;
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat {
  background: var(--navy);
  color: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, .36);
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
}

.cta {
  padding: 90px 0;
  background: linear-gradient(rgba(2, 8, 48, .92), rgba(2, 8, 48, .95)),
  url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: clamp(38px, 5vw, 66px);
  max-width: 850px;
  margin: 0 auto 18px;
}

.cta p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 17px;
}

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

.contact-card, .form-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(2, 8, 48, .08);
  box-shadow: 0 20px 50px rgba(2, 8, 48, .08);
}

.contact-card h3, .form-card h3 {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 18px;
}

.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.contact-line b {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-line span {
  color: #666;
}

form {
  display: grid;
  gap: 14px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 14px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #fbfbfb;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}

footer {
  background: var(--navy);
  color: var(--muted);
  padding: 34px 0;
  border-top: 1px solid rgba(212, 175, 55, .22);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #20c55e, #0f9d49);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  font-size: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s ease;
}

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

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-grid, .features, .about, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 14px 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  section {
    padding: 72px 0;
  }

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