/* The Good Turn — shared styles (extracted from index.html so index + pricing stay in sync) */
:root {
    --green: #7a9e7e;
    --green-deep: #4e6e52;
    --green-light: #d4e6d5;
    --green-pale: #f0f6f1;
    --pink: #d4849a;
    --pink-light: #f5e6eb;
    --pink-deep: #a85e75;
    /* Soft coastal blue-grey pulled from the throws & cushions in the photos */
    --slate: #8197a0;
    --slate-light: #dde6e9;
    --slate-deep: #5c7782;
    --cream: #fdf8f3;
    --warm-white: #fffcf8;
    --text: #2d2d2d;
    --text-light: #7a7a7a;
    --rule: #e0cfc8;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Cormorant Garamond', Georgia, serif; background: var(--warm-white); color: var(--text); }

  /* NAV — scope to the header nav only (body > nav); the jump-links and
     footer also use <nav>, and must NOT inherit the fixed positioning. */
  body > nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,252,248,0.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
    padding: 0 40px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand { font-size: 20px; font-weight: 600; letter-spacing: 1.5px; color: var(--text); text-decoration: none; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 2.25px; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 1.75px; text-transform: uppercase; color: var(--warm-white); background: var(--green); padding: 10px 22px; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--green-deep); }
  /* Mobile menu toggle — hidden on desktop, shown under 768px */
  .nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 9px; margin-left: 12px; background: none; border: 0; cursor: pointer; }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 40px 80px;
    background: url("images/hero-living-room.jpg") center center/cover no-repeat; position: relative; overflow: hidden;
  }
  .hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,132,154,0.12) 0%, transparent 70%); pointer-events: none; }
  .hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(122,158,126,0.12) 0%, transparent 70%); pointer-events: none; }
  .hero-leaf { margin-bottom: 32px; animation: floatIn 1s ease both; }
  .hero-tagline { color: rgba(255,255,255,0.9) !important; font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; animation: floatIn 1s ease 0.1s both; }
  /* Bug fix: was `font-family: clamp(...)` which is invalid — should size the heading. */
  .hero-title { color: #ffffff !important; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(52px, 8vw, 88px); font-weight: 600; letter-spacing: 3px; line-height: 1; margin-bottom: 24px; animation: floatIn 1s ease 0.2s both; }
  .hero-sub { color: rgba(255,255,255,0.85) !important; font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: clamp(18px, 2.5vw, 24px); color: var(--text-light); max-width: 520px; line-height: 1.7; margin-bottom: 48px; animation: floatIn 1s ease 0.3s both; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: floatIn 1s ease 0.4s both; }
  .hero-location { color: rgba(255,255,255,0.7) !important; margin-top: 56px; font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); animation: floatIn 1s ease 0.5s both; }
  @keyframes floatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  /* Primary CTA moved from pink to green (sage is now the trust colour). */
  .btn-primary { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--warm-white); background: var(--green-deep); padding: 16px 36px; text-decoration: none; transition: background 0.2s, transform 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--green); transform: translateY(-1px); }
  /* Secondary is now a light outline so two solid greens don't clash on the hero photo. */
  .btn-secondary { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: #ffffff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.7); padding: 16px 36px; text-decoration: none; transition: all 0.2s; display: inline-block; }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

  /* SECTIONS */
  section { padding: 100px 40px; }
  .section-inner { max-width: 900px; margin: 0 auto; }
  /* Section eyebrow labels moved off pink onto the coastal blue-grey. */
  .section-label { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: var(--slate-deep); margin-bottom: 16px; display: block; }
  .section-title { font-size: clamp(32px, 5vw, 52px); font-weight: 600; letter-spacing: 1px; line-height: 1.1; margin-bottom: 32px; color: var(--text); }
  /* Shared rounded photo used in About / Services / Touches / Contact. */
  .section-image { width: 100%; height: 320px; object-fit: cover; border-radius: 14px; border: 1px solid var(--rule); box-shadow: 0 10px 30px rgba(92,119,130,0.10); }

  /* ABOUT */
  #about { background: var(--warm-white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-text p { font-family: 'EB Garamond', Georgia, serif; font-size: 19px; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
  .about-text p:last-child { margin-bottom: 0; }
  .about-text p.about-lead { font-style: italic; color: var(--green-deep); }
  /* About aside border moved off pink onto the coastal blue-grey. */
  .about-aside { border-left: 2px solid var(--slate-light); padding-left: 40px; }
  .about-aside blockquote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 26px; font-weight: 300; line-height: 1.6; color: var(--green-deep); margin-bottom: 28px; }
  .about-detail { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); line-height: 2.4; }

  /* SERVICES */
  #services { background: var(--cream); }
  #services .section-image { margin-bottom: 48px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  /* Cards now have a full soft border + radius (no hard one-line accent), with a little lift. */
  .service-card { background: var(--warm-white); padding: 40px 32px; border: 1px solid var(--rule); border-radius: 14px; box-shadow: 0 8px 24px rgba(92,119,130,0.06); display: flex; flex-direction: column; }
  /* Bespoke sage line icons (replaced the OS emoji so they render identically everywhere and match the brand). */
  .service-card-icon { display: block; width: 38px; height: 38px; margin-bottom: 20px; color: var(--green); }
  .service-card h3 { font-size: 25px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 12px; color: var(--text); }
  .service-card p { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 24px; }
  .service-list { list-style: none; border-top: 1px solid var(--rule); padding-top: 22px; margin-top: auto; }
  .service-list li { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); padding: 8px 0; border-bottom: 1px dotted var(--rule); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .service-list li:last-child { border-bottom: none; }
  .service-list .price { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 18px; color: var(--green-deep); font-weight: 400; letter-spacing: 0; text-transform: none; white-space: nowrap; }
  /* Reset Cleans has no set rates yet — a soft note instead of a price table. */
  .service-note { margin-top: auto; border-top: 1px solid var(--rule); padding-top: 22px; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 19px; line-height: 1.5; color: var(--green-deep); }

  /* THE GOOD TURN TOUCHES */
  #touches { background: var(--warm-white); }
  .touches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 8px; }
  .touches-list { list-style: none; }
  .touches-list li { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.6; color: var(--text); padding: 14px 0 14px 30px; border-bottom: 1px solid var(--rule); position: relative; }
  .touches-list li:last-child { border-bottom: none; }
  /* Tiny sage leaf marker — keeps the green-led identity, with pink reserved as an accent elsewhere. */
  .touches-list li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 9px; height: 9px; border-radius: 0 50% 0 50%; background: var(--green); }

  /* HOW IT WORKS */
  #how { background: var(--green-deep); color: var(--warm-white); }
  #how .section-label { color: var(--green-light); }
  #how .section-title { color: var(--warm-white); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 56px; }
  .step { text-align: center; padding: 0 16px; }
  .step-number { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 16px; display: block; }
  .step h3 { font-size: 22px; font-weight: 600; letter-spacing: 1px; margin-bottom: 12px; color: var(--warm-white); }
  .step p { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65); }

  /* PRICING */
  #pricing { background: var(--warm-white); }
  .pricing-note { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 19px; line-height: 1.7; color: var(--text-light); max-width: 560px; margin-bottom: 32px; }
  /* Rate pill moved off pink onto green; softened to a rounded pill. */
  .rate-pill { display: inline-block; background: var(--green-pale); border: 1px solid var(--green-light); border-radius: 40px; padding: 12px 28px; margin-bottom: 48px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--green-deep); letter-spacing: 1px; }
  .pricing-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  .pricing-table h3 { font-family: 'Jost', sans-serif; font-size: 9.5px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--green-deep); padding-bottom: 12px; border-bottom: 1px solid var(--green-light); }
  .price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dotted var(--rule); }
  .price-row:last-child { border-bottom: none; }
  .price-row-name { font-size: 18px; color: var(--text); }
  .price-row-detail { font-style: italic; font-size: 13px; color: var(--text-light); display: block; margin-top: 2px; }
  .price-row-amount { font-size: 20px; font-weight: 600; color: var(--green-deep); }
  .price-row-amount .from { font-size: 13px; font-weight: 300; font-style: italic; color: var(--text-light); }

  /* TESTIMONIALS */
  #testimonials { background: var(--pink-light); text-align: center; position: relative; }
  #testimonials::before { content: ""; position: absolute; inset: 0; background: rgba(253,232,235,0.88); z-index: 0; }
  #testimonials .section-inner { position: relative; z-index: 1; }
  .testimonial-placeholder { max-width: 600px; margin: 0 auto; padding: 40px 0; }
  .testimonial-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 34px; font-weight: 600; letter-spacing: 0.5px; line-height: 1.2; color: var(--pink-deep); margin-bottom: 18px; }
  .testimonial-body { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 21px; line-height: 1.75; color: var(--text); }

  /* CONTACT */
  #contact { background: var(--cream); text-align: center; }
  #contact .section-inner { max-width: 700px; }
  #contact .section-image { height: 280px; margin-bottom: 44px; }
  .enquiry-form { width: 100%; margin: 0 auto 40px; text-align: left; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .form-group label { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-light); }
  .form-group input, .form-group select, .form-group textarea { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; color: var(--text); background: transparent; border: none; border-bottom: 1px solid var(--rule); padding: 10px 0; outline: none; transition: border-color 0.2s; width: 100%; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--green); }
  .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
  .form-group textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
  .form-group input[type="date"] { color: var(--text); }
  .form-submit { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--warm-white); background: var(--green); border: none; padding: 16px 40px; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
  .form-submit:hover { background: var(--green-deep); }
  .form-success { display: none; font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 20px; color: var(--green-deep); padding: 24px 0; text-align: center; }
  @media (max-width: 768px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
  .contact-sub { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 20px; line-height: 1.7; color: var(--text-light); margin-bottom: 40px; }
  .contact-options { display: flex; flex-direction: column; gap: 20px; align-items: center; margin-bottom: 40px; }
  .contact-link { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-deep); text-decoration: none; border-bottom: 1px solid var(--green-light); padding-bottom: 4px; transition: border-color 0.2s, color 0.2s; }
  .contact-link:hover { color: var(--pink-deep); border-color: var(--pink); }
  .contact-note { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-light); }

  /* FOOTER */
  footer { background: var(--text); color: rgba(255,255,255,0.5); text-align: center; padding: 40px; }
  .footer-brand { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 2px; display: block; margin-bottom: 12px; }
  footer p { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; line-height: 2; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    body > nav { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-cta { margin-left: auto; }
    /* Nav links become a dropdown panel below the bar, shown when .open */
    .nav-links {
      display: none;
      position: absolute; top: 64px; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: rgba(255,252,248,0.98); backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--rule);
      padding: 6px 20px 14px;
      box-shadow: 0 12px 24px rgba(40,54,60,0.10);
    }
    .nav-links.open { display: flex; }
    .nav-links li { list-style: none; }
    .nav-links a { display: block; padding: 15px 2px; font-size: 12px; border-bottom: 1px solid var(--rule); }
    .nav-links li:last-child a { border-bottom: 0; }
    section { padding: 70px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-aside { border-left: none; border-top: 2px solid var(--slate-light); padding-left: 0; padding-top: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .touches-grid { grid-template-columns: 1fr; gap: 36px; }
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .pricing-tables { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
  }

/* ============================================================
   ADDITIONS — pricing page, footer nav, active nav, form bits
   ============================================================ */

/* Accessibility: always-visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px;
}

/* Active nav item (used on the pricing page) */
.nav-links a.active { color: var(--green-deep); border-bottom: 2px solid var(--green); padding-bottom: 3px; }

/* Footer navigation (also gives mobile users a way to reach every section) */
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; margin: 4px 0 22px; }
.footer-links a { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.95); }

/* Homepage service cards — fuller description + group CTA (prices removed) */
.service-card p.service-card-desc { font-style: normal; font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 0; }
.services-cta { text-align: center; margin-top: 46px; }

/* Utility section backgrounds (pricing page rhythm) */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--warm-white); }
.bg-pale  { background: var(--green-pale); }

