/* ============================================================
   Lodeva Advisory — calm & trustworthy
   ============================================================ */

:root {
  --navy: #13293D;
  --navy-soft: #1d3a55;
  --gold: #D9A441;
  --gold-deep: #b9842a;
  --bg: #F8F7F4;
  --bg-card: #ffffff;
  --slate: #5A6B7B;
  --ink: #1c2b38;
  --line: #e4e2db;
  --line-strong: #d5d2c8;

  --serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;

  --maxw: 1100px;
  --radius: 14px;
  --shadow: 0 10px 30px -16px rgba(19, 41, 61, 0.28);
  --shadow-soft: 0 4px 18px -10px rgba(19, 41, 61, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--navy-soft); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-deep); color: var(--navy); }
.btn-outline { border-color: var(--line-strong); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-star { width: 30px; height: 30px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.28em; color: var(--slate); font-weight: 600; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a.nav-link { color: var(--ink); font-weight: 500; font-size: 0.98rem; }
.nav a.nav-link:hover { color: var(--gold-deep); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; border-radius: 2px; transition: .25s;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before { content: "✦"; color: var(--gold); font-size: 0.9em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 84px;
  overflow: hidden;
}
.hero::after {
  content: "✦";
  position: absolute;
  right: -2%; top: 8%;
  font-size: 26rem;
  color: rgba(217, 164, 65, 0.07);
  line-height: 1;
  pointer-events: none;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 16ch; }
.hero .lead { font-size: 1.28rem; color: var(--slate); max-width: 56ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tint { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { font-size: 1.12rem; color: var(--slate); }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(217, 164, 65, 0.14);
  color: var(--gold-deep);
  font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 0.4em; }
.card p { color: var(--slate); margin-bottom: 0; font-size: 1rem; }

/* ---------- Approach (principles) ---------- */
.principle { padding-right: 8px; }
.principle .num {
  font-family: var(--serif); font-size: 2.2rem; color: var(--gold);
  font-weight: 600; line-height: 1; display: block; margin-bottom: 10px;
}
.principle h3 { font-size: 1.25rem; }
.principle p { color: var(--slate); margin-bottom: 0; }

/* ---------- Experience ---------- */
.exp-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.exp-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1.05rem; color: var(--ink);
}
.exp-list li::before { content: "✦"; color: var(--gold); flex: none; margin-top: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  background: var(--bg); border: 1px solid var(--line-strong);
  color: var(--navy); font-weight: 600; font-size: 0.86rem;
  padding: 7px 14px; border-radius: 999px;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.monogram {
  width: 200px; height: 200px; border-radius: 20px;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  color: var(--gold); display: grid; place-items: center;
  font-family: var(--serif); font-size: 4.2rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.about-grid h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.about-grid p { color: var(--slate); font-size: 1.08rem; }
.about-grid p strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-panel {
  background: linear-gradient(155deg, var(--navy), #0d2030);
  color: #fff; border-radius: 22px; padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.contact-panel::after {
  content: "✦"; position: absolute; left: -3%; bottom: -18%;
  font-size: 18rem; color: rgba(217,164,65,0.08); line-height: 1; pointer-events: none;
}
.contact-panel h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.contact-panel p { color: rgba(255,255,255,0.78); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.15rem; }
.contact-panel .btn-gold { font-size: 1.05rem; }
.contact-meta { margin-top: 22px; font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.contact-meta a { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  color: var(--slate); font-size: 0.92rem;
}
.site-footer .brand-name { font-size: 1.2rem; }
.site-footer a { color: var(--slate); }
.site-footer a:hover { color: var(--gold-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-3 { gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .monogram { width: 120px; height: 120px; font-size: 2.6rem; border-radius: 16px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    transition: transform .28s ease;
    box-shadow: var(--shadow-soft);
  }
  .nav.open { transform: translateY(0); }
  .nav a.nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; text-align: center; justify-content: center; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section, .hero { padding: 60px 0; }
  .contact-panel { padding: 48px 26px; }
  .hero::after { font-size: 14rem; right: -10%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
