/*
 * Pranaflow - Ethereal Watercolor Flow
 * Typography: Great Vibes (script), Cormorant Garamond (headings), Poppins (body)
 * Colors: Dusty Moss (#7F969B), Sage Green (#D0D8C8), Buttercream, Off White
 */

:root {
  --dusty-moss: #7F969B;
  --light-blue-gray: #C9D8DD;
  --soft-gray: #DFE2E3;
  --off-white: #F0F5F8;
  --sage-meadow: #BBC3C9;
  --sage-green: #D0D8C8;
  --buttercream: #F5EDE4;
  --minted-eucalyptus: #9DBFBE;
  --dark-text: #4a5a5e;
  --body-text: #5a6f73;
  --font-script: "Great Vibes", cursive;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--off-white);
}

.min-h-screen {
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.font-script { font-family: var(--font-script); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background-color: var(--dusty-moss);
  color: white;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  background-color: #6a8185;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 2px solid var(--dusty-moss);
  color: var(--dusty-moss);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background-color: var(--dusty-moss);
  color: white;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}

.nav-bar.scrolled {
  background: rgba(240, 245, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-bar:not(.scrolled) {
  background: transparent;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .nav-logo { gap: 0.75rem; }
  .nav-logo img { height: 3rem; }
}

.nav-logo .brand {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--dusty-moss);
}

@media (min-width: 768px) {
  .nav-logo .brand { font-size: 1.875rem; }
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-links .nav-cta {
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--dusty-moss);
}

.nav-caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.85;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 22rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(201, 216, 221, 0.9);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.nav-dropdown-group a {
  display: block;
  padding: 0.35rem 0.25rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--body-text);
  text-decoration: none;
  letter-spacing: normal;
  text-transform: none;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-group a:hover {
  background: rgba(127, 150, 155, 0.12);
  color: var(--dark-text);
}

.nav-mobile-group {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(208, 216, 200, 0.35);
}

.nav-mobile-details {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(208, 216, 200, 0.35);
}

.nav-mobile-summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.25rem 0;
}

.nav-mobile-summary::-webkit-details-marker {
  display: none;
}

.nav-mobile-details > .nav-mobile-summary::after {
  content: '';
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.5rem;
  margin-bottom: 2px;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.nav-mobile-details[open] > .nav-mobile-summary::after {
  transform: rotate(225deg);
  margin-bottom: 0;
}

.nav-mobile-details .nav-mobile-group {
  border-top: none;
  padding-top: 0.5rem;
}

.nav-mobile-title {
  font-family: var(--font-heading);
  color: var(--dark-text);
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.nav-mobile-sub {
  padding-left: 1rem;
  opacity: 0.95;
  text-transform: none;
  letter-spacing: normal;
}

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav-menu-btn { display: none; }
}

.nav-menu-btn .line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--dusty-moss);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.open .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-btn.open .line:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn.open .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(240, 245, 248, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 1.5rem 0;
  display: none;
}

.nav-mobile.open {
  display: block;
}

@media (min-width: 768px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: color 0.3s;
  white-space: normal;
  line-height: 1.35;
}

.nav-mobile a:hover {
  color: var(--dusty-moss);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Landing page (service split) */
.landing-hero {
  min-height: 100vh;
}

.landing-grid {
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 64rem;
  text-align: left;
}

@media (min-width: 768px) {
  .landing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.landing-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.10);
  border: 1px solid rgba(201, 216, 221, 0.65);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.landing-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  color: var(--dark-text);
}

.landing-card p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.6;
}

.landing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

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

.landing-list li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--dusty-moss);
}

.landing-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}

/* Therapeutic services */
.therapy-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.therapy-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.10);
  border: 1px solid rgba(201, 216, 221, 0.65);
}

@media (min-width: 1024px) {
  .therapy-card { padding: 2.5rem; }
}

.therapy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  max-width: 56rem;
}

.therapy-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.therapy-list li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.65rem;
  border-radius: 50%;
  background: var(--dusty-moss);
}

.therapy-list span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.6;
}

.therapy-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .therapy-cta {
    flex-direction: row;
    align-items: center;
  }
}

