:root {
  --cream: #F7F6F2;
  --beige: #EDE7DF;
  --taupe: #D8CEC3;
  --sage: #7F8F73;
  --sage-deep: #6F7F66;
  --olive-deep: #4F5A45;
  --mud: #9B643E;
  --mud-deep: #9B643E;
  --text: #3F3A36;
  --text-secondary: #6A645E;
  --text-muted: #8A847E;
  --white: #FFFFFF;
  --overlay: rgba(45, 42, 38, 0.55);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px rgba(63, 58, 54, 0.08);
  --section-pad: clamp(3.5rem, 6vw, 6rem);
  --font-heading: "ivypresto-display";
  --font-body: "Figtree";
  --bp-sm: 360px;
  --bp-md: 480px;
  --bp-tablet: 768px;
  --bp-lg: 900px;
  --bp-xl: 1024px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h3 { font-size: 1.15rem; font-weight: 500; letter-spacing: 0; }

em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Rich CMS copy (TinyMCE): never wrap this output in a single <p> — it may contain multiple blocks */
.cms-html {
  max-width: 100%;
}
.cms-html p {
  margin: 0 0 1rem;
}
.cms-html p:last-child {
  margin-bottom: 0;
}
.cms-html ul,
.cms-html ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.cms-html li {
  margin-bottom: 0.35rem;
}
.cms-html a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cms-html h2,
.cms-html h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.cms-html h2:first-child,
.cms-html h3:first-child {
  margin-top: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.border-0 {
  border: 0px solid transparent !important;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mt-3{
  margin-top: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-deep);
}
.btn-white{
  background: var(--white);
  color: var(--sage);
  border: 1px solid var(--white);
}
.btn-white:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-card {
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}
.btn-card:hover { background: var(--sage-deep); }

.btn-large { padding: 1rem 2rem; font-size: 1rem; }

.btn-footer {
  background: var(--taupe);
  color: var(--text);
  margin-top: 0.5rem;
}
.btn-footer-cta {
  background: var(--sage);
  color: var(--white);
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-footer-cta:hover {
  background: var(--sage-deep);
}

/* ---- 1. Header ---- */
.header {
  background: var(--cream);
  padding: 1.5rem 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta-mobile { display: none !important; }
.header-cta-desktop { display: inline-block; }

.nav-overlay {
  display: none;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.nav a:hover { color: var(--text); }

.nav a.nav-active {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.nav a.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
  opacity: 0.9;
}

.nav-close {
  display: none;
}

/* ---- 2. Hero (full-width image, content overlay) ---- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  min-height: 75vh;
  max-height: 650px;
}

/* Full-width hero image (behind content) */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(45, 42, 38, 0.72) 0%,
    rgba(45, 42, 38, 0.44) 55%,
    rgba(45, 42, 38, 0.10) 100%
  );
  pointer-events: none;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background-image: url(../images/Home-header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner-option .hero-img-placeholder {
  background-image: url(../images/New/Hero-Option.jpg);
}

/* Static homepage: content sits toward the image side (right) on large screens */
@media (min-width: 769px) {
  .hero-banner-option .hero-content-wrap {
    justify-content: flex-end;
  }
  .hero-banner-option .hero-content {
    max-width: 560px;
    text-align: right;
    margin-left: 0;
    margin-right: 20%;
  }
}

/* Content on top of hero image */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  max-height: 650px;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.hero-content {
  max-width: 560px;
  text-align: left;
  margin-right: 26%;
}

.hero-content .btn-primary {
  display: inline-block;
}

.hero-content-wrap .eyebrow {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-content-wrap .hero-heading,
.hero-content-wrap .hero-heading em {
  color: #fff;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), 0 2px 10px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-heading {
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* ---- 3. Intro ---- */
.intro {
  background: var(--cream);
  padding: 5rem 0;
}

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

.intro-heading {
  margin-bottom: 1rem;
  color: var(--text);
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.intro-with-image .intro-inner {
  max-width: 1160px;
  text-align: left;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-with-image .intro-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.intro-with-image .intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-with-image .intro-heading { margin-bottom: 1.25rem; }
.intro-with-image .intro-text { margin-bottom: 1rem; }
.intro-with-image .intro-text:last-of-type { margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .intro-with-image .intro-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
  }
  .intro-with-image .intro-image-wrap { order: -1; max-width: 280px; margin: 0 auto; }
  .intro-with-image .intro-inner > div:not(.intro-image-wrap) { order: 1; }
}

@media (max-width: 480px) {
  .intro-with-image .intro-inner { padding: 0 1rem; gap: 1.5rem; }
  .intro-with-image .intro-image-wrap { max-width: 100%; }
}

/* ---- 4. Sound familiar (layered overlap) ---- */
.sound-familiar {
  background: var(--cream);
  padding: 5rem 0;
}

.sound-outer {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 380px;
}

.sound-image-wrap {
  flex-shrink: 0;
  width: 300px;
  position: relative;
  z-index: 2;
  margin-right: -60px;
}

.sound-image-wrap .img-placeholder {
  width: 100%;
}

.img-sound-lifestyle {
  aspect-ratio: 3 / 4;
}

.img-placeholder {
  background-image: url(../images/pooja.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.img-lifestyle {
  width: 100%;
  aspect-ratio: 1;
}

.img-portrait {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
}

.rounded { border-radius: var(--radius-lg); }

.sound-green-block {
  flex: 1;
  min-width: 0;
  max-width: 480px;
  margin-left: 2rem;
  padding: 2.5rem 2.75rem;
  background: var(--sage);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.sound-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.sound-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.sound-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.sound-list li:last-child { margin-bottom: 0; }

.sound-list .arrow {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- 5. About ---- */
.about {
  background: var(--cream);
  padding: 5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-heading {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.about-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.75;
}

.about-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.section-ideal {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(127, 143, 115, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  padding: var(--section-pad) 0;
}
.section-ideal .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}
.section-ideal .headline {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
  align-self: start;
}
.section-ideal .col-content { align-items: start; }
.section-ideal .small-heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
  margin-bottom: 1.5rem;
}
.section-ideal .list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 32px;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
  transition: transform 0.2s ease;
}
.section-ideal .list-item:last-child { margin-bottom: 0; }
.section-ideal .list-item:hover { transform: translateX(6px); }
.section-ideal .list-item .arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #333;
}
@media (max-width: 991.98px) {
  .section-ideal .row { grid-template-columns: 1fr; }
  .section-ideal .headline { font-size: 34px; }
  .section-ideal .col-content { margin-top: 2.5rem; }
}

.home-spotlight {
  background: var(--cream);
  padding: 5rem 0;
}

.home-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-spotlight-reverse .home-spotlight-content { order: 2; }
.home-spotlight-reverse .home-spotlight-image-wrap { order: 1; }
.home-spotlight-heading {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}
.home-spotlight-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.75;
}
.home-spotlight-image-wrap {
  display: flex;
  justify-content: flex-end;
}
.home-spotlight-reverse .home-spotlight-image-wrap {
  justify-content: flex-start;
}

/* ---- 6. Services (card slider) ---- */
.services {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(127, 143, 115, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  padding: var(--section-pad) 0;
}

.services-inner {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.services-eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--mud);
  letter-spacing: 0.12em;
}

.services-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text);
  margin: 0 0 0.75rem;
}

.services-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 0.5rem;
}

.services-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.slider-btn {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--taupe);
  background: var(--white);
  color: var(--sage-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(63, 58, 54, 0.06);
}
.slider-btn:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  transform: scale(1.05);
}

.slider-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.services-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 1.75rem;
  padding: 0.5rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc((100% - 2 * 1.75rem) / 3);
  min-width: 280px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: left;
  box-shadow: 0 8px 32px rgba(63, 58, 54, 0.08);
  border: 1px solid rgba(216, 206, 195, 0.5);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mud), var(--mud-deep));
  opacity: 0.9;
}

.service-card:hover {
  box-shadow: 0 14px 40px rgba(63, 58, 54, 0.12);
  transform: translateY(-4px);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  padding-top: 0.25rem;
  color: var(--mud-deep);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}
.service-card .btn-card{
  background: var(--mud);
}
.service-card .btn-card {
  margin-top: 1.25rem;
}

/* ---- 7. How it works ---- */
.how-works {
  background: var(--cream);
  padding: 5rem 0;
}

.how-works-inner {
  text-align: center;
}

.how-works-sub {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.step-card {
  background: var(--beige);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ---- 8. Final CTA (full-width image) ---- */
.final-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--sage-deep);
  background-image: url(../images/New/Home-bottom.webp);
  background-size: cover;
  background-position: center;
}

.final-cta-home .final-cta-bg {
  background-image: url(../images/New/Home-bottom.webp);
  background-color: var(--sage-deep);
}

.final-cta-home .final-cta-overlay {
  background: rgba(45, 42, 38, 0.5);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 42, 38, 0.45);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  inset: -120px;
  pointer-events: none;
  opacity: 0.9;
}

.final-cta::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 46%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.10), transparent 44%);
  filter: blur(0px);
}

