:root {
  /* Colors */
  --forest: #14261a;
  --forest-2: #203b29;
  --forest-3: #31573d;
  --cream: #f7f0df;
  --cream-2: #eee2c8;
  --paper: #fffaf0;
  --gold: #a98243; /* Muted gold */
  --gold-light: #d3b778;
  --ink: #122016;
  --muted: #58705e;
  --line: rgba(20, 38, 26, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);

  /* Layout */
  --shell-width: 1200px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --section-pad-lg: clamp(60px, 7vw, 104px);
  --section-pad-sm: clamp(42px, 5vw, 72px);

  /* Typography */
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --fs-hero: clamp(3.25rem, 5.7vw, 4.9rem);
  --fs-h2-lg: clamp(2.5rem, 4.25vw, 3.65rem);
  --fs-h2-sm: clamp(2.2rem, 3.7vw, 3.15rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.875rem);
  --fs-faq: clamp(1.08rem, 1.35vw, 1.3rem);
  --fs-lead: clamp(1.0625rem, 1.2vw, 1.25rem); /* 17px -> 20px */
  --fs-body: clamp(1rem, 1.1vw, 1.125rem); /* 16px -> 18px */
  --fs-sm: clamp(0.75rem, 1vw, 0.8125rem); /* 12px -> 13px */
  --fs-xs: clamp(0.6875rem, 0.9vw, 0.75rem); /* 11px -> 12px */

  /* Components */
  --radius-sm: 12px;
  --radius-md: 28px;
  --radius-lg: 34px;
  --btn-h: 56px;
  --btn-h-sm: 52px;

  /* Effects */
  --shadow: 0 28px 70px rgba(16, 32, 21, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body { font-size: var(--fs-body); }
body.menu-open { overflow: hidden; }
img, video, iframe, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--cream); background: var(--forest); }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell-width)); margin-inline: auto; min-width: 0; }
.section { padding: var(--section-pad-lg) 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.06; }
h2 { margin-bottom: 24px; font-size: var(--fs-h2-lg); letter-spacing: -0.042em; line-height: 1.02; }
h3 { letter-spacing: -0.025em; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cream);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: var(--gold-light); }
.eyebrow.dark { color: var(--forest-3); }
.eyebrow.dark span { background: var(--gold); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: var(--btn-h);
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--forest);
  background: var(--gold-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.button-primary:hover { background: #e0c784; box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.announcement { color: #efe7d4; background: #0b1710; font-size: 0.8rem; }
.announcement-inner { 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 28px;
  letter-spacing: 0.03em;
} /* This was targeting the wrong element, now corrected */
.announcement-inner > div { display: flex; align-items: center; gap: 12px; }
.announcement-inner a { color: var(--gold-light); font-weight: 700; }
.announcement-dot { width: 3px; height: 3px; background: var(--gold-light); border-radius: 50%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--forest);
  background: rgba(247, 240, 223, 0.88);
  border-bottom: 1px solid rgba(20, 38, 26, 0.08);
  backdrop-filter: blur(18px);
} 
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 70px; gap: 28px; }
.logo-link { display: flex; align-items: center; }
.logo-link img { width: 66px; height: auto; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 2.6vw, 34px); }
.desktop-nav a { position: relative; font-size: 14.5px; font-weight: 700; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transition: right 180ms ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-cta {
  min-height: 46px;
  padding: 11px 22px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--forest-2); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--forest); transition: transform 180ms ease, opacity 180ms ease; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -48% auto;
  width: 60vw;
  aspect-ratio: 1;
  border: 1px solid rgba(211, 183, 120, 0.18);
  border-radius: 50%;
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    radial-gradient(circle at 70% 30%, rgba(169, 130, 67, 0.18), transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05), transparent 28%),
    repeating-linear-gradient(115deg, transparent 0 46px, rgba(255,255,255,0.018) 47px 48px);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid; 
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
  min-height: 610px;
  padding-block: clamp(64px, 6vw, 78px);
}
.hero-copy { max-width: 650px; min-width: 0; }
.hero h1 { margin-bottom: 28px; font-size: var(--fs-hero); letter-spacing: -0.04em; line-height: 0.99; }
.hero h1 .gold-text { color: var(--gold-light); }
.hero-lead { max-width: 545px; margin-bottom: 32px; color: rgba(247, 240, 223, 0.82); font-size: var(--fs-lead); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-actions .text-link { color: var(--cream); }
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--white-line);
  padding-top: 24px;
  color: rgba(247, 240, 223, 0.75);
  font-size: 13.5px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius-lg);
}
.hero-info-card {
  position: absolute;
  z-index: 3;
  left: -20px;
  bottom: 28px;
  min-width: 195px;
  padding: 15px 18px;
  background: #faf2df;
  border-left: 5px solid #c8a55a;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.hero-info-card h3 {
  margin: 0 0 4px;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.2;
}
.hero-info-card p {
  margin: 0;
  color: #667564;
  font-size: 12px;
}

