:root {
  --primary: #2F6F6A;
  --primary-dark: #1a2a28;
  --secondary: #D8B44A;
  --accent: #1E3A8A;
  --background: #F6F4EF;
  --text: #121212;
  --cream: #F6F4EF;
  --white: #FAFAF7;
  --footer-bg: #2F6F6A;
  --footer-text: rgba(246, 244, 239, 0.7);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  text-wrap: balance;
  line-height: 1.15;
}

p { text-wrap: pretty; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 66px;
  background: rgba(47, 111, 106, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  max-width: 1140px;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links,
.nav-links ul,
.nav-links li,
.dropdown-menu,
.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.nav-links a {
  color: rgba(246, 244, 239, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--secondary); }

.nav-phone {
  color: var(--secondary) !important;
  font-weight: 600 !important;
}

.nav-cta {
  background: var(--secondary);
  color: var(--text) !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: #c5a23e;
  transform: translateY(-1px);
}
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.nav-right .nav-phone {
  font-size: .82rem;
}
/* Dropdown — walker outputs .dropdown / .dropdown-menu */
.dropdown,
.nav-dropdown {
  position: relative;
}
.dropdown > a::after,
.nav-dropdown > a::after {
  content: ' \25BE';
  font-size: .7em;
}
.dropdown-menu,
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(47, 111, 106, 0.98);
  border: 1px solid rgba(246,244,239,.12);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  padding: 8px 0;
  min-width: 200px;
  z-index: 100;
  margin-top: 8px;
  list-style: none !important;
}
.dropdown:hover > .dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.dropdown-menu a,
.nav-dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: .78rem;
  white-space: nowrap;
}
.dropdown-menu a:hover,
.nav-dropdown-menu a:hover {
  background: rgba(246,244,239,.08);
}
.dropdown-menu li {
  list-style: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 85vh;
  max-height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 66px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  animation: kenBurns 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.3) 0%,
    rgba(26, 42, 40, 0.55) 50%,
    rgba(26, 42, 40, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-subheadline {
  display: inline-block;
  background: rgba(30, 58, 138, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 640px;
}

.hero-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 500;
}

.btn-gold {
  display: inline-block;
  background: var(--secondary);
  color: var(--text);
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-gold:hover {
  background: #c5a23e;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(216, 180, 74, 0.35);
}

/* ── SERVICES ── */
.services {
  padding: 60px 24px;
  background: var(--background);
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 32px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: #FFFDF8;
  border-left: 3px solid var(--secondary);
  padding: 40px 32px 36px;
  min-height: 160px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              background 0.4s ease;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(47, 111, 106, 0.12), 0 4px 12px rgba(0,0,0,0.06);
  border-left-color: var(--primary);
  background: #FAFCFB;
}

.service-card:hover::after {
  width: 100%;
}

.service-bracket {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease;
}

.service-card:hover .service-bracket {
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-color: var(--primary);
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.service-card:hover .service-name {
  color: var(--primary);
}

.service-line {
  width: 40px;
  height: 2px;
  background: var(--secondary);
  opacity: 0.6;
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
}

.service-card:hover .service-line {
  width: 70px;
  opacity: 1;
}

/* ── PAIN PANELS ── */
.pain-panels {
  background: var(--primary-dark);
  padding: 70px 24px;
  position: relative;
}

.pain-panels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
}

.pain-inner {
  max-width: 780px;
  margin: 0 auto;
}

.pain-block {
  padding: 45px 0;
  border-bottom: 1px solid rgba(216, 180, 74, 0.15);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pain-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-block:last-child {
  border-bottom: none;
}

.pain-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}

.pain-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(246, 244, 239, 0.82);
  max-width: 620px;
}

.pain-text p {
  margin-bottom: 6px;
}

/* ── MOUNTAIN RIDGELINE SVG DIVIDER ── */
.mountain-divider {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
}

/* ── BRIDGE CTA ── */
.bridge {
  background: var(--accent);
  padding: 55px 24px;
  position: relative;
  overflow: hidden;
}

.bridge-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bridge h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
  text-align: center;
}

.bridge-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255, 0.88);
  text-align: center;
  margin-bottom: 36px;
}

.bridge-text p {
  margin-bottom: 6px;
}