.final-cta::after {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  opacity: 0.22;
  transform: rotate(-3deg);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 860px;
  width: calc(100% - 3rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 55px rgba(45, 42, 38, 0.28);
  backdrop-filter: blur(10px);
}

.final-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.final-heading em { color: var(--white); }

.final-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
}

.final-sub::before {
  content: none“";
}

.final-sub::after {
  content: none”";
}

.final-cta .btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(45, 42, 38, 0.26);
}
.final-cta .btn-primary:hover {
  background: var(--sage-deep);
}

/* ---- 9. Footer ---- */
.footer {
  background: var(--cream);
  color: var(--text);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-inner.footer-inner-simple {
  align-items: start;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.footer-community p,
.footer-brand .footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.newsletter-form input {
  width: 100%;
  max-width: 260px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* Shared form (contact / appointment) */
.site-form .form-row {
  margin-bottom: 1.25rem;
}
.site-form .form-row-full {
  grid-column: 1 / -1;
}
.site-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.site-form .required {
  color: var(--sage-deep);
}
.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.site-form input::placeholder,
.site-form textarea::placeholder {
  color: var(--text-muted);
}
.site-form textarea {
  resize: vertical;
  min-height: 120px;
}
.site-form select {
  cursor: pointer;
  appearance: auto;
}
.site-form .form-actions {
  margin-top: 1.5rem;
}
.site-form .form-actions .btn {
  min-height: 44px;
  padding: 0.9rem 1.5rem;
}
.site-form .form-message {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted, #5c534c);
}
.site-form .form-message:empty {
  display: none;
}
.site-form .form-message.form-message--error {
  color: #b42318;
}
.site-form .field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #b42318;
  min-height: 0;
}
.site-form .field-error:empty {
  display: none;
}
.site-form input.input-invalid,
.site-form textarea.input-invalid,
.site-form select.input-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.15);
}

