@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --navy: #1a2744;
  --navy-deep: #0f1829;
  --navy-soft: #243556;
  --gold: #b8955a;
  --gold-light: #d4b57a;
  --cream: #f4f1eb;
  --ink: #1c1c1c;
  --muted: #5a6170;
  --line: rgba(26, 39, 68, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 24, 41, 0.12);
  --radius: 2px;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav a.active { color: var(--navy-deep); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-soft) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(115deg, rgba(15, 24, 41, 0.92) 0%, rgba(26, 39, 68, 0.78) 48%, rgba(26, 39, 68, 0.55) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(184, 149, 90, 0.25), transparent 50%),
    linear-gradient(160deg, #1a2744, #0f1829 60%, #16233a);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  max-width: 740px;
  animation: rise 0.8s ease both;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 1.15rem;
}

.hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-soft); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-head {
  max-width: 620px;
  margin-bottom: 2.75rem;
  animation: rise 0.7s ease both;
}

.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}

/* Feature strip */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

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

.trust-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.service {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: rise 0.7s ease both;
}

.service:nth-child(2) { animation-delay: 0.08s; }
.service:nth-child(3) { animation-delay: 0.16s; }
.service:nth-child(4) { animation-delay: 0.24s; }
.service:nth-child(5) { animation-delay: 0.32s; }
.service:nth-child(6) { animation-delay: 0.4s; }

.service:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.service p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-panel {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  padding: 2.5rem 2rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.split-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  border-radius: 50%;
  top: -60px;
  right: -40px;
}

.split-panel h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
}

.split-panel p {
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  max-width: 28rem;
}

.split-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.split-copy ul {
  margin: 1.25rem 0 1.75rem;
}

.split-copy li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.split-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(120deg, rgba(15, 24, 41, 0.94), rgba(26, 39, 68, 0.85)),
    linear-gradient(160deg, #1a2744, #0f1829);
  color: var(--white);
  padding: 4.2rem 0 3.4rem;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
}

.contact-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-list li {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--navy);
  border-bottom: 1px solid transparent;
}

.contact-list a:hover { border-bottom-color: var(--gold); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
}

.form h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form .hint {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fafaf8;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.field textarea { min-height: 140px; resize: vertical; }

.form-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(26, 39, 68, 0.06);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(115deg, var(--navy-deep), var(--navy) 55%, #2a3f63);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.25rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* Animations */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid,
  .trust-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: inline-flex; }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 0.85rem 1.25rem;
  }

  .nav-cta {
    margin: 0.5rem 1.25rem 0;
    justify-content: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .hero-inner { padding: 4rem 0 3.25rem; }
}
