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

body {
  background: #050505;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.website-frame {
  border: 0.25rem solid #f4f4f4;
  border-radius: 0.25rem;
  margin: 0.5rem;
  background: #050505;
}

.navbar {
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 4.4rem;
  height: 4.4rem;
  border: 0.125rem solid #c89135;
  border-radius: 50%;
  color: #c89135;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: bold;
  text-decoration: none;
}

.logo-text h2 {
  font-size: 1.375rem;
  letter-spacing: 0.1875rem;
  font-weight: 500;
  line-height: 1.05;
}

.logo-text p {
  color: #c89135;
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  margin: 0.375rem 0 0 0;
  font-weight: 600;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav a.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
}

.navbar-nav a.active {
  color: #c89135;
  border-bottom: 0.125rem solid #c89135;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-button {
  font-size: 0.875rem;
  font-weight: 600;
  border: 0.0625rem solid #c89135;
  color: #c89135;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.hero {
  min-height: 25rem;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.80) 42%, rgba(0,0,0,.25) 100%),
    url('images/top_bg.jpg');
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat no-repeat;
  display: flex;
  align-items: center;
  border-top: 0.0625rem solid rgba(255,255,255,.25);
  border-bottom: 0.0625rem solid rgba(255,255,255,.25);
}

.hero-content {
  max-width: 40rem;
  padding: 3.5rem 0;
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 500;
}

.gold {
  color: #c89135;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 20px;
  color: #c89135;
  font-size: 1.25rem;
}

.divider {
  width: 5rem;
  height: 0.125rem;
  background: #c89135;
  margin: 1.5rem 0;
}

.hero p {
  max-width: 31.25rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #f2f2f2;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01875rem;
}

.primary-btn {
  background: #3f6664;
  color: #fff;
  padding: 1rem 1.75rem;
}

.secondary-btn {
  border: 0.0625rem solid #c89135;
  color: #c89135;
  padding: 1rem 1.75rem;
}

.trust {
  background: #050d0f;
  padding: 2.125rem 0;
  border-bottom: 0.0625rem solid rgba(255,255,255,.25);
}

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

.trust-item {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.trust-icon {
  color: #c89135;
  font-size: 2.5rem;
}

.trust-item h3 {
  font-size: 1rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #ddd;
}

.light-section {
  background: #f6f4ef;
  color: #111;
  padding: 3.875rem 0;
}

.section-label {
  text-align: center;
  color: #c89135;
  font-size: 0.8rem;
  letter-spacing: 0.09375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.title-line {
  width: 4.4rem;
  height: 0.0625rem;
  background: #c89135;
  margin: 0.625rem auto 2.375rem;
}

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

.service-card {
  background: #fbfaf7;
  border: 0.125rem solid #696969;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
  padding: 2.375rem 1.875rem;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.service-card:hover, .service-card:active {
  background: #ccc;
  border: 0.125rem solid #696969;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
  padding: 2.375rem 1.875rem;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.service-icon {
  width: 4.875rem;
  height: 4.875rem;
  background: #061214;
  color: #c89135;
  border-radius: 50%;
  margin: 0 auto 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.125rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.dark-section {
  background: #03090b;
  padding: 3.625rem 0;
}

.dark-section .section-title {
  color: #fff;
}

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

.process-step {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.step-number {
  width: 4.25rem;
  height: 4.25rem;
  border: 0.125rem solid #c89135;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c89135;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.625rem;
}

.process-step h3 {
  color: #c89135;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #f3f3f3;
  font-size: 0.8rem;
  line-height: 1.5;
}

.testimonials {
  background: #f6f4ef;
  color: #111;
  padding: 3.25rem 0;
}

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

.testimonial {
  border-left: 0.0625rem solid #d2cec6;
  padding-left: 2.2rem;
}

.quote {
  color: #c89135;
  font-size: 3rem;
  line-height: 1;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
}

.client {
  margin-top: 1.125rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.privacy {
  background: linear-gradient(90deg, #082426, #031012);
  padding: 2.125rem 0;
}

.privacy-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 500;
}

.privacy p {
  color: #e5e5e5;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

footer {
  background: #03080a;
  padding: 2.375rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 2.125rem;
  align-items: start;
}

footer h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.8rem;
}

footer a, footer p {
  color: #ddd;
  text-decoration: none;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 0.0625rem solid rgba(255,255,255,.18);
  margin-top: 1.625rem;
  padding-top: 0.75rem;
  text-align: center;
  color: #ddd;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .hero h2 {
    font-size: 2rem;
  }
  .trust-grid,
  .services-grid,
  .process-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .privacy-content {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
  }
}