.form-success-modal[hidden] {
  display: none !important;
}
.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.form-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 20, 0.45);
  cursor: pointer;
}
.form-success-modal__panel {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 26, 20, 0.18);
  text-align: center;
}
.form-success-modal__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.form-success-modal__text {
  margin: 0 0 1.25rem;
  line-height: 1.55;
  color: var(--text-muted, #5c534c);
  font-size: 0.98rem;
}
.form-success-modal__ok {
  min-width: 120px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-top: 0.85rem;
}

.footer-brand img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.social-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(216, 206, 195, 0.9);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(63, 58, 54, 0.08);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.social-links .social-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(216, 206, 195, 0.75);
  background: rgba(127, 143, 115, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}

.social-links .social-icon-box svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-links .social-link span:last-child {
  letter-spacing: 0.01em;
}

.social-links .social-link:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(63, 58, 54, 0.12);
  transform: translateY(-1px);
}

.social-links .social-link:focus-visible {
  outline: 3px solid rgba(127, 143, 115, 0.35);
  outline-offset: 2px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer-nav a {
  color: var(--text);
}

.footer-nav a:hover { text-decoration: underline; }

.footer-legal {
  border-top: 1px solid var(--taupe);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.footer-legal p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}


.sound-familiar {
  background: var(--cream);
  padding: var(--section-pad) 0;
  overflow: hidden; /* IMPORTANT */
}

.sound-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 420px;
}

