/* ============================================================
   THE BRAMBLY DOG — styles.css
   Colours: #660c13 (red) | #EDE3CC (cream) | #0d0d0d (black)
   Fonts:   Noto Serif Display (headings) | DM Sans (body)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #660c13;
  --red-dark:   #4d0a0f;
  --red-light:  #7a0f17;
  --cream:      #F0E8D6;
  --cream-dark: #E4D9C3;
  --black:      #0d0d0d;
  --white:      #F8F3EC;
  --grey-50:    #EDE8DC;
  --grey-100:   #E7E0D4;
  --grey-300:   #c8c3bb;
  --grey-500:   #8a8278;
  --grey-700:   #4a4540;

  --font-serif: 'Noto Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --nav-height:    101px;
  --topbar-height: 41px;
  --offset:        calc(var(--nav-height) + var(--topbar-height));

  --container:     1200px;
  --container-sm:  760px;
  --radius:        4px;
  --radius-md:     8px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

em { font-style: italic; }

p + p { margin-top: 1.1em; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-sm);
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--red); color: var(--cream); }
.section--red    { background: var(--red); color: var(--cream); }

.section-intro {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-intro--light .section-title,
.section-intro--light .section-overtitle {
  color: var(--cream);
}

/* When the overtitle follows a heading it acts as a subtitle */
.section-intro--light .section-overtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.8;
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--red);
}

.section-overtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-overtitle--dark {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
  opacity: 0.75;
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.section-cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--red {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--cream {
  background: var(--cream);
  color: var(--red);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--cream-dark);
  border-color: var(--cream-dark);
}

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover {
  background: var(--cream);
  color: var(--red);
}

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  height: var(--topbar-height);
  background: var(--black);
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: sticky;
  top: 0;
  z-index: 200;
}

.top-bar-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-contact,
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.top-bar-link:hover { opacity: 1; }

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--red);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}


.price-logo-img {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.contact-logo-img {
  max-width: 280px;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.logo-emblem {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-emblem svg { width: 100%; height: 100%; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-the {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--red);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.99rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--grey-700);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--red);
  background: var(--cream-dark);
}

.nav-link.active {
  color: var(--red);
  font-weight: 500;
}

.nav-link--cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.nav-link--cta:hover {
  background: var(--red-dark) !important;
  color: var(--cream) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--red);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Page Sections (SPA) ───────────────────────────────────── */
.page { display: none; }
.page.active {
  display: block;
  animation: pageIn var(--transition-slow) ease both;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Page Hero Banner ──────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

#page-services .page-hero {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.page-hero--cream {
  background: var(--cream);
}

.page-hero--dark {
  background: var(--red);
  color: var(--cream);
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--red);
}

.page-hero--dark .page-title {
  color: var(--cream);
}

.page-hero--cream .page-title {
  color: var(--red);
}

.page-subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.85;
  color: var(--cream);
}

.page-hero-botanical {
  position: absolute;
  right: clamp(1rem, 5vw, 6rem);
  top: 0;
  bottom: 0;
  width: 60px;
  display: flex;
  align-items: center;
  opacity: 0.35;
  color: var(--red);
}

.page-hero--dark .page-hero-botanical {
  color: var(--cream);
  opacity: 0.2;
}

.page-hero-botanical svg { height: 100%; width: auto; }

.page-hero-botanical--right { right: clamp(1rem, 5vw, 6rem); left: auto; }

/* ── HOME HERO ─────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--offset));
  background: var(--red);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--red);
  /* To add hero image:
     background-image: url('images/hero.jpg');
     background-size: cover;
     background-position: center right;
  */
}

/* Hero photo — PNG already has background removed by ML processing.
   Anchored at left: 50% so the image lives in the right half of the hero.
   Centred within that half by letting equal space sit either side of the subject. */
.hero-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 165%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
  display: block;

  /* Fade in from the left, fade out to the right — both sides melt into the red */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, black 20%, black 78%, rgba(0,0,0,0.6) 92%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, black 20%, black 78%, rgba(0,0,0,0.6) 92%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Strong red left (text legibility), fades right so photo shows naturally */
  background: linear-gradient(
    to right,
    rgba(102,12,19,0.98) 0%,
    rgba(102,12,19,0.96) 30%,
    rgba(102,12,19,0.55) 52%,
    rgba(102,12,19,0.08) 70%,
    transparent 82%
  );
}

.hero-botanical {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  display: flex;
  align-items: center;
  color: var(--cream);
  opacity: 0.12;
  pointer-events: none;
}

.hero-botanical--right {
  right: clamp(1rem, 6vw, 6rem);
}

.hero-botanical--left {
  left: clamp(1rem, 4vw, 4rem);
  transform: scaleX(-1);
}

.hero-botanical--corner-bl {
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  bottom: 0;
  top: auto;
  width: 80px;
  height: 200px;
  opacity: 0.15;
}

.hero-botanical svg { width: 100%; height: auto; }