.pricing-callout {
  margin-top: 1.75rem;
  background: rgba(245, 237, 228, 0.95);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(201, 216, 221, 0.55);
  color: var(--body-text);
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.pricing-callout p {
  margin: 0;
}

.pricing-callout strong {
  color: var(--dark-text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(240,245,248,0.3), transparent 30%, rgba(240,245,248,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-symbol {
  margin-bottom: 2rem;
}

.hero-symbol img {
  height: 7rem;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(127, 150, 155, 0.15));
  mix-blend-mode: multiply;
  opacity: 0.95;
  animation: breathe 4s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-symbol img { height: 9rem; }
}

@media (min-width: 1024px) {
  .hero-symbol img { height: 10rem; }
}

.hero h1 {
  font-family: var(--font-script);
  font-size: 3.75rem;
  color: var(--dusty-moss);
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 5rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 6rem; }
}

.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-deco span:nth-child(1),
.hero-deco span:nth-child(3) {
  width: 4rem;
  height: 1px;
  background: rgba(127, 150, 155, 0.5);
}

.hero-deco span:nth-child(2) {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(127, 150, 155, 0.5);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-text);
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .hero-tagline { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .hero-tagline { font-size: 2.25rem; }
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-desc { font-size: 1.125rem; }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}


@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}


/* Sections common */
.section {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

/* Reduced spacing utility for short sections */
.section-tight {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section-tight { padding: 4.5rem 0; }
}

.section-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.section-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About section */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.about-image .accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(208, 216, 200, 0.4);
  filter: blur(40px);
}

.about .script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--dusty-moss);
  margin: 0 0 0.5rem;
}

.about h2 {
  font-size: 2.25rem;
  color: var(--dark-text);
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
  .about h2 { font-size: 3rem; }
}

.about .sub {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: var(--body-text);
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .about .sub { font-size: 2.25rem; }
}

.about .sub .script {
  font-family: var(--font-script);
  font-size: inherit;
  color: var(--dusty-moss);
}

.about-text p {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.about-text p.font-medium {
  font-weight: 500;
  color: var(--dark-text);
}

.about-btns {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* About Me */
.about-me .script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--dusty-moss);
  margin: 0 0 0.5rem;
}

.about-me h2.script {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--dusty-moss);
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .about-me .script { font-size: 2.25rem; }
  .about-me h2.script { font-size: 3.5rem; }
}

.about-me .credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.about-me .credentials span {
  padding: 0.5rem 1rem;
  background: var(--off-white);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--body-text);
  border: 1px solid var(--sage-green);
}

.about-me .quote {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-text);
  font-style: italic;
  border-left: 4px solid rgba(127, 150, 155, 0.3);
  padding-left: 1.5rem;
  margin: 2rem 0 0;
}

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

.about-me .photo-frame {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(208,216,200,0.3), rgba(127,150,155,0.2));
  border-radius: 1.5rem;
  transform: rotate(3deg);
}

.about-me .photo-wrap img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* Expect section */
.expect-bg {
  position: absolute;
  inset: 0;
}

.expect-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.expect-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(240,245,248,0.95), rgba(240,245,248,0.85), rgba(240,245,248,0.7));
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 42rem;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.expect-list li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.65rem;
  border-radius: 50%;
  background: var(--dusty-moss);
}

.expect-list span {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--body-text);
}

/* Offerings */
.offerings-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offerings-header .script {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: var(--dusty-moss);
  margin: 0 0 0.5rem;
}

.offerings-header h2 {
  font-size: 2.25rem;
  color: var(--dark-text);
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .offerings-header h2 { font-size: 3rem; }
}

.offerings-header p {
  font-family: var(--font-body);
  color: var(--body-text);
  max-width: 42rem;
  margin: 0 auto;
}

.offerings-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offering-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid rgba(201, 216, 221, 0.5);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offering-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.offering-card .symbol {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.offering-card h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin: 0 0 0.75rem;
}

.offering-card p {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.6;
  margin: 0 0 0.9rem;
}

.offering-card p:last-child {
  margin-bottom: 0;
}

/* Pricing */
.pricing-cards {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 4rem;
  grid-template-columns: 1fr !important;
  justify-items: stretch;
}

.pricing-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid rgba(201, 216, 221, 0.5);
  width: 100%;
  max-width: none;
}

.pricing-card .symbol {
  height: 2.5rem;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.pricing-card h3 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin: 0 0 0.25rem;
}

.pricing-card .subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--dusty-moss);
  margin: 0 0 1rem;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--dusty-moss);
  margin: 0 0 1rem;
}

.pricing-card .desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

.other-offerings {
  max-width: 72rem;
  margin: 0 auto;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(201, 216, 221, 0.5);
}

.other-offerings h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  text-align: center;
  margin: 0 0 2rem;
}

.other-offerings .row {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 216, 221, 0.3);
}

.other-offerings .row:last-child {
  border-bottom: none;
}

@media (min-width: 640px) {
  .other-offerings .row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.other-offerings .row span:first-child {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-text);
}

