:root {
  --navy: #0b1f36;
  --navy-2: #102b4a;
  --gold: #c99b4a;
  --gold-light: #e8c783;
  --cream: #f7f4ee;
  --white: #ffffff;
  --ink: #152033;
  --muted: #667085;
  --line: #e4e7ec;
  --shadow: 0 18px 50px rgba(11,31,54,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }


/* ///Logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
  max-height: 75px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  color: #062b63;
  font-size: 1rem;
}

.brand-text small {
  margin-top: 4px;
  color: #086633;
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover {
  color: #086633;
}

.nav-cta {
  padding: 12px 18px;
  color: #ffffff !important;
  background: #062b63;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  padding: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #062b63;
  border-radius: 2px;
}

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

  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgb(0 0 0 / 12%);
  }

  .main-nav.is-open {
    display: flex;
  }
}

/* End of logo */


.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(228,231,236,.9);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; gap: 13px; align-items: center; }
.brand-mark {
  width: 53px; height: 53px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-light);
  font-family: "Playfair Display", serif; font-size: 20px;
  border: 2px solid var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: var(--navy); font-size: 15px; }
.brand-text small { color: var(--muted); font-size: 10px; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--gold); }
.nav-cta { border: 1px solid var(--navy); padding: 11px 17px; }
.menu-toggle { display: none; border: 0; background: none; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  min-height: 720px; position: relative; display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(5,20,36,.96) 0%, rgba(8,31,54,.88) 56%, rgba(8,31,54,.62) 100%),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .75fr; gap: 70px; align-items: center; padding: 90px 0; }
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; color: var(--gold);
}
.hero h1 {
  font-family: "Playfair Display", serif; font-size: clamp(46px, 6vw, 76px);
  line-height: 1.06; margin: 18px 0 24px; max-width: 850px;
}
.hero-lead { font-size: 18px; color: #d7e0ea; max-width: 740px; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 22px; font-weight: 700; border: 0; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { border: 1px solid rgba(255,255,255,.55); color: white; }
.hero-points { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: #cbd5df; }
.hero-points span::before { content: "✓"; color: var(--gold-light); margin-right: 8px; }

.hero-card {
  background: rgba(255,255,255,.96); color: var(--ink); padding: 34px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
}
.hero-card .card-label { color: var(--gold); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.hero-card h2 { font-family: "Playfair Display", serif; color: var(--navy); font-size: 30px; line-height: 1.25; }
.hero-card ul { padding-left: 20px; color: var(--muted); }
.hero-card li { margin: 8px 0; }
.text-link { color: var(--navy); font-weight: 800; }

.section { padding: 100px 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.section h2, .contact-section h2 {
  font-family: "Playfair Display", serif; color: var(--navy);
  font-size: clamp(34px, 4vw, 50px); line-height: 1.15; margin: 10px 0 20px;
}
.intro-copy { font-size: 17px; color: var(--muted); }

.services-section { background: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p:last-child { color: var(--muted); }
.centered { text-align: center; margin-inline: auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); padding: 30px; border: 1px solid #ebe7df;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--navy); color: var(--gold-light); font-weight: 800; }
.service-card h3 { color: var(--navy); font-size: 20px; margin: 22px 0 10px; }
.service-card p, .service-card li { color: var(--muted); font-size: 14px; }
.service-card ul { padding-left: 18px; }

.why-section { background: var(--navy); color: white; }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.light { color: var(--gold-light); }
.why-panel h2, .contact-copy h2 { color: white; }
.why-panel p:last-child { color: #c7d1dd; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.benefit { padding: 30px; background: var(--navy-2); }
.benefit strong { color: var(--gold-light); }
.benefit h3 { margin: 10px 0 8px; }
.benefit p { color: #c7d1dd; font-size: 14px; margin: 0; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.process-step { border-top: 2px solid var(--gold); padding-top: 24px; }
.process-step span { color: var(--gold); font-weight: 800; }
.process-step h3 { color: var(--navy); margin: 10px 0; }
.process-step p { color: var(--muted); font-size: 14px; }

.contact-section { background: #071728; color: white; padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; }
.contact-copy > p { color: #c7d1dd; }
.contact-details { margin-top: 32px; display: grid; gap: 15px; }
.contact-details a, .contact-details p { display: flex; flex-direction: column; margin: 0; }
.contact-details span { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--gold-light); }

.contact-form { background: white; color: var(--ink); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; margin-bottom: 17px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); padding: 13px 14px; font: inherit; color: var(--ink); background: white;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(201,155,74,.28); border-color: var(--gold); }
.full { width: 100%; }
.form-note { color: var(--muted); font-size: 12px; margin-bottom: 0; }

footer { background: #040f1c; color: #c9d1dc; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid strong { color: white; }
.footer-brand { font-family: "Playfair Display", serif; color: var(--gold-light); font-size: 34px; }
.copyright { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; font-size: 12px; }

@media (max-width: 900px) {
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 82px;
    background: white; padding: 24px; flex-direction: column; align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero { min-height: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-text small { display: none; }
  .hero-grid { padding: 65px 0; }
  .hero h1 { font-size: 42px; }
  .hero-card { padding: 25px; }
  .section, .contact-section { padding: 75px 0; }
  .service-grid, .benefit-grid, .process-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; gap: 8px; }
}
