/* Easy Day Virtual Assistance — brand palette
   mint:      #D6FFF6
   teal:      #4DCCBD
   deep teal: #187795
   lavender:  #CA9CE1
   plum gray: #685F74
*/

:root {
  --mint: #D6FFF6;
  --teal: #4DCCBD;
  --deep: #187795;
  --lavender: #CA9CE1;
  --plum: #685F74;
  --ink: #2e2a35;
  --white: #ffffff;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Jost', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

h2 { font-size: 2rem; color: var(--deep); margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

section { padding: 4.5rem 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(24, 119, 149, 0.25); }
.btn-primary { background: var(--deep); color: var(--white); }
.btn-primary:hover { background: #135f78; }
.btn-ghost { border-color: var(--deep); color: var(--deep); background: transparent; }
.btn-small { background: var(--teal); color: var(--white); padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-large { font-size: 1.1rem; padding: 1rem 2.4rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(24, 119, 149, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.brand { text-decoration: none; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-script { font-family: var(--font-script); font-size: 1.9rem; color: var(--ink); }
.brand-sub {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-indent: 0.35em; /* offset trailing letter-spacing so text sits centered */
  text-transform: uppercase;
  color: var(--plum);
  margin-top: 0.2rem;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a:not(.btn) {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.nav-links a:not(.btn):hover { color: var(--deep); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--mint) 0%, #eafffa 45%, #f6effb 100%);
  padding: 6rem 0 5.5rem;
  text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 700; color: var(--ink); margin: 0.5rem 0 1.2rem; }
.hero h1 em { font-style: normal; color: var(--deep); position: relative; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.35em;
  background: var(--lavender);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}
.lede { max-width: 620px; margin: 0 auto 2rem; font-size: 1.2rem; color: var(--plum); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.trust-strip {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
}

/* Subpage hero */
.page-hero {
  background: linear-gradient(160deg, var(--mint) 0%, #eafffa 45%, #f6effb 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 700; color: var(--ink); margin: 0.5rem 0 1rem; }
.page-hero .lede { margin-bottom: 0; }

/* Pain points */
.pain { text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.pain-card {
  background: var(--mint);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: left;
}
.pain-card h3 { color: var(--deep); font-size: 1.1rem; margin-bottom: 0.5rem; }
.pain-close { font-size: 1.15rem; color: var(--plum); }

/* Services */
.services { background: linear-gradient(180deg, #ffffff 0%, var(--mint) 100%); text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(24, 119, 149, 0.08);
  border-top: 4px solid var(--teal);
  transition: transform 0.15s ease;
}
.service-card:nth-child(even) { border-top-color: var(--lavender); }
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.5rem; }
.service-card p { color: var(--plum); font-size: 0.98rem; }
.services-note { margin-top: 2.5rem; color: var(--plum); font-style: italic; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: start; }
.about-text p { margin-bottom: 1.2rem; color: var(--ink); }
.about-text .btn { margin-top: 0.5rem; }
.about-values { display: flex; flex-direction: column; gap: 1.5rem; }
.value {
  display: flex;
  gap: 1.2rem;
  background: #f6effb;
  border-left: 4px solid var(--lavender);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.4rem;
}
.value-num { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--lavender); }
.value h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.2rem; }
.value p { font-size: 0.95rem; color: var(--plum); }

/* Pricing */
.pricing { background: var(--deep); text-align: center; }
.pricing .eyebrow { color: var(--mint); }
.pricing h2 { color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured { outline: 4px solid var(--teal); transform: scale(1.03); }
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { color: var(--deep); font-size: 1.2rem; }
.price { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin: 0.4rem 0; }
.price-desc { color: var(--plum); font-size: 0.95rem; margin-bottom: 1rem; }
.price-card ul { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.price-card li { padding: 0.35rem 0 0.35rem 1.4rem; position: relative; font-size: 0.97rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.price-card .btn { align-self: stretch; text-align: center; }

.price-per { font-size: 0.9rem; font-weight: 400; color: var(--plum); }
.pricing-note { margin-top: 2rem; color: var(--mint); font-size: 0.95rem; }
.btn-light { background: var(--white); color: var(--deep); margin-top: 1.2rem; }

/* Pricing teaser (home page) */
.pricing-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.teaser-tier {
  display: block;
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.teaser-tier:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
.teaser-tier h3 { color: var(--deep); font-size: 1.15rem; }
.teaser-tier .price { margin: 0.3rem 0; }
.teaser-tier > p:last-child { color: var(--plum); font-size: 0.95rem; }
.teaser-featured { outline: 4px solid var(--teal); }

.cta-left { justify-content: flex-start; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Portfolio */
.portfolio { background: #f6effb; text-align: center; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.portfolio-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: left;
  border-top: 4px solid var(--lavender);
  box-shadow: 0 4px 16px rgba(104, 95, 116, 0.1);
}
.portfolio-card:nth-child(even) { border-top-color: var(--teal); }
.portfolio-card h3 { font-size: 1.05rem; color: var(--deep); margin-bottom: 0.5rem; }
.portfolio-card p { font-size: 0.95rem; color: var(--plum); }

/* Website design gallery */
.gallery-subhead { margin-top: 3.5rem; color: var(--deep); font-size: 1.4rem; }
.gallery-note { color: var(--plum); margin-bottom: 0.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.gallery-item {
  margin: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(104, 95, 116, 0.12);
}
.gallery-item img { display: block; width: 100%; height: auto; }
.gallery-ph {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 2rem;
  background: linear-gradient(150deg, var(--mint) 0%, #f6effb 100%);
  color: var(--deep);
}
.gallery-ph span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
}
.gallery-item figcaption {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
/* Aspect-ratio variants for placeholder tiles (real images size naturally) */
.gallery-square .gallery-ph { aspect-ratio: 1 / 1; }
.gallery-tall .gallery-ph { aspect-ratio: 2 / 3; }
.portfolio.alt-bg { background: var(--white); }
.portfolio-cta { margin-top: 2.5rem; }

/* Comparison / add-on tables (bookkeeping page) */
.compare-wrap { overflow-x: auto; margin-top: 2.5rem; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(104, 95, 116, 0.12);
  text-align: left;
}
.compare-table th, .compare-table td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid rgba(104, 95, 116, 0.12);
  font-size: 0.95rem;
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--deep);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody th {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
}
.compare-table tbody td { text-align: center; color: var(--plum); }
.compare-table tbody tr:nth-child(even) th,
.compare-table tbody tr:nth-child(even) td { background: #faf7fc; }
.compare-table .yes { color: var(--teal); font-weight: 700; }
.compare-table .no { color: #c7c2cf; }
.compare-table .col-featured { background: rgba(77, 204, 189, 0.12); }
.compare-table thead .col-featured { background: var(--teal); }
.addon-table { min-width: 520px; }
.addon-table td { text-align: left; }

.fine-notes {
  list-style: disc;
  margin: 1.8rem auto 0;
  max-width: 760px;
  padding-left: 1.2rem;
  text-align: left;
  color: var(--plum);
  font-size: 0.92rem;
}
.fine-notes li { margin-bottom: 0.4rem; }

/* Testimonials */
.testimonials { background: #f6effb; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-grid-2 { grid-template-columns: 3fr 2fr; align-items: start; }
.testimonials blockquote {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  text-align: left;
  box-shadow: 0 4px 16px rgba(104, 95, 116, 0.1);
}
.testimonials blockquote p { font-style: italic; margin-bottom: 1rem; }
.testimonials footer { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--deep); }

/* FAQ */
.faq .container { max-width: 760px; }
.faq { text-align: center; }
.faq details {
  text-align: left;
  background: var(--mint);
  border-radius: 12px;
  margin-top: 1rem;
  padding: 1.1rem 1.4rem;
}
.faq details:first-of-type { margin-top: 2rem; }
.faq summary {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  font-size: 1.05rem;
}
.faq details p { margin-top: 0.8rem; color: var(--ink); }

/* Contact */
.contact { background: linear-gradient(160deg, var(--mint) 0%, #f6effb 100%); text-align: center; }
.contact-inner { max-width: 680px; }
.contact p { color: var(--plum); }
.contact-form { margin-top: 2rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(24, 119, 149, 0.25);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--teal); border-color: transparent; }
.contact-form button { display: block; margin: 0.5rem auto 0; border: none; }
.hb-embed {
  margin: 2rem auto 0;
  max-width: 640px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(24, 119, 149, 0.12);
  min-height: 60px;
}
.contact-alt { margin-top: 1.5rem; font-size: 0.95rem; }
.contact-alt a { color: var(--deep); font-weight: 600; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.85); padding: 3rem 0; text-align: center; }
.site-footer .brand-script { color: var(--white); font-size: 2.2rem; }
.site-footer .brand-sub { color: var(--lavender); display: block; margin: 0.3rem 0 1rem; }
.site-footer p { max-width: 480px; margin: 0 auto 0.5rem; font-size: 0.95rem; }
.footer-nav {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  margin: 1rem 0 1.2rem;
}
.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--mint);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--teal); }
.copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
.pain-close a { color: var(--deep); font-weight: 600; }
.addon-price { color: var(--deep); margin-bottom: 1rem; }
.bk-services { grid-template-columns: repeat(4, 1fr); }
.about-text a:not(.btn), .service-card a { color: var(--deep); font-weight: 600; }

/* Responsive */
@media (max-width: 860px) {
  .pain-grid, .services-grid, .pricing-grid, .pricing-teaser, .testimonial-grid, .testimonial-grid-2, .portfolio-grid, .gallery-grid, .bk-services { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.9rem; }
  .about-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .price-card.featured { transform: none; }
  .nav-links { gap: 1rem; }
  .nav-links li:not(:last-child) { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
