@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
  /* Silver & white palette inspired by the logo */
  --bg: #f8f9fa;
  --white: #ffffff;
  --silver-light: #f2f3f5;
  --silver: #dde1e7;
  --silver-mid: #b8bec8;
  --silver-dark: #8892a0;
  --accent: #9da8b5;       /* cool silver-blue accent */
  --accent-dark: #6b7885;  /* darker silver for hover */
  --charcoal: #2c3038;     /* near-black for text */
  --mid: #5a6270;
  --light: #8892a0;
  --line: rgba(180,188,200,.28);
  --shadow: 0 12px 48px rgba(44,48,56,.10);
  --shadow-sm: 0 4px 20px rgba(44,48,56,.07);
  /* Silver gradient — mirrors the logo's metallic feel */
  --silver-grad: linear-gradient(135deg, #e8eaed 0%, #ffffff 40%, #d0d4da 70%, #eaecef 100%);
  --silver-btn: linear-gradient(135deg, #c8cdd6, #eaecef, #b8bec8);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -.01em; line-height: 1.08; }
h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
p { color: var(--mid); line-height: 1.75; }
strong { color: var(--charcoal); font-weight: 500; }

/* ── Header — centred layout, no logo ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 0 4vw;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  height: auto; padding-top: 14px; padding-bottom: 14px;
  gap: 8px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; letter-spacing: .06em;
  color: var(--charcoal);
  text-align: center; line-height: 1.1;
}
.brand small {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--silver-dark); font-family: 'DM Sans', sans-serif;
  font-weight: 400; display: block; margin-top: 2px;
}
/* Hide logo img in header */
.brand img { display: none; }

.header-phone {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--charcoal);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.header-phone:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.header-actions {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
}
.header-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.header-icon svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.header-icon:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); transform: translateY(-1px); }


.nav {
  display: flex; gap: 22px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.nav a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--charcoal); }
.nav-book {
  background: var(--silver-btn); color: var(--charcoal);
  border: 1px solid rgba(180,188,200,.5);
  box-shadow: 0 2px 10px rgba(44,48,56,.1);
  border-radius: 999px; padding: 9px 20px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  transition: all .2s;
}
.nav-book:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; font-size: 13px; cursor: pointer;
  color: var(--charcoal); font-family: 'DM Sans', sans-serif;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 32px;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all .2s; border: none;
}
.btn-rose {
  background: var(--silver-btn); color: var(--charcoal);
  border: 1px solid rgba(180,188,200,.5);
  box-shadow: 0 2px 12px rgba(44,48,56,.1);
}
.btn-rose:hover { background: var(--charcoal); color: #fff; }
.btn-outline {
  background: rgba(255,255,255,.0); border: 1.5px solid rgba(44,48,56,.35);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-light { background: var(--white); color: var(--charcoal); border: 1px solid var(--line); }
.btn-light:hover { background: var(--silver-light); }

/* ── Eyebrow ── */
.eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--silver-dark); font-weight: 500; margin-bottom: 14px; display: block;
}

/* ── Section basics ── */
.section { padding: 88px 5vw; }
.section-narrow { max-width: 780px; margin: 0 auto; }
.section-center { text-align: center; }
.divider { width: 60px; height: 1px; background: var(--silver-mid); margin: 24px auto; border: none; }

/* ── Script headings ── */
.script-heading {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(64px, 10vw, 130px);
  color: var(--charcoal); line-height: .9; margin-bottom: 48px;
}

/* ── Quick link cards (silver tiled) ── */
.quick-links {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px; max-width: 1400px; margin: 0 auto;
}
.quick-link-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 32px 18px;
  text-align: center; transition: all .25s;
  box-shadow: var(--shadow-sm); cursor: pointer;
  position: relative; overflow: hidden;
}
.quick-link-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.quick-link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #3a3f48; }
.quick-link-card .ql-icon { display: none; }
.quick-link-card span {
  display: block; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.9);
  position: relative;
}

