:root {
  --navy: #0f2235;
  --navy-2: #162c42;
  --gold: #a87922;
  --gold-2: #c69a45;
  --cream: #fbf8f1;
  --soft: #f5efe5;
  --text: #172331;
  --muted: #66717f;
  --white: #fff;
  --shadow: 0 18px 45px rgba(15, 34, 53, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 42px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 34, 53, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  line-height: 1.25;
}
.brand-text small {
  letter-spacing: 0.32em;
  color: var(--gold);
  font-size: 10px;
  margin-top: 3px;
}
.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.main-nav a:hover {
  color: var(--gold);
}
.header-cta {
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(15, 34, 53, 0.18);
}
.header-cta:hover {
  background: var(--navy-2);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--navy);
}
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(360px, 0.6fr) minmax(420px, 1.4fr);
  background: linear-gradient(
    90deg,
    #111 0%,
    #111 32%,
    var(--cream) 32%,
    #fff 100%
  );
  overflow: hidden;
}
.hero-photo {
  position: relative;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo img {
  width: 85%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-content {
  padding: 78px 0vw 62px 5vw;
  align-self: center;
  max-width: 880px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
}
.center {
  text-align: center;
}
.hero h1,
.section h2,
.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  margin: 0 0 22px;
  color: var(--navy);
  font-weight: 600;
}
.title-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 15px;
}
.title-line span {
  width: 120px;
  height: 1px;
  background: var(--gold);
}
.hero p {
  font-size: 17px;
  max-width: 660px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 28px 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.trust-grid span:before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  margin-right: 8px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 13px;
  transition: 0.2s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(168, 121, 34, 0.22);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn:hover {
  transform: translateY(-2px);
}
.social-links {
  display: flex;
  gap: 30px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}
.social-links a:hover {
  color: var(--gold);
}
.section {
  padding: 92px 28px;
  background: #fff;
}
.section-soft {
  background: var(--cream);
}
.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.narrow {
  width: min(900px, 100%);
}
.section h2,
.contact h2 {
  text-align: center;
  font-size: clamp(36px, 4.6vw, 54px);
  margin-bottom: 16px;
}
.divider {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 42px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid rgba(15, 34, 53, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}
.icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.card h3,
.steps h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 12px;
}
.card p,
.steps p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.steps article {
  background: var(--cream);
  border-radius: 12px;
  padding: 30px;
  border-left: 4px solid var(--gold);
}
.steps strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: rgba(168, 121, 34, 0.28);
}
.contact {
  padding: 90px 28px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.contact h2 {
  color: #fff;
}
.contact p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  max-width: 690px;
  margin: 0 auto;
}
.center-actions {
  justify-content: center;
}
.footer {
  padding: 24px;
  text-align: center;
  background: #081522;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 22px 22px;
    border-bottom: 1px solid rgba(15, 34, 53, 0.08);
    box-shadow: var(--shadow);
  }
  .main-nav.open a {
    padding: 12px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    background: var(--cream);
  }
  .hero-photo {
    min-height: 480px;
    order: 1;
  }
  .hero-photo:after {
    background: linear-gradient(0deg, var(--cream), rgba(251, 248, 241, 0) 35%);
  }
  .hero-content {
    order: 2;
    padding: 40px 24px 64px;
    text-align: left;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .brand-text {
    display: none;
  }
  .hero-photo {
    min-height: 380px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .trust-grid,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .social-links {
    justify-content: center;
    gap: 20px;
  }
  .title-line span {
    width: 64px;
  }
  .site-header {
    height: 72px;
  }
  .main-nav.open {
    top: 72px;
  }
}
