/* ==========================================================================
   Gutenberg Wesentlich Private Limited
   Built to the Brand Style Guide, edition 2026.

   Palette   black + white primary · vermilion #D6402A accent (~3% of surface)
   Type      Georgia — body and headlines · Aptos — navigation and labels
             Bodoni MT belongs to the logo artwork only
   Symbol    appears once per page, centred, at the end of content.
             Never a background, never a watermark, never a pattern.
   ========================================================================== */

:root{
  --ink:#000;
  --paper:#fff;
  --verm:#D6402A;
  --grey:#555;
  --rule:#BBB;
  --hair:#E4E4E4;
  --tint:#F4F4F4;
  --serif:Georgia,Cambria,"Times New Roman",serif;
  --sans:Aptos,Calibri,"Segoe UI",system-ui,-apple-system,sans-serif;
  --gutter:clamp(1.5rem,6vw,5rem);
}

*,*::before,*::after{box-sizing:border-box}

/* visually hidden, still read by screen readers */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

html{-webkit-text-size-adjust:100%}

/* keyboard focus — vermilion clears 3:1 against both paper and ink */
:focus-visible{outline:2px solid var(--verm);outline-offset:3px}

/* first tab stop on every page */
.skip-link{
  position:absolute;top:0;left:-9999px;z-index:100;
  font-family:var(--sans);font-size:.72rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;text-decoration:none;
  background:var(--ink);color:var(--paper);padding:.9rem 1.4rem;
}
.skip-link:focus{left:0}
main:focus{outline:none}          /* skip target — moved to, never outlined */

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

img{max-width:100%;display:block}
a{color:inherit}

.wrap{max-width:1180px;margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter)}

/* --- shared type ------------------------------------------------------- */

h1,h2,h3{font-family:var(--serif);font-weight:400;margin:0;letter-spacing:-0.005em}
h1{font-size:clamp(2.1rem,5.2vw,3.5rem);line-height:1.12}
h2{font-size:clamp(1.6rem,3.2vw,2.3rem);line-height:1.2}
h3{font-size:1.18rem;line-height:1.35}
p{margin:0 0 1.1em}
p:last-child{margin-bottom:0}

.kicker{
  font-family:var(--sans);
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--grey);
  margin:0 0 1.1rem;
  font-weight:600;
}
.kicker--accent{color:var(--verm)}

.lede{font-size:1.12rem;color:var(--grey);max-width:44em}

/* the masthead device — a hairline, echoing the rules in the logo */
.rule{border:0;border-top:1px solid var(--hair);margin:0}
.rule--short{width:56px;border-top:2px solid var(--verm);margin:0 0 1.6rem}
.rule--short-c{width:56px;border-top:2px solid var(--verm);margin:0 auto 1.6rem}

/* --- header ------------------------------------------------------------ */

.masthead{border-bottom:1px solid var(--hair);background:var(--paper)}
.masthead__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;padding-top:1.35rem;padding-bottom:1.35rem;flex-wrap:wrap;
}
.masthead__logo img{height:42px;width:auto}      /* ≈148 px wide — above the 120 px minimum */
.nav{display:flex;gap:2rem;align-items:center;list-style:none;margin:0;padding:0}
.nav a,.nav__cta{
  font-family:var(--sans);
  font-size:.73rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  text-decoration:none;
  font-weight:600;
  color:var(--ink);
  padding-bottom:2px;
  border-bottom:1px solid transparent;
}
.nav a:hover,.nav__cta:hover{border-bottom-color:currentColor}
.nav a[aria-current="page"]{color:var(--verm);border-bottom-color:var(--verm)}
.nav__cta{color:var(--verm)}

/* The nav and the CTA sit in one row; on desktop this is indistinguishable
   from the single list it replaced. The toggle only exists below 620px.

   The CTA is wrapped in .masthead__cta rather than being a flex item itself:
   a flex item is blockified, so its 2px padding and 1px underline would be
   added to its outer height and centring would lift the text ~1.5px above
   the nav links. Inside the wrapper the anchor stays inline — the same box
   a nav link has inside its <li> — so both sit on one baseline. */
.masthead__nav{display:flex;align-items:center;gap:2rem}
.masthead__cta{display:block}
.nav-toggle{display:none}

/* --- hero -------------------------------------------------------------- */

.hero{background:var(--ink);color:var(--paper)}
.hero__inner{padding-top:clamp(4rem,10vw,7.5rem);padding-bottom:clamp(4rem,10vw,7.5rem);max-width:60ch}
.hero h1{color:var(--paper)}
.hero p{color:var(--rule);font-size:1.15rem;margin-top:1.4rem;max-width:46ch}
.hero .kicker{color:var(--rule)}

/* A direct-contact line inside the hero. Used on pages that are an endpoint
   rather than an entry — thank-you, and any future confirmation page — where
   the reader may need a person immediately and should not have to scroll to
   the footer to find one. Sits below the hero copy, above the fold.

   Specificity: .hero p is (0,1,1), so this must be (0,2,0) to win. Hence the
   descendant selector rather than the bare class. */