/* ---- Pricing page hero ---- */
.page-hero {
  position: relative; min-height: 66vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 150px 40px 90px;
  background: url("images/pricing-hero-living-room.jpg") center center/cover no-repeat; overflow: hidden;
}
.page-hero-overlay { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(40,54,60,0.52) 0%, rgba(40,54,60,0.34) 55%, rgba(40,54,60,0.56) 100%); }
.page-hero > *:not(.page-hero-overlay) { position: relative; z-index: 1; }
.page-hero .section-label { color: rgba(255,255,255,0.85); }
.page-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; color: #fff;
  font-size: clamp(40px, 6vw, 66px); font-weight: 600; letter-spacing: 1px; line-height: 1.08; margin-bottom: 22px; max-width: 760px; }
.page-hero-sub { font-family: 'EB Garamond', Georgia, serif; color: rgba(255,255,255,0.92);
  font-size: clamp(17px, 2.1vw, 21px); line-height: 1.75; max-width: 640px; margin: 0 auto 14px; }
.page-hero-sub.lead { font-style: italic; color: #fff; font-size: clamp(18px, 2.4vw, 23px); margin-bottom: 22px; }
.page-hero-actions { display: flex; gap: 18px 26px; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 30px; }
.hero-textlink { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 4px; transition: border-color 0.2s; }
.hero-textlink:hover { border-color: #fff; }

/* ---- Pricing page prose + blocks ---- */
.prose p { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.8; color: var(--text); margin-bottom: 18px; max-width: 700px; }
.prose p:last-child { margin-bottom: 0; }
.prose p.lede { font-style: italic; font-size: 21px; color: var(--green-deep); }
.block-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 27px; font-weight: 600; letter-spacing: 0.3px; color: var(--text); margin: 0 0 14px; }
.price-headline { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px, 4vw, 34px); font-weight: 600; color: var(--green-deep); margin: 2px 0 6px; letter-spacing: 0.3px; }
.note { font-family: 'EB Garamond', Georgia, serif; font-size: 16px; line-height: 1.7; color: var(--text-light); margin-top: 22px; max-width: 700px; }
.note strong { color: var(--text); font-weight: 600; }
.subblock + .subblock { margin-top: 48px; }