.bridge .btn-gold {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Infinity watermark */
.infinity-watermark {
  position: absolute;
  opacity: 0.04;
  z-index: 1;
}

/* ── BIO ── */
.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.bio-image {
  position: relative;
  overflow: hidden;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.bio-image img.visible {
  transform: translateX(0);
  opacity: 1;
}

.bio-content {
  background: var(--cream);
  padding: 65px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
}

.bio-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #333;
  max-width: 550px;
}

.bio-body p { margin-bottom: 14px; }

.bio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin: 22px 0;
  line-height: 1.5;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-top: 8px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ── FINAL CTA / CONTACT ── */
.final-cta {
  background: var(--primary);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.final-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.final-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
}

.final-left p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(246, 244, 239, 0.82);
  margin-bottom: 8px;
  max-width: 500px;
}

.final-left .btn-gold {
  margin-top: 22px;
}

.final-right {
  position: relative;
}

.knot-float {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 180px;
  opacity: 0.18;
  z-index: 0;
  animation: knotRotate 30s linear infinite;
}

@keyframes knotRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(246, 244, 239, 0.4);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--cream);
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(246, 244, 239, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.captcha-label {
  font-size: 0.88rem;
  color: rgba(246, 244, 239, 0.7);
  white-space: nowrap;
}

.captcha-input {
  width: 70px !important;
  text-align: center;
}

.form-submit {
  width: 100%;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary);
  padding: 42px 24px 24px;
  text-align: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(246, 244, 239, 0.8);
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-socials a {
  color: rgba(246, 244, 239, 0.45);
  transition: color 0.3s;
}

.footer-socials a:hover { color: var(--secondary); }

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(246, 244, 239, 0.35);
  margin-bottom: 8px;
}

.footer-legal a {
  color: rgba(246, 244, 239, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--secondary); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(246, 244, 239, 0.25);
}

/* ── CONTAINER ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── INNER PAGE HERO ── */
.inner-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 66px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.25) 0%, rgba(26,42,40,0.65) 100%);
  z-index: 1;
}
.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.inner-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ── ABOUT PAGE ── */
.about-intro {
  padding: 60px 24px;
  background: var(--background);
}
.about-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}
.about-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.about-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}
.about-highlight {
  padding: 60px 24px;
  background: var(--primary);
}
.about-highlight-inner {
  max-width: 780px;
  margin: 0 auto;
}
.about-highlight h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 18px;
}
.about-highlight p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(246, 244, 239, 0.85);
  margin-bottom: 14px;
}
.about-highlight .highlight-emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--secondary);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin: 22px 0;
  line-height: 1.5;
}
.about-bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: var(--primary-dark);
}
.about-bio-img {
  overflow: hidden;
}
.about-bio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-bio-text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-bio-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
}
.about-bio-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(246, 244, 239, 0.85);
  margin-bottom: 14px;
  max-width: 550px;
}
.about-bio-text .bio-quote {
  color: var(--secondary);
  border-left-color: var(--secondary);
}
.about-approach {
  padding: 60px 24px;
  background: var(--background);
}
.about-approach-inner {
  max-width: 780px;
  margin: 0 auto;
}
.about-approach h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
}
.about-approach p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}
.about-values {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin: 22px 0;
  line-height: 1.5;
}
.about-cta-band {
  background: var(--accent);
  padding: 50px 24px;
  text-align: center;
}
.about-cta-band p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 auto 24px;
}

/* ── FAQ PAGE ── */
.faq-section {
  padding: 80px 24px 60px;
  background: var(--primary-dark);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 0;
  border: none;
  counter-increment: faq;
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
  background: var(--primary);
  border: none;
  border-left: 3px solid transparent;
  width: 100%;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: rgba(246, 244, 239, 0.85);
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
}
.faq-question::before {
  content: counter(faq, decimal-leading-zero);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--secondary);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 24px;
  transition: opacity 0.35s ease;
}
.faq-question:hover {
  color: var(--cream);
  border-left-color: var(--secondary);
}
.faq-question:hover::before {
  opacity: 1;
}
.faq-item.active .faq-question {
  color: var(--secondary);
  border-left-color: var(--secondary);
  background: rgba(47, 111, 106, 0.6);
}
.faq-item.active .faq-question::before {
  opacity: 1;
}
/* Infinity-knot icon — two overlapping loops */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 16px;
  margin-left: auto;
  position: relative;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  background: none;
  transition: border-color 0.5s ease, opacity 0.5s ease;
  transform: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.faq-icon::before {
  left: 0;
}
.faq-icon::after {
  right: 0;
  opacity: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: none;
  border-radius: 0;
}
.faq-item.active .faq-icon::before {
  border-color: rgba(246, 244, 239, 0.35);
  background: none;
}
.faq-item.active .faq-icon::after {
  border-color: rgba(246, 244, 239, 0.35);
  opacity: 1;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  max-height: none;
}
.faq-answer > * {
  overflow: hidden;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  max-height: none;
  padding-bottom: 0;
}
.faq-answer-wrap {
  padding: 0 32px 0 76px;
  background: rgba(47, 111, 106, 0.25);
  border-left: 3px solid var(--secondary);
}
.faq-item.active .faq-answer-wrap {
  padding: 28px 32px 32px 76px;
}
.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(246, 244, 239, 0.78);
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
/* Separator between items */
.faq-item + .faq-item {
  border-top: 1px solid rgba(216, 180, 74, 0.08);
}