.ticker { overflow: hidden; color: var(--forest); background: var(--gold-light); }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-height: 50px;
  padding-inline: 28px;
  animation: ticker 28s linear infinite;
}
.ticker-track span { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.ticker-track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: minmax(340px, .86fr) minmax(0, 1fr); gap: clamp(50px, 7vw, 94px); align-items: center; }
.story-media { position: relative; }
.story-copy { min-width: 0; }
.story-media::before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 55%;
  height: 55%;
  border: 1px solid rgba(169,130,67,.35);
  border-radius: 28px;
}
.video-frame { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--forest); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,22,14,.45), transparent 50%); pointer-events: none; }
.video-label { position: absolute; left: 22px; bottom: 20px; z-index: 2; display: flex; gap: 9px; align-items: center; padding: 8px 12px; color: #fff; background: rgba(10,20,13,.64); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; backdrop-filter: blur(10px); font-size: .72rem; font-weight: 700; }
.video-label span { width: 7px; height: 7px; background: #f05a4f; border-radius: 50%; box-shadow: 0 0 0 5px rgba(240,90,79,.16); }
.story-copy h2 { max-width: 760px; }
.section-intro { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.journey-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); } /* This is .simple-steps in index.html */
.journey-list li { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.journey-list > li > span { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.journey-list strong { display: block; margin-bottom: 3px; font-family: "Playfair Display", serif; font-size: 1.15rem; }
.journey-list p { margin: 0; color: var(--muted); font-size: .92rem; }

/* New Services Section */
.services-section { background: var(--paper); }
.services-header { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(34px, 5vw, 56px); align-items: end; margin-bottom: 42px; }
.services-header > * { min-width: 0; }
.services-header > p { margin-bottom: 8px; color: var(--muted); font-size: 1rem; }
.services-title { margin: 12px 0 0; max-width: 760px; color: #10291b; font-family: "Playfair Display", Georgia, serif; font-size: var(--fs-h2-lg); line-height: 1; letter-spacing: -0.04em; }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(28px, 2.7vw, 34px);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(24, 42, 28, 0.05);
  color: var(--muted);
}
.service-card--featured { background: #122d1c; color: #fff8e8; }
.service-card--wide { grid-column: 1 / -1; min-height: auto; }

.service-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-card__top span { color: var(--gold); }
.service-card__top strong { color: var(--ink); font-family: "Playfair Display", serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.service-card__top small { font-size: 0.7rem; font-weight: 500; color: var(--muted); }
.service-card--featured .service-card__top span { color: var(--gold-light); }
.service-card--featured .service-card__top strong { color: var(--gold-light); }
.service-card--featured .service-card__top small { color: rgba(255, 248, 232, 0.6); }

.service-card h3 {
  margin: 25px 0 8px;
  color: #10291b;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.4vw, 2rem);
  line-height: 1.05;
}
.service-card--featured h3 { color: #fff8e8; }
.service-card p { margin: 0; font-size: .94rem; }

.service-card__divider { width: 100%; height: 1px; margin: 24px 0 18px; background: rgba(26, 44, 30, 0.16); }
.service-card--featured .service-card__divider { background: rgba(255, 255, 255, 0.2); }

.service-card ul { margin: 0; padding: 0; list-style: none; font-size: .9rem; }
.service-card li { position: relative; margin: 8px 0; padding-left: 22px; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.service-card--wide { flex-direction: row; align-items: center; justify-content: space-between; }
.service-card__main { display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; gap: 30px; }
.service-card--wide h3 { margin-top: 0; }
.service-card--wide .text-link { color: var(--gold); white-space: nowrap; }

.difference { background: var(--paper); }
.difference-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 55px; }
.difference-heading h2 { margin-bottom: 0; }
.difference-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.difference-grid article { min-height: 300px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.difference-grid article > span { display: block; margin-bottom: 70px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.difference-grid h3 { margin-bottom: 14px; font-size: 1.45rem; }
.difference-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.pricing { background: var(--cream-2); }
.price-list { border-top: 1px solid rgba(20,38,26,.2); }
.price-row { display: grid; grid-template-columns: minmax(190px, .7fr) minmax(260px, 1fr) 200px; gap: 32px; align-items: center; min-height: 108px; padding: 20px 22px; border-bottom: 1px solid rgba(20,38,26,.2); }
.price-row.featured { color: var(--cream); background: var(--forest); border-radius: 18px 18px 0 0; }
.price-name small, .price-name strong { display: block; } 
.price-name small { margin-bottom: 4px; color: var(--gold-light); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price-name strong { font-family: "Playfair Display", serif; font-size: 1.28rem; }
.price-detail { color: var(--muted); font-size: .9rem; }
.featured .price-detail { color: rgba(247,240,223,.65); }
.price-amount { justify-self: end; white-space: nowrap; }
.price-amount strong { font-family: "Playfair Display", serif; font-size: 1.7rem; }
.price-notes { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 26px; color: var(--forest-3); font-size: .82rem; }

.reviews { color: var(--cream); background: #0f1f15; }
.reviews-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr); gap: clamp(52px, 6vw, 78px); align-items: center; }
.reviews-copy h2 { color: var(--cream); }
.reviews-copy, .reviews-copy > * { min-width: 0; }
.reviews-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(247,240,223,.66); font-size: 1.05rem; }
.review-links { margin-top: 34px; border-top: 1px solid var(--white-line); }
.review-links a { display: grid; grid-template-columns: 44px 1fr 22px; gap: 15px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--white-line); transition: padding 180ms ease; }
.review-links a:hover { padding-left: 8px; }
.review-links strong, .review-links small { display: block; }
.review-links strong { font-family: "Playfair Display", serif; }
.review-links small { color: rgba(247,240,223,.52); }
.review-brand { display: grid; place-items: center; width: 42px; height: 42px; background: #fff; border-radius: 50%; font-weight: 900; }
.google-g { color: #4285f4; font-size: 1.35rem; }
.facebook-f { color: #1877f2; font-size: 1.55rem; }
.review-links b { color: var(--gold-light); }
.review-visual { position: relative; min-height: 590px; }
.review-visual > img { width: 100%; height: 590px; object-fit: cover; border-radius: 230px 230px 28px 28px; }
.review-visual blockquote { position: absolute; left: -70px; bottom: 30px; width: min(380px, 86%); margin: 0; padding: 28px; color: var(--forest); background: var(--gold-light); border-radius: 18px; box-shadow: var(--shadow); }
.review-visual blockquote > span { position: absolute; top: -12px; left: 20px; font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; opacity: .28; }
.review-visual blockquote p { position: relative; margin-bottom: 12px; font-family: "Playfair Display", serif; font-size: 1.25rem; line-height: 1.25; }
.review-visual cite { font-style: normal; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.why-choose-card { padding: clamp(24px, 4vw, 42px); background: var(--paper); border-radius: var(--radius-md); }
.why-choose-card h2 { margin-bottom: 32px; color: var(--ink); font-size: clamp(2rem, 3.2vw, 2.45rem); line-height: 1.04; text-align: center; }
.why-choose-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.why-choose-item { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; }
.why-icon { display: grid; place-items: center; width: 32px; height: 32px; color: var(--forest); background: var(--gold-light); border-radius: 50%; font-weight: 700; }
.why-content h3 { margin-bottom: 6px; color: var(--ink); font-size: 1.08rem; line-height: 1.15; }
.why-content p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.areas { background: var(--paper); }
.areas-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr); gap: clamp(52px, 7vw, 92px); align-items: center; }
.areas-copy { min-width: 0; }
.areas-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.postcode-list { margin-top: 32px; border-top: 1px solid var(--line); }
.postcode-list div { display: grid; grid-template-columns: 75px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); }
.postcode-list strong { color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.1rem; }
.postcode-list span { color: var(--forest-3); }
.areas-note { margin-top: 24px; font-size: .84rem; }
.map-wrap { position: relative; padding: 18px 18px 80px; background: var(--cream-2); border-radius: var(--radius-lg); }
.map-wrap iframe { width: 100%; min-height: 470px; border: 0; border-radius: 20px; filter: saturate(.7) contrast(.95); }
.map-badge { position: absolute; left: 45px; right: 45px; bottom: 34px; padding: 18px 22px; color: var(--cream); background: var(--forest); border-radius: 16px; box-shadow: var(--shadow); }
.map-badge strong, .map-badge span { display: block; }
.map-badge strong { font-family: "Playfair Display", serif; }
.map-badge span { color: rgba(247,240,223,.58); font-size: .76rem; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.faq-grid { grid-template-columns: minmax(0, .72fr) minmax(0, 1.08fr); gap: clamp(52px, 7vw, 92px); }
.faq-heading { position: sticky; top: 120px; }
.faq-title { max-width: 430px; margin-bottom: 20px; font-size: clamp(2.75rem, 5vw, 4rem); line-height: 1.01; }
.faq-heading p:not(.eyebrow) { color: var(--muted); } .faq-heading { min-width: 0; }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question { 
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 20px;
  align-items: center;
  width: 100%; 
  padding: 34px 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.faq-question::before {
  content: "";
  width: 12px;
  height: 12px;
  justify-self: center;
  background-color: var(--gold);
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'%3e%3c/polyline%3e%3c/svg%3e");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: transform 0.25s ease;
}
.faq-question { padding: 29px 0; }
.faq-text { font-family: "Playfair Display", serif; font-size: var(--fs-faq); font-weight: 700; color: var(--forest); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 0 34px 36px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.faq-answer p { padding-bottom: 29px; }
.faq-item.is-open .faq-question::before { transform: rotate(90deg); }

.contact { color: var(--cream); background: var(--forest); }
.contact-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(470px, 1fr); gap: clamp(52px, 7vw, 92px); align-items: start; }
.contact-copy { position: sticky; top: 140px; }
.contact-copy h2 { color: var(--cream); } .contact-copy { min-width: 0; }
.contact-copy > p:not(.eyebrow) { color: rgba(247,240,223,.68); }
.contact-details { margin: 34px 0 26px; border-top: 1px solid var(--white-line); }
.contact-details > * { display: grid; grid-template-columns: 82px 1fr; padding: 15px 0; border-bottom: 1px solid var(--white-line); }
.contact-details span { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-details strong { font-weight: 600; }
.whatsapp-link { display: inline-flex; gap: 8px; color: var(--gold-light); font-weight: 700; border-bottom: 1px solid currentColor; }
.enquiry-form { padding: clamp(24px, 4vw, 46px); color: var(--ink); background: var(--paper); border-radius: 30px; box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.enquiry-form { padding: clamp(34px, 3.5vw, 42px); } .form-heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading span { font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 700; }
.form-heading strong { max-width: 180px; color: var(--muted); font-size: .72rem; text-align: right; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: block; margin-bottom: 20px; }
.enquiry-form label > span:first-child { display: block; margin-bottom: 8px; color: var(--forest-3); font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(20,38,26,.2);
  border-radius: 12px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}
.enquiry-form input, .enquiry-form select { min-height: 52px; padding: 0 16px; }
.enquiry-form textarea { resize: vertical; min-height: 130px; padding: 13px 14px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169,130,67,.13); }
.consent { display: grid!important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 4px 0 22px!important; }
.consent input { width: 18px!important; min-height: 18px!important; margin-top: 2px; }
.consent span { margin: 0!important; color: var(--muted)!important; font-size: .75rem!important; font-weight: 400!important; letter-spacing: 0!important; text-transform: none!important; }
.consent a { color: var(--gold); text-decoration: underline; }
.form-submit { width: 100%; }
.form-status { min-height: 1.2em; margin: 12px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
.honeypot { position: absolute!important; left: -9999px!important; }

.site-footer { color: rgba(247,240,223,.72); background: #09130d; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 55px; padding-block: 68px; }
.footer-brand img { width: 120px; height: 120px; object-fit: contain; margin-bottom: 12px; filter: brightness(1.12); }
.footer-brand p { max-width: 250px; font-family: "Playfair Display", serif; font-size: 1.1rem; }
.footer-column { display: flex; flex-direction: column; gap: 8px; }
.footer-column > strong { margin-bottom: 7px; color: var(--gold-light); font-family: "Playfair Display", serif; }
.footer-column a, .footer-column span { font-size: .82rem; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px 28px; border-top: 1px solid rgba(255,255,255,.09); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 18px; }
  .reviews-grid { grid-template-columns: minmax(0, .75fr) minmax(470px, 1fr); gap: 48px; }
  .why-choose-list { grid-template-columns: 1fr; }
  .why-content p { max-width: 52ch; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 90px; }
  .announcement-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .announcement-inner > a { display: none; }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { display: flex; justify-content: space-between; min-height: 64px; }
  .logo-link img { width: 56px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 95;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--cream);
    background: var(--forest);
    transition: max-height 250ms ease;
  }
  .mobile-menu.open { max-height: calc(100vh - 94px); border-top: 1px solid var(--white-line); }
  .mobile-menu a { padding: 17px 22px; border-bottom: 1px solid var(--white-line); font-family: "Playfair Display", serif; font-size: 1.15rem; }
  .mobile-menu .mobile-menu-cta { color: var(--forest); background: var(--gold-light); font-family: "DM Sans", sans-serif; font-size: .9rem; font-weight: 800; }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 56px 64px; text-align: left; }
  .hero-copy { max-width: 720px; margin-inline: auto; }
  .hero-actions { justify-content: flex-start; }
  .hero h1 { font-size: clamp(3.15rem, 9.5vw, 4.6rem); }
  .hero-visual { width: min(540px, 100%); min-height: auto; margin-inline: auto; }
  .story-grid, .about-grid, .reviews-grid, .areas-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-media { width: min(620px, 100%); margin-inline: auto; }
  .reviews-grid { gap: 54px; }
  .areas-grid, .faq-grid, .contact-grid { gap: 54px; }
  .why-choose-list { grid-template-columns: 1fr 1fr; }
  :root {
    --page-gutter: clamp(20px, 5vw, 38px);
    --section-pad-lg: clamp(58px, 8vw, 82px);
  }
  .review-visual { width: min(620px, 100%); margin-inline: auto; }
  .reviews-grid { gap: 60px; }
  .why-choose-card { margin-top: 20px; }
  .review-visual blockquote { left: 20px; }
  .map-wrap { max-width: 700px; }
  .faq-heading, .contact-copy { position: static; }
  .faq-title { max-width: none; }
  .contact-copy { max-width: 690px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 18px;
    --section-pad-lg: 56px;
    --fs-h2-lg: clamp(2.35rem, 10.5vw, 3rem);
    --fs-h2-sm: clamp(2.15rem, 9.5vw, 2.75rem);
  }
  body { padding-bottom: calc(75px + env(safe-area-inset-bottom)); }
  .shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell-width)); }
  h2 { font-size: var(--fs-h2-lg); }
  .announcement-inner { min-height: 32px; font-size: .7rem; }
  .site-header { top: 0; }
  .mobile-menu { top: 96px; }
  .hero-grid { padding-top: 44px; padding-bottom: 58px; gap: 44px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(2.85rem, 13vw, 3.75rem); line-height: 1; }
  .hero-lead { font-size: 16.5px; line-height: 1.62; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .hero-trust-row { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; padding-top: 18px; }
  .hero-trust-row span { padding-bottom: 10px; border-bottom: 1px solid var(--white-line); }
  .hero-trust-row span:last-child { border-bottom: 0; }
  .hero-visual { width: 100%; max-width: 100%; aspect-ratio: 4 / 5; height: auto; }
  .hero-photo { height: 100%; border-radius: 28px; }
  .hero-info-card { left: -8px; bottom: 18px; min-width: 176px; padding: 14px 17px; }
  .hero-info-card h3 { font-size: 17px; } .hero-info-card p { font-size: 12.5px; }

  .ticker-track { min-height: 44px; gap: 20px; }
  .ticker-track span { font-size: .66rem; }

  .story-media::before { left: -10px; bottom: -10px; }
  .video-frame { border-radius: var(--radius-md); }

  .story-grid { gap: 46px; }
  .story-copy h2 { font-size: var(--fs-h2-lg); }
  .section-intro { font-size: 16.5px; }
  .journey-list strong { font-size: 1.08rem; }
  .journey-list p { font-size: .94rem; }

  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-title { font-size: var(--fs-h2-lg); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: auto; }
  .service-card { min-height: auto; padding: 26px 22px; }
  .service-card--wide { flex-direction: column; align-items: flex-start; }
  .service-card__main { flex-direction: column; align-items: flex-start; gap: 20px; }
  .service-card--wide .text-link { margin-top: 10px; }

  .service-card h3 { font-size: 1.75rem; }
  .service-card p { font-size: .94rem; }
  .service-card ul { font-size: .9rem; }
  .difference-grid { grid-template-columns: 1fr 1fr; }
  .journey-list li { grid-template-columns: 42px 1fr; }

  .difference-grid article { min-height: auto; padding: 26px 22px; }
  .difference-grid article > span { margin-bottom: 36px; }

  .price-row { grid-template-columns: 1fr auto; gap: 8px 18px; min-height: auto; padding: 22px 12px; }
  .price-detail { grid-column: 1 / -1; grid-row: 2; }
  .price-amount { grid-column: 2; grid-row: 1; }
  .price-notes { display: grid; gap: 8px; }

  .reviews-copy h2, .areas h2, .contact-copy h2 { font-size: var(--fs-h2-lg); }
  .why-choose-list { grid-template-columns: 1fr; }
  .why-choose-card { padding: 26px 24px; }
  .why-choose-card h2 { font-size: clamp(1.8rem, 8vw, 2.15rem); margin-bottom: 28px; }
  .why-content h3 { font-size: 1.05rem; }
  .why-content p { font-size: .91rem; }

  .review-visual { min-height: 500px; }
  .review-visual > img { height: 500px; border-radius: 170px 170px 22px 22px; }
  .review-visual blockquote { left: 0; bottom: 18px; width: 92%; padding: 22px; }
  .map-wrap { padding: 10px 10px 88px; }
  .map-wrap iframe { min-height: 390px; }
  .map-badge { left: 22px; right: 22px; bottom: 28px; }
  .faq-title { font-size: var(--fs-h2-lg); }
  .faq-question { padding: 23px 0; gap: 16px; }
  .faq-text { font-size: 1.05rem; line-height: 1.45; }
  .faq-answer p { padding-left: 32px; padding-bottom: 23px; font-size: 15px; }

  .enquiry-form { padding: 24px 18px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { display: block; }
  .form-heading strong { display: block; max-width: none; margin-top: 5px; text-align: left; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding-block: 52px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
  .mobile-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    padding: 5px;
    color: var(--cream);
    background: rgba(9,19,13,.94);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a { padding: 10px 8px; border-radius: 999px; font-size: .72rem; font-weight: 800; text-align: center; }
  .mobile-actions a:last-child { color: var(--forest); background: var(--gold-light); }
}

/* ======================================================
   NEW CAITLIN SECTION
====================================================== */

.caitlin-section {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(60px, 6vw, 80px) 0;
}
.caitlin-container {
  width: min(100% - clamp(40px, 8vw, 120px), 1560px);
  margin-inline: auto;
}
.caitlin-grid {
  display: grid;
  grid-template-columns: 0.56fr 0.44fr;
  gap: clamp(50px, 6vw, 80px);
  align-items: center;
}
.caitlin-copy {
  max-width: 720px;
}
.caitlin-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 40px);
  color: var(--cream);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.caitlin-eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.caitlin-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem); /* 56px to 88px */
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.caitlin-subtitle {
  margin: 22px 0 0;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem); /* 24px to 30px */
  font-weight: 700;
  line-height: 1.3;
}
.caitlin-description {
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); /* 17px to 19.2px */
  line-height: 1.65;
  color: rgba(247, 240, 223, 0.85);
}
.caitlin-description p + p {
  margin-top: 1.2em;
}
.caitlin-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(26px, 3vw, 32px);
  border-top: 1px solid var(--white-line);
}
.caitlin-benefit {
  padding-right: 24px;
  border-right: 1px solid var(--white-line);
}
.caitlin-benefit:last-child {
  border-right: 0;
  padding-inline: 24px 0;
}
.caitlin-benefit:nth-child(2) {
  padding-inline: 24px;
}
.caitlin-benefit h4 {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem); /* 20px to 24px */
}
.caitlin-benefit p {
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 1.0rem); /* 14.4px to 16px */
  color: rgba(247, 240, 223, 0.7);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .caitlin-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .caitlin-copy { max-width: 800px; }
}

@media (max-width: 768px) {
  .caitlin-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-bottom: 40px;
    padding-top: 0;
    border-top: 1px solid rgba(218, 185, 111, 0.22);
  }
  .caitlin-benefit {
    width: 100%;
    min-width: 0;
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(218, 185, 111, 0.22);
  }
  .caitlin-benefit:nth-child(2) { padding-inline: 0; }
  .caitlin-benefit:last-child { border-bottom: 0; padding-inline: 0; }
}

/* Supporting pages */
.subpage-body { min-height: 100vh; background: var(--cream); }
.subpage-header { color: var(--cream); background: var(--forest); border-bottom: 1px solid var(--white-line); }
.subpage-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 20px; }
.subpage-logo { display: flex; align-items: center; gap: 14px; font-family: "Playfair Display", serif; font-weight: 700; }
.subpage-logo img { width: 76px; height: 76px; object-fit: contain; }
.subpage-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-weight: 700; }
.subpage-hero { padding: 64px 0 42px; color: var(--cream); background: var(--forest); }
.subpage-hero h1 { max-width: 820px; margin-bottom: 14px; font-size: clamp(2.8rem, 5.8vw, 4.75rem); letter-spacing: -.055em; }
.subpage-hero p { max-width: 700px; color: rgba(247,240,223,.66); font-size: 1.05rem; }
.subpage-main { padding: var(--section-pad-sm) 0 var(--section-pad-lg); }
.legal-wrap { width: min(calc(100% - 40px), 920px); margin-inline: auto; }
.legal-intro { margin-bottom: 36px; color: var(--muted); font-size: 1.02rem; }
.legal-section { display: grid; grid-template-columns: 190px 1fr; gap: 32px; padding: 28px 0; border-top: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 1px solid var(--line); }
.legal-section h2 { margin: 0; color: var(--gold); font-family: "DM Sans", sans-serif; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-section p, .legal-section ul { margin: 0; color: var(--forest-3); }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: var(--gold); text-decoration: underline; }
.subpage-footer { color: rgba(247,240,223,.65); background: #09130d; }
.subpage-footer-inner { display: flex; justify-content: space-between; gap: 20px; padding-block: 25px; font-size: .78rem; }
.subpage-footer-inner p { margin: 0; }
.subpage-footer-inner a { color: var(--gold-light); }

.dog-page-main { padding: 70px 0 95px; }
.dog-page-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.dog-page-photo { position: relative; padding: 0 0 45px 35px; }
.dog-page-photo::before { content: ""; position: absolute; inset: 60px 45px 0 0; background: var(--gold-light); border-radius: 220px 220px 28px 28px; }
.dog-page-photo img { position: relative; width: 100%; max-height: 700px; object-fit: cover; border-radius: 220px 220px 28px 28px; box-shadow: var(--shadow); }
.dog-page-badge { position: absolute; left: 0; bottom: 0; display: grid; place-items: center; width: 116px; height: 116px; color: var(--forest); background: var(--gold-light); border: 7px solid var(--cream); border-radius: 50%; text-align: center; transform: rotate(-8deg); }
.dog-page-badge strong { font-family: "Playfair Display", serif; font-size: 1.15rem; line-height: 1.05; }
.dog-page-copy h1 { margin-bottom: 20px; font-size: clamp(3rem, 5.8vw, 4.9rem); letter-spacing: -.055em; }
.dog-page-copy > p { color: var(--muted); font-size: 1.05rem; }
.dog-facts { margin: 30px 0; border-top: 1px solid var(--line); }
.dog-facts div { display: grid; grid-template-columns: 125px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.dog-facts strong { color: var(--gold); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.dog-facts span { color: var(--forest-3); }
.dog-page-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.dog-page-actions .button-primary { color: var(--cream); background: var(--forest); box-shadow: none; }

.caitlin-visual {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
}
.caitlin-photo {
  display: block;
  width: 100%;
  height: clamp(480px, 50vw, 650px);
  object-fit: cover;
  object-position: center;
  border-radius: 280px 280px 28px 28px;
}
.caitlin-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: clamp(18px, 2vw, 24px);
  background: var(--gold-light);
  color: var(--forest);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.caitlin-card-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
}
.caitlin-card h4 {
  margin: 0 0 5px;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}
.caitlin-card p {
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.45;
  color: rgba(20, 38, 26, 0.8);
}

/* ======================================================
   PREMIUM THANK-YOU PAGE
====================================================== */

.thankyou-body {
  --thankyou-green: #11291c;
  --thankyou-green-soft: #315342;
  --thankyou-cream: #faf4e8;
  --thankyou-gold: #ad7d32;
  --thankyou-line: rgba(17, 41, 28, 0.14);

  min-height: 100vh;
  margin: 0;
  padding: 56px 24px;

  display: grid;
  place-items: center;

  overflow-x: hidden;

  font-family: "DM Sans", sans-serif;

  color: var(--thankyou-green);
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(173, 125, 50, 0.09),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.015) 50%,
      rgba(255, 255, 255, 0.015) 75%,
      transparent 75%
    ),
    var(--thankyou-green);

  background-size: auto, 80px 80px, auto;
}