/* Standout statement lines, in the site's serif voice */
.statement { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 300;
  font-size: clamp(22px, 3vw, 29px); line-height: 1.4; color: var(--green-deep); text-align: center; max-width: 660px; margin: 40px auto 0; }

/* Highlighted information panel */
.panel { background: var(--green-pale); border: 1px solid var(--green-light); border-left: 4px solid var(--green); border-radius: 12px; padding: 28px 32px; margin-top: 36px; max-width: 760px; }
.panel.slate { background: #eef3f4; border-color: var(--slate-light); border-left-color: var(--slate); }
.panel h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--green-deep); margin-bottom: 10px; letter-spacing: 0.2px; }
.panel.slate h3 { color: var(--slate-deep); }
.panel p { font-family: 'EB Garamond', Georgia, serif; font-size: 16.5px; line-height: 1.7; color: var(--text); margin-bottom: 10px; }
.panel p:last-child { margin-bottom: 0; }

/* ---- Pricing tables (real <table>, stack on mobile) ---- */
.price-table { width: 100%; border-collapse: collapse; margin: 6px 0 0; }
.price-table th { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--slate-deep); text-align: left; padding: 0 0 14px; border-bottom: 1px solid var(--green-light); }
.price-table th:last-child { text-align: right; }
.price-table td { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; color: var(--text); padding: 15px 0; border-bottom: 1px dotted var(--rule); vertical-align: top; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--green-deep); padding-left: 18px; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .sub { display: block; font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 13.5px; color: var(--text-light); margin-top: 3px; font-weight: 400; }
.price-table tr.total td { border-top: 2px solid var(--green-light); border-bottom: none; padding-top: 18px; font-weight: 600; }
.price-table tr.total td:last-child { font-size: 22px; }

