:root {
  /* Slate teal — the deep anchor */
  --deep: #2b4a4e;
  --deep-mid: #334f52;
  --deep-card: #3a5a5e;

  /* Loden sage — trust, info, organic growth */
  --sage: #8fa88b;
  --sage-light: #a3bca0;
  --sage-pale: #e6ede1;
  --sage-glow: rgba(143, 168, 139, 0.12);
  --sage-subtle: rgba(143, 168, 139, 0.06);

  /* Dusty rose — warmth, action, human touch */
  --rose: #c27e7e;
  --rose-light: #d4918f;
  --rose-glow: rgba(194, 126, 126, 0.1);
  --rose-subtle: rgba(194, 126, 126, 0.06);

  /* Veiled pink — soft, delicate accent */
  --blush: #e8c4bf;

  /* Warm neutrals */
  --cream: #f7f3ee;
  --warm: #fcfaf7;
  --sand: #e8e0d4;
  --stone: #b8b2a8;
  --slate: #7a7e78;
  --charcoal: #3a3d38;

  /* Optional warm pop (used very sparingly) */
  --amber: #d4903c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CRITICAL: Prevent horizontal scroll on any device */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--deep);
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.25, 0, 0.15, 1), transform 0.9s cubic-bezier(0.25, 0, 0.15, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}

nav.scrolled {
  background: rgba(43, 74, 78, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--sage-light);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(247, 243, 238, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--rose-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--cream);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Logo image base — LARGE initial size */
.logo img {
    display: block;
    height: 120px;           /* Much bigger! Adjust up/down as you like */
    width: auto;
    transition: all 0.3s cubic-bezier(0.25, 0, 0.15, 1);
    object-fit: contain;
}

/* When scrolled, logo shrinks to compact size */
nav.scrolled .logo img {
    height: 44px;
}

/* Tablet (e.g., iPad) – still big but slightly smaller */
@media (max-width: 900px) {
    .logo img {
        height: 90px;
    }
    nav.scrolled .logo img {
        height: 38px;
    }
}

/* Mobile – big but fits viewport */
@media (max-width: 600px) {
    .logo img {
        height: 70px;
    }
    nav.scrolled .logo img {
        height: 32px;
    }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 25%, rgba(143, 168, 139, 0.1), transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(194, 126, 126, 0.07), transparent 40%),
    radial-gradient(ellipse at 50% 85%, rgba(143, 168, 139, 0.05), transparent 35%);
  animation: breathe 20s ease infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-glow);
  border: 1px solid rgba(143, 168, 139, 0.18);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-light);
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease both;
  letter-spacing: 0.4px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: breathe 3s ease infinite;
}

/* Hero status indicator */
.hero-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.55);
  animation: fadeUp 0.7s 0.32s ease both;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0 16px;
  text-align: center;
  word-break: keep-all;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(143, 168, 139, 0.5);
  animation: heroPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-status-sep {
  display: inline-block;
  margin: 0 4px;
  color: rgba(247, 243, 238, 0.3);
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(143, 168, 139, 0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 6px rgba(143, 168, 139, 0);
    opacity: 0.85;
  }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -3px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.08s ease both;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(247, 243, 238, 0.4);
  max-width: 500px;
  margin: 0 auto 48px;
  animation: fadeUp 0.7s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.24s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194, 126, 126, 0.18);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(247, 243, 238, 0.12);
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: rgba(247, 243, 238, 0.28);
  background: rgba(247, 243, 238, 0.03);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1s ease both;
}

.scroll-hint span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(247, 243, 238, 0.15);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(247, 243, 238, 0.12), transparent);
  animation: breathe 2.5s ease infinite;
}

/* Proof Bar */
.proof-bar {
  background: var(--deep-mid);
  padding: 8px 48px;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 32px 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 110px;
}

.proof-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -1px;
}

.proof-label {
  font-size: 13px;
  color: rgba(247, 243, 238, 0.65);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(247, 243, 238, 0.12);
}