/* ── CONTACT PAGE ── */
/* Intro section */
.contact-intro {
  padding: 70px 24px 60px;
  background: var(--background);
}
.contact-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.contact-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* Contact details band */
.contact-band {
  background: var(--primary-dark);
  padding: 40px 24px;
}
.contact-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.contact-band-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-band-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}
.contact-band-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.contact-band-item a,
.contact-band-item span {
  font-size: 0.95rem;
  color: rgba(246, 244, 239, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-band-item a:hover {
  color: var(--secondary);
}
.contact-band-divider {
  width: 1px;
  height: 40px;
  background: rgba(216, 180, 74, 0.2);
}

/* Form section */
.contact-form-section {
  background: var(--primary);
  padding: 70px 24px;
}
.contact-form-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}
.contact-form-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(246, 244, 239, 0.8);
  margin-bottom: 14px;
}
.contact-form-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--secondary);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin-top: 28px;
  line-height: 1.55;
}

/* Form wrap */
.contact-form-wrap {
  background: rgba(26, 42, 40, 0.5);
  border: 1px solid rgba(216, 180, 74, 0.12);
  border-radius: 8px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}

/* ── WPFORMS OVERRIDES ── */
.final-cta .wpforms-container,
.contact-form-wrap .wpforms-container {
  margin: 0;
  padding: 0;
}
.final-cta .wpforms-form input,
.final-cta .wpforms-form textarea,
.contact-form-wrap .wpforms-form input,
.contact-form-wrap .wpforms-form textarea {
  background: transparent !important;
  border: 1px solid rgba(246, 244, 239, 0.4) !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.92rem !important;
  color: var(--cream) !important;
}
.final-cta .wpforms-form input::placeholder,
.final-cta .wpforms-form textarea::placeholder,
.contact-form-wrap .wpforms-form input::placeholder,
.contact-form-wrap .wpforms-form textarea::placeholder {
  color: rgba(246, 244, 239, 0.45) !important;
}
.final-cta .wpforms-form input:focus,
.final-cta .wpforms-form textarea:focus,
.contact-form-wrap .wpforms-form input:focus,
.contact-form-wrap .wpforms-form textarea:focus {
  border-color: var(--secondary) !important;
  outline: none !important;
  box-shadow: none !important;
}
.final-cta .wpforms-form button[type="submit"],
.contact-form-wrap .wpforms-form button[type="submit"] {
  width: 100%;
  background: var(--secondary) !important;
  color: var(--text) !important;
  padding: 14px 36px !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.final-cta .wpforms-form button[type="submit"]:hover,
.contact-form-wrap .wpforms-form button[type="submit"]:hover {
  background: #c5a23e !important;
  transform: translateY(-2px);
}
.final-cta .wpforms-form .wpforms-field-label {
  display: none !important;
}
.contact-form-section .contact-form-wrap .wpforms-form .wpforms-field-label {
  display: block !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--secondary);
  margin-bottom: 6px;
}
.contact-form-section .contact-form-wrap .wpforms-form .wpforms-required-label {
  color: rgba(246, 244, 239, 0.4);
}
.final-cta .wpforms-form .wpforms-field,
.contact-form-wrap .wpforms-form .wpforms-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
}
.contact-section .wpforms-form input,
.contact-section .wpforms-form textarea {
  background: transparent !important;
  border: 1px solid rgba(246, 244, 239, 0.4) !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.92rem !important;
  color: var(--cream) !important;
}
.contact-section .wpforms-form input::placeholder,
.contact-section .wpforms-form textarea::placeholder {
  color: rgba(246, 244, 239, 0.45) !important;
}
.contact-section .wpforms-form input:focus,
.contact-section .wpforms-form textarea:focus {
  border-color: var(--secondary) !important;
  outline: none !important;
  box-shadow: none !important;
}
.contact-section .wpforms-form button[type="submit"] {
  width: 100%;
  background: var(--secondary) !important;
  color: var(--text) !important;
  padding: 14px 36px !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.contact-section .wpforms-form .wpforms-field-label {
  display: none !important;
}
.contact-section .wpforms-form .wpforms-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
}

