/* =========================================================
   COMPASSION COACHING — CLEAN STYLESHEET
   Palette + base + header + hero + sections + responsive
   (2025-08-09)
========================================================= */

/* ------------------ Palette & Base ------------------ */
:root{
  --green: #2e7b57;           /* leaf green (logo) */
  --green-dk: #285f48;        /* darker leaf */
  --cream: #fffaf3;           /* soft cream */
  --cream-line: #efe6d9;      /* divider on cream */
  --pink: #d86c84;            /* lotus/heart accent */
  --ink: #2c3e50;             /* body text */
  --muted: #556370;           /* muted text */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; height: auto; }

body{
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  padding-top: 70px;  /* space for fixed navbar */
}

h1, h2, h3{
  margin: 0 0 .5em;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}
h2{ font-size: clamp(1.6rem, 4vw, 2.4rem); }
.container{ width: min(1100px, 92%); margin-inline: auto; }

/* ------------------ Navbar (clean + light) ------------------ */
.navbar{
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

/* brand: logo + name */
.brand{ display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__logo{ width: 56px; height: 56px; object-fit: contain; }
.brand__name{
  color: var(--green-dk); font-weight: 800; letter-spacing: .3px;
}

/* menu */
.menu ul{ list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.menu a{
  color: var(--green-dk);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.menu a:hover{
  background: #f6ede1;
  color: var(--pink);
}

/* hamburger (mobile) */
.hamburger{
  display: none;
  font-size: 1.6rem;
  line-height: 1;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  background: transparent;
  color: var(--green-dk);
  cursor: pointer;
}

/* ------------------ Hero (lotus image) ------------------ */
/* ---- Beautiful hero refinement ---- */
/* ==== Beautiful Startup Landing Hero Upgrade ==== */
.landing-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 84px 16px 72px;
  background: url("landing page2.png") center/cover no-repeat;
  isolation: isolate;
}

.landing-hero::before {
  /* soft overlay for text readability */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 50% 65%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.45));
  filter: saturate(110%);
}

.landing-hero__content {
  max-width: 820px;
  margin-inline: auto;
}

.landing-hero__quote {
  margin: 0 auto 500px;
  padding: 200px;
  font-style: italic;
  font-weight: 1000;
  color: #fff7ed;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: inline-block;
  max-width: 500px;
}
/* Polished one-line desktop, wraps on mobile */
.hero-quote {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .2px;
  color: #fffaf0; /* warm white for readability */
  padding: 0; /* no background padding */
  border-radius: 0;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 90vw;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* subtle shadow for contrast */
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero-quote {
    white-space: normal; /* allow wrapping on small screens */
  }
}

/* Keep it strictly one line on wider screens */
@media (min-width: 768px){
  .hero-quote{
    white-space: nowrap;
    overflow: hidden;          /* if it ever gets too long */
    text-overflow: ellipsis;   /* adds … instead of wrapping */
  }
}

/* Small screens: allow wrapping so it doesn’t overflow */
@media (max-width: 767px){
  .hero-quote{
    white-space: normal;
    text-overflow: clip;
  }
}


.landing-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.06;
  margin: 8px 0 10px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.landing-hero__subtitle {
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  line-height: 1.6;
  opacity: .98;
  margin: 0 auto 24px;
  max-width: 62ch;
  text-shadow: 0 3px 12px rgba(0,0,0,0.32);
}

.hero-btn {
  display: inline-block;
  background-color: #2e7b57; /* brand green */
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  background-color: #d86c84; /* lotus pink on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 520px) {
  .landing-hero {
    padding-top: 96px;
    min-height: 86vh;
  }
  .landing-hero__quote {
    font-size: 1rem;
    padding: 7px 12px;
  }
}
/* ==== Prevent navbar from covering content ==== */
html {
  scroll-behavior: smooth; /* smooth scroll when clicking links */
}

/* Add top padding equal to navbar height so anchors aren't hidden */
:target {
  scroll-margin-top: 84px; /* adjust if your navbar height changes */
}

/* Slightly more breathing room for the hero when page loads */
.landing-hero {
  padding-top: 120px; /* pushes content below navbar */
}

/* Make sure content isn't under the fixed navbar */
body{ padding-top: 70px; } /* adjust if your nav is taller */
/* ==== Mobile Landing Hero Polish ==== */
@media (max-width: 768px) {
  .landing-hero {
    padding-top: 140px; /* account for taller mobile nav */
    padding-bottom: 60px;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .landing-hero__content {
    padding: 0 14px;
  }

  .landing-hero__quote {
    font-size: 0.95rem;
    padding: 6px 12px;
    max-width: 90%;
    margin-bottom: 12px;
  }

  .landing-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 10px;
  }

  .landing-hero__subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 12px 22px;
  }
}


.btn{
  display: inline-block;
  background: #0077b6;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover{ background:#023e8a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.24); }
/* ===== About Page Polish ===== */
/* ===== About Section - Warm Welcome ===== */
.about-section {
  background: #faf8f6; /* soft cream background */
  padding: 90px 20px;
}

.about-section .about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.about-section .about-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #2e7b57;
  margin-bottom: 8px;
}

.about-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #5a5a5a;
  margin-bottom: 18px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .about-section .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-section .about-image img {
    max-width: 280px;
    margin: 0 auto 20px;
  }
}
/* ===== Self-Compassion Section (nice cards + animated points) ===== */
/* Section layout */
.scp-flow {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.scp-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Two text columns inside right side */
.scp-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.scp-column h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #20322b;
}