/* IMAGE */
.sound-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 28vw, 340px);
  aspect-ratio: 6 / 7;
  height: auto;
  z-index: 2;
}

.sound-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* GREEN BOX – EDGE BLEED */
.sound-content {
  position: relative;
  margin-left: 220px;

  /* KEY PART */
  width: calc(100vw - 220px);
  max-width: none;

  background: var(--sage);
  border-radius: 36px 0 0 36px; /* RIGHT SIDE FLAT */
  padding: 64px 120px 64px 220px;
  color: #ffffff;
}

/* TEXT */
.sound-content h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  margin-bottom: 32px;
}

.sound-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sound-content li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.sound-content .arrow {
  font-size: 18px;
}

.sound-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  max-width: 720px;
}

.sound-content .sound-list {
  margin-bottom: 1.5rem;
}

.sound-content .sound-list li {
  margin-bottom: 0.85rem;
}
.how-it-works {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a847e;
}

/* Title */
.how-title {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.3;
  max-width: 900px;
  margin: 24px auto 80px;
  color: var(--text);
}

.how-title em {
  font-style: italic;
}

/* Steps layout */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Card */
.step {
  position: relative;
  background: var(--beige);
  border-radius: 28px;
  padding: 72px 32px 40px;
}

/* Number circle */
.step-number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--mud);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card title */
.step h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--mud);
}

/* Card text */
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Responsive — whole project
   ============================================ */

@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .hero-content { max-width: 380px; }
  .sound-wrapper { min-height: 340px; }
  .sound-image { width: 260px; }
  .sound-content { margin-left: 160px; padding: 40px 40px 40px 160px; }
  .sound-content h2 { font-size: 1.6rem; }
}