.hero .hero__direct{
  margin-top:2.3rem;
  padding-top:1.5rem;
  border-top:1px solid #2E2E2E;
  font-family:var(--sans);
  font-size:.85rem;
  line-height:1.7;
  color:var(--rule);
  max-width:52ch;
}
.hero .hero__direct a{
  color:var(--paper);text-decoration:none;
  border-bottom:1px solid #4A4A4A;padding-bottom:1px;
}
.hero .hero__direct a:hover{border-bottom-color:var(--verm)}

/* --- sections ---------------------------------------------------------- */

section{padding-top:clamp(3.2rem,7vw,5.5rem);padding-bottom:clamp(3.2rem,7vw,5.5rem)}
section.tight{padding-top:clamp(2.4rem,5vw,3.8rem);padding-bottom:clamp(2.4rem,5vw,3.8rem)}
.section--dark{background:var(--ink);color:var(--paper)}
.section--dark .lede,.section--dark p{color:var(--rule)}
.section--dark h2,.section--dark h3{color:var(--paper)}
.section--dark .kicker{color:var(--rule)}
.section--tint{background:var(--tint)}
.section__head{max-width:46em;margin-bottom:2.6rem}

/* --- grids ------------------------------------------------------------- */

.grid{display:grid;gap:2.4rem}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--4{grid-template-columns:repeat(4,1fr)}
/* centres each cell's content — used where a band stands alone without a rule */
.grid--centred{text-align:center}
.grid--centred .figure__n,.grid--centred .figure__l{text-align:center}

.offer{border-top:1px solid var(--hair);padding-top:1.4rem}
.section--dark .offer{border-top-color:#2E2E2E}
.offer__idx{font-family:var(--sans);font-size:.72rem;letter-spacing:.18em;color:var(--verm);font-weight:600;display:block;margin-bottom:.7rem}
.offer h3{margin-bottom:.6rem}
.offer p{font-size:.97rem;color:var(--grey)}
.section--dark .offer p{color:var(--rule)}

/* numbered process */
.step{border-top:1px solid var(--hair);padding-top:1.3rem}
.section--dark .step{border-top-color:#2E2E2E}
.step__n{font-family:var(--sans);font-size:.72rem;letter-spacing:.18em;color:var(--verm);font-weight:600;display:block;margin-bottom:.6rem}
.step h3{font-size:1.02rem;margin-bottom:.45rem}
.step p{font-size:.92rem;color:var(--grey)}
.section--dark .step p{color:var(--rule)}

/* key figures — an approved use of vermilion */
.figure__n{font-family:var(--serif);font-size:clamp(2.2rem,4.5vw,3rem);line-height:1;color:var(--verm);display:block}
.figure__l{font-family:var(--sans);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:var(--grey);margin-top:.7rem;display:block}
.section--dark .figure__l{color:var(--rule)}

/* --- tables ------------------------------------------------------------ */

.table{width:100%;border-collapse:collapse;font-size:.94rem}
.table th{
  font-family:var(--sans);font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--grey);text-align:left;font-weight:600;
  padding:.7rem 1rem .7rem 0;border-bottom:1px solid var(--ink);
}
.table td{padding:.78rem 1rem .78rem 0;border-bottom:1px solid var(--hair);vertical-align:top}
.table td:first-child{width:34%}
.table .mono{font-family:var(--sans);letter-spacing:.02em}

/* --- values / list ----------------------------------------------------- */

.values{list-style:none;margin:0;padding:0}
.values li{border-top:1px solid var(--hair);padding:1.15rem 0}
.values strong{
  font-family:var(--sans);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;
  display:block;margin-bottom:.4rem;font-weight:600;
}
.values span{color:var(--grey);font-size:.97rem}

/* --- buttons ----------------------------------------------------------- */

.btn{
  display:inline-block;
  font-family:var(--sans);
  font-size:.76rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600;
  text-decoration:none;
  padding:1rem 2.1rem;
  border:1px solid var(--ink);
  background:var(--ink);color:var(--paper);
  cursor:pointer;
}
.btn:hover{background:var(--paper);color:var(--ink)}
.btn--onDark{background:var(--paper);color:var(--ink);border-color:var(--paper)}
.btn--onDark:hover{background:transparent;color:var(--paper)}

/* --- form -------------------------------------------------------------- */

.form{max-width:760px}
.field{margin-bottom:1.8rem}
.field label,.legend{
  font-family:var(--sans);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:600;display:block;margin-bottom:.55rem;
}
.req{color:var(--verm)}
.field input[type=text],.field input[type=email],.field input[type=tel],.field select,.field textarea{
  width:100%;font-family:var(--serif);font-size:1rem;color:var(--ink);
  padding:.75rem .85rem;border:1px solid var(--rule);border-radius:0;background:var(--paper);
}
.field textarea{min-height:118px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:2px solid var(--verm);outline-offset:1px;border-color:var(--ink)}
.field .hint{font-family:var(--sans);font-size:.78rem;color:var(--grey);margin-top:.45rem}
fieldset{border:0;padding:0;margin:0 0 1.8rem}
.radios{display:flex;gap:1.6rem;flex-wrap:wrap}
.radios label{
  font-family:var(--serif);font-size:1rem;text-transform:none;letter-spacing:0;font-weight:400;
  display:flex;align-items:center;gap:.5rem;margin:0;
}
.pair{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}

/* --- the symbol — once per page, centred, at the end of content -------- */

.endmark{padding:clamp(3.5rem,8vw,6rem) 0;text-align:center}
.endmark img{width:82px;height:82px;margin:0 auto;opacity:1}

/* --- footer ------------------------------------------------------------ */

.foot{background:var(--ink);color:var(--rule);font-size:.9rem}
.foot__inner{padding-top:3.4rem;padding-bottom:2.2rem;display:grid;grid-template-columns:1.4fr 1fr 1.6fr;gap:2.6rem}
.foot img.mark{height:38px;width:auto;margin-bottom:1.1rem}
.foot h4{
  font-family:var(--sans);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--paper);font-weight:600;margin:0 0 1rem;
}
.foot ul{list-style:none;margin:0;padding:0}
.foot li{margin-bottom:.5rem}
.foot a{color:var(--rule);text-decoration:none}
.foot a:hover{color:var(--paper)}
.foot address{font-style:normal;line-height:1.7}
.foot__legal{
  border-top:1px solid #2E2E2E;padding:1.4rem 0 2.6rem;
  font-family:var(--sans);font-size:.7rem;letter-spacing:.08em;color:var(--grey);
  display:flex;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}

