:root {
  --navy: #061b38;
  --navy-2: #0c2d57;
  --gold: #c88a13;
  --gold-soft: #e7c879;
  --cream: #fbf8f0;
  --ink: #122033;
  --muted: #667085;
  --white: #ffffff;
  --line: rgba(6, 27, 56, 0.12);
  --shadow: 0 18px 50px rgba(6, 27, 56, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.navbar { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 18px; min-width: 330px; }
.brand img { width: 86px; height: 86px; object-fit: contain; }
.brand-copy strong { display: block; color: var(--navy); font-family: Georgia, serif; letter-spacing: .08em; font-size: 1.42rem; line-height: 1.15; }
.brand-copy span { display: block; color: var(--gold); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; color: var(--navy); }
.nav-links a { position: relative; padding: 42px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 28px; height: 2px; width: 0; background: var(--gold); transition: .2s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 12px 18px !important; border: 1px solid var(--gold); border-radius: 999px; color: var(--navy); }
.nav-cta::after { display: none; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: white; color: var(--navy); cursor: pointer; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  display: grid;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 77% 28%, rgba(200,138,19,.23), transparent 27%),
    linear-gradient(122deg, #04152c 0%, #0a2c55 58%, #061b38 100%);
}
.hero::before,
.hero::after { content: ""; position: absolute; border: 1px solid rgba(231,200,121,.25); transform: rotate(45deg); }
.hero::before { width: 380px; height: 380px; right: -165px; top: 90px; }
.hero::after { width: 220px; height: 220px; left: -120px; bottom: 25px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; padding: 76px 0; }
.hero h1 { margin: 14px 0 18px; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.4rem); line-height: .98; font-weight: 500; max-width: 740px; }
.hero h1 span { color: var(--gold-soft); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 660px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 14px 22px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 10px 25px rgba(200,138,19,.28); }
.btn-secondary { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.06); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }

.hero-card {
  position: relative;
  border-radius: 28px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 25px 80px rgba(0,0,0,.28);
  padding: 34px;
  color: var(--ink);
  border: 1px solid rgba(231,200,121,.42);
}
.hero-logo { width: min(320px, 80%); margin: 0 auto 10px; }
.hero-card .micro { text-align: center; color: var(--muted); font-size: .9rem; }

.quick-listings {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(200,138,19,.25);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-listings:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.listing-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold-soft);
}
.listing-icon svg { width: 30px; height: 30px; }
.quick-listings strong { display: block; font-family: Georgia, serif; font-size: 1.12rem; color: var(--navy); }
.quick-listings span { display: block; font-size: .87rem; color: var(--muted); }
.quick-listings .arrow { margin-left: auto; font-size: 1.45rem; color: var(--gold); }

.section { padding: 92px 0; }
.section-soft { background: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2 { font-family: Georgia, serif; color: var(--navy); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.08; margin: 10px 0 14px; }
.section-heading p { color: var(--muted); margin: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 9px 30px rgba(6,27,56,.05); }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; background: var(--navy); color: var(--gold-soft); border-radius: 14px; margin-bottom: 22px; }
.card-icon svg { width: 25px; height: 25px; }
.card h3 { color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.brand-panel { min-height: 420px; border-radius: 28px; background: linear-gradient(145deg, #071a35, #0f3b6d); display: grid; place-items: center; padding: 45px; box-shadow: var(--shadow); }
.brand-panel img { width: min(410px, 100%); border-radius: 16px; }
.checks { display: grid; gap: 13px; margin-top: 22px; }
.check { display: flex; gap: 12px; align-items: flex-start; }
.check-dot { margin-top: 3px; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(200,138,19,.12); color: var(--gold); font-weight: 900; }

.cta-band { background: var(--navy); color: white; border-radius: 28px; padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; margin: 0 0 8px; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; }

.page-hero { padding: 86px 0 72px; color: white; background: linear-gradient(125deg, #04152c, #0c315e); }
.page-hero h1 { font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 500; margin: 10px 0 12px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.breadcrumb { font-size: .86rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }

.listing-toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 28px; }
.listing-toolbar h2 { margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: 2.2rem; font-weight: 500; }
.listing-status { display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.empty-listings { border: 1px dashed rgba(6,27,56,.25); border-radius: 24px; padding: 70px 30px; text-align: center; background: linear-gradient(180deg, #fff, #fbf8f0); }
.empty-listings .listing-icon { margin: 0 auto 18px; }
.empty-listings h3 { color: var(--navy); font-family: Georgia, serif; font-size: 2rem; margin: 0 0 9px; }
.empty-listings p { color: var(--muted); max-width: 600px; margin: 0 auto 24px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; }
.contact-card { background: var(--navy); color: white; border-radius: 24px; padding: 36px; }
.contact-card h2 { font-family: Georgia, serif; font-size: 2.2rem; font-weight: 500; margin-top: 0; }
.contact-card p { color: rgba(255,255,255,.72); }
.contact-items { display: grid; gap: 18px; margin-top: 32px; }
.contact-item { display: flex; gap: 14px; align-items: center; }
.contact-item .mini-icon { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(200,138,19,.15); color: var(--gold-soft); }
.contact-item strong { display: block; color: var(--gold-soft); font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; }
.contact-item a, .contact-item span { color: white; }

.form-card { border: 1px solid var(--line); border-radius: 24px; padding: 36px; box-shadow: 0 12px 36px rgba(6,27,56,.07); }
.form-card h2 { font-family: Georgia, serif; color: var(--navy); font-size: 2.2rem; font-weight: 500; margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; color: var(--navy); }
.field input, .field textarea { width: 100%; border: 1px solid rgba(6,27,56,.18); border-radius: 12px; padding: 13px 14px; background: white; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,138,19,.1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .83rem; }

.site-footer { margin-top: 0; background: #031126; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .9fr; gap: 38px; padding: 52px 0 38px; }
.footer-brand { display: flex; gap: 13px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; background: white; border-radius: 10px; }
.footer-brand strong { color: white; font-family: Georgia, serif; letter-spacing: .08em; }
.footer-title { color: var(--gold-soft); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 26px; display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }

@media (max-width: 900px) {
  .menu-btn { display: grid; place-items: center; }
  .nav-links { display: none; position: absolute; top: 112px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-links a::after { display: none; }
  .nav-cta { border-radius: 10px; margin-top: 4px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .hero { min-height: auto; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .navbar { min-height: 88px; }
  .brand { min-width: 0; gap: 11px; }
  .brand img { width: 64px; height: 64px; }
  .brand-copy strong { font-size: 1.05rem; letter-spacing: .055em; }
  .brand-copy span { font-size: .61rem; letter-spacing: .11em; margin-top: 2px; }
  .nav-links { top: 88px; left: 14px; right: 14px; }
  .hero-grid { padding: 56px 0; }
  .hero-card { padding: 24px; }
  .section { padding: 68px 0; }
  .cta-band { padding: 34px 26px; align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .listing-toolbar { align-items: flex-start; flex-direction: column; }
}
