/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

button, a, [data-modal], .heal-cat, .heal-sub, .heal-btn, .card {
  touch-action: manipulation;
  cursor: pointer;
}

:root {
  --bg: #0f1109;
  --bg-card: #151810;
  --bg-card-hover: #1b1f13;
  --text: #d4cdb8;
  --text-muted: #8a8878;
  --accent: #c4b48a;
  --border: rgba(155, 165, 100, 0.16);
  --white: #f0ebe2;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(9,11,5,0.90) 0%, transparent 100%);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.header.scrolled {
  background: rgba(9, 11, 5, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.header__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--white);
}

.header__logo .dot {
  color: var(--accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__link {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text);
  transition: color 0.3s;
}

.header__link:hover {
  color: var(--white);
}

.nav-dot {
  color: var(--accent);
  font-size: 14px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 5, 0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__nav a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu__nav a:hover {
  color: var(--accent);
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, #1d2410 0%, #090b05 60%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(9,11,5,0) 60%, rgba(9,11,5,1) 100%);
}

.hero__photo {
  position: absolute;
  bottom: 0;
  right: 14%;
  height: 108%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  filter: drop-shadow(-20px 0 60px rgba(0,0,0,0.8));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 75%, transparent 100%),
                      linear-gradient(to top, transparent 0%, black 3%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 75%, transparent 100%),
              linear-gradient(to top, transparent 0%, black 3%);
  mask-composite: intersect;
}

/* ===== MOBILE DECORATIONS ===== */
.hero__mobile-deco {
  display: none;
}

/* ===== FERNS ===== */
.ferns {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.fern {
  position: absolute;
  color: #4a7a3d;
}

.fern--left {
  bottom: -8%;
  left: -4%;
  width: 480px;
  transform: rotate(-10deg) scaleX(-1);
  opacity: 0.45;
}

.fern--right-top {
  top: -5%;
  right: -20px;
  width: 520px;
  transform: rotate(15deg);
  opacity: 0.38;
}

.fern--right-bottom {
  bottom: 5%;
  right: 28%;
  width: 340px;
  transform: rotate(-8deg);
  opacity: 0.32;
}

.fern--center-right {
  top: 30%;
  right: 8%;
  width: 260px;
  transform: rotate(40deg);
  opacity: 0.28;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 560px;
}

.hero__tags {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(180, 160, 120, 0.35);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}

.hero__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero__btn:hover::before {
  transform: scaleX(1);
}

.hero__btn:hover {
  border-color: var(--accent);
  color: var(--bg);
}

.hero__btn:hover .btn-arrow {
  color: var(--bg);
}

.hero__btn:active {
  transform: scale(0.97);
}

.hero__btn span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  color: var(--accent);
  font-size: 16px;
}

/* ===== CARDS ===== */
.cards {
  padding: 80px 48px 100px;
  background: var(--bg);
}

.cards__head {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.cards__eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 12px;
}

.cards__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(180, 160, 120, 0.13);
}

.card {
  position: relative;
  background: var(--bg-card);
  padding: 52px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s;
  cursor: pointer;
  overflow: hidden;
  contain: layout style;
}

.card:hover {
  background: var(--bg-card-hover);
}