@media (max-width: 900px) {
  .container { padding: 0 1.25rem; }

  .hero-content {
    margin-right: 15%;
    max-width: 420px;
  }

  .sound-wrapper {
    min-height: 360px;
  }
  .sound-image {
    width: 280px;
    aspect-ratio: 6 / 7;
    height: auto;
  }
  .sound-content {
    margin-left: 180px;
    width: calc(100vw - 180px);
    padding: 48px 48px 48px 180px;
  }
  .sound-content h2 { font-size: 28px; }

  .how-container { padding: 0 1.25rem; }
  .how-title { font-size: 32px; margin-bottom: 48px; }
  .steps { gap: 32px; }
  .step { padding: 56px 24px 32px; }
  .step h3 { font-size: 22px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  /* Header & mobile sidebar menu */
  .menu-toggle { display: flex; }
  .header-cta-desktop { display: none !important; }
  .header-cta-mobile { display: inline-block !important; }

  .header-inner {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(63, 58, 54, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: var(--cream);
    box-shadow: -8px 0 32px rgba(63, 58, 54, 0.12);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--taupe);
  }
  body.nav-open .nav {
    transform: translateX(0);
  }
  .nav-close {
    display: flex;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text);
    border-radius: var(--radius);
  }
  .nav-close:hover {
    background: var(--beige);
  }
  .nav-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
  }
  .nav-close span:nth-child(1) { transform: rotate(45deg); }
  .nav-close span:nth-child(2) { transform: rotate(-45deg); }
  .nav a {
    font-size: 1.05rem;
    padding: 0.85rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid var(--taupe);
  }
  .nav a.nav-active::after { content: none; }
  .nav a:last-of-type {
    border-bottom: none;
    margin-top: 0.5rem;
  }
  .nav .btn {
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.9rem 1.25rem;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }
  .logo img { width: 200px; max-width: 100%; }

  /* Hero */
  .hero-inner { min-height: 60vh; max-height: 500px; }
  .hero-content-wrap {
    min-height: 60vh;
    max-height: 500px;
    padding: 2.5rem 1.25rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-content {
    margin-right: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-content .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content-wrap .eyebrow { font-size: 0.85rem; letter-spacing: 0.15em; }
  .hero-heading { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1.25rem; }

  /* Intro */
  .intro { padding: 3rem 0; }
  .intro-heading { font-size: 1.5rem; }
  .intro-text { font-size: 1rem; }

  /* Sound familiar — image first then content */
  .sound-familiar { padding: 3rem 0; overflow: visible; }
  .sound-wrapper {
    max-width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 1.25rem;
  }
  .sound-image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 6 / 7;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    order: -1;
  }
  .sound-image img { border-radius: var(--radius-lg); }
  .sound-content {
    position: relative;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
    z-index: 2;
    order: 1;
  }
  .sound-content h2 { font-size: 1.6rem; margin-bottom: 1.25rem; }
  .sound-content li { margin-bottom: 1rem; }
  .sound-content p { max-width: none; }

  /* About — image first then content */
  .about { padding: 3rem 0; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  .about-image-wrap { justify-content: center; order: -1; }
  .about-content { order: 1; text-align: center; }
  .about-text { text-align: center; }

  .home-spotlight { padding: 3rem 0; }
  .home-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  .home-spotlight-image-wrap { justify-content: center; order: -1; }
  .home-spotlight-content { order: 1; text-align: center; }
  .home-spotlight-text { text-align: center; }

  /* Services */
  .services { padding: 3rem 0; }
  .services-lead { margin-bottom: 1.75rem; }
  .services-slider { gap: 0.5rem; }
  .services-track {
    padding: 0.25rem 0.25rem 0.5rem;
    gap: 1rem;
  }
  .service-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: calc(100% - 1rem);
    padding: 1.5rem;
  }
  .slider-btn { width: 2.5rem; height: 2.5rem; }

  /* How it works */
  .how-it-works { padding: 3rem 0; }
  .how-container { padding: 0 1.25rem; }
  .how-title { font-size: 1.5rem; margin: 1rem auto 2.5rem; line-height: 1.35; }
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .step { padding: 3rem 1.5rem 2rem; }
  .step-number { width: 48px; height: 48px; top: -24px; font-size: 1.1rem; }
  .step h3 { font-size: 1.25rem; }
  .step p { font-size: 0.95rem; }
  .steps-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .step-card { padding: 1.5rem 1.25rem; }

  /* Final CTA */
  .final-cta { min-height: 320px; }
  .final-cta-content { padding: 2rem 1.25rem; width: calc(100% - 2.5rem); }
  .final-heading { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .final-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); margin-bottom: 1.25rem; }
  .final-cta .btn-large { padding: 0.85rem 1.5rem; font-size: 0.95rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }
  .footer-brand img { margin: 0 auto; display: block; }
  .social-links { justify-content: center; }
  .footer-nav { align-items: center; }
  .footer-legal { padding: 1rem 1.25rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.125rem; }
  .sound-familiar { padding: 2.75rem 0; }
  .about { padding: 2.75rem 0; }
  .services { padding: 2.75rem 0; }
  .how-it-works { padding: 2.75rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .logo img { width: 180px; min-width: 0; }
  .hero-inner { min-height: 55vh; }
  .hero-content-wrap { min-height: 55vh; padding: 2rem 1rem; }
  .hero-heading { font-size: 1.35rem; }
  .intro { padding: 2.5rem 0; }
  .intro-heading { font-size: 1.35rem; }

  .sound-familiar { padding: 2.5rem 0; }
  .sound-image { max-width: 100%; margin-bottom: 10px; }
  .sound-content { padding: 2rem 1.25rem; margin-top: 0rem; }
  .sound-content h2 { font-size: 1.4rem; }

  .about { padding: 2.5rem 0; }
  .about-heading { font-size: 1.35rem; }
  .services { padding: 2.5rem 0; }
  .how-it-works { padding: 2.5rem 0; }
  .how-title { font-size: 1.3rem; margin-bottom: 2rem; }
  .step { padding: 2.5rem 1.25rem 1.5rem; }
  .final-cta { min-height: 280px; }
  .final-heading { font-size: 1.35rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-large { padding: 0.85rem 1.25rem; font-size: 0.9rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .logo img { width: 160px; }
  .hero-heading { font-size: 1.25rem; }
  .intro-heading { font-size: 1.25rem; }
  .sound-content { padding: 1.5rem 1rem; }
  .how-title { font-size: 1.2rem; }
  .final-cta { min-height: 260px; }
  .final-cta-content { padding: 1.5rem 1rem; }
}