/* Section Labels */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-label.sage {
  color: var(--sage-light);
}

.section-label.rose {
  color: var(--rose);
}

/* Work Section (dark) */
.work-section {
  background: var(--deep);
  padding: 120px 48px;
  width: 100%;
  overflow-x: hidden;
}

.work-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title-dark {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub-dark {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 243, 238, 0.35);
  max-width: 460px;
  margin: 0 auto;
}

.work-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.work-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--deep-mid);
  border: 1px solid rgba(247, 243, 238, 0.05);
  transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.5s;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.work-card:nth-child(even) {
  direction: rtl;
}

.work-card:nth-child(even) > * {
  direction: ltr;
}

.wc-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.work-card:nth-child(1) .wc-img { background: linear-gradient(145deg, #f2ddd8, #e8c4bf); }
.work-card:nth-child(2) .wc-img { background: linear-gradient(145deg, #d6e5d3, #b8cfb5); }
.work-card:nth-child(3) .wc-img { background: linear-gradient(145deg, #ecdcc8, #dbc9aa); }

.wc-img-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
  transition: transform 0.5s;
}

.work-card:hover .wc-img-emoji {
  transform: translate(-50%, -50%) scale(1.1);
}

.wc-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wc-tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-glow);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.wc-client {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.wc-title {
  font-size: 15px;
  color: rgba(247, 243, 238, 0.4);
  line-height: 1.7;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.wc-meta {
  display: flex;
  gap: 20px;
}

.wc-meta-item {
  font-size: 12px;
  color: rgba(247, 243, 238, 0.28);
}

.wc-meta-item strong {
  color: var(--cream);
  font-weight: 600;
}

.wc-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-light);
  text-decoration: none;
  transition: all 0.2s ease;
}

.wc-link:hover {
  color: var(--rose);
  transform: translateX(4px);
}

/* Testimonials (light) */
.testimonials-section {
  background: var(--warm);
  color: var(--charcoal);
  padding: 120px 48px 0 48px;   /* bottom padding set to 0 */
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 196, 191, 0.18), transparent 60%);
  pointer-events: none;
}

.section-title-light {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub-light {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  max-width: 460px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 48px auto 0;
  position: relative;
  width: 100%;
}

.t-card {
  background: var(--warm);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43, 74, 78, 0.06);
}

.t-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.t-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.t-card:nth-child(1) .t-avatar { background: var(--deep); }
.t-card:nth-child(2) .t-avatar { background: var(--sage); }
.t-card:nth-child(3) .t-avatar { background: var(--rose); }

.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
}

.t-role {
  font-size: 12px;
  color: var(--slate);
}

/* Gradient bleed between testimonials and packages */
.testimonials-section::after {
  content: '';
  display: block;
  height: 80px;
  background: linear-gradient(to bottom, var(--warm) 0%, var(--cream) 100%);
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  margin-top: 0;
}

/* Packages (light) */
.packages-section {
  background: var(--cream);
  padding: 0 48px 120px;
  margin-top: -1px;        /* kills any browser rendering gap */
  width: 100%;
  overflow-x: hidden;
}

.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.pkg-card {
  background: var(--warm);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--sand);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(43, 74, 78, 0.06);
}

.pkg-card.featured {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose);
}

.pkg-pop {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.pkg-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.pkg-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
  word-wrap: break-word;
}

.pkg-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -1.5px;
}

.pkg-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0;
}

.pkg-time {
  font-size: 13px;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 2px;
}

.pkg-features {
  list-style: none;
  margin-bottom: 32px;
}

.pkg-features li {
  font-size: 14px;
  color: var(--charcoal);
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 9px;
}

.pkg-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--sage-glow);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5L6.5 11L12 5.5' stroke='%238fa88b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.pkg-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.pkg-card:nth-child(1) .pkg-btn {
  background: transparent;
  border: 1.5px solid var(--deep);
  color: var(--deep);
}