/* ── SERVICE PAGE ── */
.svc-intro {
  padding: 50px 24px;
  background: var(--background);
}
.svc-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}
.svc-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}
.svc-img-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 40px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.svc-img-section--reverse { direction: rtl; }
.svc-img-section--reverse > * { direction: ltr; }
.svc-text-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.svc-text-col p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}
.svc-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.gold-line {
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 1s ease;
  margin: 0 auto;
}

.gold-line.visible {
  width: 80px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-bio-section { grid-template-columns: 1fr; }
  .about-bio-text { padding: 40px 24px; }
  .contact-form-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-band-inner { flex-wrap: wrap; gap: 24px; }
  .svc-img-section { grid-template-columns: 1fr; gap: 24px; }
  .svc-img-section--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(47, 111, 106, 0.98);
    padding: 20px 24px;
    gap: 14px;
  }
  .nav-toggle { display: block; }
  .dropdown-menu,
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 4px 0 4px 16px;
    min-width: 0;
    display: none;
    background: transparent;
  }
  .dropdown.open > .dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .dropdown:hover > .dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .dropdown.open:hover > .dropdown-menu,
  .nav-dropdown.open:hover .nav-dropdown-menu { display: block; }
  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .bio { grid-template-columns: 1fr; }
  .bio-image { height: 350px; }
  .bio-content { padding: 40px 24px; }
  .final-inner { grid-template-columns: 1fr; gap: 40px; }
  .knot-float { display: none; }
  .inner-hero { height: 35vh; min-height: 260px; }
  .about-bio-section { grid-template-columns: 1fr; }
  .about-bio-img { height: 350px; }
  .about-bio-text { padding: 40px 24px; }
  .contact-form-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrap { padding: 30px 24px; }
  .contact-band-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .contact-band-divider { width: 60px; height: 1px; }
  .contact-band { padding: 36px 24px; }
  .svc-img-section { grid-template-columns: 1fr; gap: 24px; }
  .svc-img-section--reverse { direction: ltr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-subheadline { padding: 12px 18px; font-size: 0.92rem; }
  .pain-heading { font-size: clamp(2rem, 7vw, 3rem); }
  .service-card { padding: 28px 22px 24px; }
  .bridge h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .inner-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .about-intro, .about-approach, .contact-section, .svc-intro { padding: 40px 16px; }
  .about-highlight { padding: 40px 16px; }
  .faq-section { padding: 50px 12px; }
  .faq-question { font-size: 1.1rem; padding: 22px 18px; gap: 14px; }
  .faq-question::before { min-width: 20px; }
  .faq-answer-wrap { padding: 0 18px 0 52px; }
  .faq-item.active .faq-answer-wrap { padding: 22px 18px 26px 52px; }
  .contact-form-wrap { padding: 24px 18px; }
}

/* ── FORCE VISIBLE FALLBACK ── */
@keyframes forceVisible {
  to { opacity: 1; transform: none; }
}
/* Above-fold elements: fast fallback */
.hero-headline, .hero-subheadline, .hero-location, .hero-content .btn-gold {
  animation: forceVisible 0s 2.5s forwards;
}
/* Below-fold elements: longer delay so scroll animations can fire first */
.fade-up, .gold-line,
.bio-image img,
.bridge-inner,
.final-left, .contact-form,
.services-label, .service-card {
  animation: forceVisible 0s 6s forwards;
}
/* Pain blocks rely on their own observer — no forceVisible.
   Cancel any inherited animation once JS adds .visible */
.pain-block.visible,
.fade-up.visible,
.bio-image img.visible {
  animation: none;
}

/* ========== MOBILE RESPONSIVE INVARIANTS — DO NOT REMOVE ========== */
/* Required by tpa-scaffold Step 4.5 / validator Check 15.
   Prevents brand text from pushing the hamburger off-screen, submenu items
   from overflowing, and phantom horizontal scroll on iOS. */
html, body { overflow-x: clip; }

@media (max-width: 768px) {
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand-text, .brand-text small { white-space: normal; min-width: 0; }
  .mobile-toggle { flex-shrink: 0; margin-left: auto; }
  .nav-links > li { white-space: normal; }
  .dropdown-menu,
  .dropdown-menu li,
  .dropdown-menu a { white-space: normal; }
}

