/* ─────────────────────────────────────────
   Root & Reset
───────────────────────────────────────── */
:root {
  --sage: #6B9080;
  --sage-light: #A4C3B2;
  --sage-pale: #CCE3DE;
  --lavender: #8E9AAF;
  --lav-light: #CBC0D3;
  --lav-pale: #EFD3D7;
  --cream: #F6F8F9;
  --warm: #EAF0CE;
  --rose: #DEB6AB;
  --rose-pale: #F5EAE7;
  --text-dark: #28363D;
  --text-mid: #617A86;
  --text-light: #9BB0B8;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.65);
  --border: rgba(107, 144, 128, 0.15);
  --shadow-sm: 0 6px 24px rgba(107, 144, 128, 0.08);
  --shadow-md: 0 16px 48px rgba(107, 144, 128, 0.12);
  --shadow-lg: 0 32px 80px rgba(107, 144, 128, 0.16);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --t: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   Background Blobs
───────────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: blobFloat 30s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #A4C3B2, #6B9080);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #CBC0D3, #8E9AAF);
  top: 30%;
  right: -100px;
  animation-delay: -7s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #F5EAE7, #DEB6AB);
  bottom: 10%;
  left: 20%;
  animation-delay: -14s;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #CCE3DE, #A4C3B2);
  bottom: -100px;
  right: 10%;
  animation-delay: -4s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 25px) scale(0.97);
  }
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}

#navbar.scrolled {
  background: rgba(246, 248, 249, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(107, 144, 128, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.logo-icon {
  color: var(--sage);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--t);
}

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

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
}

.nav-cta:hover {
  background: #528A7A !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 144, 128, 0.25) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--t);
}

/* ─────────────────────────────────────────
   Shared Layout
───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 120px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.4);
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-tag.centered,
.section-title.centered,
.section-sub.centered {
  display: block;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.section-title em {
  color: var(--sage);
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--t);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(107, 144, 128, 0.2);
}

.btn-primary:hover {
  background: #528A7A;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(107, 144, 128, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--lavender);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}

.hero-title em {
  color: var(--sage);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Image */
.hero-image-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-img-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 380px;
}

.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 480px;
}

.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-title {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}

.badge-sub {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 2px;
}

.hero-deco-circle {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 2px dashed rgba(107, 144, 128, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-deco-dots {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(107, 144, 128, 0.45) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 50%;
  pointer-events: none;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.cred-icon {
  font-size: 1rem;
}

.about-visual {
  position: relative;
  min-height: 360px;
}

.about-card-main {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 0.6;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

.about-card-mini {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 3;
  animation: heroFloat 7s ease-in-out infinite;
}

.card-mini-1 {
  bottom: -20px;
  left: -30px;
  animation-delay: -2s;
}

.card-mini-2 {
  top: -25px;
  right: -20px;
  animation-delay: -5s;
}

.mini-icon {
  font-size: 1.3rem;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--c) 25%, white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--c);
  stroke-width: 2px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.service-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--sage-pale);
  color: var(--sage);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-light);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.process-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-light), var(--lav-light));
  margin-top: 80px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #f0c040;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-detail {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  font-size: 1.25rem;
  margin-top: 2px;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  stroke: var(--sage);
  stroke-width: 2px;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.info-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.seans-info {
  background: linear-gradient(135deg, var(--sage-pale), var(--lav-pale));
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(107, 144, 128, 0.2);
}

.seans-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.seans-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(107, 144, 128, 0.2);
  font-size: 0.85rem;
  color: var(--text-mid);
}

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

.seans-row span:last-child {
  font-weight: 600;
  color: var(--sage);
}

/* Form */
.contact-form {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(107, 144, 128, 0.12);
  background: white;
}

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

.phone-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}

.phone-input-wrap:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(107, 144, 128, 0.12);
  background: white;
}

.phone-prefix {
  padding-left: 16px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.93rem;
  user-select: none;
}

.form-group .phone-input-wrap input {
  border: none;
  background: transparent;
  box-shadow: none;
  width: 100%;
  padding-left: 8px;
  margin-bottom: 0;
}

.form-group .phone-input-wrap input:focus {
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.btn-arrow {
  transition: transform var(--t);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  max-width: 280px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--t);
}

.footer-links a:hover {
  color: var(--sage-light);
}

.footer-contact p {
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─────────────────────────────────────────
   Toast
───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateX(0);
}

/* ─────────────────────────────────────────
   Reveal Animation
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }

  .process-connector {
    display: none;
  }

  .process-steps {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .hero-img-card {
    width: 100%;
    max-width: 340px;
  }

  .hero-deco-circle,
  .hero-deco-dots {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 280px;
  }

  .card-mini-1,
  .card-mini-2 {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
}