.pkg-card:nth-child(1) .pkg-btn:hover {
  background: var(--deep);
  color: var(--cream);
}

.pkg-card:nth-child(2) .pkg-btn {
  background: var(--rose);
  border: 1.5px solid var(--rose);
  color: #fff;
}

.pkg-card:nth-child(2) .pkg-btn:hover {
  background: var(--rose-light);
  border-color: var(--rose-light);
}

/* Care Plans Section */
.care-section {
  background: var(--warm);
  padding: 120px 48px;
  width: 100%;
  overflow-x: hidden;
}

.care-header {
  text-align: center;
  margin-bottom: 56px;
}

.care-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 14px 0 14px;
}

.care-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(43, 74, 78, 0.65);
  max-width: 480px;
  margin: 0 auto;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.care-card {
  position: relative;
  background: var(--warm);
  border: 1px solid rgba(143, 168, 139, 0.25);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(43, 74, 78, 0.08);
}

.care-card.featured {
  background: var(--cream);
  border-color: var(--sage);
  border-width: 2px;
  box-shadow: 0 6px 28px rgba(143, 168, 139, 0.18);
}

.care-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.care-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}

.care-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 24px;
  min-height: 64px;
  word-wrap: break-word;
}

.care-price {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.care-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0;
}

.care-features {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}

.care-features li {
  font-size: 13.5px;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(143, 168, 139, 0.3);
  position: relative;
  padding-left: 20px;
}

.care-features li:last-child {
  border-bottom: none;
}

.care-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.care-btn {
  display: block;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1.5px solid var(--sage);
  border-radius: 10px;
  color: var(--deep);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
}

.care-btn:hover {
  background: var(--sage);
  color: var(--cream);
}