.other-offerings .row span:last-child {
  font-family: var(--font-body);
  color: var(--dusty-moss);
  font-style: italic;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .other-offerings .row span:last-child { margin-top: 0; }
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note p {
  font-family: var(--font-body);
  color: var(--body-text);
  font-style: italic;
  margin: 0 0 1.5rem;
}

/* Testimonials */
.testimonial-card {
  max-width: 48rem;
  margin: 0 auto;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid rgba(201, 216, 221, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .testimonial-card { padding: 3rem; }
}

.testimonial-card .symbol {
  height: 3.5rem;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.testimonial-card .quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .testimonial-card .quote { font-size: 1.875rem; }
}

.testimonial-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--dusty-moss);
  font-style: italic;
}

/* Contact */
.contact-wrap {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact-wrap .script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--dusty-moss);
  margin: 0 0 1rem;
}

.contact-wrap h2 {
  font-size: 2.25rem;
  color: var(--dark-text);
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .contact-wrap h2 {
    font-size: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-info .item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info .item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--dusty-moss);
  flex-shrink: 0;
}

.contact-info a {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--body-text);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--dusty-moss);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

@media (min-width: 640px) {
  .contact-form .row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--light-blue-gray);
  font-family: var(--font-body);
  color: var(--dark-text);
  font-size: 1rem;
  transition: border-color 0.3s, outline 0.3s;
}

/* Checkboxes/radios must not inherit full-width text-field styling */
.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  border-radius: 0.25rem;
  background: transparent;
  border: none;
  box-shadow: none;
  vertical-align: top;
  accent-color: var(--dusty-moss);
}

.contact-form input[type="radio"] {
  border-radius: 50%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--minted-eucalyptus);
}

.contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dusty-moss);
}

.contact-form input[type="checkbox"]:focus-visible,
.contact-form input[type="radio"]:focus-visible {
  outline: 2px solid var(--dusty-moss);
  outline-offset: 2px;
}

.contact-form textarea {
  border-radius: 1rem;
  resize: none;
  min-height: 6rem;
}

.contact-form .cf-turnstile-wrap {
  display: flex;
  justify-content: flex-start;
  min-height: 65px;
}

.contact-form .btn-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .contact-form .btn-wrap { justify-content: flex-start; }
}

.contact-form-status {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.contact-form-status--success {
  background: rgba(208, 216, 200, 0.5);
  color: var(--dark-text);
  border: 1px solid var(--sage-green);
}

.contact-form-status--error {
  background: rgba(127, 150, 155, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.3);
}

.contact-form-status--success.intake-thank-you {
  padding: 1.35rem 1.5rem;
  font-size: 1.0625rem;
  text-align: center;
  line-height: 1.55;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-status[hidden] {
  display: none;
}

/* Client intake form (book-appointment.php) */
.intake-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--dark-text);
  margin: 0 0 1rem;
  line-height: 1.2;
  max-width: 48rem;
  text-align: center;
}

.intake-card {
  max-width: 48rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 216, 221, 0.6);
}

@media (min-width: 768px) {
  .intake-card {
    padding: 2.5rem 3rem;
  }
}

.intake-fieldset {
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}

.intake-fieldset--terms {
  margin-bottom: 1.5rem;
}

.intake-legend {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-text);
  padding: 0;
  margin: 0 0 1rem;
  display: block;
  width: 100%;
}

.intake-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.intake-label span:first-child {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body-text);
}

.intake-label--full {
  grid-column: 1 / -1;
}

.intake-hint {
  font-size: 0.75rem;
  color: var(--minted-eucalyptus);
  font-weight: 400;
}

.intake-intro,
.intake-prose {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.intake-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.intake-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark-text);
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.intake-check input[type="checkbox"] {
  margin-top: 0.25rem;
}

.intake-check--emphasis {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: rgba(240, 245, 248, 0.9);
  border-radius: 0.75rem;
  border: 1px solid var(--light-blue-gray);
  width: 100%;
  box-sizing: border-box;
}

.intake-check--emphasis input[type="checkbox"] {
  margin-top: 0.2rem;
}

.intake-radio-question {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark-text);
  margin: 0 0 0.65rem;
}

.intake-radio-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

@media (min-width: 480px) {
  .intake-radio-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 1.75rem;
  }
}

.intake-radio {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark-text);
  cursor: pointer;
  text-align: left;
}

.intake-terms-list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.65;
}

.intake-terms-list li {
  margin-bottom: 0.75rem;
}

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

.intake-form .row {
  align-items: start;
}

@media (min-width: 640px) {
  .intake-form .row .intake-label--full {
    grid-column: 1 / -1;
  }
}

.intake-form input[type="date"] {
  border-radius: 1rem;
}

/* Footer */
.site-footer {
  background: var(--dark-text);
  color: white;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-row img {
  height: 1.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand .logo-row .brand {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

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

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255,255,255,0.8);
}

/* Floating Google reviews widget */
.google-reviews-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
}

