/* ==========================================================================
   Eban Partners — stylesheet
   --------------------------------------------------------------------------
   Brand colours and key settings live in :root below. To re-skin the site,
   change these variables. Everything else references them.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy:        #14213D;  /* primary text / dark brand colour */
  --navy-deep:   #0F192D;  /* footer / deepest sections */
  --gold:        #C6A863;  /* accent (bronze/gold) */
  --gold-dark:   #A9863F;  /* accent for text on light bg (better contrast) */
  --ivory:       #F5F1E8;  /* light neutral section background */
  --offwhite:    #FAF8F3;  /* warm off-white page background */
  --ink:         #1C1F26;  /* near-black body text */
  --muted:       #5B6270;  /* secondary text */
  --line:        #E4DFD3;  /* subtle dividers on light bg */
  --white:       #FFFFFF;

  /* Typography */
  --serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 6px;
  --header-h: 72px;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Offset in-page anchors so the sticky header doesn't cover section tops */
  scroll-padding-top: calc(var(--header-h) + 12px);
}

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

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

h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 600; line-height: 1.2; }
p { margin: 0 0 1.1em; }
a { color: var(--gold-dark); }
a:hover { color: var(--navy); }

img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.narrow { max-width: 820px; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--navy); color: var(--white); padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* Visible focus states for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------- */
/* Header / navigation                                                        */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { color: var(--navy); flex: none; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-eban { font-family: var(--serif); font-size: 22px; letter-spacing: 3px; color: var(--navy); }
.brand-partners { font-size: 9.5px; letter-spacing: 5px; color: var(--gold-dark); margin-top: 3px; }

.primary-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: inline-block; padding: 10px 14px; text-decoration: none;
  color: var(--navy); font-size: 15px; letter-spacing: 0.3px; border-radius: var(--radius);
}
.primary-nav a:hover { color: var(--gold-dark); }
.primary-nav a.nav-cta {
  background: var(--navy); color: var(--white); margin-left: 6px;
}
.primary-nav a.nav-cta:hover { background: var(--gold-dark); color: var(--white); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; border-radius: var(--radius);
}
.nav-toggle-bar { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-block; cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-size: 16px; letter-spacing: 0.3px;
  padding: 14px 26px; border-radius: var(--radius); border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: transparent; color: var(--navy); border-color: transparent; text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/* Sections                                                                   */
/* -------------------------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 0.6em; }
.section-heading::after {
  content: ""; display: block; width: 54px; height: 3px; background: var(--gold);
  margin-top: 14px; border-radius: 2px;
}
.section-intro { font-size: 19px; color: var(--muted); max-width: 760px; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero { padding: clamp(64px, 11vw, 132px) 0 clamp(40px, 6vw, 64px); position: relative; }
.hero-inner { max-width: 900px; }
.hero-heading { font-size: clamp(32px, 5.4vw, 56px); margin: 0 0 0.5em; letter-spacing: -0.5px; }
.hero-lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink); max-width: 760px; }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-rule { max-width: var(--maxw); margin: 0 auto; height: 1px; background: var(--line); margin-top: clamp(40px, 6vw, 64px); }

/* -------------------------------------------------------------------------- */
/* Service cards                                                              */
/* -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 12px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; border-top: 3px solid var(--gold);
}
.card-title { font-size: 21px; margin: 0 0 0.5em; }
.card p { color: var(--ink); }
.card-sub { font-weight: 600; color: var(--navy); margin: 0.6em 0 0.3em; }
.card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.card ul li { margin-bottom: 4px; }
.card details { margin-top: 6px; }
.card summary {
  cursor: pointer; color: var(--gold-dark); font-weight: 600; list-style: none;
  padding: 6px 0; display: inline-flex; align-items: center; gap: 6px;
}
.card summary::-webkit-details-marker { display: none; }
.card summary::after { content: "+"; font-size: 18px; line-height: 1; }
.card details[open] summary::after { content: "\2013"; }
.card summary:hover { color: var(--navy); }

/* -------------------------------------------------------------------------- */
/* How we work — panels                                                       */
/* -------------------------------------------------------------------------- */
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 26px; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.panel-title { font-size: 19px; margin: 0 0 0.5em; }
.panel p { margin: 0; color: var(--muted); }
.panels-note { margin-top: 24px; color: var(--muted); font-style: italic; }

/* -------------------------------------------------------------------------- */
/* Approach — steps                                                           */
/* -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 26px 0 0; padding: 0; list-style: none; counter-reset: none; }
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white);
  font-family: var(--serif); font-size: 19px; margin-bottom: 12px;
}
.step-title { font-size: 19px; margin: 0 0 0.4em; }
.step p { margin: 0; color: var(--muted); }
.statement {
  margin-top: 40px; font-family: var(--serif); font-size: clamp(20px, 2.6vw, 26px);
  color: var(--navy); text-align: center; padding: 24px; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* -------------------------------------------------------------------------- */
/* Lists with gold ticks                                                      */
/* -------------------------------------------------------------------------- */
.ticks { list-style: none; padding: 0; margin: 0.5em 0 1.2em; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px;
  border: 2px solid var(--gold); transform: rotate(45deg);
}
.emphasis { font-weight: 600; color: var(--navy); }

/* -------------------------------------------------------------------------- */
/* Partner solutions                                                          */
/* -------------------------------------------------------------------------- */
.partner-block { margin-top: 30px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 28px 26px; }
.partner-title { font-size: 20px; margin: 0 0 0.5em; }
.partner-link-note { margin: 0.6em 0; }
.disclosure { font-size: 14px; color: var(--muted); font-style: italic; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }

/* -------------------------------------------------------------------------- */
/* Why Eban — reasons                                                         */
/* -------------------------------------------------------------------------- */
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 12px; }
.reason { padding: 24px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.reason-title { font-size: 18px; margin: 0 0 0.4em; }
.reason p { margin: 0; color: var(--muted); }

/* -------------------------------------------------------------------------- */
/* Contact form                                                               */
/* -------------------------------------------------------------------------- */
.contact-form { margin-top: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: 15px; }
.optional { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 12px 14px; border: 1px solid #CBC7BB; border-radius: var(--radius); background: var(--white);
}
.field textarea { resize: vertical; }
.field-check { display: flex; align-items: flex-start; gap: 10px; }
.field-check input { width: auto; margin-top: 5px; }
.field-check label { font-weight: 400; color: var(--ink); }
.linklike { background: none; border: 0; padding: 0; color: var(--gold-dark); text-decoration: underline; cursor: pointer; font: inherit; }
.linklike:hover { color: var(--navy); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-weight: 600; }
.form-status.error { color: #9B1C1C; }
.form-status.ok { color: #1E6B3A; }

.contact-aside { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.response-note { color: var(--muted); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #C9CEDA; margin-top: 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 32px; padding-top: 54px; padding-bottom: 40px; }
.footer-name { font-family: var(--serif); font-size: 20px; color: var(--white); letter-spacing: 1px; margin: 0 0 8px; }
.footer-tag { font-size: 14px; color: #9AA3B4; margin: 0; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a, .footer-nav .linklike { color: #C9CEDA; text-decoration: none; font-size: 15px; }
.footer-nav a:hover, .footer-nav .linklike:hover { color: var(--gold); }
.footer-company p { margin: 0 0 4px; font-size: 14px; color: #9AA3B4; }
.footer-company strong { color: var(--white); font-weight: 600; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-legal p { margin: 0; font-size: 13px; color: #808A9C; }

/* -------------------------------------------------------------------------- */
/* Modals (Privacy / Cookie notices)                                          */
/* -------------------------------------------------------------------------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15, 25, 45, 0.6); }
.modal-panel {
  position: relative; background: var(--offwhite); max-width: 680px; width: 100%;
  max-height: 86vh; overflow-y: auto; border-radius: var(--radius); padding: 40px clamp(24px, 4vw, 44px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-panel h2 { margin-top: 0; }
.modal-panel h3 { font-size: 18px; margin: 1.2em 0 0.3em; }
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-close:hover { color: var(--navy); }
.modal-actions { margin-top: 20px; }

/* -------------------------------------------------------------------------- */
/* Cookie banner                                                              */
/* -------------------------------------------------------------------------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 250; background: var(--navy); color: #E9ECF3; box-shadow: 0 -6px 24px rgba(0,0,0,0.18); }
.cookie-banner[hidden] { display: none; }
.cookie-inner { display: flex; align-items: center; gap: 20px; padding-top: 16px; padding-bottom: 16px; flex-wrap: wrap; }
.cookie-text { margin: 0; font-size: 14px; flex: 1 1 320px; color: #E9ECF3; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn-ghost { color: #E9ECF3; }
.cookie-banner .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.cookie-banner .btn-secondary:hover { background: #fff; color: var(--navy); }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }

  /* Mobile navigation */
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--offwhite); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .primary-nav.open { max-height: 80vh; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--pad) 16px; }
  .primary-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .primary-nav a.nav-cta { margin: 10px 0 0; text-align: center; }

  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 420px) {
  .brand-eban { font-size: 19px; letter-spacing: 2px; }
}

/* ==========================================================================
   REFINEMENT LAYER (dark iteration) — layout & structure only.
   Colours for these components live in styles-dark.css.
   Appended so it overrides earlier rules via the cascade.
   ========================================================================== */

/* --- Rhythm: more whitespace + readable measure --- */
.section { padding: clamp(76px, 10vw, 132px) 0; }
.section-heading { margin-bottom: 0.9em; }
.section p { max-width: 68ch; }
.section-intro { max-width: 60ch; margin-bottom: 6px; }

/* --- Hero: more breathing room, clearer hierarchy --- */
.hero { padding: clamp(96px, 15vw, 184px) 0 clamp(64px, 9vw, 104px); }
.hero-inner { max-width: 880px; }
.hero-heading { margin-bottom: 0.55em; }
.hero-lead { margin: 0 0 0.6em; max-width: 62ch; }
.hero-sub { margin: 0; max-width: 62ch; }
.hero-actions { margin-top: 42px; }

/* --- Navigation active state: gold text + thin animated underline --- */
.primary-nav a { position: relative; }
.primary-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a.nav-cta::after { display: none; }              /* CTA keeps its button look */
.primary-nav a.nav-cta.is-active { box-shadow: 0 0 0 2px rgba(198,168,99,0.55); }
@media (prefers-reduced-motion: reduce) { .primary-nav a::after { transition: none; } }

/* --- Service cards: subtle hover lift + smooth expand --- */
.card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); }
.details-inner { overflow: hidden; }
.card details[open] .details-inner { animation: ebReveal .28s ease; }
@keyframes ebReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } .card details[open] .details-inner { animation: none; } }

/* --- About: narrative + understated credentials --- */
.about-grid { display: grid; grid-template-columns: 1.7fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.about-copy p { max-width: 62ch; }
.lead-para { font-size: 1.12em; }
.credentials { display: flex; flex-direction: column; gap: 24px; padding-left: clamp(0px, 2vw, 28px); border-left: 1px solid var(--line); }
.cred-num { display: block; font-family: var(--serif); font-size: 42px; line-height: 1; }
.cred-label { display: block; font-size: 14px; margin-top: 8px; line-height: 1.4; }
.cred-note .cred-label { font-style: italic; }
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .credentials { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 26px; flex-direction: row; flex-wrap: wrap; gap: 22px 44px; }
  .cred-note { flex-basis: 100%; }
}

/* --- How We Work: editorial blocks (no card boxes) --- */
.worklist { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(40px, 6vw, 88px); row-gap: clamp(34px, 5vw, 54px); margin-top: 36px; }
.work-title { position: relative; padding-top: 18px; font-size: 20px; margin: 0 0 0.5em; }
.work-title::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 2px; background: var(--gold); }
.work-item p { margin: 0; max-width: 52ch; }
.panels-note { margin-top: 34px; font-style: italic; }
@media (max-width: 760px) { .worklist { grid-template-columns: 1fr; row-gap: 34px; } }

/* --- Approach statement: warm-ivory highlighted band --- */
.statement { margin-top: 52px; text-align: center; font-family: var(--serif); font-size: clamp(20px, 2.6vw, 26px); padding: 32px 34px; border: 0; border-radius: var(--radius); }

/* --- Why Eban: editorial columns with vertical dividers (no boxes) --- */
.why-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 22px; }
.why-item { padding: 6px 30px; border-left: 1px solid var(--line); }
.why-item:first-child { border-left: 0; padding-left: 0; }
.why-title { font-size: 18px; margin: 0 0 0.45em; }
.why-item p { margin: 0; }
@media (max-width: 820px) {
  .why-list { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .why-item:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  .why-list { grid-template-columns: 1fr; }
  .why-item { border-left: 0; padding-left: 0; padding-bottom: 18px; }
}

/* --- Gentle reveal on scroll (progressive enhancement; needs html.js) --- */
html.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity .38s ease, transform .38s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* --- Footer: brand → links → legal hierarchy --- */
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; padding-top: 58px; padding-bottom: 32px; }
.footer-name { font-family: var(--serif); font-size: 24px; letter-spacing: 1px; margin: 0 0 8px; }
.footer-tag { font-size: 14px; margin: 0; }
.footer-nav ul { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-nav a, .footer-nav .linklike { text-decoration: none; font-size: 15px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0 28px; }
.footer-legal-inner { display: flex; justify-content: space-between; gap: 12px 28px; flex-wrap: wrap; }
.legal-company, .legal-copy { margin: 0; font-size: 12.5px; line-height: 1.6; }
@media (max-width: 700px) { .footer-top { flex-direction: column; } .footer-legal-inner { flex-direction: column; } }

/* Larger tap targets on mobile */
@media (max-width: 760px) {
  .primary-nav a { padding: 16px 4px; }
  .btn { padding: 15px 26px; }
}

/* Mobile: show the active section as a short gold marker + gold text (not a full underline) */
@media (max-width: 760px) {
  .primary-nav a::after { left: 0; right: auto; width: 22px; bottom: 10px; }
  .primary-nav a.is-active { color: var(--gold); }
}

/* Header brand lockup (full logo: mark + EBAN + rule + centred PARTNERS) */
.brand-logo { height: 58px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 50px; } }

/* Elegant inline confirmation shown in place of the form after a successful enquiry */
.form-confirmation { text-align: center; padding: clamp(34px, 6vw, 60px) 24px; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 8px; }
.form-confirmation[hidden] { display: none; }
.form-confirmation:focus { outline: none; }
.confirmation-mark { display: inline-flex; margin-bottom: 16px; }
.confirmation-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 28px); margin: 0 0 6px; }
.confirmation-text { font-size: 18px; margin: 0; }
html.js .form-confirmation:not([hidden]) { animation: ebReveal .4s ease; }

/* Footer LinkedIn icon link — inherits footer link colour (muted → gold on hover), subtle */
.footer-nav ul { align-items: center; }
.footer-linkedin { display: inline-flex; align-items: center; color: inherit; line-height: 0; }
.footer-linkedin .li-icon { width: 20px; height: 20px; display: block; }
