/* ==========================================================================
   Assistant Solutions — assistantsolutions.com.au
   Design tokens sampled from the existing Wix site so nothing visual changes.
   ========================================================================== */

:root{
  /* Colour — sampled from the live site */
  --cream:#FAF8F5;
  --cream-2:#F6F3F1;
  --cream-3:#F3F2F0;
  --white:#FFFFFF;
  --ink:#605650;        /* section headings, as on the live site */
  --ink-deep:#49413D;   /* page headings (h1) and body copy, as on the live site */
  --body:#49413D;       /* body copy */
  --tan:#C4A882;        /* brand tan — rules, borders, stars, text on the dark band */
  --tan-text:#AA8454;   /* large italic accents only (>=28px): 3.42:1 white, 3.10:1 cream-2 — AA large everywhere */
  --tan-lift:#CCB392;   /* gold text ON the dark band: 5.00:1 on #4A403A (AA) */
  --tan-deep:#8C6820;   /* small gold text: 5.10:1 on white, 4.62:1 on cream-2 (AA) */
  --line:#CDC6BA;       /* hairlines, pill outlines */
  --dark:#352A23;       /* dark band — sampled from the live trades page */
  --on-dark:#F3EDE4;

  /* Type */
  --display:"Playfair Display", Georgia, "Times New Roman", serif;
  --sans:"Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --label:"DM Sans", var(--sans);

  /* Rhythm */
  --pad:clamp(20px, 7vw, 105px);
  --gutter:min(1230px, 100% - (var(--pad) * 2));
  --section:clamp(44px, 5.5vw, 84px);
}

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

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

body{
  margin:0;
  background:var(--cream);
  color:var(--body);
  font-family:var(--sans);
  font-size:16px;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;height:auto;display:block}

a{color:inherit}

:where(a,button,summary,input,textarea):focus-visible{
  outline:2px solid var(--tan-deep);
  outline-offset:3px;
  border-radius:2px;
}

.skip{
  position:absolute;left:-9999px;top:0;z-index:100;
  background:var(--ink);color:var(--cream);
  padding:12px 20px;font-family:var(--label);font-size:13px;
}
.skip:focus{left:0}

/* ---------- layout helpers ---------- */
.wrap{width:var(--gutter);margin-inline:auto}
.section{padding-block:var(--section)}
.section--alt{background:var(--cream)}
.section--band{background:var(--cream-2)}
.section--white{background:var(--white)}
.section--cream2{background:var(--cream-2)}
.section--dark{background:var(--dark);color:var(--on-dark)}
.section--tight{padding-block:clamp(40px,6vw,72px)}

.grid-2{display:grid;gap:clamp(32px,5vw,72px);grid-template-columns:1fr}
@media (min-width:860px){
  .grid-2{grid-template-columns:1fr 1fr;align-items:center}
  .grid-2--wide-left{grid-template-columns:1.15fr 1fr}
}

.stack > * + *{margin-top:1.1em}
.measure{max-width:60ch}

/* ---------- typography ---------- */
.eyebrow{
  font-family:var(--label);
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--tan-deep);
  margin:0 0 18px;
  display:flex;align-items:center;gap:14px;
}
.eyebrow::before{
  content:"";width:34px;height:1px;background:var(--tan);flex:none;
}
.eyebrow--plain::before{display:none}

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:400;
  color:var(--ink);
  margin:0 0 .62em;
  line-height:1.16;
  letter-spacing:-.005em;
  text-wrap:balance;
}
h1{font-size:clamp(38px,5.6vw,80px);line-height:1.09;margin-bottom:.72em;color:var(--ink-deep)}
h2{font-size:clamp(28px,4.4vw,50px);line-height:1.18}
h3{font-size:clamp(21px,2.4vw,28px);line-height:1.24;margin-bottom:.5em}
h4{font-size:19px;margin-bottom:.45em}
.section--dark :where(h1,h2,h3,h4){color:var(--on-dark)}

/* The live site sets the second half of a heading in Playfair italic, in the
   brand tan, with a touch of tracking. Tan is a display colour only — at 12px
   it never reaches a legible contrast, so small text uses --tan-deep. */
.accent{font-style:italic;color:var(--tan-text);letter-spacing:.02em}
.section--dark .accent{color:var(--tan-lift)}

p{margin:0 0 1.1em;max-width:62ch}
p:last-child{margin-bottom:0}
.lead{font-size:clamp(17px,1.6vw,19px);line-height:1.62}
.small{font-size:14.5px}
.quiet{color:#7A716B}
.section--dark .quiet{color:#C8BCAF}

strong,b{font-weight:600;color:var(--ink)}
.section--dark strong{color:var(--on-dark)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--label);
  font-size:12px;
  letter-spacing:.13em;
  text-transform:uppercase;
  text-decoration:none;
  padding:15px 30px;
  border-radius:60px;
  border:1px solid var(--line);
  background:var(--white);
  color:var(--ink);
  transition:background .18s ease, border-color .18s ease, color .18s ease;
  cursor:pointer;
  line-height:1;
}
.btn:hover{background:var(--ink);border-color:var(--ink);color:var(--cream)}
.btn--solid{background:var(--ink);border-color:var(--ink);color:var(--cream)}
.btn--solid:hover{background:var(--dark);border-color:var(--dark)}
.btn--ghost{background:transparent}
.section--dark .btn{background:transparent;border-color:rgba(243,237,228,.45);color:var(--on-dark)}
.section--dark .btn:hover{background:var(--on-dark);color:var(--dark);border-color:var(--on-dark)}

.btn-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:32px;align-items:center}