.card__deco-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 300;
  color: rgba(180, 160, 120, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.card__icon-box {
  margin-bottom: 28px;
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  transition: border-color 0.3s;
}

.card:hover .card__icon {
  border-color: var(--accent);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__num {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.card__text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 28px;
}

.card__more {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.card__arr {
  transition: transform 0.3s;
  display: inline-block;
}

.card:hover .card__arr {
  transform: translateX(5px);
}

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.divider__star {
  color: var(--accent);
  font-size: 16px;
  opacity: 0.7;
}

.divider__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.3;
  margin: 0 auto;
}

/* ===== QUOTE ===== */
.quote {
  padding: 60px 48px 80px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote__text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  letter-spacing: 0.5px;
}

.quote__signature {
  margin-top: 32px;
  color: var(--accent);
  opacity: 0.6;
}

.signature-svg {
  width: 80px;
  height: 40px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 60px 48px 80px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact .divider__line {
  margin: 0 auto 48px;
}

.contact .divider__line + .contact__title {
  margin-top: 0;
}

.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__text {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact__btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50px;
  transition: background 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.contact__btn:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 32px rgba(196, 180, 138, 0.25);
}

.contact__btn:active {
  transform: scale(0.97);
}

.contact__btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(180, 160, 120, 0.4);
}

.contact__btn--outline:hover {
  background: rgba(180, 160, 120, 0.1);
  border-color: var(--accent);
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 3, 0.85);
}

.modal__panel {
  position: relative;
  width: min(660px, 92vw);
  max-height: 88vh;
  background: #141810;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow-y: auto;
  transform: scale(0.96) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal__panel {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: sticky;
  top: 0;
  left: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1;
}

.modal__close:hover {
  color: var(--white);
}

.modal__body {
  padding: 0 48px 64px;
}

.modal__tag {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 16px;
}

.modal__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
}

.modal__content h3 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.modal__content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__content ul li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.modal__content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.modal__note {
  background: rgba(180, 160, 120, 0.07);
  border-left: 2px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 13px !important;
  font-style: italic;
  color: var(--text-muted) !important;
  margin-top: 8px;
}

/* ===== HEALING TABS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.heal-cats {
  display: flex;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.heal-cat {
  flex: 1;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  padding: 14px 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
}

.heal-cat:last-child {
  border-right: none;
}

.heal-cat:hover {
  color: var(--accent);
  background: rgba(196, 180, 138, 0.05);
}

.heal-cat:active {
  transform: scale(0.97);
}

.heal-cat.active {
  background: var(--accent);
  color: var(--bg);
}

.heal-section {
  display: none;
}

.heal-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.heal-section__lead {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.heal-sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.heal-sub {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s;
}

.heal-sub:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.heal-sub:active {
  transform: scale(0.95);
}

.heal-sub.active {
  background: rgba(196, 180, 138, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.heal-sub-panel {
  display: none;
}

.heal-sub-panel.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

.heal-time {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.heal-time__num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.heal-time__unit {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
}

.heal-section ul,
.heal-sub-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.heal-section ul li,
.heal-sub-panel ul li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.heal-section ul li::before,
.heal-sub-panel ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer__left,
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer__right {
  text-align: right;
}

.footer__center {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.footer__center a {
  transition: color 0.3s;
}

.footer__center a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards {
    padding: 60px 24px 80px;
  }
  .cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 18px 20px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .ferns {
    display: none;
  }

  .hero__photo {
    top: 0;
    bottom: auto;
    right: 0;
    left: 0;
    width: 100%;
    height: 62vh;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    filter: none;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
    -webkit-mask-composite: unset;
    mask-composite: unset;
  }

  .hero__content {
    padding: 0 20px 52px;
    max-width: 100%;
    margin-top: auto;
  }

  .cards {
    padding: 52px 12px 72px;
  }

  .cards__head {
    padding: 0 8px;
    margin-bottom: 32px;
  }

  .cards__grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 32px 24px 28px;
  }

  .card__deco-num {
    font-size: 64px;
    top: 14px;
    right: 18px;
  }

  .quote {
    padding: 40px 20px 56px;
  }

  .contact {
    padding: 40px 20px 56px;
  }

  .modal__panel {
    width: 96vw;
    max-height: 92vh;
    border-radius: 12px;
  }

  .modal__body {
    padding: 0 20px 48px;
  }

  .modal__close {
    left: auto;
    right: 0;
    top: 8px;
  }

  .heal-sub-nav {
    gap: 6px;
  }

  .heal-sub {
    padding: 7px 14px;
    font-size: 10px;
  }

  .footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__right {
    text-align: center;
  }

  .footer__left {
    order: 3;
  }

  /* Mobile corner botanicals */
  .hero__mobile-deco {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 62vh;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
  }

  .mob-fern {
    position: absolute;
    opacity: 0.44;
  }

  .mob-fern--bl {
    bottom: -8px;
    left: -16px;
    width: 120px;
    height: auto;
  }

  .mob-fern--br {
    bottom: -8px;
    right: -16px;
    width: 120px;
    height: auto;
    transform: scaleX(-1);
  }

  .mob-sparkle {
    position: absolute;
    color: var(--accent);
    font-size: 9px;
    opacity: 0.45;
    line-height: 1;
  }

  .mob-sparkle--sm {
    font-size: 6px;
    opacity: 0.3;
  }

  .mob-sparkle--dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
  }
}

/* ===== LANDSCAPE PHONES ===== */
/* When phone is rotated sideways, restore right-side photo layout */
@media (orientation: landscape) and (max-height: 500px) {
  .hero__photo {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    filter: drop-shadow(-20px 0 40px rgba(0, 0, 0, 0.8));
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 80%, transparent 100%),
                        linear-gradient(to top, transparent 0%, black 5%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 80%, transparent 100%),
                linear-gradient(to top, transparent 0%, black 5%);
    mask-composite: intersect;
  }

  .hero__content {
    padding: 0 28px 28px;
    max-width: 48%;
    margin-top: auto;
  }

  .hero__title {
    font-size: clamp(28px, 9vh, 52px);
    margin-bottom: 10px;
  }

  .hero__subtitle {
    margin-bottom: 16px;
  }

  .hero__mobile-deco {
    display: none;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes floatSlow {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.hero__tags {
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__title {
  animation: fadeUp 0.8s ease 0.4s both, float 6s ease-in-out 1.2s infinite;
}

.hero__subtitle {
  animation: fadeUp 0.8s ease 0.6s both, floatSlow 7s ease-in-out 1.5s infinite;
}

.hero__btn {
  animation: fadeUp 0.8s ease 0.8s both, floatSlow 8s ease-in-out 1.8s infinite;
}

.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__tags,
  .hero__title,
  .hero__subtitle,
  .hero__btn {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .card {
    opacity: 1;
    transform: none;
    transition: background 0.3s;
  }

  .heal-section.active,
  .heal-sub-panel.active {
    animation: none;
  }
}