.hero-content {
  position: relative;
  z-index: 2;
  /* Left-anchored — no auto-margin centering */
  max-width: 52%;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.hero-location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  /* Sized so "The Brambly Dog" stays on one line within the left column */
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--cream);
  opacity: 0.88;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ── HOME – HOW WE CAN HELP ────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.help-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.help-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.help-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.25rem;
  color: var(--red);
}

.help-icon svg { width: 100%; height: 100%; }

.help-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.help-list {
  text-align: left;
  display: inline-block;
}

.help-list li {
  font-size: 0.925rem;
  font-weight: 300;
  color: var(--red);
  padding: 0.2rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.help-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.6;
}

/* ── HOME – TESTIMONIAL PREVIEW ────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonials-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials-grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.testimonial-card {
  background: rgba(237,227,204,0.1);
  border: 1px solid rgba(237,227,204,0.18);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card--light {
  background: var(--white);
  border: 1px solid var(--grey-100);
  color: var(--black);
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(237,227,204,0.2);
  border: 1.5px solid rgba(237,227,204,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  flex-shrink: 0;
}

.testimonial-avatar--red {
  background: var(--cream);
  border-color: var(--cream-dark);
  color: var(--red);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card blockquote p {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
}

.testimonial-card--light blockquote p {
  color: var(--grey-700);
  opacity: 1;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-style: normal;
  margin-top: auto;
}

.testimonial-card cite strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.testimonial-card--light cite strong {
  color: var(--red);
}

.testimonial-card cite span {
  font-size: 0.78rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
}

/* ── ABOUT ─────────────────────────────────────────────────── */

.about-hero-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.about-hero-section .container {
  width: 100%;
}

.about-page-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--red);
  text-align: center;
  margin-bottom: 2rem;
}

.about-bio {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  aspect-ratio: 1179 / 1282;
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-photo--sm {
  aspect-ratio: 2/3;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--grey-500);
  font-size: 0.85rem;
  text-align: center;
  gap: 0.3rem;
  border: 2px dashed var(--cream-dark);
}

.photo-placeholder small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.about-text .about-intro,
.about-text p {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--red);
}

/* Credentials — 3 horizontal cards */
.credentials-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.credentials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.credential-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.credential-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.credential-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 1.25rem;
  color: var(--red);
}

.credential-card-icon svg {
  width: 22px;
  height: 22px;
}

.credential-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.credential-card p {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.7;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-img {
  position: relative;
  aspect-ratio: 16 / 10.35;
  overflow: hidden;
  background: var(--red);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: rgba(237,227,204,0.5);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  padding: 1rem;
  text-align: center;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(237,227,204,0.2);
  border-radius: var(--radius);
}

.service-card-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--cream);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.service-price {
  font-size: 0.85rem !important;
  color: var(--grey-500) !important;
  margin-bottom: 0 !important;
}

.service-price strong {
  color: var(--red);
  font-weight: 600;
}

.service-price a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-style: italic;
}

/* ── PRICE LIST ────────────────────────────────────────────── */
.price-list-wrap {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.price-list {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.price-list-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-logo-mark {
  width: 144px;
  height: 144px;
  color: var(--red);
  flex-shrink: 0;
}

.price-logo-mark svg { width: 100%; height: 100%; }

.price-list-brand {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.price-list-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--red);
  font-weight: 400;
  text-align: left;
  line-height: 1;
}

.price-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  text-align: left;
}

.price-category {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.price-category:nth-child(even) { border-right: none; }
.price-category:nth-last-child(-n+2) { border-bottom: none; }

.price-category h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-dark);
}

.price-category ul { display: flex; flex-direction: column; gap: 0.6rem; }

.price-category li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--grey-700);
}

.price-category li .price {
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  font-size: 0.95rem;
}

.price-list-subtext {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--red);
  opacity: 0.8;
  text-align: center;
  margin-bottom: 2rem;
}

.price-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--grey-500);
}

.price-enquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--grey-700);
}

.price-enquiry a {
  color: var(--red);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── TESTIMONIALS FULL ─────────────────────────────────────── */
.testimonials-rating {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-100);
}

.star-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.star-row svg {
  width: 22px;
  height: 22px;
  color: #c9940a;
}

.testimonials-rating p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--grey-500);
  font-style: italic;
}