.table-wrap { max-width: 720px; }

/* Worked example card */
.example-card { background: var(--warm-white); border: 1px solid var(--rule); border-radius: 16px; box-shadow: 0 14px 40px rgba(92,119,130,0.10); padding: 40px; max-width: 640px; margin-top: 8px; }
.example-card .block-title { margin-bottom: 6px; }
.example-card .example-meta { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 16px; color: var(--text-light); margin-bottom: 22px; }

/* Included checklist */
.checklist { list-style: none; columns: 2; column-gap: 52px; margin-top: 10px; max-width: 760px; }
.checklist li { break-inside: avoid; font-family: 'EB Garamond', Georgia, serif; font-size: 17px; line-height: 1.5; color: var(--text); padding: 10px 0 10px 30px; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 3px; top: 0.7em; width: 11px; height: 6px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

/* Reset clean suitability list (simple ticked list, single column) */
.tick-list { list-style: none; margin: 6px 0 0; max-width: 700px; }
.tick-list li { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.5; color: var(--text); padding: 10px 0 10px 30px; position: relative; }
.tick-list li::before { content: ""; position: absolute; left: 3px; top: 0.62em; width: 11px; height: 6px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

/* CTA row used inside pricing sections */
.inline-cta { margin-top: 36px; }

/* ---- Enquiry form: checkbox group + fieldset (optional services) ---- */
.form-group fieldset { border: none; padding: 0; margin: 0; }
.form-group legend { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 14px; padding: 0; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.checkbox-group label { display: flex; align-items: flex-start; gap: 10px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; letter-spacing: 0; text-transform: none; color: var(--text); cursor: pointer; line-height: 1.4; }
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--green); flex: 0 0 auto; }

/* ---- Responsive: stack price tables into labelled cards, no sideways scroll ---- */
@media (max-width: 768px) {
  .page-hero { min-height: 60vh; padding: 120px 24px 70px; }
  .checklist { columns: 1; }
  .checkbox-group { grid-template-columns: 1fr; }
  .example-card { padding: 28px 22px; }

  /* visually hide the header row but keep it for screen readers */
  .price-table thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .price-table tr { display: block; border: 1px solid var(--rule); border-radius: 10px; background: var(--warm-white); padding: 4px 16px; margin-bottom: 14px; }
  .price-table td { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; text-align: left; padding: 11px 0; border-bottom: 1px dotted var(--rule); }
  .price-table tr td:last-child { border-bottom: none; padding-left: 0; }
  .price-table td::before { content: attr(data-label); font-family: 'Jost', sans-serif; font-size: 9.5px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); flex: 0 0 auto; padding-top: 3px; }
  .price-table td:last-child { color: var(--green-deep); }
  .price-table .sub { margin-top: 2px; }
  .price-table tr.total { background: var(--green-pale); border-color: var(--green-light); }
  .price-table tr.total td { border-top: none; padding-top: 11px; }
}

