/* Eastborough & Associati — Heritage executive consulting */
:root {
  --stone-900: #1c2230;
  --stone-800: #29303f;
  --stone-700: #3c4456;
  --stone-300: #c9c3b6;
  --stone-200: #e4ded2;
  --stone-100: #f3efe6;
  --marble: #faf8f2;
  --gold: #a8843f;
  --gold-soft: #c2a86a;
  --ink: #20242e;
  --line: #d8d2c4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--marble);
  line-height: 1.7;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Palatino Linotype", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--stone-900);
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--stone-900); text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* Topbar */
.topbar {
  background: var(--stone-900);
  color: var(--stone-200);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--gold-soft); }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,242,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 42px; height: 42px; }
.brand .name { font-size: 22px; font-weight: 700; color: var(--stone-900); letter-spacing: 0.06em; }
.brand .name small { display: block; font-size: 11px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; font-family: Arial, sans-serif; }
.nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav ul a { color: var(--stone-800); font-size: 15px; letter-spacing: 0.05em; }
.nav .cta-btn { white-space: nowrap; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); font-size: 22px; padding: 6px 12px; cursor: pointer; color: var(--stone-900); }

/* Buttons */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 30px;
  font-family: Arial, sans-serif;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .25s, transform .25s;
}
.cta-btn:hover { background: var(--stone-900); color: #fff; text-decoration: none; transform: translateY(-2px); }
.cta-ghost {
  display: inline-block; background: transparent; color: var(--stone-900);
  border: 1px solid var(--stone-900); padding: 13px 28px;
  font-family: Arial, sans-serif; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
}
.cta-ghost:hover { background: var(--stone-900); color: #fff; text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(20,24,34,0.74), rgba(20,24,34,0.82)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  padding: 130px 0 120px;
}
.hero h1 { color: #fff; font-size: 52px; max-width: 760px; }
.hero .lead { max-width: 620px; margin: 26px 0 38px; font-size: 21px; color: var(--stone-200); }
.hero .eyebrow { font-family: Arial, sans-serif; letter-spacing: 0.3em; text-transform: uppercase; font-size: 13px; color: var(--gold-soft); margin-bottom: 22px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sections */
section { padding: 90px 0; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head .eyebrow { font-family: Arial, sans-serif; letter-spacing: 0.28em; text-transform: uppercase; font-size: 12px; color: var(--gold); margin-bottom: 14px; }
.section-head h2 { font-size: 38px; }
.section-head p { margin-top: 16px; color: var(--stone-700); }

.alt { background: var(--stone-100); }
.dark { background: var(--stone-900); color: var(--stone-200); }
.dark h2, .dark h3 { color: #fff; }
.dark .section-head p { color: var(--stone-300); }

/* Pillars */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: #fff; border: 1px solid var(--line); padding: 38px 32px;
  border-top: 3px solid var(--gold);
}
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--stone-700); font-size: 16px; }
.card .num { font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 16px; }

/* About */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); }
.split p + p { margin-top: 16px; }
.stats { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.stats .stat strong { display: block; font-size: 40px; color: var(--gold); }
.stats .stat span { font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 0.08em; color: var(--stone-700); }

/* Services list */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service {
  display: flex; gap: 20px; padding: 30px; background: #fff; border: 1px solid var(--line);
}
.service .mark { font-family: Arial, sans-serif; color: var(--gold); font-size: 26px; font-weight: bold; }
.service h3 { font-size: 20px; margin-bottom: 8px; }
.service p { font-size: 15px; color: var(--stone-700); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); padding: 40px 32px; display: flex; flex-direction: column;
}
.plan.featured { background: var(--stone-900); color: var(--stone-200); border-color: var(--stone-900); transform: scale(1.03); }
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan .tier { font-family: Arial, sans-serif; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; color: var(--gold); }
.plan h3 { font-size: 26px; margin: 10px 0; }
.plan .price { font-size: 44px; font-weight: 700; color: var(--stone-900); }
.plan .price small { font-size: 16px; font-weight: 400; color: var(--stone-700); }
.plan.featured .price small { color: var(--stone-300); }
.plan ul { list-style: none; margin: 24px 0; flex-grow: 1; }
.plan li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.plan.featured li { border-color: var(--stone-700); }
.plan .badge { display: inline-block; background: var(--gold); color: #fff; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 0.15em; padding: 4px 12px; margin-bottom: 8px; }

/* Process */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { padding: 30px; border: 1px solid var(--stone-700); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: Arial, sans-serif; font-size: 30px; color: var(--gold-soft); display: block; margin-bottom: 14px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; }

/* Quote */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote blockquote { font-size: 27px; font-style: italic; line-height: 1.5; }
.quote .who { margin-top: 22px; font-family: Arial, sans-serif; font-size: 14px; letter-spacing: 0.1em; color: var(--gold); }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }
.info-block { margin-bottom: 26px; }
.info-block .label { font-family: Arial, sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.info-block .val { font-size: 18px; color: var(--stone-900); }
form { background: #fff; border: 1px solid var(--line); padding: 40px; }
.dark form { background: var(--stone-800); border-color: var(--stone-700); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 0.06em; margin-bottom: 8px; color: var(--stone-800); }
.dark .field label { color: var(--stone-300); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); background: var(--marble);
  font-family: "Georgia", serif; font-size: 16px; color: var(--ink);
}
.dark .field input, .dark .field select, .dark .field textarea { background: var(--stone-900); border-color: var(--stone-700); color: #fff; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-note { font-size: 13px; color: var(--stone-700); margin-top: 14px; }
.dark .form-note { color: var(--stone-300); }
.form-status { margin-top: 16px; font-family: Arial, sans-serif; font-size: 14px; color: var(--gold-soft); display: none; }

/* Footer */
footer.site { background: #11151f; color: var(--stone-300); padding: 70px 0 30px; font-size: 15px; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer.site h4 { color: #fff; font-size: 16px; margin-bottom: 16px; letter-spacing: 0.05em; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 10px; }
footer.site a { color: var(--stone-300); }
footer.site a:hover { color: var(--gold-soft); }
footer.site .legal { border-top: 1px solid #232a38; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* Cookie banner */
.cookie {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 200;
  background: var(--stone-900); color: var(--stone-200);
  border: 1px solid var(--gold); padding: 22px 26px;
  display: none; gap: 22px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto; box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.cookie p { font-size: 14px; max-width: 680px; }
.cookie a { color: var(--gold-soft); }
.cookie .actions { display: flex; gap: 12px; }
.cookie button { font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 0.08em; padding: 11px 22px; cursor: pointer; border: 1px solid var(--gold); }
.cookie .accept { background: var(--gold); color: #fff; }
.cookie .decline { background: transparent; color: var(--stone-200); }

/* Legal pages */
.legal-page { padding-top: 70px; padding-bottom: 90px; }
.legal-page h1 { font-size: 40px; margin-bottom: 10px; }
.legal-page .updated { font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 0.06em; color: var(--stone-700); margin-bottom: 40px; }
.legal-page h2 { font-size: 24px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--stone-800); font-size: 16px; }
.legal-page ul { margin: 12px 0 12px 24px; }
.legal-page li { margin-bottom: 8px; }

@media (max-width: 900px) {
  .grid-3, .services, .pricing, .steps, .split, .contact-grid, footer.site .cols { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .hero h1 { font-size: 38px; }
  .nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--marble); flex-direction: column; padding: 20px 28px; border-bottom: 1px solid var(--line); gap: 16px; }
  .nav ul.open { display: flex; }
  .menu-toggle { display: block; }
  .nav { position: relative; }
}
