:root {
  --bg: #ffffff;
  --bg-soft: #f7f3ed;
  --text: #161616;
  --muted: #5f5f5f;
  --border: #e7dfd3;
  --gold: #c99a3e;
  --gold-dark: #8b681e;
  --navy: #15345f;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(22, 22, 22, 0.09);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 223, 211, 0.8);
}

.navbar {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  width: 250px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.96rem;
  font-weight: 650;
}

.nav-links a {
  color: #2b2b2b;
}

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

.nav-cta {
  background: var(--text);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.section {
  padding: 88px 0;
}

.hero {
  padding-top: 96px;
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 154, 62, 0.18), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbf7f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-text,
.section-heading p,
.about-grid p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  margin: 34px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--text);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #3a3a3a;
  font-weight: 650;
  font-size: 0.95rem;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-card,
.credential-box,
.contact-form,
.card,
.address-box,
.step,
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-card {
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card-logo {
  width: 280px;
  margin-bottom: 22px;
}

.hero-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 38px;
}

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

.card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--gold-dark);
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.card-accent {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fff;
}

.card-accent p,
.card-accent a {
  color: rgba(255, 255, 255, 0.82);
}

.section-muted {
  background: var(--bg-soft);
}

.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.credential-box {
  padding: 30px;
  box-shadow: var(--shadow);
}

.credential-box img {
  width: 190px;
  margin: 0 auto 20px;
}

.credential-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.step {
  padding: 24px;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    radial-gradient(circle at 0% 0%, rgba(201,154,62,0.22), transparent 32%);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-list a {
  font-weight: 800;
  color: var(--navy);
}

.address-box {
  padding: 20px;
  margin-top: 14px;
}

.address-box p {
  margin: 0 0 10px;
  font-size: 1rem;
}

.address-box a {
  color: var(--gold-dark);
  font-weight: 800;
}

.contact-form {
  padding: 28px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 750;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 154, 62, 0.32);
  border-color: var(--gold);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 6px;
}

.form-note {
  font-size: 0.88rem !important;
  margin-bottom: 0;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.6fr;
  gap: 34px;
}

.footer-logo {
  width: 250px;
  filter: invert(1);
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255,255,255,0.74);
}

.site-footer h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 205px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 84px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

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

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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 68px;
  }

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

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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