/* Multi-paragraph note blocks inherit the note styling */
.note p { font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; margin: 0 0 12px; }
.note p:last-child { margin-bottom: 0; }

/* Reusable CTA row (hero + closing) */
.cta-row { display: flex; gap: 18px 26px; flex-wrap: wrap; align-items: center; margin-top: 34px; }
.cta-row.center { justify-content: center; }

/* Centered section helper (closing block) */
.text-center { text-align: center; }
.text-center .prose p, .text-center .statement { margin-left: auto; margin-right: auto; }

/* Pricing page imagery: lead image spacing + image-beside-text split */
.section-image.lead-img { margin-bottom: 50px; }
.pricing-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 44px; }
.pricing-split .section-title { margin-bottom: 18px; }
.pricing-split .prose p { margin-bottom: 0; }
@media (max-width: 768px) {
  .pricing-split { grid-template-columns: 1fr; gap: 30px; }
  .section-image.lead-img { margin-bottom: 36px; }
}

/* ============================================================
   PRICING PAGE v2 — fewer containers: jump links, bolt-on cards,
   two-column blocks, compact price rows
   ============================================================ */
html { scroll-padding-top: 72px; } /* offset for the fixed nav on anchor jumps */

/* Three service jump links beneath the hero */
.jump-band { background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 24px; text-align: center; }
.service-jump a { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-deep); text-decoration: none; transition: color 0.2s; }
.service-jump a:hover { color: var(--green); }
.service-jump .sep { color: var(--text-light); margin: 0 16px; }

