:root {
  --green-950: #6e8b7a;
  --green-800: #6e8b7a;
  --green-600: #a9c0ae;
  --green-100: #dce6da;
  --gold: #d9b98a;
  --gold-soft: #f2e3cd;
  --white: #ffffff;
  --ink: #405448;
  --muted: #5f7065;
  --surface: #fbf9f4;
  --line: #a9c0ae;
  --shadow: 0 24px 70px rgba(110, 139, 122, 0.18);
  --radius: 8px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --forest: #6e8b7a;
  --moss: #6e8b7a;
  --sage: #a9c0ae;
  --leaf-light: #dce6da;
  --cream: #fbf9f4;
  --display: "Fraunces", serif;
  --body: "Work Sans", sans-serif;
  --mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  background: var(--surface);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.9);
  border-bottom: 1px solid rgba(169, 192, 174, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.97);
  box-shadow: 0 12px 36px rgba(110, 139, 122, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-950);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 185, 138, 0.56);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-950), var(--green-600));
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
}

.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--green-950);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-950);
  transition: transform 220ms ease, opacity 220ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #3f3424;
  box-shadow: 0 14px 34px rgba(217, 185, 138, 0.32);
}

.btn-primary:hover {
  background: #e4c79d;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  border-color: rgba(110, 139, 122, 0.34);
  color: var(--green-950);
  background: var(--white);
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.btn-large {
  min-width: 220px;
}

.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 26%, rgba(217, 185, 138, 0.46), transparent 18rem),
    radial-gradient(circle at 24% 72%, rgba(169, 192, 174, 0.44), transparent 18rem),
    linear-gradient(130deg, #536b5d 0%, #6e8b7a 46%, #a9c0ae 100%);
}

.hero-motion-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-video::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 44% 56% 52% 48%;
  content: "";
  animation: breathe 9s ease-in-out infinite;
}

.aura,
.line {
  position: absolute;
  display: block;
  pointer-events: none;
}

.aura {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 185, 138, 0.5), rgba(217, 185, 138, 0));
  filter: blur(4px);
  animation: drift 13s ease-in-out infinite alternate;
}

.aura-one {
  top: 18%;
  right: 10%;
}

.aura-two {
  bottom: 14%;
  left: 7%;
  width: 14rem;
  height: 14rem;
  animation-delay: -4s;
}

.aura-three {
  top: 46%;
  left: 42%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  animation-delay: -7s;
}

.line {
  width: 45rem;
  height: 45rem;
  border: 1px solid rgba(217, 185, 138, 0.2);
  border-radius: 50%;
  animation: rotateSlow 24s linear infinite;
}

.line-one {
  top: -18rem;
  right: -10rem;
}

.line-two {
  bottom: -22rem;
  left: -18rem;
  animation-direction: reverse;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64, 84, 72, 0.84), rgba(64, 84, 72, 0.54) 47%, rgba(64, 84, 72, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding-top: 6rem;
}

.hero-content h1,
.hero-content h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.95rem);
  line-height: 0.98;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 2.1rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.slider-prev {
  left: max(16px, calc((100vw - 1120px) / 2 - 76px));
}

.slider-next {
  right: max(16px, calc((100vw - 1120px) / 2 - 76px));
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 2rem;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 185, 138, 0.28), transparent 18rem),
    linear-gradient(135deg, var(--surface) 0%, var(--green-100) 100%);
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(110, 139, 122, 0.24);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.page-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.page-hero-card {
  padding: 1.4rem;
  border: 1px solid rgba(169, 192, 174, 0.85);
  border-radius: var(--radius);
  background: rgba(251, 249, 244, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.page-hero-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--green-950);
  font-weight: 900;
}

.page-hero-card p {
  margin: 0;
  color: var(--muted);
}

.breadcrumb-hero {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  border-bottom: 1px solid rgba(169, 192, 174, 0.65);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 185, 138, 0.2), transparent 14rem),
    var(--surface);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--green-950);
}

.breadcrumb span {
  color: var(--muted);
}

.breadcrumb-hero h1 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.05;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media::before {
  position: absolute;
  inset: 1.4rem -1rem -1.4rem 1rem;
  z-index: 0;
  border-radius: var(--radius);
  background: var(--green-100);
  content: "";
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy h2,
.section-heading h2,
.consultation-content h2,
.final-cta h2 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.about-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.consultation-content p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy .btn {
  margin-top: 0.65rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-highlights span {
  min-height: 74px;
  padding: 0.9rem;
  border: 1px solid rgba(169, 192, 174, 0.85);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.quote-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(rgba(110, 139, 122, 0.92), rgba(110, 139, 122, 0.92)),
    var(--green-950);
  color: var(--white);
  text-align: center;
}

.quote-section blockquote {
  max-width: 920px;
  margin: 0 auto;
}

.quote-section p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
}

.quote-section cite {
  display: block;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 800;
}

.services-section {
  background: var(--surface);
}

.services-page-section {
  background: var(--surface);
}

.service-offerings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.offering-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(169, 192, 174, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(110, 139, 122, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offering-card:hover {
  border-color: rgba(217, 185, 138, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.offering-card.featured {
  background: linear-gradient(180deg, var(--white), var(--green-100));
}

.offering-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #3f3424;
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.offering-card h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.offering-card p {
  margin: 0.9rem 0 1.1rem;
  color: var(--muted);
}

.offering-card ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.offering-card li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.offering-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green-950);
  content: "✓";
  font-weight: 900;
}

.support-section {
  background: var(--white);
}

.compact-services .service-card {
  min-height: 128px;
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-info-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-info-list div {
  padding: 1rem;
  border: 1px solid rgba(169, 192, 174, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(110, 139, 122, 0.08);
}

.contact-info-list span {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-list a,
.contact-info-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(169, 192, 174, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(169, 192, 174, 0.95);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 185, 138, 0.24);
  outline: 0;
}

.contact-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form .btn {
  border: 0;
  cursor: pointer;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(110, 139, 122, 0.11);
}

.service-card {
  min-height: 154px;
  padding: 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(217, 185, 138, 0.85);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 1.05rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.35;
}

.consultation-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(135deg, var(--white), var(--green-100));
  border-block: 1px solid var(--line);
}

.consultation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.consultation-content > div {
  max-width: 720px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem;
}

.testimonial-card img {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.testimonial-card h3 {
  margin: 0 0 0.75rem;
  color: var(--green-950);
  font-size: 1rem;
}

.stars {
  margin-top: auto;
  color: var(--gold);
  font-size: 0.95rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.testimonials-page-section {
  background: var(--surface);
}

.testimonial-list {
  display: grid;
  gap: 1.25rem;
}

.home-testimonial-list {
  gap: 1.5rem;
}

.testimonial-story {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid rgba(169, 192, 174, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(110, 139, 122, 0.1);
}

.testimonial-person {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(217, 185, 138, 0.8);
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 28%, rgba(217, 185, 138, 0.42), transparent 2.8rem),
    var(--green-100);
}

.testimonial-person span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--surface);
  font-weight: 900;
}

.testimonial-story-content {
  min-width: 0;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1rem;
  margin-bottom: 0.75rem;
}

.story-meta h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.testimonial-story p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.testimonial-story p:last-child {
  margin-bottom: 0;
}

.testimonial-story[hidden] {
  display: none;
}

.testimonial-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-button,
.page-number {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(169, 192, 174, 0.95);
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pagination-button:hover,
.page-number:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.page-number.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #3f3424;
}

.pagination-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.final-cta {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(135deg, rgba(110, 139, 122, 0.95), rgba(85, 108, 95, 0.92)),
    var(--green-950);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  background: #405448;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
}

.footer-brand,
.site-footer h2 {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

address {
  display: grid;
  gap: 0.35rem;
  font-style: normal;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(-1.5rem, 1rem, 0) scale(0.95);
  }
  to {
    transform: translate3d(1.5rem, -1rem, 0) scale(1.05);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.95) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.05) rotate(6deg);
    opacity: 0.8;
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Legacy page support. The brief only asks for the home page, so existing inner pages keep their prior layout. */
body:not(.home-redesign) {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body:not(.home-redesign) .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

body:not(.home-redesign) section {
  padding: 96px 0;
}

body:not(.home-redesign) h1,
body:not(.home-redesign) h2,
body:not(.home-redesign) h3 {
  margin: 0 0 0.4em;
  color: var(--forest);
  font-family: var(--display);
  font-weight: 600;
}

body:not(.home-redesign) h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
}

body:not(.home-redesign) h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

body:not(.home-redesign) .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:not(.home-redesign) .eyebrow::before {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--moss);
  content: "";
}

body:not(.home-redesign) p.lead {
  max-width: 60ch;
  color: #3c463e;
  font-size: 1.1rem;
}

body:not(.home-redesign) header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 239, 0.9);
  border-bottom: 1px solid rgba(33, 56, 44, 0.14);
  backdrop-filter: blur(8px);
}

body:not(.home-redesign) .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

body:not(.home-redesign) .brand {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

body:not(.home-redesign) .brand span {
  color: var(--gold);
}

body:not(.home-redesign) .links {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body:not(.home-redesign) .links a {
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  color: var(--forest);
  font-size: 0.92rem;
  text-decoration: none;
  opacity: 0.75;
}

body:not(.home-redesign) .links a:hover,
body:not(.home-redesign) .links a.active {
  opacity: 1;
}

body:not(.home-redesign) .links a.active {
  border-bottom-color: var(--gold);
}

body:not(.home-redesign) .nav-cta,
body:not(.home-redesign) .btn-primary,
body:not(.home-redesign) .btn-ghost {
  display: inline-block;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-decoration: none;
}

body:not(.home-redesign) .nav-cta {
  padding: 10px 20px;
  color: var(--cream);
  background: var(--forest);
  font-size: 0.78rem;
  white-space: nowrap;
}

body:not(.home-redesign) .btn-primary,
body:not(.home-redesign) .btn-ghost {
  padding: 14px 26px;
}

body:not(.home-redesign) .btn-primary {
  color: var(--cream);
  background: var(--forest);
}

body:not(.home-redesign) .btn-ghost {
  border: 1px solid var(--forest);
  color: var(--forest);
}

body:not(.home-redesign) .menu-toggle {
  display: none;
  border: 0;
  color: var(--forest);
  background: none;
  font-size: 2rem;
  cursor: pointer;
}

body:not(.home-redesign) .hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 72px;
}

body:not(.home-redesign) .hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

body:not(.home-redesign) .hero-copy .cta-row,
body:not(.home-redesign) .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body:not(.home-redesign) .hero-copy .cta-row {
  margin-top: 34px;
}

body:not(.home-redesign) .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:not(.home-redesign) .hero-visual svg {
  width: 100%;
  max-width: 420px;
}

body:not(.home-redesign) .leaf-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

body:not(.home-redesign) .page-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(33, 56, 44, 0.14);
}

body:not(.home-redesign) .page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

body:not(.home-redesign) .about .wrap,
body:not(.home-redesign) .contact-wrap {
  display: grid;
  gap: 56px;
}

body:not(.home-redesign) .about .wrap {
  grid-template-columns: 0.8fr 1.2fr;
}

body:not(.home-redesign) .about-portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--sage), var(--moss));
}

body:not(.home-redesign) .about-portrait svg {
  width: 58%;
}

body:not(.home-redesign) .credential {
  padding: 18px 20px;
  margin-top: 26px;
  border: 1px solid rgba(33, 56, 44, 0.14);
  border-radius: 12px;
  background: var(--leaf-light);
  font-size: 0.92rem;
}

body:not(.home-redesign) .credential strong {
  color: var(--forest);
}

body:not(.home-redesign) .sequence,
body:not(.home-redesign) .contact {
  color: var(--cream);
  background: var(--forest);
}

body:not(.home-redesign) .sequence h1,
body:not(.home-redesign) .sequence h2,
body:not(.home-redesign) .contact h1,
body:not(.home-redesign) .contact h2 {
  color: var(--cream);
}

body:not(.home-redesign) .sequence .eyebrow,
body:not(.home-redesign) .contact .eyebrow {
  color: var(--sage);
}

body:not(.home-redesign) .sequence .eyebrow::before,
body:not(.home-redesign) .contact .eyebrow::before {
  background: var(--sage);
}

body:not(.home-redesign) .sequence p.lead,
body:not(.home-redesign) .contact-info p {
  color: rgba(250, 247, 239, 0.78);
}

body:not(.home-redesign) .seq-track {
  position: relative;
  margin-top: 56px;
}

body:not(.home-redesign) .seq-line {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(250, 247, 239, 0.22);
}

body:not(.home-redesign) .seq-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}

body:not(.home-redesign) .seq-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

body:not(.home-redesign) .seq-dot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  background: var(--forest);
}

body:not(.home-redesign) .seq-dot svg {
  width: 30px;
  height: 30px;
  stroke: var(--cream);
}

body:not(.home-redesign) .seq-num {
  position: absolute;
  top: -8px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--gold);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

body:not(.home-redesign) .seq-label {
  max-width: 11ch;
  color: rgba(250, 247, 239, 0.85);
  font-size: 0.82rem;
}

body:not(.home-redesign) .services-grid,
body:not(.home-redesign) .test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

body:not(.home-redesign) .service-card {
  padding: 32px 28px;
  border: 1px solid rgba(33, 56, 44, 0.14);
  border-radius: 16px;
  background: var(--cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body:not(.home-redesign) .service-card:hover {
  box-shadow: 0 16px 32px rgba(33, 56, 44, 0.08);
  transform: translateY(-4px);
}

body:not(.home-redesign) .service-card .tag {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.home-redesign) .service-card h3 {
  margin-top: 10px;
  font-size: 1.25rem;
}

body:not(.home-redesign) .service-card .price {
  margin-top: 14px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.95rem;
}

body:not(.home-redesign) .service-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: #3c463e;
  font-size: 0.94rem;
}

body:not(.home-redesign) .service-card li {
  margin-bottom: 6px;
}

body:not(.home-redesign) .testimonials,
body:not(.home-redesign) .promo-strip {
  background: var(--leaf-light);
}

body:not(.home-redesign) .test-card {
  padding: 28px;
  border: 1px solid rgba(33, 56, 44, 0.14);
  border-radius: 14px;
  background: var(--cream);
}

body:not(.home-redesign) .test-card p {
  color: #384037;
  font-size: 0.98rem;
  font-style: italic;
}

body:not(.home-redesign) .test-name {
  margin-top: 16px;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.8rem;
}

body:not(.home-redesign) .stars {
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 3px;
}

body:not(.home-redesign) .faq-list {
  max-width: 760px;
  margin-top: 40px;
}

body:not(.home-redesign) .faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(33, 56, 44, 0.14);
}

body:not(.home-redesign) .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
}

body:not(.home-redesign) .faq-item summary::-webkit-details-marker {
  display: none;
}

body:not(.home-redesign) .faq-item summary::after {
  flex-shrink: 0;
  color: var(--gold);
  content: "+";
  font-family: var(--mono);
  font-size: 1.3rem;
}

body:not(.home-redesign) .faq-item[open] summary::after {
  content: "-";
}

body:not(.home-redesign) .faq-item p {
  max-width: 62ch;
  margin-top: 12px;
  color: #3c463e;
}

body:not(.home-redesign) .contact-wrap {
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

body:not(.home-redesign) .contact-info .item {
  margin-top: 20px;
}

body:not(.home-redesign) .contact-info .label,
body:not(.home-redesign) form.booking label {
  color: var(--sage);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.home-redesign) .contact-info .value {
  margin-top: 4px;
  font-size: 1.05rem;
}

body:not(.home-redesign) form.booking {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body:not(.home-redesign) form.booking input,
body:not(.home-redesign) form.booking select,
body:not(.home-redesign) form.booking textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(250, 247, 239, 0.25);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(250, 247, 239, 0.06);
  font-family: var(--body);
  font-size: 0.96rem;
}

body:not(.home-redesign) form.booking input::placeholder,
body:not(.home-redesign) form.booking textarea::placeholder {
  color: rgba(250, 247, 239, 0.4);
}

body:not(.home-redesign) form.booking button {
  padding: 15px 24px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  color: var(--forest);
  background: var(--gold);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

body:not(.home-redesign) .form-note {
  margin-top: -4px;
  color: rgba(250, 247, 239, 0.55);
  font-size: 0.82rem;
}

body:not(.home-redesign) .promo-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body:not(.home-redesign) .promo-strip h2 {
  margin-bottom: 6px;
}

body:not(.home-redesign) .promo-strip p {
  margin: 0;
  color: #3c463e;
}

body:not(.home-redesign) footer {
  padding: 40px 0;
  text-align: center;
}

body:not(.home-redesign) footer p {
  color: #5c6a5e;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  body:not(.home-redesign) .seq-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  body:not(.home-redesign) .seq-line {
    display: none;
  }
}

@media (max-width: 860px) {
  body:not(.home-redesign) .hero .wrap,
  body:not(.home-redesign) .about .wrap,
  body:not(.home-redesign) .contact-wrap,
  body:not(.home-redesign) .services-grid,
  body:not(.home-redesign) .test-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  body:not(.home-redesign) .mobile-hide {
    display: none;
  }

  body:not(.home-redesign) .nav {
    position: relative;
  }

  body:not(.home-redesign) .menu-toggle {
    display: block;
  }

  body:not(.home-redesign) .links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none !important;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(33, 56, 44, 0.14);
    background: var(--cream);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  body:not(.home-redesign) .links.open {
    display: flex !important;
  }

  body:not(.home-redesign) .nav-cta {
    display: none;
  }

  body:not(.home-redesign) .hero .wrap {
    gap: 2rem;
    text-align: center;
  }

  body:not(.home-redesign) .hero-copy p {
    margin-inline: auto;
  }

  body:not(.home-redesign) .cta-row {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  body:not(.home-redesign) section {
    padding: 64px 0;
  }

  body:not(.home-redesign) .wrap {
    padding: 0 20px;
  }
}