/* ── FAQ layout — title/list left, video right ──────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-main {
  min-width: 0;
}

.faq-subtitle {
  color: var(--red);
  opacity: 0.7;
}

.faq-video-rect {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-video-rect video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-video-rect { max-width: 320px; margin: 2rem auto 0; }
}

/* ── FAQs ──────────────────────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-100);
}

.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--black);
  gap: 1.5rem;
  transition: color var(--transition);
}

.faq-trigger:hover { color: var(--red); }

.faq-trigger[aria-expanded="true"] { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-300);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--grey-500);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  border-color: var(--red);
  transform: rotate(45deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::before,
.faq-trigger[aria-expanded="true"] .faq-icon::after {
  background: var(--red);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 1.4rem;
  font-size: 0.925rem;
  color: var(--grey-700);
  line-height: 1.8;
}

.faq-footer-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-500);
}

.faq-footer-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-hero {
  background: var(--red);
  min-height: calc(100vh - var(--offset));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.contact-heading em { font-style: italic; font-weight: 300; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.975rem;
  color: var(--cream);
  opacity: 0.9;
}

.contact-details li svg { flex-shrink: 0; margin-top: 2px; }

.contact-details a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}
.contact-details a:hover { opacity: 0.75; }

.contact-social-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.1rem;
}

.contact-social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237,227,204,0.1);
  border: 1px solid rgba(237,227,204,0.25);
  color: var(--cream);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: background var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: rgba(237,227,204,0.18);
  border-color: rgba(237,227,204,0.45);
}

.contact-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo-svg {
  width: 100%;
  max-width: 320px;
  color: var(--cream);
  opacity: 0.25;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--cream);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.75rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.footer-nav a {
  font-size: 0.825rem;
  color: rgba(237,227,204,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }

.footer-contact {
  display: none;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.8rem;
  color: rgba(237,227,204,0.7);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(237,227,204,0.2);
  color: rgba(237,227,204,0.7);
  transition: color var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  color: var(--cream);
  border-color: rgba(237,227,204,0.5);
}

.footer-base {
  border-top: 1px solid rgba(237,227,204,0.1);
  height: 34px;
  display: flex;
  align-items: center;
}

.footer-base p {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  font-size: 0.72rem;
  color: rgba(237,227,204,0.4);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ── LEAF MOTIF ────────────────────────────────────────────── */
/* Inline SVG only — currentColor tinting requires inlined markup */
.leaf-motif {
  position: absolute;
  height: 75vh;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.14;
}
/* Left edge — bleeds off screen, tilted slightly */
.leaf-motif--left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
}
/* Right edge — mirrored, bleeds off screen */
.leaf-motif--right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1) rotate(-10deg);
}
/* Top-right corner variant */
.leaf-motif--top-right {
  right: -50px;
  top: -20px;
  transform: scaleX(-1) rotate(14deg);
}
/* Bottom-left corner variant */
.leaf-motif--bottom-left {
  left: -50px;
  bottom: -20px;
  transform: rotate(14deg);
}

/* Tinting — light blush on red/dark, deep wine on cream/light */
.section--dark .leaf-motif,
.section--red .leaf-motif,
.home-hero .leaf-motif,
.contact-hero .leaf-motif,
.page-hero--dark .leaf-motif { color: #f3ead6; }

.section--cream .leaf-motif,
.section--white .leaf-motif,
.page-hero--cream .leaf-motif { color: #7a1420; }


@media (max-width: 960px) {
  .leaf-motif { display: none; }
}

/* ── HOW WE CAN HELP — with image ──────────────────────────── */
.help-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.help-feature-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.help-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.help-cards-col .section-intro {
  text-align: left;
  margin-bottom: 1.5rem;
}

.help-grid--col {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.help-card--row {
  text-align: left;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.help-card--row .help-icon {
  margin: 0;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.help-card--row h3 {
  margin-bottom: 0.4rem;
}

.help-card--row .help-list {
  text-align: left;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .help-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .help-layout { grid-template-columns: 1fr 1.2fr; }
  .testimonials-grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-nav { gap: 0.25rem 0.6rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: var(--offset) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 50;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

  .nav-link--cta {
    margin-top: 0.5rem;
  }

  /* Top bar */
  .top-bar-contact .top-bar-link:first-child { display: none; }
  .top-bar-social .top-bar-link span { display: none; }

  /* Hero */
  .home-hero { min-height: 90svh; }
  .hero-botanical--right { width: 100px; opacity: 0.08; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  /* On small screens the cutout sits behind the text at lower opacity */
  .hero-img { height: 65%; left: 30%; opacity: 0.3; }
  .hero-content { max-width: 100%; }

  /* Sections */
  .help-layout { grid-template-columns: 1fr; }
  .help-feature-img { aspect-ratio: 16 / 9; }
  .help-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .testimonials-grid--3 { grid-template-columns: 1fr; }
  .about-bio { grid-template-columns: 1fr; }
  .credentials-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-logo-block { display: none; }
  .price-categories { grid-template-columns: 1fr; }
  .price-category:nth-child(even) { border-right: none; }
  .price-category { border-right: none; }

  /* Footer */
  .footer-nav { display: none; }
}

@media (max-width: 480px) {
  .page-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .testimonials-grid--auto { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .price-list-header { flex-direction: column; text-align: center; }
  .price-list-title { text-align: center; }
  .contact-social-links { flex-direction: column; }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .top-bar, .site-header, .site-footer, .hero-botanical,
  .hero-actions, .section-cta { display: none; }
  .page { display: block !important; }
}