/* Compact price rows inside bolt-on cards */
.price-rows { list-style: none; margin-top: 18px; border-top: 1px solid var(--rule); }
.price-rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dotted var(--rule); font-family: 'EB Garamond', Georgia, serif; font-size: 16px; line-height: 1.4; color: var(--text); }
.price-rows li:last-child { border-bottom: none; }
.price-rows .amt { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; font-weight: 600; color: var(--green-deep); white-space: nowrap; }

/* Two-column content blocks (home care/reset, travel/example) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.col-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 3.6vw, 38px); font-weight: 600; letter-spacing: 0.5px; line-height: 1.12; margin-bottom: 14px; color: var(--text); }

/* Linen callout: panel sits flush beside its image, with quieter supporting copy */
.pricing-split .panel { margin-top: 0; }
.panel .panel-sub { font-size: 15px; line-height: 1.65; color: #555; margin-top: 14px; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .service-jump .sep { margin: 0 10px; }
}

/* ============================================================
   THE GOOD TURN NOTE — feature, sample card, trust strip, form help
   ============================================================ */

/* Four-step How It Works: 2x2 on tablet, 1 column on mobile (mobile rule already set) */
@media (min-width: 769px) and (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; } }

/* Good Turn Note feature section */
#good-turn-note { background: var(--cream); }
.note-feature { align-items: start; }

/* Pricing page: compact "note is included" confirmation (open, narrow green rule, no box) */
.note-confirm { margin-top: 40px; border-left: 3px solid var(--green-deep); padding-left: 26px; max-width: 720px; }
.note-confirm > p { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.7; color: var(--text); }
.note-confirm strong { font-weight: 600; color: var(--green-deep); }
.note-confirm .fine-print { margin-top: 12px; }

/* The sample note card — a thoughtful local note, not a software dashboard */
.note-card { background: var(--warm-white); border: 1px solid var(--rule); border-radius: 16px; box-shadow: 0 14px 38px rgba(92,119,130,0.12); overflow: hidden; }
/* Restrained tartan ribbon across the top */
.note-card-ribbon { height: 7px; background:
  repeating-linear-gradient(90deg, var(--green-deep) 0 14px, var(--green) 14px 20px, var(--slate) 20px 30px, var(--pink-deep) 30px 33px, var(--green) 33px 40px); opacity: 0.9; }
.note-card-head { display: flex; align-items: center; gap: 11px; padding: 18px 26px; border-bottom: 1px solid var(--rule); background: var(--green-pale); }
.note-card-head svg { width: 22px; height: 26px; flex: 0 0 auto; }
.note-card-head span { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 600; letter-spacing: 0.5px; color: var(--green-deep); }
.note-card-body { padding: 26px 28px 28px; }
.note-card-body > * { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.6; color: var(--text); }
.note-time { font-weight: 500; margin-bottom: 18px; }
.note-checks { list-style: none; margin: 0 0 18px; }
.note-checks li { position: relative; padding: 6px 0 6px 30px; }
.note-checks li::before { content: ""; position: absolute; left: 3px; top: 0.7em; width: 12px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.note-card-body p + p { margin-top: 14px; }
.note-photos { margin-top: 18px; padding-top: 16px; border-top: 1px dotted var(--rule); color: var(--green-deep); font-weight: 500; }

/* Trust strip near the enquiry section */
#trust { background: var(--warm-white); }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 8px; }
.trust-item { border-top: 2px solid var(--green-light); padding-top: 20px; }
.trust-item h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 21px; font-weight: 600; letter-spacing: 0.3px; color: var(--green-deep); margin-bottom: 10px; line-height: 1.2; }
.trust-item p { font-family: 'EB Garamond', Georgia, serif; font-size: 17px; line-height: 1.6; color: var(--text); }
@media (min-width: 769px) and (max-width: 1000px) { .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 768px) { .trust-strip { grid-template-columns: 1fr; gap: 26px; } }

