/* ===== Everstone Trustee Limited — styles ===== */

:root {
  --navy: #12243f;
  --navy-deep: #0c1a2e;
  --navy-soft: #1c3457;
  --gold: #c39a4b;
  --gold-soft: #d8b872;
  --ink: #1f2733;
  --muted: #5c6775;
  --paper: #ffffff;
  --paper-alt: #f6f4ef;
  --line: #e6e3db;
  --radius: 10px;
  --max: 1120px;
  --shadow: 0 12px 40px rgba(18, 36, 63, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; color: var(--navy); font-weight: 600; }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold-soft); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.brand-logo { height: 46px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 500; font-size: 0.98rem; color: var(--ink); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav .nav-cta:hover { background: var(--navy-soft); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-block { width: 100%; text-align: center; }

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(rgba(12, 26, 46, 0.86), rgba(12, 26, 46, 0.92)),
    radial-gradient(circle at 20% 20%, #1c3457, #0c1a2e);
  color: #fff;
  padding: 110px 0 120px;
}
.hero-inner { max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; margin-bottom: 22px; }
.hero-lead { font-size: 1.18rem; color: rgba(255, 255, 255, 0.8); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); border-left: 2px solid var(--gold); padding-left: 14px; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1.08rem; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.about-stats { display: grid; gap: 18px; }
.stat {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.stat-num { display: block; font-family: "Playfair Display", serif; font-size: 1.9rem; color: var(--navy); font-weight: 700; }
.stat-label { color: var(--muted); font-size: 0.98rem; }

/* ===== Services cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(18, 36, 63, 0.14); }
.card-icon { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 1rem; }

/* ===== Values ===== */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.value { padding: 30px 24px; border-top: 3px solid var(--gold); background: var(--paper-alt); border-radius: 0 0 var(--radius) var(--radius); }
.value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 0.98rem; }

/* ===== Contact ===== */
.section-dark { background: var(--navy-deep); color: #fff; }
.section-dark h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-copy h2 { margin-bottom: 18px; }
.contact-copy > p { color: rgba(255, 255, 255, 0.72); margin-bottom: 30px; font-size: 1.08rem; }
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list li { display: grid; gap: 4px; }
.contact-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; color: var(--gold-soft); font-weight: 600; }
.contact-list a { color: rgba(255, 255, 255, 0.9); }
.contact-list a:hover { color: var(--gold-soft); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf7;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(195, 154, 75, 0.15);
}
.field textarea { resize: vertical; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 50px 24px; flex-wrap: wrap; }
.footer-logo { height: 40px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); }
.footer-nav { display: flex; gap: 26px; }
.footer-nav a { font-size: 0.95rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; padding: 20px 24px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav {
    position: fixed;
    inset: 92px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 24px; }
  .nav .nav-cta { margin: 8px 24px; text-align: center; }
  .nav-toggle { display: flex; }
  .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); }
  .brand-logo { height: 38px; }
  .cards, .values { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { padding: 80px 0 90px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
