/* ==========================================================================
   Lasting Color Permanent Make-Up
   --------------------------------------------------------------------------
   TO CHANGE THE SITE COLOURS: edit the values in the :root block below.
   Every colour on the site comes from these few lines.
   ========================================================================== */

:root {
  /* Brand colours sampled from the logo */
  --ocean:       #005078;   /* primary brand blue */
  --ocean-deep:  #003C5A;   /* darker blue, for hovers */
  --ocean-mid:   #00648C;   /* lighter blue accent */
  --charcoal:    #22333D;   /* headings, buttons, authority text */
  --sandtone:    #C9A88C;   /* the warm tone from the logo swoosh */

  /* Neutrals: the ground the brand colours sit on */
  --ink:         #16232B;   /* deep slate, used for the dramatic sections */
  --ink-soft:    #22333D;
  --paper:       #FAF7F1;   /* main page background, soft cream */
  --mist:        #EDF1F3;   /* cool grey-blue second background */
  --sand-soft:   #F3E9DD;   /* warm sand third background */
  --line:        #DCE3E7;   /* hairlines and borders */
  --body:        #4A555C;   /* body text */
  --muted:       #616D75;   /* secondary text, dark enough to stay readable */
  --white:       #FDFBF7;   /* the lightest cream, for cards and panels */

  --sweep: linear-gradient(100deg, var(--ocean) 0%, var(--ocean) 26%, var(--charcoal) 62%, var(--sandtone) 100%);

  --max: 1200px;
}

/* --------------------------------------------------------------- Reset --- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;              /* the brand is a light one */
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--ocean-deep); }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 .48em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
h4 {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal);
  margin: 0 0 .6rem;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--charcoal); }
em { font-style: italic; }