/* Form helper text (readable, not pale grey, upright) */
.field-help { font-family: 'EB Garamond', Georgia, serif; font-size: 14.5px; line-height: 1.5; color: #5d5d5d; margin-top: 4px; text-transform: none; letter-spacing: 0; }

/* Pricing-page Good Turn Note panel sits inside the changeover area */
.panel .panel-list { list-style: none; margin: 10px 0 0; }
.panel .panel-list li { position: relative; padding: 6px 0 6px 26px; font-family: 'EB Garamond', Georgia, serif; font-size: 16.5px; line-height: 1.55; color: var(--text); }
.panel .panel-list li::before { content: ""; position: absolute; left: 2px; top: 0.66em; width: 11px; height: 6px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

/* "When a property needs extra care" — a quiet transparency note, not an alert */
.section-slim { padding-top: 60px; padding-bottom: 60px; }
/* Open transparency note: just a narrow green rule on the left, no container, no fill */
.transparency-note { background: transparent; border: none; border-left: 3px solid var(--green-deep); border-radius: 0; padding: 2px 0 2px 30px; max-width: 720px; }
.transparency-note h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 600; letter-spacing: 0.2px; color: var(--text); margin-bottom: 12px; }
.transparency-note p { font-family: 'EB Garamond', Georgia, serif; font-size: 17px; line-height: 1.7; color: var(--text); }
.transparency-note .rate-line { display: block; background: none; border: none; padding: 0; margin: 14px 0 12px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 3vw, 27px); font-weight: 700; letter-spacing: 0.3px; color: var(--green-deep); }
.transparency-note .clarify { font-size: 15.5px; line-height: 1.6; color: #555; }

/* ============================================================
   PRICING DE-BOXING — green as accent, open editorial layouts.
   The paper note is the page's single intentional card.
   ============================================================ */

/* The Good Turn Note as a real paper note (the one allowed card) */
.paper-note { background: var(--warm-white); border: 1px solid var(--rule); border-radius: 12px; box-shadow: 0 6px 20px rgba(92,119,130,0.07); overflow: hidden; max-width: 620px; }
.paper-note-ribbon { height: 6px; background: repeating-linear-gradient(90deg, var(--green-deep) 0 14px, var(--green) 14px 20px, var(--slate) 20px 30px, var(--pink-deep) 30px 33px, var(--green) 33px 40px); opacity: 0.82; }
.paper-note-body { padding: 28px 32px 30px; }
.paper-note-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 23px; font-weight: 600; letter-spacing: 0.3px; color: var(--green-deep); margin-bottom: 16px; }
.paper-note-body p { font-family: 'EB Garamond', Georgia, serif; font-size: 17px; line-height: 1.7; color: var(--text); }
.paper-note-body p + p { margin-top: 14px; }
.paper-note-body .sign { margin-top: 16px; }

/* Prominent linen statement (open, no box) */
.linen-statement { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 2.6vw, 27px); font-weight: 600; line-height: 1.25; letter-spacing: 0.3px; color: var(--green-deep); margin-bottom: 18px; }