/* ── Treatment cards ── */
.treatment-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; max-width: 1100px; margin: 0 auto;
}
.treatment-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 20px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.treatment-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.treatment-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 6px; }
.treatment-card p { font-size: 14px; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px; box-shadow: var(--shadow-sm);
}
.stars { color: var(--accent-dark); font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--charcoal); line-height: 1.5; margin-bottom: 14px; }
.review-card cite { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--light); }

/* ── Price cards ── */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm);
}
.price-card h3 { font-size: 24px; margin-bottom: 6px; }
.price-card .area { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-dark); margin-bottom: 18px; display: block; }
.price-card table { width: 100%; border-collapse: collapse; }
.price-card td { padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--line); color: var(--mid); }
.price-card td:last-child { text-align: right; color: var(--charcoal); font-weight: 500; }
.price-card tr:last-child td { border-bottom: none; }

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 13px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--charcoal); transition: border-color .2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
  background: var(--silver-light); border-radius: 16px; border: 1px solid var(--line);
}
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 8px; }

/* ── Footer ── */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,.7);
  padding: 60px 5vw 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer h4 { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-mid); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer ul a:hover { color: var(--silver); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,.35); text-align: center; }

/* ── Page hero banner ── */
.page-hero {
  background: var(--silver-grad); border-bottom: 1px solid var(--line);
  padding: 60px 5vw 52px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.7) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero p { max-width: 540px; margin: 16px auto 0; }

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, #3a3f48, #555d68);
  color: #fff; text-align: center; padding: 80px 5vw;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════
   MOBILE
══════════════════════ */
@media (max-width: 860px) {
  .site-header { padding: 12px 14px; gap: 8px; }
  .brand { font-size: 18px; letter-spacing: .04em; }
  .header-phone { font-size: 11px; padding: 7px 10px; box-shadow: none; }
  .header-actions { gap: 6px; }
  .header-icon { width: 36px; height: 36px; box-shadow: none; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  /* mobile: header becomes row with name + hamburger */
  .site-header { flex-direction: row; justify-content: space-between; align-items: center; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px; z-index: 200;
  }
  .nav.open a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
  .nav.open a:last-child { border-bottom: none; }

  .section { padding: 56px 18px; }
  .quick-links { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .quick-link-card { padding: 22px 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .price-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
}
@media (max-width: 480px) {
  .quick-links { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .quick-link-card { padding: 18px 8px; border-radius: 14px; }
  .quick-link-card span { font-size: 11px; letter-spacing: 1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
}


/* ── Certifications reusable ── */
.certifications-section { background: var(--bg); padding: 72px 5vw; text-align: center; }
.certifications-section p { max-width: 620px; margin: 0 auto 30px; }
.certification-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: 1000px; margin: 0 auto; }
.certification-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px 18px; box-shadow: var(--shadow-sm); }
.certification-card strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.certification-card span { display: block; color: var(--mid); font-size: 14px; line-height: 1.6; }
@media (max-width: 860px) { .certification-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .certification-grid { grid-template-columns: 1fr; } }

/* Branded treatment help banner */
.treatment-help-banner {
  background: var(--white);
  color: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 80px 5vw;
}
.treatment-help-banner h2 { color: var(--charcoal); margin-bottom: 12px; }
.treatment-help-banner p { color: var(--mid); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

@media (max-width: 860px) {
  .site-header .brand { flex: 1 1 auto; min-width: 0; max-width: calc(100% - 150px); font-size: 17px; letter-spacing: .035em; text-align: left; }
  .site-header .menu-toggle { flex: 0 0 auto; }
  .site-header .header-actions { flex: 0 0 auto; }
}
@media (max-width: 390px) {
  .site-header .brand { font-size: 16px; letter-spacing: .025em; max-width: calc(100% - 142px); }
  .header-icon { width: 33px; height: 33px; }
  .header-icon svg { width: 16px; height: 16px; }
  .menu-toggle { padding: 8px 12px; }
}


/* Final header subtitle polish */
.brand small { white-space: nowrap; }
@media (max-width: 860px) {
  .brand small { font-size: 9px; letter-spacing: .18em; margin-top: 1px; }
  .site-header { min-height: 78px; }
}
@media (max-width: 390px) {
  .brand small { font-size: 8px; letter-spacing: .16em; }
}


/* ─────────────────────────────────────────────
   Final agency polish pass
   ───────────────────────────────────────────── */
:root {
  --cream: #f8f9fa;
  --deep-rose: #2c3038;
  --rose: #6b7885;
  --blush: #6b7885;
}
html { scroll-padding-top: 96px; }
::selection { background: rgba(184,190,200,.45); color: var(--charcoal); }
a, button, .btn, .quick-link-card, .treatment-card, .treatment-full-card, .price-card, .review-card, .certification-card { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 4px; border-radius: 10px; }
.btn, .quick-link-card, .treatment-card, .treatment-full-card, .price-card, .review-card, .certification-card, .contact-info-card, .ig-link-btn { transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease; }
.btn:hover, .quick-link-card:hover, .treatment-card:hover, .treatment-full-card:hover, .price-card:hover, .review-card:hover, .certification-card:hover { transform: translateY(-3px); }
.btn:active, .quick-link-card:active, .header-icon:active { transform: translateY(0) scale(.985); }
.site-header { padding-top: 10px; padding-bottom: 10px; gap: 6px; box-shadow: 0 1px 0 rgba(180,188,200,.18); }
.brand { line-height: 1.05; }
.header-actions { order: 2; }
.menu-toggle { order: 3; }
.nav { order: 4; }
.quick-link-card { min-height: 92px; display: grid; place-items: center; }
.section { padding-top: clamp(58px, 8vw, 92px); padding-bottom: clamp(58px, 8vw, 92px); }
.page-hero { padding-top: clamp(52px, 7vw, 78px); padding-bottom: clamp(46px, 7vw, 70px); }
.treatment-full-card, .price-card, .review-card, .certification-card { color: var(--charcoal); }
.treatment-full-card p, .price-card p, .review-card p, .certification-card span { color: var(--mid); }
.treatment-full-card .t-tag { background: var(--silver-light); color: var(--charcoal); border: 1px solid var(--line); }
.treatment-full-card strong { color: var(--charcoal); }
.treatment-help-banner .btn-light:hover, .cta-banner .btn-light:hover { background: var(--silver); color: var(--charcoal); }
.why-choose-section { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: 1100px; margin: 36px auto 0; }
.trust-card { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-card .trust-icon { width: 42px; height: 42px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; margin: 0 auto 16px; color: var(--charcoal); font-size: 18px; }
.trust-card h3 { font-size: 24px; margin-bottom: 8px; }
.trust-card p { font-size: 14px; line-height: 1.65; }
@media (max-width: 960px) { .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  html { scroll-padding-top: 86px; }
  .site-header { min-height: 72px; padding: 10px 14px; gap: 7px; }
  .site-header .brand { max-width: calc(100% - 150px); }
  .header-actions { gap: 5px; }
  .header-icon { width: 34px; height: 34px; }
  .menu-toggle { padding: 8px 14px; }
  .quick-link-card { min-height: 108px; border-radius: 18px; }
  .nav.open { box-shadow: 0 20px 50px rgba(44,48,56,.10); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .script-heading { font-size: clamp(54px, 18vw, 76px); margin-bottom: 30px; }
}
@media (max-width: 380px) {
  .site-header .brand { font-size: 15px; max-width: calc(100% - 136px); }
  .brand small { letter-spacing: .12em; }
  .menu-toggle { padding: 7px 10px; font-size: 12px; }
  .header-icon { width: 31px; height: 31px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


/* Final cross-device consistency optimisation */
@media (min-width: 861px) {
  .site-header {
    min-height: 96px;
  }
}
@media (max-width: 860px) {
  body {
    -webkit-font-smoothing: antialiased;
  }
  .site-header {
    min-height: 72px;
  }
  .brand {
    overflow: hidden;
  }
  .brand small {
    white-space: nowrap;
  }
  .header-actions {
    flex-shrink: 0;
  }
}


/* Launch Edition page-title alignment consistency */
.page-hero {
  text-align: center;
}
.page-hero .script-heading,
.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

/* Launch desktop polish */
@media(min-width:861px){
.page-hero,.photos-hero-content{text-align:center}
.page-hero .script-heading,.page-hero p,.photos-hero-content p{margin-left:auto;margin-right:auto;max-width:680px}
}


/* Premium hover polish */
@media (min-width:861px){
.gallery-card,
.cert-card,
.service-card,
.price-card,
.card{
 transition:
  transform .28s ease,
  box-shadow .28s ease,
  border-color .28s ease,
  filter .28s ease;
}
.gallery-card:hover,
.cert-card:hover,
.service-card:hover,
.price-card:hover,
.card:hover{
 transform:translateY(-4px);
 box-shadow:0 22px 56px rgba(44,48,56,.14);
 filter:saturate(1.02);
}
.gallery-card img{
 transition:transform .45s ease;
}
.gallery-card:hover img{
 transform:scale(1.03);
}
.btn,
.button{
 transition:
  transform .22s ease,
  box-shadow .22s ease,
  background-color .22s ease;
}
.btn:hover,
.button:hover{
 transform:translateY(-2px);
 box-shadow:0 10px 24px rgba(44,48,56,.12);
}
}

/* Mobile-only header spacing fix: prevents the descender in “Surrey” overlapping the location line */
@media (max-width: 860px) {
  .site-header .brand {
    line-height: 1.16;
    padding-bottom: 2px;
  }
  .site-header .brand small {
    display: block;
    margin-top: 5px;
    line-height: 1.2;
  }
}

/* Final client revisions — Natalia image crop and Photos desktop hero image */
@media (min-width: 861px) {
  body.photos-page .photos-hero > img,
  .photos-hero > img {
    display: none !important;
  }
}

/* Polynucleotides segmented menu - keeps existing price-card styling */
.price-card .price-subsection {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price-card .price-subsection:first-of-type {
  margin-top: 18px;
}
.price-card .price-subsection h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 8px;
  font-weight: 600;
}

/* Price alignment polish
   Desktop and mobile now share the same fixed price column.
   Multi-line price stacks are left-aligned inside that column so each £ starts
   directly underneath the £ above it. */
.price-card table {
  table-layout: fixed;
}

.price-card td:first-child {
  width: calc(100% - 92px);
  padding-right: 16px;
}

.price-card td:last-child {
  width: 92px;
  min-width: 92px;
  text-align: left !important;
  vertical-align: top;
  padding-left: 16px;
  white-space: nowrap;
}

.price-card td:last-child .price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}

.price-card td:last-child .price-stack span {
  display: block;
}

@media (max-width: 860px) {
  .price-grid-wide {
    grid-template-columns: 1fr !important;
  }

  .price-card {
    padding: 30px;
  }

  .price-card td:first-child {
    width: calc(100% - 92px);
    padding-right: 16px;
  }

  .price-card td:last-child {
    width: 92px;
    min-width: 92px;
    padding-left: 16px;
  }
}

@media (max-width: 420px) {
  .price-card {
    padding: 26px;
  }

  .price-card td {
    font-size: 13px;
  }

  .price-card td:first-child {
    width: calc(100% - 84px);
    padding-right: 12px;
  }

  .price-card td:last-child {
    width: 84px;
    min-width: 84px;
    padding-left: 12px;
  }
}