/* quiet secondary link beside a hero's primary button */
.hero-textlink{
  font-family:var(--label);font-size:12px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--ink);text-decoration:none;border-bottom:1px solid var(--tan);padding-bottom:3px;
}
.hero-textlink:hover{color:var(--tan-deep);border-color:var(--tan-deep)}
.hero--image .hero-textlink{color:#FBF8F4;border-color:rgba(251,248,244,.55)}
.hero--image .hero-textlink:hover{color:var(--tan-lift);border-color:var(--tan-lift)}

/* centred booking panel on the contact page */
.book-panel{max-width:880px;margin-inline:auto}

.textlink{
  font-family:var(--label);font-size:12px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--tan-deep);text-decoration:none;border-bottom:1px solid var(--tan);
  padding-bottom:3px;transition:color .18s ease,border-color .18s ease;
}
.textlink:hover{color:var(--ink);border-color:var(--ink)}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter:saturate(150%) blur(8px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease;
}
@supports not (backdrop-filter:blur(1px)){.site-header{background:var(--cream)}}
.site-header.is-stuck{border-bottom-color:var(--line)}

.nav{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding-block:26px; /* live header runs 103px tall */
}
.brand{
  font-family:var(--display);
  font-size:clamp(15px,1.5vw,18px);
  letter-spacing:.11em;
  text-transform:uppercase;
  color:var(--ink);
  text-decoration:none;
  white-space:nowrap;
}
.nav-links{
  display:none;
  list-style:none;margin:0;padding:0;
  align-items:center;gap:clamp(16px,2.2vw,32px);
}
.nav-links a{
  /* serif title-case, as the live header — fewer, larger, calmer items */
  font-family:var(--display);
  font-size:17px;
  letter-spacing:.01em;
  color:var(--ink);
  text-decoration:none;
  padding-bottom:3px;
  border-bottom:1px solid transparent;
  transition:border-color .18s ease,color .18s ease;
  white-space:nowrap;
}
.nav-links a:hover{border-bottom-color:var(--tan)}
.nav-links a[aria-current="page"]{border-bottom-color:var(--tan);color:var(--tan-deep)}
.nav-cta{display:none}

.nav-toggle{
  display:inline-flex;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;padding:0 10px;
  background:none;border:0;cursor:pointer;
}
.nav-toggle span{display:block;height:1.5px;background:var(--ink);transition:transform .22s ease,opacity .18s ease}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  padding-block:8px 24px;
}
.mobile-nav.is-open{display:block}
.mobile-nav ul{list-style:none;margin:0;padding:0}
.mobile-nav a{
  display:block;padding:14px 0;
  font-family:var(--label);font-size:16px;color:var(--ink);text-decoration:none;
  border-bottom:1px solid var(--cream-3);
}
.mobile-nav .btn{margin-top:22px;width:100%}

@media (min-width:900px){
  .nav-links{display:flex}
  .nav-cta{display:inline-flex}
  .nav-toggle{display:none}
  .mobile-nav{display:none !important}
}

/* ---------- hero ---------- */
.hero{padding-block:clamp(52px,8vw,104px) clamp(52px,8vw,110px)}
.hero h1{margin-bottom:.62em}
.hero .lead{max-width:44ch}
.hero-media{
  aspect-ratio:4/5;
  background:var(--cream-3) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 8L8 0' stroke='%23E3DDD3' stroke-width='1'/%3E%3C/svg%3E");
  display:flex;align-items:flex-end;
  overflow:hidden;
}
.hero-media img{width:100%;height:100%;object-fit:cover}
.hero-media figcaption{
  font-family:var(--label);font-size:11px;letter-spacing:.1em;text-transform:uppercase;
  color:#6F6660;padding:14px 16px;
}

/* ---------- vertical cards ---------- */
.verticals{display:grid;gap:clamp(20px,3vw,32px);grid-template-columns:1fr}
@media (min-width:820px){.verticals{grid-template-columns:1fr 1fr}}
.vcard{
  --vpad:clamp(28px,3.4vw,44px);
  background:var(--white);
  border:1px solid #E7E1D8;
  border-radius:14px;
  box-shadow:0 1px 2px rgba(74,64,58,.04), 0 12px 32px -20px rgba(74,64,58,.3);
  padding:var(--vpad);
  display:flex;flex-direction:column;
  overflow:hidden;
}
.vcard h3{margin-bottom:.55em}
.vcard .btn-row{margin-top:auto;padding-top:26px}