/* Open bolt-on columns with fine vertical dividers (stack with horizontal rules on mobile) */
.bolt-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; }
.bolt-col { padding: 0 32px; }
.bolt-col:first-child { padding-left: 0; }
.bolt-col:last-child { padding-right: 0; }
.bolt-col + .bolt-col { border-left: 1px solid var(--rule); }
.bolt-col h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; letter-spacing: 0.3px; color: var(--green-deep); margin-bottom: 8px; }
.bolt-col .bolt-desc { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 15px; line-height: 1.55; color: var(--text-light); margin-bottom: 4px; }

/* De-boxed worked example: open table */
.example-meta { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-size: 16px; color: var(--text-light); margin-bottom: 18px; }

/* Readable secondary copy (replaces filled-panel sub-text) */
.fine-print { font-family: 'EB Garamond', Georgia, serif; font-size: 15px; line-height: 1.65; color: #555; margin-top: 16px; max-width: 600px; }

@media (max-width: 768px) {
  .bolt-columns { grid-template-columns: 1fr; }
  .bolt-col { padding: 0; }
  .bolt-col + .bolt-col { border-left: none; border-top: 1px solid var(--rule); margin-top: 30px; padding-top: 30px; }
}

/* Make the logo read as a clickable home link */
.nav-brand { transition: color 0.2s; }
.nav-brand:hover { color: var(--green-deep); }

/* ============================================================
   THE GOOD TURN CUPBOARD — future-shop teaser (intentionally editorial,
   not e-commerce: no cards, no prices, no buy buttons).
   ============================================================ */
#cupboard { text-align: center; }
#cupboard .section-inner { max-width: 760px; }
.cupboard-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.4;
  color: var(--green-deep); margin-bottom: 22px;
}
.cupboard-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px; line-height: 1.8; color: var(--text);
  max-width: 640px; margin: 0 auto 30px;
}
/* Category list — centred block, left-aligned items with the brand leaf marker */
.cupboard-list {
  list-style: none; display: inline-block; text-align: left;
  margin: 0 auto 30px;
}
.cupboard-list li {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px; line-height: 1.6; color: var(--text);
  padding: 9px 0 9px 28px; position: relative;
}
.cupboard-list li::before {
  content: ""; position: absolute; left: 3px; top: 0.85em;
  width: 9px; height: 9px; border-radius: 0 50% 0 50%; background: var(--green);
}
.cupboard-note {
  font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-size: 16px; line-height: 1.7; color: var(--text-light);
  max-width: 560px; margin: 0 auto;
}

/* ============================================================
   BRAND LOGO — the circular badge, used in nav, hero, about & footer.
   The source PNG is square with a cream background; border-radius:50%
   crops it to the badge's circle. Sizes are per-placement.
   ============================================================ */
/* Nav: the logo is the brand mark in the header (wordmark text removed) */
.nav-brand { display: inline-flex; align-items: center; }
.nav-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }

/* About: badge atop the founder-quote column */
.about-logo {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  display: block; margin-bottom: 26px;
  box-shadow: 0 12px 30px rgba(92,119,130,0.16);
}

/* Footer: light badge sitting on the dark footer */
.footer-logo {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  display: block; margin: 0 auto 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
}

/* ============================================================
   FAQ — native <details> accordion, no JS
   ============================================================ */
.faq-list { max-width: 760px; margin-top: 10px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600;
  color: var(--text); padding: 24px 44px 24px 0; cursor: pointer; list-style: none;
  position: relative; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 28px; line-height: 1; color: var(--green);
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item summary:hover { color: var(--green-deep); }
.faq-answer { padding: 0 44px 24px 0; }
.faq-answer p { font-family: 'EB Garamond', Georgia, serif; font-size: 17px; line-height: 1.75; color: var(--text-light); margin-bottom: 12px; max-width: 700px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   LEGAL / PRIVACY PAGE — plain, readable long-form text
   ============================================================ */
.legal { max-width: 760px; }
.legal .updated { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; display: block; }
.legal h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 25px; font-weight: 600; letter-spacing: 0.3px; color: var(--green-deep); margin: 44px 0 14px; }
.legal p { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.7; color: var(--text); margin-bottom: 8px; }
.legal a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }
