/* ===== Design tokens ===== */
:root {
  --navy: #16243d;
  --navy-700: #1f3253;
  --navy-50: #f4f6fa;
  --gold: #b08d57;
  --gold-dark: #8f7042;
  --ink: #1c2433;
  --muted: #5d6678;
  --line: #e4e7ee;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --maxw: 1080px;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 1.2rem; }
h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .18s ease;
}
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(255,255,255,.5); }
.hero .btn-ghost { color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,.12); text-decoration: none; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.brand-sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; gap: 1.6rem; }
.main-nav a { color: var(--navy); font-weight: 500; font-size: .98rem; }
.main-nav a:hover { color: var(--gold-dark); text-decoration: none; }

.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.lang-toggle button {
  border: 0; background: #fff; color: var(--muted);
  padding: .4rem .7rem; font: inherit; font-size: .82rem; font-weight: 600;
  cursor: pointer; letter-spacing: .05em;
}
.lang-toggle button.active { background: var(--navy); color: #fff; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #eef1f6;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.hero h1 { color: #fff; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }
.hero-lead { font-size: 1.15rem; max-width: 620px; color: #cdd4e0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--navy-50); }
.section-eyebrow { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 600; margin-bottom: .5rem; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; border-top: 3px solid var(--gold);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(22,36,61,.1); }
.card p { color: var(--muted); margin: 0; }

/* ===== Team ===== */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; margin-top: 2rem; }
.member { text-align: center; }
.avatar {
  width: 96px; height: 96px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
}
.avatar-photo { object-fit: cover; padding: 0; }
/* Per-photo crop so each face stays centred in the circle.
   Tweak these % values while watching the preview if a face sits off-centre. */
.avatar-corinne { object-position: 50% 18%; }
.avatar-anna { object-position: 72% 22%; }
.member-role { color: var(--gold-dark); font-weight: 600; margin: 0 0 .5rem; }
.member-bio { color: var(--muted); }

/* ===== Testimonials / success ===== */
.stat-band {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .4rem; margin: 2rem 0 2.5rem;
  background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 2.2rem 1.5rem;
  border-left: 4px solid var(--gold);
}
.stat-num { font-family: var(--serif); font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 1.05rem; color: #cdd4e0; max-width: 540px; }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.quote {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; position: relative;
}
.quote blockquote { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--navy); }
.quote figcaption { font-size: .9rem; font-weight: 600; color: var(--gold-dark); }

/* ===== Contact ===== */
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.office {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; border-top: 3px solid var(--gold);
}
.office h3 { display: flex; align-items: center; gap: .5rem; }
.office .flag { font-size: 1.1rem; }
.map-link { font-weight: 600; font-size: .95rem; }
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.contact-list li { display: flex; flex-direction: column; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #cdd4e0; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-brand { color: #fff; }
.footer-addr { margin: .3rem 0 0; font-size: .92rem; }
.site-footer a { color: var(--gold); }
.footer-legal { font-size: .85rem; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 680px) {
  .main-nav { display: none; }
  .brand-sub { display: none; }
}