@media (max-width: 768px) {
  .google-reviews-widget {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
}

.google-reviews-mini {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 216, 221, 0.9);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  cursor: pointer;
  white-space: nowrap;
}

.google-reviews-mini[hidden] {
  display: none !important;
}

.google-reviews-widget.is-collapsed .google-reviews-card {
  display: none;
}

.google-reviews-widget.is-collapsed .google-reviews-mini {
  display: inline-flex;
}

.google-reviews-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  font-family: var(--font-body);
  max-width: 240px;
}

@media (max-width: 768px) {
  .google-reviews-card {
    max-width: 100%;
  }
}

.google-reviews-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--dark-text);
}

.google-reviews-card-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.google-reviews-card-header img {
  width: 18px;
  height: 18px;
}

.google-reviews-close {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--body-text);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  flex: 0 0 auto;
}

.google-reviews-close:hover {
  background: rgba(127, 150, 155, 0.12);
  color: var(--dark-text);
}


.google-reviews-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.google-reviews-score {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-text);
}

.google-reviews-stars {
  color: #f59e0b;
  font-size: 0.95rem;
}

.google-reviews-based-on {
  font-size: 0.8rem;
  color: var(--body-text);
  margin-bottom: 0.6rem;
}

.google-reviews-btn {
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: #1a73e8;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.google-reviews-btn:hover {
  background: #1557b0;
}

/* Inner page nav (Breathwork Benefits) */
.nav-inner-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208, 216, 200, 0.3);
}

.nav-inner-page .nav-inner {
  height: 4rem;
  gap: 1rem;
}

.nav-inner-page .nav-logo {
  min-width: 0;
}

.nav-inner-page .nav-logo .brand {
  color: var(--dark-text);
}

.nav-inner-page .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--dusty-moss);
  color: var(--dusty-moss);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-inner-page .back-btn:hover {
  background: var(--dusty-moss);
  color: white;
}

.nav-inner-page .inner-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .nav-inner-page .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 0.75rem;
  }

  .nav-inner-page .back-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Benefits page hero */
.benefits-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.benefits-hero .hero-bg .overlay {
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0.4), rgba(255,255,255,0.8));
}

.benefits-hero .hero-content {
  padding: 3.75rem 1rem;
}

@media (max-width: 640px) {
  .benefits-hero {
    min-height: 42vh;
    padding-top: 3.5rem;
  }

  .benefits-hero .hero-content {
    padding: 3.25rem 1rem;
  }
}

.benefits-hero .script {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: var(--dusty-moss);
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .benefits-hero .script { font-size: 2.25rem; }
}

.benefits-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--dark-text);
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .benefits-hero h1 { font-size: 4rem; }
}

.benefits-hero .sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--body-text);
  max-width: 42rem;
  margin: 0 auto;
}

/* Benefits grid (icons) */
.benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin: 0 0 0.75rem;
}

.benefit-card p {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

/* Research section (stats) */
.research-section {
  background: var(--dusty-moss);
  color: white;
}

.research-section .script {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1rem;
}

.research-section h2 {
  color: white;
  margin: 0 0 4rem;
}

.research-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .research-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.research-stat {
  text-align: center;
}

.research-stat .stat {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .research-stat .stat { font-size: 4.5rem; }
}

.research-stat .desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* CTA section */
.cta-section .script {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: var(--dusty-moss);
  margin: 0 0 1rem;
}

.cta-section h2 {
  margin: 0 0 2rem;
}

.cta-section .sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--body-text);
  margin: 0 0 2.5rem;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-btns { flex-direction: row; }
}

/* Simple footer (inner pages) */
.footer-simple {
  padding: 2rem 0;
  background: var(--dark-text);
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.footer-simple p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin: 0;
}

/* 404 page */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1rem;
}

.page-404 .card {
  max-width: 32rem;
  width: 100%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.page-404 .icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.page-404 .icon-wrap svg {
  width: 4rem;
  height: 4rem;
  color: #ef4444;
}

.page-404 h1 {
  font-size: 2.25rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.page-404 h2 {
  font-size: 1.25rem;
  color: #334155;
  margin: 0 0 1rem;
}

.page-404 p {
  font-family: var(--font-body);
  color: #475569;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.page-404 .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  background: #2563eb;
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.3s;
}

.page-404 .btn-home:hover {
  background: #1d4ed8;
}

/* Order utilities for about-me */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* Relative / z-10 */
.relative { position: relative; }
.z-10 { z-index: 10; }

/* How it works image frame */
.how-frame {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(208,216,200,0.3), rgba(127,150,155,0.2));
  border-radius: 1.5rem;
  transform: rotate(2deg);
}

.how-image-wrap {
  position: relative;
}

.how-image-wrap img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