.care-card.featured .care-btn {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.care-card.featured .care-btn:hover {
  background: var(--deep);
  border-color: var(--deep);
}

.care-note {
  text-align: center;
  font-size: 13px;
  color: rgba(43, 74, 78, 0.6);
  margin-top: 44px;
  font-style: italic;
}

/* Section label variant */
.section-label.sage-dark {
  color: var(--deep);
  opacity: 0.55;
}

/* FAQ Section */
.faq-section {
  background: var(--sage-pale);
  padding: 120px 48px;
  width: 100%;
  overflow-x: hidden;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-title-light {
  margin-top: 14px;
}

.faq-header .section-sub-light {
  max-width: 480px;
  margin: 14px auto 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--warm);
  border: 1px solid rgba(143, 168, 139, 0.2);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
  border-color: var(--sage);
  box-shadow: 0 6px 20px rgba(43, 74, 78, 0.06);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q:hover {
  color: var(--rose);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--sage);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  color: var(--cream);
}

.faq-a {
  padding: 0 26px 24px;
  color: var(--charcoal);
  font-size: 15.5px;
  line-height: 1.75;
}

.faq-a p {
  margin: 0 0 12px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* About Section */
.about-section {
  background: var(--deep-mid);
  padding: 120px 48px;
  width: 100%;
  overflow-x: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-content {
  color: var(--cream);
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(247, 243, 238, 0.7);
  margin-bottom: 24px;
}

.about-text strong {
  color: var(--cream);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sage-light);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  color: rgba(247, 243, 238, 0.4);
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.about-photo:hover {
  transform: scale(1.02);
}

/* Contact Section */
.contact-section {
  background: var(--cream);
  padding: 120px 48px;
  color: var(--charcoal);
  width: 100%;
  overflow-x: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--deep);
  margin-bottom: 24px;
}

.contact-info-text {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-info-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--deep);
}

.contact-info-text i {
  color: var(--rose);
  width: 24px;
}

.contact-social {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.contact-social a {
  color: var(--slate);
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
}

.contact-social a:hover {
  color: var(--rose);
  transform: translateY(-3px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  border: 1px solid var(--sand);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  background: var(--warm);
  color: var(--charcoal);
  transition: border 0.3s, box-shadow 0.3s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--slate);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--warm);
  box-shadow: 0 0 0 3px var(--rose-glow);
}

.contact-form button {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(247, 243, 238, 0.04);
  padding: 40px 48px;
  color: rgba(247, 243, 238, 0.25);
  width: 100%;
  overflow-x: hidden;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand span {
  color: var(--sage-light);
}

.footer-legal {
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(247, 243, 238, 0.25);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cream);
}

/* -------------------------------------------
   RESPONSIVE STYLES (no horizontal overflow)
   ------------------------------------------- */

@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }

  .hero-status {
    font-size: 9px;
    letter-spacing: 1.4px;
    gap: 10px;
    margin-top: 40px;
  }

  .hero-status-dot {
    width: 7px;
    height: 7px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--deep);
    padding: 40px 0;
    transition: left 0.3s;
    gap: 20px;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero,
  .work-section,
  .testimonials-section,
  .packages-section,
  .care-section,
  .faq-section,
  .about-section,
  .contact-section,
  footer,
  .proof-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .work-card:nth-child(even) {
    direction: ltr;
  }

  .wc-img {
    height: 220px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .pkg-layout {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .care-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 32px;
  }

  .care-card {
    padding: 26px 24px;
  }

  .care-desc {
    min-height: 0;
  }

  .faq-q {
    font-size: 16px;
    padding: 18px 20px;
    gap: 14px;
  }

  .faq-a {
    padding: 0 20px 20px;
    font-size: 14.5px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .proof-divider {
    display: none; /* remove dividers on mobile to save space */
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
  }
}

/* 2‑column layout for tablets (501px – 899px) */
@media (min-width: 501px) and (max-width: 899px) {
  /* Testimonials & Care Plans */
  .testimonials-grid,
  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .t-card {
    padding: 28px 22px;
  }

  .care-card {
    padding: 28px 22px;
  }

  /* Packages */
  .pkg-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .pkg-card {
    padding: 28px 20px;
  }

  .pkg-name {
    font-size: 20px;
  }

  .pkg-price {
    font-size: 28px;
  }

  /* Recent builds (work cards) */
  .work-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .work-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
  }

  .work-card .wc-img {
    height: 200px;
    border-radius: 20px 20px 0 0;
  }

  .work-card .wc-body {
    padding: 28px 24px;
  }

  /* Remove rtl direction on even cards */
  .work-card:nth-child(even) {
    direction: ltr;
  }

  .work-card:nth-child(even) > * {
    direction: ltr;
  }
}

/* Very small phones (≤500px) – single column */
@media (max-width: 500px) {
  .hero-status {
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 8px;
  }

  .hero-status-text {
    font-size: 9px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .testimonials-grid,
  .care-grid,
  .pkg-layout,
  .work-cards {
    grid-template-columns: 1fr;
  }

  .work-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .wc-img {
    height: 180px;
  }

  .pkg-price-toggle {
    flex-wrap: wrap;
  }

  .price-switch {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* -------------------------------------------
   Read more & other utilities
   ------------------------------------------- */

.read-more-container {
  position: relative;
}

.read-more-content {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.read-more-content.collapsed {
  max-height: 200px;
}

.read-more-toggle {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.read-more-toggle:hover {
  opacity: 0.7;
  text-decoration: underline;
}

@media (min-width: 900px) {
  .read-more-toggle {
    display: none;
  }
  .read-more-content.collapsed {
    max-height: none !important;
  }
}

/* Safe image handling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Force any grid container to respect parent */
.work-cards,
.testimonials-grid,
.pkg-layout,
.care-grid {
  width: 100%;
  max-width: 100%;
}

/* FAQ "Show more" button */
#faqToggleBtn {
    cursor: pointer;
    transition: all 0.2s;
}
#faqToggleBtn:hover {
    background: var(--sage-subtle);
    border-color: var(--sage);
}
.faq-item.hidden-faq {
    display: none;
}

/* Testimonial avatar: round & fixed size */
.t-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: transparent; /* override any fallback background */
}

.t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
