@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Work+Sans:wght@300;400;500;600&display=swap");

:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --gold: #b48a42;
  --silver: #b0b3b8;
  --graphite: #2a2a2a;
  --fog: #f3f4f6;
  --smoke: #e6e7eb;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 25px 60px rgba(11, 11, 11, 0.25);
  --shadow-tight: 0 12px 26px rgba(11, 11, 11, 0.2);
}

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

body {
  font-family: "Work Sans", sans-serif;
  color: var(--black);
  background: radial-gradient(circle at top, #ffffff 0%, #f6f4f1 55%, #ece9e4 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.page-shell::before {
  background: radial-gradient(circle, rgba(198, 161, 91, 0.35), transparent 65%);
  top: -120px;
  left: -120px;
}

.page-shell::after {
  background: radial-gradient(circle, rgba(199, 200, 204, 0.35), transparent 60%);
  bottom: -160px;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 161, 91, 0.7), transparent);
}

.nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px 8vw;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand img {
  width: 460px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--graphite);
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.72rem;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white) !important;
  font-weight: 600;
}

main {
  position: relative;
  z-index: 1;
  padding: 0 8vw 64px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 72px 0 48px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 14px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  color: var(--gold);
  font-weight: 600;
}

.lead {
  color: var(--graphite);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 11, 11, 0.2);
}

.btn.secondary {
  background: var(--gold);
  color: var(--black);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(11, 11, 11, 0.2);
  color: var(--black);
}

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

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--graphite);
}

.trust-value {
  display: block;
  font-weight: 600;
  color: var(--black);
}

.hero-card {
  background: linear-gradient(160deg, #111111, #2c2c2c);
  border: 1px solid rgba(198, 161, 91, 0.35);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.25);
  top: -90px;
  right: -40px;
  filter: blur(2px);
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.card-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 10px 0;
}

.text-link {
  color: var(--gold);
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.section-header {
  max-width: 680px;
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-header p {
  color: var(--graphite);
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(11, 11, 11, 0.08);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-tight);
  display: grid;
  gap: 12px;
}

.card p {
  color: var(--graphite);
  line-height: 1.6;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.95rem;
}

.card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold);
}

.process {
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.16), rgba(198, 161, 91, 0.02));
  border-radius: var(--radius-lg);
  padding: 64px 4vw;
  border: 1px solid rgba(198, 161, 91, 0.25);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step {
  background: var(--white);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-tight);
}

.step-number {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.panel-dark {
  background: linear-gradient(150deg, #111111, #2c2c2c);
  border: 1px solid rgba(198, 161, 91, 0.35);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

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

.faq details {
  background: var(--white);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-tight);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  color: var(--graphite);
  line-height: 1.6;
  margin-top: 10px;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 28px;
  box-shadow: var(--shadow-tight);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.contact-details .label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  color: var(--graphite);
}

.contact-details .value {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.85rem;
  color: var(--graphite);
}

input,
textarea,
select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 11, 11, 0.15);
  background: #f6f4f1;
  color: var(--black);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--graphite);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brands-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.brand-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f6f4f1;
  border: 1px solid rgba(11, 11, 11, 0.1);
  font-size: 0.85rem;
  color: var(--graphite);
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f6f4f1;
  border: 1px solid rgba(11, 11, 11, 0.1);
  font-size: 0.85rem;
  color: var(--graphite);
}

.site-footer {
  padding: 32px 8vw 48px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--graphite);
  font-size: 0.9rem;
}

.fade-in {
  animation: fadeIn 0.9s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    row-gap: 10px;
  }

  .brand img {
    width: 240px;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 20px 6vw;
  }

  main {
    padding: 0 6vw 48px;
  }

  .hero {
    padding: 48px 0 32px;
    gap: 28px;
  }

  .trust-row {
    gap: 16px;
  }

  .section {
    padding: 48px 0;
  }

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

  .grid-2,
  .process-steps,
  .split {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .card,
  .step,
  .contact-card {
    padding: 18px;
  }

  .nav-links a {
    letter-spacing: 0.12rem;
    font-size: 0.68rem;
  }

  .testimonials .card:nth-of-type(n + 3) {
    display: none;
  }

  .why-choose .card:nth-of-type(n + 3) {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }
}