.scp-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.scp-points li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  color: #34495e;
}

.scp-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d86c84;
  font-weight: bold;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s ease;
}

/* Animate checkmarks in */
[data-aos="fade-up"].aos-animate li::before {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .scp-flow {
    grid-template-columns: 1fr;
  }
  .scp-columns {
    grid-template-columns: 1fr;
  }
}
.mindfulness-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f9f6, #eaf3f0);
}

.mindfulness-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mindfulness-text {
  flex: 1;
}

.mindfulness-text h2 {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #2c3e50;
}

.mindfulness-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.mindfulness-text ul {
  list-style: none;
  padding: 0;
}

.mindfulness-text ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  padding-left: 0;
}

.mindfulness-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mindfulness-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .mindfulness-content {
    flex-direction: column;
    text-align: center;
  }

  .mindfulness-image {
    order: -1;
    margin-bottom: 20px;
  }
}
.testimonials-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
  text-align: center;
}

.testimonials-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1b4332;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #2d6a4f;
}

/* ------------------ Sections (shared) ------------------ */
.section{ padding: 80px 0; }
.section h2{ color: var(--green-dk); text-align: center; }
.section .lead{ color: #444; max-width: 800px; margin: 8px auto 24px; text-align: center; }

/* ------------------ About ------------------ */
.about-section{ background: #fefefe; }
.about-content{
  display: flex; gap: 30px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
}
.about-text{ flex: 1; max-width: 600px; font-size: 1.1rem; line-height: 1.65; color:#34495e; }
.about-image{ flex: 1; max-width: 500px; display: flex; justify-content: center; }
.about-image img, .about-content video{
  width: 100%; border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

/* ------------------ Benefits ------------------ */
#benefits{ background: linear-gradient(135deg, #f3f4f6, #e9ebee); }
.benefit-list{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.benefit-item{
  background: #fff; padding: 32px 26px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .25s ease;
}
.benefit-item:hover{ transform: translateY(-5px); }

/* ------------------ Coach Card ------------------ */
.coach-section{ background: linear-gradient(to bottom, #ffe0ef, #e0f0ff); }
.coach-card{
  max-width: 900px; margin: 0 auto; background:#fff; border-radius:16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1); padding: 40px;
  display: flex; gap: 32px; align-items: center;
}
.coach-photo{ width: 250px; height: 250px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.coach-details{ flex: 1; }
.coach-card h3{ font-size: 1.8rem; margin: 0 0 10px; }
.coach-card .degree{ color:#555; margin-bottom: 18px; }
.coach-bio{ font-size: 1.05rem; line-height: 1.7; color:#333; max-width: 60ch; }

/* ------------------ Crew / Tutors ------------------ */
#crew{ background:#fff; text-align:center; }
.tutors{ display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.tutor-card{
  width: 220px; background:#f9f9f9; border-radius:10px; padding:20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tutor-card:hover{ transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.tutor-photo{ width:100%; border-radius:8px; margin-bottom:10px; }

/* ------------------ Testimonials ------------------ */
.testimonials-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7fa, #ffe0ef);
  text-align: center;
}
.testimonial-container{ max-width: 800px; margin: 0 auto; }
.testimonial-item{
  background:#fff; padding: 40px; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1); text-align: left;
}
.testimonial-text{
  font-size: 1.15rem; line-height: 1.7; color:#34495e; font-style: italic;
  max-width: 75ch; margin: 0 auto 22px;
}
.testimonial-author{ font-weight: 600; color: #0077b6; }
/* ===== Calming Contact Form ===== */
.contact-form-section{
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(180deg, #f6fbf8, #eef6f1);
  overflow: clip;
}

/* soft animated aura behind the card */
.form-aura{
  position: absolute; inset: -20% -10% auto -10%; height: 380px;
  background: radial-gradient(40% 60% at 50% 50%, rgba(46,123,87,.18), transparent 60%),
              radial-gradient(30% 40% at 60% 30%, rgba(216,108,132,.16), transparent 60%);
  filter: blur(18px);
  animation: breathe 6.5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes breathe{
  0% { transform: scale(1); opacity:.9; }
  100%{ transform: scale(1.06); opacity:1; }
}

/* floating “petals” */
.contact-form-section::before,
.contact-form-section::after{
  content:""; position:absolute; inset:auto 10% -40px auto; width:120px; height:120px;
  background: radial-gradient(circle at 30% 30%, rgba(216,108,132,.28), transparent 60%);
  filter: blur(6px); border-radius: 50%;
  animation: floaty 12s ease-in-out infinite;
}
.contact-form-section::after{
  inset:auto auto -60px 12%;
  width:160px; height:160px;
  background: radial-gradient(circle at 70% 30%, rgba(46,123,87,.22), transparent 60%);
  animation-duration: 15s;
}
@keyframes floaty{
  0% { transform: translateY(0) translateX(0); opacity:.45; }
  50%{ transform: translateY(-16px) translateX(8px); opacity:.6; }
  100%{ transform: translateY(0) translateX(0); opacity:.45; }
}

/* card */
.form-card{
  position: relative;
  width: min(860px, 92%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  padding: 34px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.form-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  color: var(--green-dk);
  text-align: center;
  margin-bottom: 6px;
}
.form-lead{
  text-align: center;
  color: #556370;
  margin: 0 auto 26px;
  max-width: 60ch;
}

/* fields */
.nice-form .field{ margin-bottom: 18px; }
.nice-form label{
  display: inline-block;
  font-weight: 600;
  color: var(--green-dk);
  margin-bottom: 8px;
}
.nice-form input,
.nice-form textarea{
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e6e2db;
  border-radius: 12px;
  font: inherit; color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nice-form input::placeholder,
.nice-form textarea::placeholder{ color:#9aa3ab; }

.nice-form input:focus,
.nice-form textarea:focus{
  outline: none;
  border-color: rgba(46,123,87,.55);
  box-shadow: 0 0 0 4px rgba(46,123,87,.15);
  background: #fbfefc;
}

.char-count{
  font-size: .9rem; color: var(--muted);
  margin-top: 6px; text-align: right;
}

/* small inline messages */
.field-msg{
  display: none;
  font-size: .92rem;
  color: #b33951;
  margin-top: 8px;
}

/* button with loading spinner */
.submit-btn{
  position: relative;
  min-width: 190px;
}
.btn-spinner{
  display: none;
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  border-top-color: #fff;
  margin-left: 10px;
  animation: spin 900ms linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.submit-btn.loading .btn-text{ opacity: .8; }
.submit-btn.loading .btn-spinner{ display:inline-block; }

/* alerts */
.form-alert{
  margin-top: 16px;
  font-weight: 600;
  color: var(--green-dk);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .form-aura, .contact-form-section::before, .contact-form-section::after{
    animation: none !important;
  }
}

/* ------------------ Contact ------------------ */
#contact{ background:#f8f8f8; text-align: center; }
#contact p{ color:#555; font-size: 1.05rem; }
input, textarea, select{
  width: 100%; padding: 12px 14px; border: 1px solid #e6e2db; border-radius: 10px;
  font: inherit; color: inherit; background: #fff;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 992px){
  .coach-card{ flex-direction: column; text-align: center; }
  .coach-photo{ width: 160px; height: 160px; margin-bottom: 8px; }
  .coach-bio{ max-width: 100%; text-align: left; }
}

@media (max-width: 820px){
  body{ padding-top: 70px; }              /* header height stays similar */
  .hamburger{ display: block; }           /* show hamburger */
  .menu ul{ display: none; }              /* hide menu by default */
  .menu.open ul{
    display: flex; flex-direction: column; gap: 12px;
    position: absolute; left: 16px; right: 16px; top: 64px;
    background: var(--green-dk); padding: 14px; border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
  }
  .menu.open a{ color: #fff; }
  .menu.open a:hover{ background: rgba(255,255,255,.12); color: #fff; }
  .about-content{ flex-direction: column; text-align: center; }
}

@media (max-width: 520px){
  .brand__logo{ width: 34px; height: 34px; }
  .landing-hero{ min-height: 82vh; }
  .coach-card{ padding: 28px; }
}
/* Desktop: menu visible in a row */
.menu ul { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; }

/* Mobile: hide until opened */
@media (max-width: 820px){
  .menu ul { display: none; }
  .menu.open ul { display: flex; flex-direction: column; gap: 12px; }
}
/* ==== Hero Entrance Animations (gentle + premium) ==== */

/* Start hidden so we can fade in */
.landing-hero__content > * {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  animation: hero-fade-up 700ms cubic-bezier(.2,.65,.25,1) forwards;
}

/* Stagger the children for a nice cascade */
.landing-hero__quote   { animation-delay: 80ms;  }
.landing-hero__title   { animation-delay: 220ms; }
.landing-hero__subtitle{ animation-delay: 360ms; }
.hero-btn              { animation-delay: 520ms; }

/* Keyframes */
@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* Soft pulse on CTA after it lands to draw the eye once */
.hero-btn {
  animation-name: hero-fade-up, cta-pop;
  animation-duration: 700ms, 600ms;
  animation-timing-function: cubic-bezier(.2,.65,.25,1), cubic-bezier(.2,.65,.25,1.4);
  animation-fill-mode: forwards, forwards;
  animation-delay: 520ms, 1100ms; /* pulse happens after entrance */
}

@keyframes cta-pop {
  0%   { transform: translateY(0) scale(1);   box-shadow: 0 4px 12px rgba(0,0,0,.25); }
  60%  { transform: translateY(-1px) scale(1.03); box-shadow: 0 8px 18px rgba(0,0,0,.28); }
  100% { transform: translateY(0) scale(1);   box-shadow: 0 6px 16px rgba(0,0,0,.26); }
}

/* Optional: subtle navbar fade on first paint */
.navbar {
  animation: nav-fade 500ms ease-out 120ms both;
}
@keyframes nav-fade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* Accessibility: respect "reduce motion" */
@media (prefers-reduced-motion: reduce) {
  .landing-hero__content > *,
  .hero-btn,
  .navbar {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
/* FORCE the polished styles for the contact form */
#contact-form .nice-form input,
#contact-form .nice-form textarea,
#contact-form .nice-form select{
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e6e2db;
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

#contact-form .nice-form input:focus,
#contact-form .nice-form textarea:focus{
  outline: none;
  border-color: rgba(46,123,87,.55);
  box-shadow: 0 0 0 4px rgba(46,123,87,.15);
  background: #fbfefc;
}