/* ---------- trust strip ---------- */
.trust{
  display:grid;gap:1px;
  grid-template-columns:1fr;
  background:var(--line);
  border:1px solid var(--line);
}
@media (min-width:720px){.trust{grid-template-columns:repeat(3,1fr)}}
.trust > div{background:var(--cream);padding:clamp(24px,3vw,34px)}
.trust h4{
  font-family:var(--label);font-size:11.5px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--tan-deep);margin:0 0 10px;
}
.trust p{font-size:15px;margin:0;max-width:34ch}
.section--alt .trust > div{background:var(--cream-2)}
.section--white .trust > div{background:var(--white)}

/* ---------- service lists (details) ---------- */
.services{border-top:1px solid var(--line);margin-top:clamp(28px,4vw,44px)}
.service{border-bottom:1px solid var(--line);background:var(--white)}
.service > summary{
  list-style:none;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:22px clamp(18px,2.4vw,30px);
  font-family:var(--label);font-size:15px;color:var(--ink);
}
.service > summary::-webkit-details-marker{display:none}
.service > summary::after{
  content:"";flex:none;width:9px;height:9px;
  border-right:1.5px solid var(--tan-deep);border-bottom:1.5px solid var(--tan-deep);
  transform:rotate(45deg) translateY(-2px);
  transition:transform .2s ease;
}
.service[open] > summary::after{transform:rotate(-135deg) translateY(-2px)}
.service > summary:hover{background:var(--cream-2)}
.service-body{
  padding:0 clamp(18px,2.4vw,30px) 28px;
}
.service-body ul{
  list-style:none;margin:0;padding:0;
  columns:2;column-gap:clamp(20px,3vw,48px);
}
@media (max-width:620px){.service-body ul{columns:1}}
.service-body li{
  break-inside:avoid;
  padding:6px 0 6px 18px;position:relative;font-size:15px;
}
.service-body li::before{
  content:"";position:absolute;left:0;top:15px;
  width:5px;height:1px;background:var(--tan);
}

/* ---------- stats ---------- */
.stats{
  display:grid;gap:clamp(24px,4vw,48px);
  grid-template-columns:repeat(2,1fr);
  text-align:center;
}
@media (min-width:720px){.stats{grid-template-columns:repeat(var(--stat-cols,2),1fr)}}
.stat .n{
  font-family:var(--display);font-size:clamp(36px,4.4vw,54px);
  color:var(--tan-text);line-height:1;display:block;margin-bottom:10px;
}
.section--dark .stat .n{color:var(--tan-lift)}
.stat .l{
  font-family:var(--label);font-size:12px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--ink);
}
.section--dark .stat .l{color:var(--on-dark)}

/* ---------- testimonials ----------
   Compact cards: small star row, a slightly weighted opening line, the rest
   at footnote scale, then a one-line attribution. The words are the clients'
   verbatim — only the packaging is small. Three across, as on the live site. */
.quotes{display:grid;gap:clamp(12px,1.5vw,16px);grid-template-columns:1fr}
@media (min-width:700px){.quotes{grid-template-columns:1fr 1fr}}
@media (min-width:1020px){.quotes{grid-template-columns:repeat(3,1fr)}}
/* a short set should not sit in a three-column grid with a hole on the right */
.quotes--one{grid-template-columns:1fr;max-width:520px;margin-inline:auto}
@media (min-width:700px){.quotes--two{grid-template-columns:1fr 1fr;max-width:740px;margin-inline:auto}}

.quote{
  background:var(--white);
  border:1px solid #E7E1D8;
  border-radius:12px;
  box-shadow:0 1px 2px rgba(74,64,58,.04), 0 8px 22px -16px rgba(74,64,58,.24);
  padding:clamp(14px,1.5vw,18px);
  display:flex;flex-direction:column;
}
.section--alt .quote,
.section--cream2 .quote{background:var(--white)}

.q-stars{display:flex;gap:4px;margin-bottom:10px}
.q-stars svg{width:11px;height:10.5px;fill:var(--tan);flex:none}