.container { width: min(var(--max), 100% - 3.5rem); margin-inline: auto; }
@media (max-width: 640px) { .container { width: min(var(--max), 100% - 2.2rem); } }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--paper { background: var(--paper); }
.section--mist  { background: var(--mist); }
.section--sand  { background: var(--sand-soft); }
.section--ink   { background: var(--ink); color: rgba(255,255,255,.74); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink h4 { color: rgba(255,255,255,.55); }
.section--ink strong { color: #fff; }
.section--ink a { color: #8FC6E2; text-decoration: underline; text-underline-offset: 3px; }
.section--ink a:hover { color: #BCDFF0; }
.section--ink h2 a { color: #fff; text-decoration: none; }
.section--ink h2 a:hover { color: #BCDFF0; }

.center { text-align: center; }
.nowrap { white-space: nowrap; }
/* an h1 that needs to look like an h2 (kept for search engines) */
.as-h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.narrow { max-width: 42rem; margin-inline: auto; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.22rem); font-weight: 300; }

.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;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 2px solid var(--ocean); outline-offset: 4px; }

/* ------------------------------------------------- The brow-stroke rule ---
   A tapered stroke, the shape of a single brow hair, used instead of a
   plain underline. It is the site's one repeating structural motif.        */
.arch { display: block; width: 132px; height: 15px; margin: 0 0 1.6rem; }
.center .arch, .arch--center { margin-inline: auto; }
.arch path { fill: url(#browGrad); }

.strokes { display: block; width: 190px; height: 22px; margin: 0 auto; opacity: .5; }
.strokes path { fill: var(--charcoal); }
.section--ink .strokes path { fill: rgba(255,255,255,.55); }

/* ------------------------------------------------------------- Buttons ---
   Squared and letterspaced rather than rounded pills: reads closer to a
   beauty editorial than to a web template.                                 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; line-height: 1;
  padding: 1.15rem 2.1rem; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; text-align: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-primary { background: var(--charcoal); color: #fff; }
.btn-primary:hover { background: var(--ocean); color: #fff; }

.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn-outline:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

/* the brand blue button, for when charcoal is not enough emphasis */
.btn-navy { background: var(--ocean); color: #fff; border-color: var(--ocean); }
.btn-navy:hover { background: var(--ocean-deep); border-color: var(--ocean-deep); color: #fff; }

/* Outlined in the brand blue, with a border heavy enough to read as a button.
   The padding is trimmed by 1px so it still lines up with a solid button beside it. */
.btn-outline-navy {
  background: transparent; color: var(--ocean);
  border: 2px solid var(--ocean);
  padding: calc(1.15rem - 1px) calc(2.1rem - 1px);
}
.btn-outline-navy:hover { background: var(--ocean); border-color: var(--ocean); color: #fff; }

.btn-light { background: var(--white); color: var(--charcoal); }
.btn-light:hover { background: var(--ocean); color: #fff; }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-ghost:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

.btn-sm { padding: .85rem 1.4rem; font-size: .72rem; letter-spacing: .16em; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }
@media (max-width: 460px) { .btn-row .btn { width: 100%; } }

/* Text link with a moving underline */
.tlink {
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal);
  display: inline-flex; align-items: center; gap: .6rem;
  padding-bottom: .35rem; border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s, gap .2s;
}
.tlink:hover { color: var(--ocean); border-color: var(--ocean); gap: .95rem; }

/* --------------------------------------------------------------- Nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 78px; width: auto; }
@media (max-width: 1080px) { .brand img { height: 66px; } }
@media (max-width: 700px)  { .brand img { height: 56px; } }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a {
  font-size: .78rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase;
  color: var(--charcoal); position: relative; padding: .35rem 0;
}
.nav-links > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ocean); transition: right .28s ease;
}
.nav-links > a:hover::after, .nav-links > a.is-active::after { right: 0; }
.nav-links > a.is-active { color: var(--ocean); }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
/* The header's Book Now is the one thing on the page we most want clicked,
   so it gets the brand blue, a little more weight and a soft lift. */
.nav-actions > a.btn {
  background: var(--ocean); color: #fff; border-color: var(--ocean);
  padding: .95rem 1.75rem; font-size: .75rem; letter-spacing: .18em; font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,80,120,.28);
}
.nav-actions > a.btn:hover {
  background: var(--ocean-deep); border-color: var(--ocean-deep); color: #fff;
  transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,80,120,.34);
}
.nav-mobile-actions .btn { background: var(--ocean); border-color: var(--ocean); }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  font-size: .95rem; font-weight: 500; letter-spacing: .02em; color: var(--charcoal);
}
.nav-phone:hover { color: var(--ocean); }
.nav-phone svg { flex: none; color: var(--ocean); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; color: var(--charcoal); }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: currentColor; margin: 6px 0; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.6rem 1.8rem; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a { padding: 1.05rem 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
  .nav-links > a::after { display: none; }
  .nav-actions { display: none; }
  .nav-links .nav-mobile-actions { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.4rem; }
  .nav-links .nav-mobile-actions .nav-phone { justify-content: center; font-size: 1.05rem; }
}
.nav-mobile-actions { display: none; }

/* -------------------------------------------------------------- Hero ----- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(86vh, 780px);
  display: grid; place-items: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* A warm cream veil over the hero photo. Light enough that the full-colour
   logo reads without needing a panel behind it, sheer enough that the
   photograph still shows through. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(250,247,241,.60) 0%, rgba(250,247,241,.36) 40%, rgba(237,241,243,.76) 100%),
    radial-gradient(ellipse 68% 60% at 50% 48%, rgba(250,247,241,.70), transparent 78%);
}
.hero-logo {
  display: inline-block; width: min(430px, 76vw);
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
}
.hero-logo img { width: 100%; }
.hero h1 {
  color: var(--charcoal); margin-bottom: 1.1rem;
  font-size: clamp(2.05rem, 4.8vw, 3.5rem); font-weight: 400;
}
.hero h1 em {
  /* the deeper magenta, so the italic line still passes contrast over a photo */
  display: block; font-style: italic; font-weight: 500;
  color: var(--ocean-deep);
}
.hero p {
  color: var(--body); font-weight: 300;
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  max-width: 40rem; margin: 0 auto 2.3rem;
}
/* the line under the headline */
/* Sits over a photograph, so it gets extra weight and a soft cream halo that
   lifts it off whatever detail happens to be behind it. */
/* Note the .hero p prefix: the generic .hero p rule above would otherwise win
   and drag this back to light grey. */
.hero p.hero-sub {
  max-width: 44rem; margin: 0 auto !important;
  color: var(--ink); font-weight: 500;
  font-size: clamp(1.1rem, 1.75vw, 1.32rem); line-height: 1.58;
  text-wrap: pretty;
  text-shadow: 0 0 7px rgba(250,247,241,.9), 0 0 16px rgba(250,247,241,.75);
}
.hero .btn-row { justify-content: center; margin-top: clamp(1.8rem, 3.5vw, 2.6rem); }
/* a firmer edge, since this button sits over a photograph rather than flat colour */
.hero .btn-outline { border-color: rgba(34,51,61,.38); }

/* -------------------------------------------------------- Section head --- */
.section-head { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head p { color: var(--muted); font-weight: 300; }
.section--ink .section-head p { color: rgba(255,255,255,.66); }

/* ------------------------------------------------------- Service cards --- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 3.4vw, 3rem); }
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card { display: block; color: inherit; }
.svc-card .shot {
  position: relative; overflow: hidden; background: var(--mist);
  aspect-ratio: 1 / 1; margin-bottom: 1.5rem;
}
.svc-card .shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.svc-card:hover .shot img { transform: scale(1.055); }
.svc-card .shot::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(22,35,43,.42);
  opacity: 0; transition: opacity .4s;
}
.svc-card:hover .shot::after, .svc-card:focus-visible .shot::after { opacity: 1; }
/* "Learn More" sits over the photo on hover, so it is obvious the photo is a link */
.shot-cue {
  position: absolute; z-index: 2; left: 50%; top: 50%;
  transform: translate(-50%, -50%) translateY(9px);
  font-family: 'Jost', sans-serif; font-size: .76rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: #fff;
  padding: .95rem 1.9rem; border: 1px solid rgba(255,255,255,.75);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .35s ease, transform .35s ease;
}
.svc-card:hover .shot-cue, .svc-card:focus-visible .shot-cue {
  opacity: 1; transform: translate(-50%, -50%) translateY(0);
}
/* Touch screens have no hover, so show it straight away rather than never */
@media (hover: none) {
  .svc-card .shot::after { opacity: 1; background: rgba(22,35,43,.3); }
  .shot-cue { opacity: 1; transform: translate(-50%, -50%); }
}
@media (prefers-reduced-motion: reduce) {
  .shot-cue { transition: opacity .2s; transform: translate(-50%, -50%); }
  .svc-card:hover .shot-cue { transform: translate(-50%, -50%); }
}
.svc-card h3 { color: var(--charcoal); margin-bottom: .4rem; transition: color .25s; }
.svc-card:hover h3 { color: var(--ocean); }
.svc-card p { color: var(--body); font-weight: 400; font-size: .98rem; margin-bottom: 1rem; }

/* -------------------------------------------------------- Split blocks --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5.5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 900px) { .split--wide-left { grid-template-columns: 1fr; } }

/* framed photo with an offset colour panel behind it */
.framed { position: relative; }
.framed img { position: relative; z-index: 1; width: 100%; }
.framed::before {
  content: ""; position: absolute; z-index: 0;
  left: -20px; top: -20px; right: 34%; bottom: 34%;
  background: var(--sweep); opacity: .16;
}
@media (max-width: 640px) { .framed::before { left: -12px; top: -12px; } }

/* ------------------------------------------------------ Service detail --- */
.detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5.5vw, 5rem); align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}
.detail:first-of-type { border-top: 0; padding-top: 0; }
.detail:nth-of-type(even) .detail-media { order: 2; }
@media (max-width: 900px) {
  .detail { grid-template-columns: 1fr; gap: 2.2rem; }
  .detail:nth-of-type(even) .detail-media { order: 0; }
}
.price-from {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}
.price-from b { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; letter-spacing: 0; color: var(--ocean); text-transform: none; }

.tick { margin: 0 0 1.4rem; padding: 0; list-style: none; }
.tick li { position: relative; padding-left: 2.1rem; margin-bottom: .7rem; font-weight: 300; }
.tick li::before {
  content: ""; position: absolute; left: 0; top: .78em;
  width: 22px; height: 1px; background: var(--ocean);
}
.note {
  border-left: 2px solid var(--ocean); padding: .3rem 0 .3rem 1.4rem;
  margin: 0 0 1.5rem; font-size: .96rem; font-weight: 300; color: var(--body);
}
.section--ink .note { border-color: var(--ocean); color: rgba(255,255,255,.8); }

/* -------------------------------------------------------- Testimonials --- */
.quotes { max-width: 66rem; margin-inline: auto; }
.qrow {
  display: grid; grid-template-columns: auto 1fr; column-gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start; margin: 0;
  padding: clamp(2rem, 4vw, 2.9rem) 0; border-top: 1px solid var(--line);
}
.qrow:last-child { border-bottom: 1px solid var(--line); }
.qmark {
  font-family: 'Fraunces', Georgia, serif; font-size: clamp(3.4rem, 7vw, 5rem);
  line-height: .78; color: var(--ocean); opacity: .32; user-select: none;
}
/* Testimonials are set in the body face, not an italic display serif,
   so a long quote stays easy to read. */
.qrow p {
  font-family: 'Jost', sans-serif; font-style: normal; font-weight: 300;
  font-size: clamp(1.08rem, 1.9vw, 1.34rem); line-height: 1.64;
  color: var(--charcoal); margin-bottom: 1rem;
}
.qrow cite {
  font-style: normal; font-family: 'Jost', sans-serif;
  font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 560px) {
  .qrow { grid-template-columns: 1fr; row-gap: .2rem; }
  .qmark { font-size: 3rem; }
}

/* --------------------------------------------------------------- Facts --- */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 800px) { .facts { grid-template-columns: 1fr; } }
.fact { display: grid; grid-template-columns: auto 1fr; column-gap: 1.5rem; padding: 1.9rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.fact .num {
  font-family: 'Fraunces', Georgia, serif; font-size: 2rem; line-height: 1;
  color: var(--ocean); min-width: 1.6rem;
}
.fact h3 { font-size: 1.08rem; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: .01em; margin-bottom: .4rem; color: #fff; }
.fact p { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.68); }

/* ------------------------------------------------------------- Pricing --- */
.price-tables { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3.4rem); align-items: start; }
@media (max-width: 780px) { .price-tables { grid-template-columns: 1fr; } }
.price-table { width: 100%; border-collapse: collapse; }
.price-table caption {
  caption-side: top; text-align: left; padding: 0 0 1rem;
  font-family: 'Jost', sans-serif; font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.price-table th, .price-table td { padding: 1rem .2rem; text-align: left; font-size: .98rem; font-weight: 300; }
/* the small line under a procedure name, e.g. "Includes the follow-up appointment" */
.price-table td small { display: block; margin-top: .2rem; font-size: .8rem; line-height: 1.45; color: var(--muted); }
.price-table thead { display: none; }
.price-table tbody tr { border-bottom: 1px solid var(--line); }
.price-table td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table .amt { font-family: 'Fraunces', Georgia, serif; font-size: 1.12rem; color: var(--ocean); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.placeholder-price {
  display: inline-block; background: #FBEBCF; color: #7A5200;
  border: 1px dashed #D2A244; border-radius: 2px;
  padding: .05rem .5rem; font-size: .86rem; font-weight: 500;
  font-family: 'Jost', sans-serif; letter-spacing: .04em;
}

/* --------------------------------------------------------------- Terms --- */
.terms { list-style: none; margin: 0; padding: 0; }
.terms li { padding: 1.15rem 0; border-bottom: 1px solid var(--line); font-weight: 300; }
.terms li:first-child { border-top: 1px solid var(--line); }

/* ------------------------------------------------------------- Feature --- */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.feature-list li:first-child { border-top: 0; }
.feature-list b { display: block; font-family: 'Jost', sans-serif; font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: .2rem; }
.feature-list span { font-weight: 300; font-size: .95rem; color: rgba(255,255,255,.68); }
.feature-list .tick-ic { width: 19px; height: 19px; margin-top: .38rem; flex: none; color: #8FC6E2; }

/* ----------------------------------------------------------- Accordion --- */
.faq { max-width: 50rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: 'Jost', sans-serif; font-size: 1.04rem; font-weight: 500; color: var(--charcoal);
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ocean); }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%; background: var(--ocean);
  transition: transform .3s ease, opacity .3s ease;
}
.faq summary::before { right: 6px;     width: 16px;  height: 1.5px; margin-top: -.75px; }
.faq summary::after  { right: 13.25px; width: 1.5px; height: 16px;  margin-top: -8px; }
.faq details[open] summary::after { transform: rotate(90deg); opacity: 0; }
.faq .answer { padding: 0 2.5rem 1.9rem 0; font-weight: 300; }
.faq .answer p:first-child { margin-top: 0; }

/* --------------------------------------------------------------- Forms --- */
.form-card { background: var(--white); border: 1px solid var(--line); padding: clamp(1.8rem, 3.4vw, 3rem); }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block; font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal); margin-bottom: .55rem;
}
.field .req { color: var(--ocean); }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0; padding: .7rem 0; transition: border-color .2s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field select {
  appearance: none; padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1 1l5.5 5.5L12 1' stroke='%23005078' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .3rem center;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ocean); }
.field input::placeholder, .field textarea::placeholder { color: #78848B; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-hint { font-size: .88rem; font-weight: 300; color: var(--muted); margin-top: 1.1rem; }
.checkline { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; font-weight: 300; color: var(--muted); text-transform: none; letter-spacing: 0; }
.checkline input { width: auto; margin-top: .35rem; flex: none; accent-color: var(--ocean); border-bottom: 0; }

.form-status { margin-top: 1.2rem; padding: 1rem 1.15rem; font-size: .93rem; display: none; }
.form-status.is-ok    { display: block; background: #EAF6F0; color: #1D6647; border-left: 2px solid #1D6647; }
.form-status.is-error { display: block; background: #FBEDF0; color: #9B2138; border-left: 2px solid #9B2138; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* -------------------------------------------------------- Contact info --- */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.info-list li:first-child { border-top: 1px solid var(--line); }
.info-ic { color: var(--ocean); margin-top: .3rem; }
.info-list b {
  display: block; font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem;
}
.info-list .val { font-weight: 300; }

/* Opening hours */
.hours { list-style: none; margin: .3rem 0 0; padding: 0; max-width: 21rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .3rem 0; font-weight: 300;
}
.hours li span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours li.is-closed { color: var(--muted); }

/* -------------------------------------------------------- Booking slot --- */
.booking-box { border: 1px solid var(--line); background: var(--white); padding: clamp(1.6rem, 3vw, 2.4rem); text-align: center; }
.booking-slot { margin-top: 1.4rem; }

/* Vagaro's embed code ships with a hard-coded 250px container, which would
   squash the booking widget on a desktop screen. These let it fill the column.
   Do not remove the "Powered by Vagaro" links: Vagaro requires them. */
.booking-slot .vagaro { width: 100% !important; max-width: 100% !important; }
.booking-slot .vagaro iframe,
.booking-slot iframe { width: 100% !important; max-width: 100%; border: 0; display: block; }
.booking-slot .vagaro a { font-size: .78rem !important; color: var(--muted) !important; }
.booking-slot #frameTitle:empty { display: none; }

/* ------------------------------------------------------------ CTA band --- */
.cta-band {
  background: var(--ocean); color: rgba(255,255,255,.86);
  padding: clamp(3.6rem, 7vw, 6rem) 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--sweep);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 38rem; margin: 0 auto; font-weight: 300; }
.cta-band .btn-row { margin-top: 2.2rem; justify-content: center; }


/* --------------------------------------------------- Meet the artist --- */
.artist { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5.5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .artist { grid-template-columns: 1fr; gap: 2.2rem; } }
.artist-photo { position: relative; }
.artist-photo img { width: 100%; display: block; }
.artist-credits { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: .55rem; }
.artist-credits li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; font-weight: 300; }
.artist-credits .dot { width: 7px; height: 7px; margin-top: .62rem; border-radius: 50%; background: var(--ocean); }

/* ------------------------------------------------- Consultation steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.4vw, 3rem); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 2px solid var(--ocean); padding-top: 1.4rem; }
.step .n {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ocean); display: block; margin-bottom: .7rem;
}
.step h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.step p { font-weight: 300; font-size: .97rem; }

/* -------------------------------------------------------- Comparison --- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col { background: var(--white); border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.2rem); }
.compare-col--ours { border-color: var(--ocean); border-top: 3px solid var(--ocean); }
.compare-col h3 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li { position: relative; padding-left: 1.8rem; margin-bottom: .75rem; font-weight: 300; font-size: .96rem; }
.compare-col li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 15px; height: 15px; background: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%237E8A91' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4 10h12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}
.compare-col li { padding-left: 2rem; }
/* our column gets ticks instead of dashes */
.compare-col--ours li { padding-left: 2rem; }
.compare-col--ours li::before {
  top: .42em; width: 15px; height: 15px; background: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23005078' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5l4.5 4.5L17 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}

/* ----------------------------------------------------------- Gallery --- */
/* Three across on a computer. These are before-and-after collages, so bigger
   tiles matter more than fitting a lot of them on one row. */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }
.gallery-item {
  position: relative; display: block; padding: 0; border: 0; cursor: pointer;
  aspect-ratio: 1 / 1; overflow: hidden; background: var(--mist);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(22,35,43,.22); opacity: 0; transition: opacity .35s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.is-hidden { display: none; }
.gallery-empty { text-align: center; color: var(--muted); font-weight: 300; padding: 2rem 0; }
/* The See More Photos button hides itself when there is nothing left to show */
.btn[hidden] { display: none; }
.btn-row:has(> .btn[hidden]:only-child) { display: none; }

/* ---------------------------------------------------------- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 400; display: none;
  background: rgba(10,18,23,.94); padding: clamp(1rem, 4vw, 3rem);
  align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  color: #fff; width: 52px; height: 52px; display: grid; place-items: center;
  cursor: pointer; border-radius: 2px; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lb-prev { left: clamp(.6rem,3vw,2.5rem); top: 50%; margin-top: -26px; }
.lb-next { right: clamp(.6rem,3vw,2.5rem); top: 50%; margin-top: -26px; }
.lb-count {
  position: absolute; bottom: clamp(1rem,3vw,2rem); left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.72); font-size: .8rem; letter-spacing: .18em;
}
@media (max-width: 620px) { .lb-btn { width: 44px; height: 44px; } }

/* ------------------------------------------------------ Google badge --- */
.google-badge {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  margin-bottom: 1.6rem; text-align: center;
}
.google-badge .g-logo { width: 30px; height: 30px; }
.google-badge .g-count {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal);
}
.google-badge .g-stars { display: inline-flex; gap: .18rem; color: #E8A93C; }

/* ---------------------------------------------------------------- Map --- */
.map-frame {
  position: relative; width: 100%; max-width: 520px; margin-inline: auto;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line); background: var(--mist); overflow: hidden;
}
@media (max-width: 700px) { .map-frame { aspect-ratio: 4 / 3; max-width: 100%; } }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
/* Sits behind the map. Only visible where the map cannot load, such as inside
   a preview tool that blocks embeds. The live site covers it completely. */
.map-fallback {
  position: absolute; inset: 0; z-index: 0; display: grid; place-content: center;
  gap: .6rem; text-align: center; padding: 1.5rem; color: var(--muted); font-weight: 300;
}

/* --------------------------------------------------------- Review row --- */
.review-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* A plain outline button disappears on the tinted section backgrounds, so on
   those it gets a white fill and a firm border instead of a hairline. */
.section--mist .btn-outline,
.section--sand .btn-outline,
.page-head .btn-outline,
.review-actions .btn-outline {
  background: var(--white); border-color: var(--charcoal); color: var(--charcoal);
}
.section--mist .btn-outline:hover,
.section--sand .btn-outline:hover,
.page-head .btn-outline:hover,
.review-actions .btn-outline:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

/* Placeholder marker for content still to be pasted in */
.todo {
  display: block; background: #FFF6E2; border: 1px dashed #D9AE55; color: #7A5600;
  padding: 1.1rem 1.3rem; font-size: .93rem; font-weight: 400; margin-bottom: 1.4rem;
}
.todo strong { color: #7A5600; }

/* --------------------------------------------------------- Page heading --- */
.page-head { background: var(--mist); padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.6rem, 5vw, 4rem); text-align: center; }
.page-head h1 { margin-bottom: 0; }
.page-head p { color: var(--muted); font-weight: 300; max-width: 40rem; margin: 1.2rem auto 0; }

/* -------------------------------------------------------------- Footer --- */
/* Light footer, so the full-colour logo sits on it directly. */
.site-footer { background: var(--mist); color: var(--body); padding: clamp(3.5rem, 6vw, 5rem) 0 1.8rem; font-weight: 300; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.site-footer h4 { color: var(--muted); }
.site-footer a { color: var(--charcoal); }
.site-footer a:hover { color: var(--ocean); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .7rem; }
/* give footer links a proper tap area on phones */
@media (max-width: 700px) {
  .site-footer li { margin-bottom: .2rem; }
  .site-footer li > a { display: inline-block; padding: .55rem 0; }
}
.footer-logo { display: inline-block; width: 230px; margin-bottom: 1.5rem; }
.footer-logo img { width: 100%; }
.socials { display: flex; gap: .9rem; margin-top: 1.4rem; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--charcoal);
  transition: background .25s, border-color .25s, color .25s;
}
.socials a:hover { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--muted);
}

/* ---------------------------------------------------------- Legal copy --- */
.legal { max-width: 46rem; margin-inline: auto; font-weight: 300; }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-top: 2.8rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal ul { padding-left: 1.1rem; }
.legal li { margin-bottom: .6rem; }
.legal .updated { font-size: .86rem; color: var(--muted); letter-spacing: .05em; margin-bottom: 2.4rem; }

/* -------------------------------------------------------------- Reveal --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s ease, transform .85s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .svc-card:hover .shot img { transform: none; }
}

[id] { scroll-margin-top: 120px; }