/* --- responsive -------------------------------------------------------- */

@media (max-width:900px){
  .grid--3,.grid--4{grid-template-columns:repeat(2,1fr)}
  .foot__inner{grid-template-columns:1fr 1fr}
}
@media (max-width:620px){
  body{font-size:16px}
  .grid--3,.grid--4,.grid--2,.pair{grid-template-columns:1fr}
  .foot__inner{grid-template-columns:1fr}
  .table td:first-child{width:44%}

  /* ---- header: logo · CTA · menu button, all on one row ---------------- */
  .masthead{position:relative}
  .masthead__inner{gap:.7rem;flex-wrap:nowrap;padding-left:1.25rem;padding-right:1.25rem}
  .masthead__logo img{height:36px}          /* 127 px wide — above the 120 px minimum */
  .masthead__nav{gap:.55rem;margin-left:auto}

  /* the CTA becomes a compact outlined button and never leaves the bar.
     The anchor is blockified here so its padding and border build a real box. */
  .masthead__cta{display:flex;align-items:center}
  .nav__cta{
    display:block;
    border:1px solid var(--verm);border-bottom-color:var(--verm);
    padding:.62rem .8rem;font-size:.64rem;letter-spacing:.1em;
    white-space:nowrap;line-height:1;
  }
  .nav__cta:hover{background:var(--verm);color:var(--paper)}

  /* menu button — three hairlines, becoming a cross when open */
  .nav-toggle{
    display:inline-flex;flex-direction:column;justify-content:center;align-items:flex-end;
    gap:5px;width:44px;height:44px;flex:0 0 44px;
    background:none;border:0;padding:0;cursor:pointer;
  }
  .nav-toggle span{
    display:block;width:23px;height:1.5px;background:var(--ink);
    transition:transform .18s ease,opacity .18s ease;
  }
  .masthead.is-open .nav-toggle span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
  .masthead.is-open .nav-toggle span:nth-child(2){opacity:0}
  .masthead.is-open .nav-toggle span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

  /* the four links drop into a panel beneath the bar */
  #primary-nav{
    position:absolute;left:0;right:0;top:100%;
    background:var(--paper);border-bottom:1px solid var(--hair);
    display:none;z-index:30;
  }
  .masthead.is-open #primary-nav{display:block}
  .nav{flex-direction:column;gap:0;width:100%;padding:.25rem 1.25rem .75rem}
  .nav li{border-top:1px solid var(--hair)}
  .nav li:first-child{border-top:0}
  .nav a{
    display:flex;align-items:center;min-height:44px;   /* WCAG touch target */
    font-size:.78rem;padding-bottom:0;border-bottom:0;
  }
  .nav a[aria-current="page"]{border-bottom:0}
  .nav a:hover{border-bottom-color:transparent}
}

@media (max-width:360px){
  .masthead__logo img{height:33px}
  .nav__cta{padding:.58rem .62rem;font-size:.6rem;letter-spacing:.06em}
}

@media print{
  .masthead,.foot,.endmark{display:none}
  body{font-size:11pt}
}
