/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --bg: #F5F1EB;
  --peach: #E8B090;
  --text: #1a2e22;
  --accent: #C4522E;
  --accent-hover: #A8431F;
  --gold: #C8922A;
  --dark: #1a2e22;
  --light-text: #F2EBE2;
  --warm-text: #F0DDB8;
  --muted: #5C7A52;
  --photo-placeholder: #C4A882;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input { font-family: inherit; }

/* ========================================
   UTILITY
   ======================================== */
.label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--gold);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 1.25rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.header-logo {
  display: flex;
  justify-content: center;
}

.header-logo img {
  width: 180px;
  height: auto;
}

/* Instagram icon */
.nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.nav-icon:hover svg {
  stroke: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--light-text);
  transition: color 0.3s ease;
  padding: 8px 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   SECTION 1 — HERO
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: var(--photo-placeholder);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 51, 40, 0.15) 0%,
    rgba(26, 51, 40, 0.45) 100%
  );
  z-index: 1;
}

.hero-box {
  position: relative;
  z-index: 2;
  background: rgba(242, 235, 226, 0.92);
  border-radius: 8px;
  padding: 32px 24px;
  max-width: 560px;
  width: calc(100% - 32px);
  text-align: center;
}

.hero-box .label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.hero-box h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-subhead {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  text-wrap: balance;
  max-width: 280px;
  margin: 0 auto;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 48px;
  width: 100%;
  text-align: center;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn-solid:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* ========================================
   SECTION 2 — WHO WE ARE
   ======================================== */
.who-we-are {
  background: var(--bg);
  padding: 100px 32px;
}

.who-we-are-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.who-we-are .label {
  color: var(--accent);
}

.who-we-are h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 42px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}

.who-we-are p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 32px;
}

.cta-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.cta-link:hover {
  color: var(--accent-hover);
}

/* ========================================
   SECTION 3 — OFFERING CARDS
   ======================================== */
.offerings {
  background: var(--bg);
  padding: 48px 16px;
}

.offerings-header {
  text-align: center;
  margin-bottom: 32px;
}

.offerings-header .label {
  color: var(--accent);
}

.offerings-header h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  color: var(--text);
  line-height: 1.2;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}

.offering-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.offering-card:hover .offering-card-img,
.offering-card:active .offering-card-img {
  transform: scale(1.05);
}

.offering-card-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 16px;
  background: linear-gradient(
    to top,
    rgba(26, 51, 40, 0.85) 0%,
    rgba(26, 51, 40, 0.4) 60%,
    transparent 100%
  );
}

.offering-card-overlay h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}

.offering-card-overlay p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}


/* Instagram Section */
.instagram-section {
  background: var(--bg);
  padding: 72px 24px;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.icon-card {
  text-align: center;
  text-decoration: none;
  padding: 40px 24px;
  border-radius: 4px;
  background: var(--dark);
  transition: transform 0.2s ease;
}
.icon-card:hover {
  transform: translateY(-4px);
}
.icon-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}
.icon-card-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--gold);
}
.icon-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  color: #F5F1EB;
  margin-bottom: 8px;
}
.icon-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(242, 235, 226, 0.75);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .icon-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .icon-card {
    padding: 32px 24px;
  }
}

/* ========================================
   SECTION 4 — EMAIL SIGNUP
   ======================================== */
.email-signup {
  background: #A3B18A;
  padding: 100px 32px;
}

.email-signup-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.email-signup .label {
  color: var(--dark);
}

.email-signup h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 42px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.email-signup p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form input[type="email"] {
  width: 100%;
  padding: 16px;
  background: var(--light-text);
  color: var(--text);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  min-height: 52px;
}
.email-form input[type="email"]::placeholder {
  color: rgba(45, 74, 56, 0.5);
}
.email-form input[type="email"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.email-form button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  min-height: 52px;
}
.email-form button:hover {
  background: var(--accent-hover);
}

.email-fine-print {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--text);
  margin-top: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg);
  padding: 64px 32px 32px;
  border-top: 1px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: var(--accent);
}

.footer-social {
  text-align: right;
}
.footer-social .label {
  color: var(--text);
  font-size: 11px;
  margin-bottom: 14px;
}
.footer-social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.footer-social-icons a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #2D4A38;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.footer-social-icons a:hover svg {
  stroke: var(--accent);
}

.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 51, 40, 0.25);
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--text);
}

/* ========================================
   RESPONSIVE — MOBILE-FIRST
   ======================================== */

/* Mobile defaults are already set above — scale UP for larger screens */