.quote blockquote{margin:0;padding:0;border:0}
.quote blockquote p{font-size:13px;line-height:1.5;max-width:none;margin:0 0 .6em;color:#5D554E}
.quote blockquote p.q-lead{
  font-family:var(--display);
  font-size:clamp(15px,1.15vw,16.5px);
  line-height:1.35;
  color:var(--ink-deep);
  margin:0 0 8px;
  max-width:none;
  text-wrap:pretty;
}
.q-lead::before{content:"\201C"}
.quote blockquote p:last-child{margin-bottom:0}
.quote blockquote p:last-child::after{content:"\201D"}

.q-by{
  margin-top:auto;padding-top:11px;
  border-top:1px solid #EDE7DE;
  display:flex;flex-direction:row;flex-wrap:wrap;align-items:baseline;column-gap:8px;row-gap:2px;
}
.quote .q-by{margin-top:12px}
.q-name{
  font-family:var(--label);font-size:11px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--ink-deep);
}
.q-role{font-family:var(--sans);font-size:12.5px;color:#7A716B;letter-spacing:0}
.q-role::before{content:"\00B7";margin-right:8px;color:#C4BBB1}

/* ---------- centred section heads ----------
   Headings, eyebrows and lead lines centre; the content blocks below them
   (dropdowns, steps, FAQ, quote cards) stay left-aligned and centre as a
   block instead. */
.center-head{text-align:center}
.center-head .eyebrow{justify-content:center;max-width:none}
.center-head .lead{margin-inline:auto}
.center-head .services{text-align:left;margin-inline:auto}
.center-head .steps{text-align:left}
.center-head .faq{text-align:left;margin-inline:auto}
.center-head .quotes{text-align:left}
.center-head .gline{justify-content:center}
.center-head .note{margin-inline:auto}

/* ---------- FAQ ---------- */
.faq{border-top:1px solid var(--line);margin-top:clamp(24px,3vw,36px);max-width:820px;margin-inline:auto}
.faq .a p{max-width:none}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;cursor:pointer;padding:20px 30px 20px 0;position:relative;
  font-family:var(--display);font-size:19px;color:var(--ink);line-height:1.3;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";position:absolute;right:2px;top:19px;
  font-family:var(--sans);font-size:20px;color:var(--tan-deep);line-height:1;
}
.faq details[open] summary::after{content:"\2013"}
.faq .a{padding:0 0 24px}
.faq .a p{font-size:15.5px}

/* ---------- contact ---------- */
.contact-split{display:grid;gap:clamp(28px,4vw,52px);align-items:center}
.cal-card{background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:0 18px 40px rgba(43,36,29,.08)}
.cal-card iframe{display:block;width:100%;height:760px;border:0}
.contact-msplit{display:grid;gap:clamp(28px,4vw,52px);align-items:center}
.cm-photo{border-radius:16px;overflow:hidden}
.cm-photo img{display:block;width:100%;height:100%;object-fit:cover;object-position:center top;aspect-ratio:4/5}
@media (min-width:880px){
  .contact-split{grid-template-columns:1fr 1.15fr}
  .contact-msplit{grid-template-columns:1fr 1.15fr}
}
.contact-grid{display:grid;gap:clamp(32px,5vw,64px);grid-template-columns:1fr}
@media (min-width:880px){.contact-grid{grid-template-columns:1fr 1fr}}
.book-card{
  background:var(--white);border:1px solid var(--line);
  padding:clamp(28px,3.4vw,44px);
}
.form-field{margin-bottom:20px}
.form-row{display:grid;gap:20px;grid-template-columns:1fr}
@media (min-width:560px){.form-row{grid-template-columns:1fr 1fr}}
label{
  display:block;font-family:var(--label);font-size:12px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--ink);margin-bottom:8px;
}
input,textarea{
  width:100%;font-family:var(--sans);font-size:16px;color:var(--body);
  background:var(--white);border:1px solid var(--line);border-radius:4px;
  padding:13px 15px;
}
textarea{min-height:150px;resize:vertical}
input:hover,textarea:hover{border-color:var(--tan)}
.form-note{font-size:13.5px;color:#7A716B;margin-top:16px}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-status{margin-top:18px;font-size:15px}
.form-status:empty{margin:0}

/* ---------- links (link in bio) ---------- */
.linktree{max-width:460px;margin-inline:auto;text-align:center}
.linktree .btn{width:100%;margin-bottom:14px;padding-block:18px}

/* ---------- footer ---------- */
.site-footer{background:var(--dark);color:var(--on-dark);padding-block:clamp(48px,6vw,76px) 34px}
.site-footer a{color:var(--on-dark);text-decoration:none}
.site-footer .quiet{color:#C8BCAF}
.site-footer a:hover{border-bottom:1px solid var(--tan)}
.foot-grid{display:grid;gap:clamp(28px,4vw,56px);grid-template-columns:1fr}
@media (min-width:760px){.foot-grid{grid-template-columns:1.4fr 1fr 1fr}}
.foot-grid h4{
  font-family:var(--label);font-size:11.5px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--tan-lift);margin:0 0 16px;
}
.foot-grid ul{list-style:none;margin:0;padding:0}
.foot-grid li{margin-bottom:10px;font-size:15px}
.foot-brand{font-family:var(--display);font-size:20px;letter-spacing:.1em;text-transform:uppercase;margin:0 0 14px}
.foot-bottom{
  margin-top:clamp(36px,5vw,56px);padding-top:22px;
  border-top:1px solid rgba(243,237,228,.18);
  display:flex;flex-wrap:wrap;gap:12px 26px;justify-content:space-between;
  font-family:var(--label);font-size:12px;letter-spacing:.05em;color:#C8BCAF;
}
.social{display:flex;gap:10px;margin-top:20px}
.social a{
  width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(243,237,228,.3);border-radius:50%;
}
.social a:hover{background:rgba(243,237,228,.12);border-bottom-width:1px}
.social svg{width:18px;height:18px;fill:currentColor}

/* ---------- misc ---------- */
.divider{height:1px;background:var(--line);border:0;margin:0}
.note{
  border-left:2px solid var(--tan);background:var(--cream-2);
  padding:18px 22px;font-size:15px;
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}

/* ==========================================================================
   Full-bleed image hero — matches the treatment on the current site,
   where the trades and medical heroes are photos with light text over them.
   ========================================================================== */
.hero--image{
  position:relative;
  background:var(--dark);
  padding-block:clamp(96px,14vw,190px);
  overflow:hidden;
}
.hero--image > .hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  z-index:0;
}
.hero--image > .hero-bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg, rgba(48,41,37,.82) 0%, rgba(48,41,37,.66) 46%, rgba(48,41,37,.42) 100%);
}
.hero--image > .wrap{position:relative;z-index:1}
.hero--image :where(h1,h2,h3){color:#FBF8F4}
.hero--image .lead,.hero--image p{color:#EAE1D7}
.hero--image .accent{color:var(--tan-lift)}
.hero--image .eyebrow{color:var(--tan-lift)}
.hero--image .eyebrow::before{background:var(--tan)}
.hero--image .btn{background:transparent;border-color:rgba(251,248,244,.5);color:#FBF8F4}
.hero--image .btn:hover{background:#FBF8F4;color:var(--dark);border-color:#FBF8F4}
.hero--image .btn--solid{background:#FBF8F4;color:var(--dark);border-color:#FBF8F4}
.hero--image .btn--solid:hover{background:var(--tan);border-color:var(--tan);color:var(--dark)}

/* card images on the home page — full bleed to the card edge */
.vcard-media{
  margin:calc(var(--vpad) * -1) calc(var(--vpad) * -1) calc(var(--vpad) * .72);
  aspect-ratio:4/3;overflow:hidden;background:var(--cream-3);
}
.vcard-media img{width:100%;height:100%;object-fit:cover}

/* ==========================================================================
   Contact page — one primary action, then a short form, then email.
   ========================================================================== */
.action{
  background:var(--white);border:1px solid var(--line);
  display:grid;grid-template-columns:1fr;
  overflow:hidden;
}
@media (min-width:780px){
  .action{grid-template-columns:300px 1fr;align-items:stretch}
}
.action-photo{background:var(--cream-3);min-height:220px}
.action-photo img{width:100%;height:100%;object-fit:cover;object-position:center 22%}
.action-body{padding:clamp(28px,4vw,52px)}
.action-body h2{font-size:clamp(26px,3.2vw,38px);margin-bottom:.4em}
.action-body .btn{margin-top:26px;padding:18px 38px;font-size:13px}
.action-note{margin-top:14px;font-size:14px;color:#7A716B}

.reassure{
  list-style:none;margin:26px 0 0;padding:22px 0 0;
  border-top:1px solid var(--cream-3);
  display:flex;flex-wrap:wrap;gap:10px 30px;
}
.reassure li{
  font-family:var(--label);font-size:12px;letter-spacing:.09em;text-transform:uppercase;
  color:var(--tan-deep);display:flex;align-items:center;gap:9px;
}
.reassure li::before{
  content:"";width:5px;height:5px;border-radius:50%;background:var(--tan);flex:none;
}

.or-rule{
  display:flex;align-items:center;gap:22px;
  margin:clamp(44px,6vw,72px) auto clamp(30px,4vw,44px);
  max-width:620px;
}
.or-rule::before,.or-rule::after{content:"";flex:1;height:1px;background:var(--line)}
.or-rule span{
  font-family:var(--label);font-size:12px;letter-spacing:.14em;text-transform:uppercase;
  color:#7A716B;white-space:nowrap;
}

/* ---- Contact conversion layout: calendar and form side by side, both
        visible without hunting down the page ---- */
.convert{display:grid;grid-template-columns:1fr;gap:clamp(20px,2.6vw,36px);align-items:start}
@media (min-width:960px){.convert{grid-template-columns:minmax(0,1.22fr) minmax(0,1fr)}}
.convert-book h2,.convert-form h2{margin-bottom:0}
.convert-form{
  background:var(--white);border:1px solid #E7E1D8;border-radius:14px;
  padding:clamp(20px,2.4vw,30px);
  box-shadow:0 1px 2px rgba(74,64,58,.04), 0 10px 26px -18px rgba(74,64,58,.26);
}
.convert-form .btn{width:100%;padding-block:16px;font-size:13px}
.convert .reassure{display:flex;flex-wrap:wrap;gap:8px 22px}
.convert .email-direct{font-size:14px;color:#7A716B;text-align:center}
.convert .email-direct a{
  color:var(--tan-deep);font-family:var(--sans);font-size:14px;
  text-decoration:none;border-bottom:1px solid var(--tan);padding-bottom:1px;
}

.form-narrow{max-width:620px;margin-inline:auto}
.form-narrow h2{font-size:clamp(23px,2.6vw,30px);text-align:center;margin-bottom:.4em}
.form-narrow > p{margin-inline:auto;text-align:center;max-width:46ch}
.form-narrow form{margin-top:34px}
.form-narrow .btn{width:100%;padding-block:18px;font-size:13px}

select{
  width:100%;font-family:var(--sans);font-size:16px;color:var(--body);
  background:var(--white);border:1px solid var(--line);border-radius:4px;
  padding:13px 15px;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6740' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 16px center;
  padding-right:44px;cursor:pointer;
}
select:hover{border-color:var(--tan)}
.optional{text-transform:none;letter-spacing:0;color:#726A64;font-size:12px;margin-left:6px}

.next-step{
  margin-top:20px;padding:16px 20px;
  background:var(--cream-2);border-left:2px solid var(--tan);
  font-size:15px;
}

.email-direct{text-align:center;margin-top:clamp(40px,5vw,60px)}
.email-direct a{
  font-family:var(--display);font-size:clamp(20px,2.6vw,28px);
  color:var(--ink);text-decoration:none;
  border-bottom:1px solid var(--tan);padding-bottom:4px;
}
.email-direct a:hover{color:var(--tan-deep);border-color:var(--tan-deep)}

/* centred eyebrows need to shed the paragraph measure */
.email-direct .eyebrow,
.linktree .eyebrow{max-width:none;justify-content:center;margin-inline:auto}

/* ==========================================================================
   Adjustments after comparing side by side with the live Wix site.
   ========================================================================== */

/* 1. Hero scrim — the live site's heroes read at ~0.47 mean luminance.
      The first pass was ~0.39 and noticeably heavier on the left. */
.hero--image > .hero-bg::after{
  background:linear-gradient(100deg,
    rgba(48,41,37,.58) 0%,
    rgba(48,41,37,.44) 48%,
    rgba(48,41,37,.30) 100%);
}

/* 2. Portrait at the size it runs on the live site — half the content width. */
@media (min-width:860px){
  .grid-2--wide-right{grid-template-columns:1fr 1.2fr}
}
.hero-media{aspect-ratio:93/100}

/* 3. Service lists — the live site runs these at 430px centred, which is far
      easier to scan than a full-width row. */
.services{
  max-width:none;margin-inline:0;
  display:grid;grid-template-columns:1fr;column-gap:clamp(24px,3vw,44px);
  align-items:start; /* an open dropdown must not stretch its closed neighbour into an empty white box */
}
@media (min-width:860px){.services{grid-template-columns:1fr 1fr;max-width:1060px}}
.service-body ul{columns:1}
.services + .services{margin-top:0}

/* 4. Photo band behind the closing call to action, the way the live site
      carries a wide image just above the footer. */
.cta-band{position:relative;overflow:hidden}
.cta-band > .cta-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center 35%;
}
.cta-band > .cta-bg::after{
  content:"";position:absolute;inset:0;background:rgba(48,41,37,.88);
}
.cta-band > .wrap{position:relative;z-index:1}

/* the UA stylesheet gives <figure> a 40px side margin, which was shrinking
   the hero portrait and insetting the testimonial cards */
figure{margin:0}

/* wide image band above the footer — the live site carries one of these on
   trades, medical and about. No text sits on it, so it costs no legibility. */
.footer-band{
  height:clamp(150px,20vw,260px);
  background:var(--cream-3) url("/assets/img/footer-band.webp") center 40% / cover no-repeat;
}

/* ==========================================================================
   Matching pass against the live site, measured page by page.
   ========================================================================== */

/* Always-visible scrollbar. The live site styles the scrollbar, which is why
   it shows constantly; an unstyled page on a Mac hides it until you scroll. */
html{overflow-y:scroll}
::-webkit-scrollbar{width:12px}
::-webkit-scrollbar-track{background:var(--cream)}
::-webkit-scrollbar-thumb{background:#C6BFB4;border-radius:6px;border:3px solid var(--cream)}
::-webkit-scrollbar-thumb:hover{background:#AFA79A}

/* ---- Home hero: text left, photo filling the whole right half of the
        viewport, flush to the top and bottom of the section, as live. ---- */
.hero-split{display:grid;grid-template-columns:1fr;background:var(--cream)}
.hero-split .hs-copy{
  /* left inset = the page gutter, computed from the viewport alone —
     var(--gutter) uses %, which is circular inside a grid column */
  padding:clamp(44px,6.5vw,96px) clamp(24px,3vw,48px) clamp(44px,6.5vw,96px)
          max(var(--pad), calc((100vw - 1230px) / 2));
}
.hero-split .hs-copy h1{margin-bottom:.9em}
.hero-split .hs-photo{position:relative;min-height:340px}
.hero-split .hs-photo img{
  position:absolute;inset:0;width:100%;height:100%;
  /* anchor the crop to the top of the photo — "bottom" cropped the head off
     whenever the column ran taller than the image's aspect ratio */
  object-fit:cover;object-position:center top;
}
@media (min-width:860px){
  .hero-split{grid-template-columns:minmax(0,1fr) minmax(0,1fr);min-height:clamp(560px,59vw,860px)}
  /* about: the live page's photo runs taller than the home one */
  .hero-split--about{min-height:clamp(560px,63.9vw,920px)}
}
@media (max-width:859px){
  .hero-split .hs-photo{aspect-ratio:4/5;min-height:0}
}

/* ---- "Who I work with" rows: photo bleeding to the page edge on the left,
        text on the right half, over the pale full-width photo the live site
        runs behind these rows. ---- */
.wsplit{
  display:grid;grid-template-columns:1fr;position:relative;
  background:var(--cream-3) url("/assets/img/wsplit-bg.webp") center/cover no-repeat;
}
.wsplit .ws-photo{position:relative;min-height:300px}
.wsplit .ws-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.wsplit .ws-copy{
  padding:clamp(40px,5.5vw,84px)
          max(var(--pad), calc((100vw - 1230px) / 2))
          clamp(40px,5.5vw,84px)
          clamp(28px,11vw,165px);
}
@media (min-width:860px){
  .wsplit{grid-template-columns:minmax(0,1fr) minmax(0,1fr);min-height:clamp(420px,42vw,620px)}
}
@media (max-width:859px){
  .wsplit .ws-photo{aspect-ratio:4/3;min-height:0}
  .wsplit .ws-copy{padding-left:var(--pad)}
}
.ws-label{
  font-family:var(--display);font-size:18px;color:var(--ink-deep);
  margin:0 0 14px;
}
.ws-head{font-size:clamp(26px,2.8vw,40px)}

/* ---- Full-width photo strip, as between the services and the stats on the
        live trades page. Decorative; no text sits on it. ---- */
.photo-strip{
  height:clamp(110px,13vw,200px);
  background-size:cover;background-position:center 45%;background-repeat:no-repeat;
}
/* the darker image band, as the live site carries it */
.photo-strip--dark{box-shadow:inset 0 0 0 9999px rgba(38,30,24,.45)}

/* dark image band with the overlaid quote, matching the live medical page */
.quote-band{
  position:relative;background-size:cover;background-position:center 40%;
  padding-block:clamp(52px,6.5vw,96px);
}
.quote-band::before{content:"";position:absolute;inset:0;background:rgba(38,30,24,.60)}
.quote-band .wrap{position:relative;z-index:1}
.quote-band p{
  font-family:var(--display);font-style:italic;
  font-size:clamp(22px,2.4vw,34px);line-height:1.4;
  color:#F3EDE4;margin:0;max-width:none;
}

/* ---- Closing call to action: centred on cream with the gold italic line,
        exactly as the live site ends its pages. The old dark band is gone. ---- */
.cta-light{text-align:center;background:var(--cream)}
.cta-light h2{font-size:clamp(30px,4.3vw,64px)}
.cta-light .cta-sub{
  font-family:var(--sans);font-style:normal;
  font-size:clamp(16px,1.4vw,19px);line-height:1.6;
  color:var(--ink-deep); /* dark brown — gold at this size read poorly in a long line */
  max-width:52ch;margin:0 auto;
}
.cta-light .cta-rest{max-width:52ch;margin:14px auto 0;color:#7A716B;font-size:15px}

/* ---- Running banner — the live site carries this as an embedded iframe
        between the home hero and the intro. Rebuilt natively: same phrases,
        same 60s loop, no iframe. ---- */
.ticker{background:#49413D;overflow:hidden;height:60px;display:flex;align-items:center}
.ticker-track{
  display:flex;align-items:center;white-space:nowrap;
  animation:ticker 60s linear infinite;will-change:transform;
}
.ticker-track span{
  font-family:var(--label);font-size:12.5px;letter-spacing:.18em;text-transform:uppercase;
  color:#F3EDE4;flex:none;margin-right:38px;
}
.ticker-track span.tsep{color:var(--tan-lift);font-size:11px;letter-spacing:0}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.ticker-track{animation:none}}

/* ---- Contact band above the footer on every page — the dark photo block
        from the live site: Contact + email left, short form right. ---- */
.contact-band{
  position:relative;
  background:var(--dark) url("/assets/img/contact-hero.webp") center 12% / cover no-repeat;
}
.contact-band::before{content:"";position:absolute;inset:0;background:rgba(38,30,24,.64)}
.contact-band > .wrap{position:relative;z-index:1;padding-block:clamp(44px,5.5vw,80px)}
.contact-band .hc-intro h2{color:#F3EDE4}
.contact-band p{color:#F3EDE4}
.contact-band .hc-mail{color:#F3EDE4;border-bottom-color:var(--tan)}
.contact-band .hc-mail:hover{color:var(--tan-lift);border-color:var(--tan-lift)}
.contact-band label{color:#F3EDE4}
.contact-band .optional{color:#CDC3B8}
.contact-band input,.contact-band textarea{border-color:transparent;border-radius:10px}
.contact-band .form-status{color:#F3EDE4}
.contact-band .btn{border-color:transparent}
.hc-grid{display:grid;gap:clamp(32px,5vw,72px);grid-template-columns:1fr}
@media (min-width:860px){.hc-grid{grid-template-columns:1fr 1.25fr;align-items:center}}
.hc-intro h2{font-size:clamp(30px,3vw,42px);margin-bottom:.5em}
.hc-mail{
  font-family:var(--sans);font-size:16.5px;color:var(--ink-deep);
  text-decoration:none;border-bottom:1px solid var(--tan);padding-bottom:3px;
}
.hc-mail:hover{color:var(--tan-deep);border-color:var(--tan-deep)}
.hc-social{display:flex;gap:10px;margin-top:24px}
.hc-social a{
  width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--line);border-radius:50%;color:var(--ink-deep);background:rgba(255,255,255,.6);
}
.hc-social a:hover{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.hc-social svg{width:17px;height:17px;fill:currentColor}
.hc-form .form-row{margin-bottom:20px}
.hc-form .btn{padding:16px 40px}
.hc-actions{display:flex;justify-content:flex-end;margin-top:4px}


/* ---- Pale hero (medical) — dark text over a soft blurred photo, as live ---- */
.hero--soft{
  position:relative;background:var(--cream-3);
  padding-block:clamp(72px,10vw,150px);overflow:hidden;
}
.hero--soft > .hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.hero--soft > .hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg, rgba(250,248,245,.55) 0%, rgba(250,248,245,.28) 55%, rgba(250,248,245,.14) 100%)}
.hero--soft > .wrap{position:relative;z-index:1}
.hero--soft .measure{max-width:940px}
.hero--soft h1{text-wrap:initial}
.hero--soft .lead{max-width:44ch}

/* ---- Decluttered closing CTA: more air, one action ---- */
.cta-light--roomy{padding-block:clamp(72px,9vw,130px)}
.cta-light--roomy .cta-sub{margin-top:6px}
.cta-light--roomy .btn-row{margin-top:38px}

/* ---- Condensed footer ---- */
.site-footer{padding-block:clamp(28px,3.5vw,44px) 22px}
.foot-row{
  display:flex;flex-wrap:wrap;align-items:center;gap:18px 36px;
  justify-content:space-between;
}
.foot-nav{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:8px 22px}
.foot-nav a{font-family:var(--label);font-size:13.5px;text-decoration:none}
.foot-contact{display:flex;align-items:center;gap:16px}
.foot-contact a{font-size:14px;text-decoration:none}
.site-footer .foot-brand{margin:0;font-size:17px}
.site-footer .social{margin:0}
.site-footer .social a{width:36px;height:36px}
.site-footer .social svg{width:15px;height:15px}
.foot-bottom{margin-top:20px;padding-top:16px}

/* ---- About: "What you can expect from me." — values over the pale wash with
        an inset photo on the left, as on the live about page ---- */
.expect{background:var(--cream-3) url("/assets/img/wsplit-bg.webp") center/cover no-repeat}
.expect > .wrap{padding-block:clamp(48px,6vw,88px)}
.expect-grid{display:grid;gap:clamp(32px,5vw,80px);grid-template-columns:1fr}
@media (min-width:900px){.expect-grid{grid-template-columns:minmax(0,460px) minmax(0,1fr);align-items:center}}
.expect-photo{margin:0;max-width:460px}
.expect-photo img{width:100%;height:auto;display:block}
.expect-list{margin:0}
.expect-list dt{
  font-family:var(--label);font-size:12px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--tan-deep);margin:22px 0 6px;
}
.expect-list dt:first-child{margin-top:0}
.expect-list dd{margin:0;font-size:15.5px;max-width:56ch}

/* Alternative expect layout: four compact tiles, 2×2 on desktop */
.expect-tiles{
  display:grid;gap:clamp(12px,1.5vw,16px);grid-template-columns:1fr;
  text-align:left;max-width:940px;margin-inline:auto;
}
@media (min-width:760px){.expect-tiles{grid-template-columns:1fr 1fr}}
.etile{
  background:var(--white);border:1px solid #E7E1D8;border-radius:12px;
  padding:clamp(18px,2vw,24px);
  box-shadow:0 1px 2px rgba(74,64,58,.04), 0 8px 22px -16px rgba(74,64,58,.22);
}
.etile h3{
  font-family:var(--label);font-size:12px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--tan-deep);margin:0 0 9px;
}
.etile h3::before{content:"";display:block;width:34px;height:1px;background:var(--tan);margin-bottom:10px}
.etile p{margin:0;font-size:14px;line-height:1.6;max-width:none;color:#5D554E}

/* ---- TidyCal embed on the contact page ---- */
.book-embed{max-width:900px;margin:clamp(36px,5vw,56px) auto 0;scroll-margin-top:110px}
.tidycal-embed{min-height:760px;background:var(--white);border:1px solid var(--line);border-radius:14px;overflow:hidden}
.tidycal-embed iframe{display:block;border:0;width:100%}

/* ---- "Rated 5.0 on Google" line under the testimonial blocks ---- */
.gline{
  margin:26px 0 0;display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-family:var(--label);font-size:13px;letter-spacing:.05em;color:var(--ink-deep);
}
.gline-stars{display:inline-flex;gap:3px}
.gline-stars svg{width:13px;height:12.4px;fill:var(--tan)}
.gline a{color:var(--tan-deep);text-decoration:none;border-bottom:1px solid var(--tan);padding-bottom:2px}
.gline a:hover{color:var(--ink);border-color:var(--ink)}

/* ---- How it works: three numbered steps ---- */
.steps{
  list-style:none;margin:0;padding:0;
  display:grid;gap:clamp(28px,4vw,56px);grid-template-columns:1fr;
  counter-reset:step;
}
@media (min-width:820px){.steps{grid-template-columns:repeat(3,1fr)}}
.steps li{position:relative;padding-top:6px}
.step-n{
  font-family:var(--display);font-style:italic;
  font-size:clamp(40px,4.6vw,58px);line-height:1;
  color:var(--tan-text);display:block;margin-bottom:14px;
}
.steps h3{font-size:clamp(19px,1.8vw,23px);margin-bottom:.45em}
.steps p{font-size:15.5px;max-width:38ch}