.thankyou-card {
  position: relative;

  width: min(920px, 100%);
  padding: 58px 64px 48px;

  overflow: hidden;

  text-align: center;

  background: var(--thankyou-cream);

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.22),
    0 8px 30px rgba(0, 0, 0, 0.12);
}

.thankyou-card::before,
.thankyou-card::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border: 1px solid rgba(173, 125, 50, 0.12);
  border-radius: 50%;

  pointer-events: none;
}

.thankyou-card::before {
  top: -160px;
  left: -120px;
}

.thankyou-card::after {
  right: -135px;
  bottom: -170px;
}

.thankyou-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;
}

.thankyou-logo {
  display: block;

  width: 105px;
  height: auto;

  object-fit: contain;
}

.success-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
}

.success-icon svg {
  display: block;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.success-icon circle {
  fill: rgba(173, 125, 50, 0.06);
  stroke: var(--thankyou-gold);
  stroke-width: 1.6;
}

.success-icon path {
  fill: none;
  stroke: var(--thankyou-green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin: 0 0 16px;

  color: var(--thankyou-green-soft);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.thankyou-eyebrow span {
  display: block;

  width: 38px;
  height: 1px;

  background: var(--thankyou-gold);
}

.thankyou-card h1 {
  margin: 0;

  color: var(--thankyou-green);

  font-family: "Playfair Display", serif;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.thankyou-message {
  max-width: 680px;
  margin: 20px auto 0;

  color: #506d5f;

  font-size: 18px;
  line-height: 1.7;
}

.thankyou-next {
  margin-top: 38px;
  padding: 32px 0;

  border-top: 1px solid var(--thankyou-line);
  border-bottom: 1px solid var(--thankyou-line);
}

.thankyou-next h2 {
  margin: 0 0 24px;

  color: var(--thankyou-green-soft);

  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 700;
}

.next-steps {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 10px;

  text-align: left;
}

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-number {
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  color: var(--thankyou-gold);
  background: rgba(173, 125, 50, 0.08);

  border: 1px solid rgba(173, 125, 50, 0.28);
  border-radius: 50%;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.next-step h3 {
  margin: 0 0 4px;

  color: var(--thankyou-green);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.next-step p {
  margin: 0;

  color: #60796c;

  font-size: 12px;
  line-height: 1.5;
}

.step-divider {
  position: relative;

  display: block;

  width: 100%;
  height: 1px;

  background: rgba(173, 125, 50, 0.35);
}

.step-divider::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 5px;
  height: 5px;

  border-top: 1px solid var(--thankyou-gold);
  border-right: 1px solid var(--thankyou-gold);

  transform: translateY(-50%) rotate(45deg);
}

.thankyou-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-top: 40px;
}

.thankyou-button {
  min-height: 56px;
  padding: 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.thankyou-button-primary {
  color: var(--thankyou-cream);
  background: var(--thankyou-green);

  box-shadow: 0 12px 30px rgba(17, 41, 28, 0.18);
}

.thankyou-button-secondary {
  color: var(--thankyou-green);
  background: transparent;

  border-color: rgba(173, 125, 50, 0.55);
}

.thankyou-button:hover {
  transform: translateY(-2px);
}

.thankyou-button-primary:hover {
  box-shadow: 0 16px 34px rgba(17, 41, 28, 0.24);
}

.thankyou-button-secondary:hover {
  color: var(--thankyou-cream);
  background: var(--thankyou-gold);
  border-color: var(--thankyou-gold);
}

.button-arrow {
  display: inline-block;

  transition: transform 180ms ease;
}

.thankyou-button:hover .button-arrow {
  transform: translateX(4px);
}

.thankyou-reassurance {
  margin: 24px 0 0;

  color: #71877c;

  font-size: 13px;
  line-height: 1.5;
}

.thankyou-reassurance a {
  color: var(--thankyou-green);

  font-weight: 700;
  text-underline-offset: 4px;
}

.thankyou-button:focus-visible,
.thankyou-logo-link:focus-visible,
.thankyou-reassurance a:focus-visible {
  outline: 3px solid rgba(173, 125, 50, 0.45);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .subpage-header-inner { min-height: 76px; }
  .subpage-logo span { display: none; } .subpage-logo img { width: 64px; height: 64px; }
  .subpage-hero { padding: 50px 0 34px; }
  .subpage-hero h1, .dog-page-copy h1 { font-size: clamp(2.55rem, 12vw, 3.35rem); }
  .legal-section { grid-template-columns: 1fr; gap: 10px; }
  .subpage-footer-inner { flex-direction: column; align-items: flex-start; }
  .dog-page-grid { grid-template-columns: 1fr; }
  .dog-page-photo { padding-left: 18px; }
  .dog-page-photo::before { right: 20px; }
  .dog-page-badge { width: 96px; height: 96px; }
  .dog-page-copy h1 { font-size: clamp(3.3rem, 16vw, 5.2rem); }
  .dog-page-actions { align-items: flex-start; flex-direction: column; }
  .thankyou-card { width: min(100%, 650px); padding: clamp(34px, 7vw, 70px); color: var(--ink); background: var(--paper); border-radius: 32px; box-shadow: var(--shadow); text-align: center; }
  .thankyou-card .thankyou-logo { width: 115px; height: 115px; object-fit: contain; margin: 0 auto 20px; }
  .thankyou-card h1 { margin-bottom: 14px; font-size: clamp(2.8rem, 7vw, 4.8rem); letter-spacing: -.05em; }
  .thankyou-card p { color: var(--muted); }
  .thankyou-card .thankyou-actions .button-primary { color: var(--cream); background: var(--forest); box-shadow: none; }
  .thankyou-card .thankyou-actions .text-link { align-self: center; color: var(--gold); }
} 

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 800px) {
  .thankyou-body {
    padding: 28px 18px;
  }

  .thankyou-card {
    padding: 46px 34px 38px;
    border-radius: 28px;
  }

  .next-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-divider {
    display: none;
  }

  .next-step {
    max-width: 440px;
    margin-inline: auto;

    width: 100%;
  }
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 580px) {
  .thankyou-body {
    min-height: 100svh;
    padding: 14px;
  }

  .thankyou-card {
    padding: 36px 22px 30px;

    border-radius: 24px;
  }

  .thankyou-logo {
    width: 88px;
  }

  .success-icon {
    width: 48px;
    height: 48px;
  }

  .thankyou-eyebrow {
    gap: 10px;

    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .thankyou-eyebrow span {
    width: 24px;
  }

  .thankyou-card h1 {
    font-size: clamp(52px, 17vw, 70px);
  }

  .thankyou-message {
    margin-top: 20px;

    font-size: 16px;
    line-height: 1.65;
  }

  .thankyou-next {
    margin-top: 30px;
    padding: 28px 0;
  }

  .thankyou-next h2 {
    font-size: 21px;
  }

  .thankyou-actions {
    flex-direction: column;

    width: 100%;
    margin-top: 32px;
  }

  .thankyou-button {
    width: 100%;
  }

  .caitlin-container {
    width: calc(100% - 40px);
  }
  .caitlin-photo {
    height: clamp(430px, 110vw, 540px);
  }
  .caitlin-card {
    left: 0;
    right: 0;
    bottom: -40px;
    width: auto;
    margin-inline: 12px;
  }
}

/* ======================================================
   REDUCED MOTION
====================================================== */

@media (prefers-reduced-motion: reduce) {
  .thankyou-button,
  .button-arrow {
    transition: none;
  }
}

/* ======================================================
   COMING SOON PAGE
====================================================== */

.comingsoon-body {
  --cs-green: #11291c;
  --cs-cream: #faf4e8;
  --cs-gold: #ad7d32;
  --cs-line: rgba(17, 41, 28, 0.14);

  min-height: 100vh;
  margin: 0;
  padding: 56px 24px;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  color: var(--cs-green);
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(173, 125, 50, 0.09),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.015) 50%,
      rgba(255, 255, 255, 0.015) 75%,
      transparent 75%
    ),
    var(--cs-green);
  background-size: auto, 80px 80px, auto;
}

.comingsoon-card {
  position: relative;
  width: min(720px, 100%);
  padding: 58px 64px 48px;
  overflow: hidden;
  text-align: center;
  background: var(--cs-cream);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.22),
    0 8px 30px rgba(0, 0, 0, 0.12);
}

.comingsoon-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.comingsoon-logo {
  display: block;
  width: 88px;
  height: auto;
  object-fit: contain;
}

.comingsoon-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
  color: #315342;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.comingsoon-eyebrow span {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--cs-gold);
}

.comingsoon-card h1 {
  margin: 0;
  color: var(--cs-green);
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.comingsoon-message {
  max-width: 580px;
  margin: 24px auto 0;
  color: #506d5f;
  font-size: 18px;
  line-height: 1.7;
}

.comingsoon-form {
  position: relative;
  max-width: 480px;
  margin: 32px auto 0;
}

.comingsoon-form input[type="email"] {
  width: 100%;
  min-height: 60px;
  padding: 10px 68px 10px 24px;
  color: var(--cs-green);
  background: rgba(17, 41, 28, 0.04);
  border: 1px solid rgba(17, 41, 28, 0.1);
  border-radius: 999px;
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.comingsoon-form input[type="email"]::placeholder {
  color: #506d5f;
}

.comingsoon-form input[type="email"]:focus {
  outline: none;
  border-color: var(--cs-gold);
  box-shadow: 0 0 0 4px rgba(173, 125, 50, 0.15);
}

.comingsoon-form button {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  width: 48px;
  padding: 0;
  color: var(--cs-cream);
  background: var(--cs-green);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.comingsoon-form button:hover {
  background-color: #315342;
  transform: scale(1.05);
}

.comingsoon-actions {
  margin-top: 24px;
}

.comingsoon-button {
  color: #71877c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ======================================================
   PREMIUM SHOP PAGE
====================================================== */

.shop-body { background: var(--paper); }

.shop-announcement {
  color: var(--cream);
  background: var(--forest);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.shop-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
}
.shop-announcement-inner strong { color: var(--gold-light); }

.shop-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--forest);
  background: rgba(250, 242, 223, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.shop-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 32px;
}
.shop-logo-link img { width: 70px; height: auto; object-fit: contain; }
.shop-desktop-nav { display: flex; justify-content: center; gap: clamp(28px, 3vw, 40px); font-size: 15px; font-weight: 600; }
.shop-header-actions { display: flex; align-items: center; gap: 20px; }
.shop-header-cta {
  min-height: 44px;
  padding: 10px 22px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease;
}
.shop-header-cta:hover { background-color: var(--forest-2); }
.shop-header-icons { display: flex; align-items: center; gap: 4px; }
.shop-header-icons button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  transition: background-color 180ms ease;
}
.shop-header-icons button:hover { background: rgba(20, 38, 26, 0.06); }
.shop-header-icons svg { width: 22px; height: 22px; fill: currentColor; }
.shop-header-icons button[aria-label*="bag"] { position: relative; }
.shop-header-icons button[aria-label*="bag"] span {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--cream);
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.shop-menu-toggle { display: none; }
.shop-mobile-menu { display: none; }

.shop-hero { padding: var(--section-pad-lg) 0; background: var(--cream); }

.shop-comingsoon-main {
  display: grid;
  place-items: center;
  text-align: center; 
  background: var(--cream);
  min-height: calc(100vh - 32px - 72px - 380px); /* vh - announcement - header - footer */
  padding: var(--section-pad-lg) 0;
}
.shop-comingsoon-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1; 
  letter-spacing: -0.04em;
}

.shop-signup { background: var(--forest); color: var(--cream); padding: var(--section-pad-lg) 0; }
.shop-signup-inner { max-width: 720px; margin-inline: auto; text-align: center; }
.shop-signup h2 { font-family: var(--font-serif); font-size: var(--fs-h2-lg); color: var(--cream); }
.shop-signup p { max-width: 560px; margin-inline: auto; color: rgba(247, 240, 223, 0.8); }
.shop-signup-form { display: flex; gap: 12px; max-width: 520px; margin: 32px auto 0; }
.shop-signup-form input {
  flex-grow: 1;
  min-height: 56px;
  padding: 0 20px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 16px;
}
.shop-signup-form input:focus { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.shop-signup-form .button { background: var(--gold-light); color: var(--forest); box-shadow: none; white-space: nowrap; }
.shop-signup-reassurance { margin-top: 16px; font-size: 13px; color: rgba(247, 240, 223, 0.6); }

.shop-footer { background: #0f1f15; color: rgba(247, 240, 223, 0.7); padding: var(--section-pad-sm) 0 0; }
.shop-footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: var(--section-pad-sm); }
.shop-footer-brand img { width: 80px; height: auto; margin-bottom: 12px; }
.shop-footer-brand p { margin: 0; font-size: 15px; max-width: 240px; }
.shop-footer-column { display: flex; flex-direction: column; gap: 12px; }
.shop-footer-column strong { color: var(--cream); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.shop-footer-column a { font-size: 14px; transition: color 180ms ease; }
.shop-footer-column a:hover { color: var(--gold-light); }
.shop-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; border-top: 1px solid var(--white-line); font-size: 13px; }
.shop-footer-legal { display: flex; gap: 24px; }
.shop-footer-legal a { text-decoration: underline; text-underline-offset: 4px; }

/* Shop Responsive */
@media (max-width: 900px) {
  .shop-desktop-nav, .shop-header-actions .shop-header-cta { display: none; }
  .shop-header-inner { grid-template-columns: auto 1fr auto; justify-content: space-between; }
  .shop-header-actions { justify-self: end; }
  .shop-menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
    justify-self: end;
  }
  .shop-menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--forest); transition: transform 180ms ease, opacity 180ms ease; }
  .shop-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .shop-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .shop-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .shop-mobile-menu {
    position: fixed;
    top: 104px; /* header + announcement */
    left: 0;
    right: 0;
    z-index: 95;
    display: grid;
    max-height: 0;
    overflow: hidden;
    color: var(--cream);
    background: var(--forest);
    transition: max-height 250ms ease;
  }
  .shop-body.menu-open .shop-mobile-menu { max-height: calc(100vh - 102px); border-top: 1px solid var(--white-line); }
  .shop-mobile-menu a { padding: 18px 24px; border-bottom: 1px solid var(--white-line); font-size: 18px; font-weight: 600; }
  .shop-mobile-menu .shop-mobile-menu-cta { color: var(--forest); background: var(--gold-light); font-weight: 700; }
  
  .shop-comingsoon-main {
    min-height: calc(100vh - 32px - 72px - 440px);
  }

  .shop-footer-main { grid-template-columns: 1fr 1fr; }
  .shop-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .shop-announcement { font-size: 11px; letter-spacing: .02em; }
  .shop-announcement-inner { justify-content: center; text-align: center; }
  .shop-announcement-inner strong { display: none; }
  .shop-header-inner { min-height: 64px; gap: 16px; }
  .shop-logo-link img { width: 56px; }
  .shop-header-icons { gap: 0; }
  .shop-header-icons button { width: 38px; height: 38px; }
  .shop-header-icons svg { width: 20px; height: 20px; }
  .shop-header-icons button[aria-label*="bag"] span { width: 15px; height: 15px; font-size: 9px; top: 5px; right: 5px; }
  .shop-mobile-menu { top: 97px; }
  .shop-body.menu-open .shop-mobile-menu { max-height: calc(100vh - 97px); }

  .shop-signup-form { flex-direction: column; }
  .shop-comingsoon-main {
    min-height: calc(100vh - 32px - 64px - 580px);
  }
  .shop-footer-main { grid-template-columns: 1fr; }
  .shop-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ======================================================
   SHOP SCRIPT SUPPORT
====================================================== */
.shop-body.menu-open { overflow: hidden; }

/* ======================================================
   FINAL RESPONSIVE SIZE POLISH
   Balanced type, spacing and component proportions across
   desktop, tablet and mobile without changing site content. 
   (This section was integrated into the main styles above)
====================================================== */

.shop-header-inner { min-height: 70px; }
.shop-logo-link img { width: 66px; }
.shop-comingsoon-main {
  min-height: clamp(380px, 45vh, 590px);
  padding: clamp(64px, 8vw, 104px) 0;
}
.shop-comingsoon-main h1 { font-size: clamp(3rem, 6vw, 4.6rem); }
.shop-signup h2 { font-size: var(--fs-h2-lg); }

/* ======================================================
   FINAL MOBILE OVERFLOW FIX
====================================================== */

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .shell {
    width: calc(100% - 36px) !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-inline: auto !important;
  }

  /* Top announcement bar */
  .announcement .shell {
    width: 100% !important;
    padding-inline: 14px;
  }

  .announcement-inner {
    min-height: 44px;
    justify-content: center !important;
    overflow: visible !important;
    white-space: normal !important;
    text-align: center;
  }

  .announcement-inner > div {
    width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 10px;
    line-height: 1.25;
  }

  .announcement-inner > a {
    display: none;
  }

  /* Hero section */
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: calc(100% - 36px) !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-inline: auto !important;
    padding-top: 42px !important;
    padding-bottom: 56px !important;
    gap: 40px !important;
  }

  .hero-copy,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-trust-row,
  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    white-space: normal !important;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(42px, 11.4vw, 50px) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.045em !important;
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 span {
    white-space: normal !important;
  }

  .hero-lead {
    max-width: 34ch !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100% !important;
    max-width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    text-align: center;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-trust-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 40px !important;
  }
}