/* Tablet & up */
@media (min-width: 769px) {
  .nav-left,
  .nav-right {
    display: flex;
  }
  .hamburger {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }

  .hero {
    height: 90vh;
    min-height: 600px;
  }
  .hero-box {
    padding: 48px 56px;
    border-radius: 4px;
    width: 90%;
  }
  .hero-box h1 {
    font-size: 56px;
  }
  .hero-subhead {
    font-size: 20px;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .btn {
    width: auto;
  }

  .who-we-are {
    padding: 100px 32px;
  }
  .who-we-are h2 {
    font-size: 42px;
  }

  .offerings {
    padding: 100px 32px;
  }
  .offerings-header h2 {
    font-size: 42px;
  }
  .offerings-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .offering-card-overlay h3 {
    font-size: 26px;
  }
  .offering-card-overlay p {
    font-size: 14px;
  }

  .email-signup {
    padding: 100px 32px;
  }
  .email-signup h2 {
    font-size: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }
  .footer-nav {
    align-items: center;
  }
  .footer-social {
    text-align: right;
  }
  .footer-social-icons {
    justify-content: flex-end;
  }
}

/* Small mobile */
@media (max-width: 374px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .offering-card {
    aspect-ratio: 4/3;
  }
  .hero-box h1 {
    font-size: 28px;
  }
}

/* Mobile — hamburger & stacked layout */
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 16px;
  }
  .header-logo {
    display: flex;
    justify-content: center;
  }
  .header-logo img {
    width: 120px;
  }
  .hamburger {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .who-we-are {
    padding: 48px 20px;
  }
  .who-we-are h2 {
    font-size: 28px;
  }
  .who-we-are p {
    font-size: 15px;
  }

  .email-signup {
    padding: 48px 20px;
  }
  .email-signup h2 {
    font-size: 28px;
  }

  .footer {
    padding: 48px 20px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-nav {
    align-items: center;
  }
  .footer-social {
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
    gap: 24px;
  }
  .footer-social-icons a svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  background: var(--dark);
  padding: 72px 32px 56px;
  text-align: center;
}
.page-hero .label { color: var(--gold); }

/* Video Hero */
.video-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 32px 120px;
}
.video-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 51, 40, 0.55);
  z-index: 1;
}
.video-hero-title {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 72px;
  color: var(--light-text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--warm-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   PAGE CONTENT SECTIONS
   ======================================== */
.page-section {
  padding: 80px 32px;
}
.page-section-inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-section-inner h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 38px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.page-section-inner p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
}
.page-section-alt {
  background: #EDE5D8;
}

/* Grid for cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border-radius: 4px;
  padding: 36px 32px;
  border: 1px solid rgba(200, 146, 42, 0.2);
}
.card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 12px;
}
.card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}
.card .label { color: var(--gold); }

/* Coming soon banner */
.coming-soon {
  background: var(--dark);
  color: var(--light-text);
  padding: 60px 32px;
  text-align: center;
}
.coming-soon h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 38px;
  color: var(--warm-text);
  margin-bottom: 16px;
}
.coming-soon p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(242, 235, 226, 0.8);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* Blog post list */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}
.post-item {
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
  padding-bottom: 40px;
}
.post-item:last-child { border-bottom: none; }
.post-item .label { color: var(--gold); }
.post-item h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.post-item p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Location card */
.location-card {
  background: var(--bg);
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
}
.location-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
}
.location-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.location-card .label { color: var(--gold); }
.location-card-dark {
  background: var(--dark);
  border-color: rgba(200, 146, 42, 0.15);
}
.location-card-dark h3 { color: #F5F1EB; }
.location-card-dark p { color: rgba(242, 235, 226, 0.85); }
.location-card-dark .label { color: var(--gold); }
.location-card-dark .cta-link { color: var(--gold); }

.location-card-header {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.location-card-header img {
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.location-card-header h3 {
  margin: 0;
}

.location-card-logo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
.location-card-logo-col {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
.location-card-text-col {
  flex: 1;
}
@media (max-width: 640px) {
  .location-card-logo {
    flex-direction: column;
  }
  .location-card-logo-col {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 38px; }
  .card-grid { grid-template-columns: 1fr; }
  .page-section { padding: 60px 24px; }
}

/* ========================================
   ABOUT PAGE — INTRO LAYOUT
   ======================================== */
.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 28px 0;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  margin: 20px 0;
}

@media (min-width: 769px) {
  .about-intro {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .about-text {
    flex: 1;
  }
  .about-photo {
    width: 260px;
    height: 260px;
    order: 2;
  }
}

/* ========================================
   ABOUT PAGE — PRACTICE CIRCLES
   ======================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.practice-card {
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.practice-card-icon {
  margin-bottom: 16px;
  opacity: 0.8;
}

.practice-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.practice-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 320px;
}

@media (max-width: 600px) {
  .practice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
