/* MarschallFeliz — corporate / partner relations */
:root {
  --bg: #f8f6f0;
  --bg-card: #ffffff;
  --ink: #0a1f44;
  --ink-soft: #3e4a66;
  --muted: #7a8299;
  --gold: #c9a961;
  --gold-deep: #a88847;
  --line: #e3ddc9;
  --accent-bg: #0a1f44;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.15;
}

a { color: var(--gold-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top notice bar */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.topbar span { color: var(--gold); margin: 0 6px; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  border-radius: 2px;
}
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav a:hover { color: var(--gold-deep); }

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(10,31,68,0.04) 0%, transparent 60%),
    var(--bg);
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  max-width: 880px;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  margin-bottom: 28px;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--gold-deep);
  font-style: italic;
}
.hero p {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 660px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--bg);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all .2s ease;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  margin-left: 14px;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* Sections */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 20px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 660px;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}
.pillar h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* Stats */
.stats {
  background: var(--ink);
  color: var(--bg);
  padding: 90px 0;
  border: none;
}
.stats .section-title { color: var(--bg); }
.stats .section-eyebrow { color: var(--gold); }
.stats .section-sub { color: rgba(248, 246, 240, 0.7); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  padding-top: 56px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 246, 240, 0.75);
}

/* Quote band */
.quote-band {
  background: var(--bg-card);
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 28px;
}
.quote-band cite {
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

/* Page content */
.page {
  padding: 90px 0;
  max-width: 780px;
  margin: 0 auto;
}
.page h1 {
  font-size: clamp(40px, 5.5vw, 60px);
  margin-bottom: 18px;
}
.page .meta {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.page h2 {
  font-size: 32px;
  margin: 44px 0 16px;
}
.page h3 {
  font-size: 20px;
  margin: 28px 0 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.page p, .page li {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-size: 16px;
}
.page ul { padding-left: 22px; margin-bottom: 14px; }
.page strong { color: var(--ink); }

/* Forms */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 44px;
  margin-top: 28px;
}
.form-field { margin-bottom: 22px; }
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 0;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }

.notice {
  background: var(--bg);
  border-left: 3px solid var(--gold-deep);
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.notice strong { color: var(--ink); }

.success {
  display: none;
  background: #eaf3ed;
  border-left: 3px solid #2e7d4f;
  padding: 18px 22px;
  margin-top: 24px;
  color: #1d4a2f;
  font-size: 15px;
}
.success.show { display: block; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(248, 246, 240, 0.8);
  padding: 72px 0 32px;
}
.site-footer .logo { color: var(--bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { color: rgba(248, 246, 240, 0.8); font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { color: rgba(248, 246, 240, 0.65); font-size: 14px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(248, 246, 240, 0.55);
}

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav { gap: 18px; }
  .nav a:not(.btn) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
