/* ==========================
   PALETTE — calm + elegant
========================== */
:root {
  --sage: #6f8f7a;
  --deep-green: #2f4a3a;
  --moss: #4e6b57;
  --cream: #f6f3ee;
  --soft-ivory: #fbf9f6;
  --ink: #1f1f1f;
  --gold-soft: #c6b48a;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* ==========================
   HERO — more cinematic
========================== */
/* Make hero fill the viewport */
.hero {
  min-height: 120vh;      /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px 0;       /* optional, reduces top/bottom padding */
  overflow: hidden;
  position: relative;
}

/* dark overlay for contrast */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,20,18,0.55),
    rgba(15,20,18,0.55)
  );
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================
   HERO CONTENT
========================== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================
   BRAND TITLE
========================== */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.22em;
  color: var(--soft-ivory);
  margin-bottom: 12px;
  text-shadow: 0 8px 28px rgba(0,0,0,0.7);
}

.title-line {
  display: block;
}

.highlight {
  display: block;
  color: var(--gold-soft);
}

/* ==========================
   PRIMARY TAGLINE
========================== */
.tag-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--soft-ivory);
  margin-top: 12px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

/* ==========================
   SUB TAG
========================== */
.sub-tag {
  margin-top: 12px;
  margin-bottom: 34px;
  font-size: 1.05rem;
  color: #e7ebe7;
  opacity: 0.95;
  letter-spacing: 0.05em;
}

/* ==========================
   BUTTON — refined
========================== */
.signup-button {
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 40px;
  background: var(--soft-ivory);
  color: var(--deep-green);
  border: 1px solid rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.25s ease;
}

.signup-button:hover {
  background: var(--gold-soft);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ==========================
   ACCENT IMAGE
========================== */
.section-accent {
  position: relative;
  width: 100%;
  height: 240px; /* adjust height as needed */
  background: url('Images/leafbackground1.jpg') center/cover no-repeat;
  opacity: 0.15; /* subtle fade */
  pointer-events: none;
  z-index: 0;
}


/* ==========================
   INTRO / ABOUT SECTION
========================== */
.intro {
  position: relative;
  padding: 110px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    180deg,
    #f8f6f3 0%,
    #f1efe9 100%
  );
  overflow: hidden;
  scroll-margin-top: 40px;
}

/* subtle art-deco divider lines */
.intro::before,
.intro::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
  left: 50%;
  transform: translateX(-50%);
}

.intro::before { top: 55px; }
.intro::after { bottom: 55px; }

.intro .container {
  max-width: 760px;
  text-align: center;
}

.intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  color: #2f4739;
}

.intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b4b4b;
  opacity: 0.95;
  margin-bottom: 18px;
  line-height: 1.9;
}

.intro p:last-child {
  margin-bottom: 0;
}
.intro-snippet {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 60px;
  padding: 0 20px;
  color: #4b4b4b;
  line-height: 1.8;
}

.intro-snippet p {
  margin-bottom: 14px;
}

/*===============
Home Image
===============*/
.home-feature-image {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.home-feature-image img {
  width: 100%;
  height: 380px;          /* controls “zoom level” */
  object-fit: cover;      /* keeps it filled */
  object-position: center; /* change this if needed */
  border-radius: 16px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


/* ==========================
   NEWSLETTER
========================== */
.newsletter-section {
  position: relative;
  padding: 110px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(
    circle at top,
    #eef2ec,
    #e7ece6 60%,
    #e1e6e0 100%
  );
}
/* Center all newsletter content */
.newsletter-section .sib-form {
  text-align: center;
}

.newsletter-section .sib-form p {
  text-align: center;
  line-height: 1.8; /* keeps it readable */
  margin-bottom: 30px;
  color: #4b4b4b;
}

/* subtle botanical overlay feel */
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/texture-light.png");
  opacity: 0.05;
  pointer-events: none;
}

/* card */
.sib-form {
  position: relative;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 55px 45px;
  max-width: 760px;
  width: 100%;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(191,174,138,0.35);
}

/* deco top line */
.sib-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
  transform: translateX(-50%);
}

/* heading */
.sib-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #2f4739;
}

/* text */
.sib-form p {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #4b4b4b;
}

/* form */
.sib-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* input */
.sib-form input[type="email"] {
  flex: 1 1 260px;
  padding: 16px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.18);
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
}

/* button */
.sib-form button {
  padding: 14px 30px;
  border-radius: 50px;
  background: #2f4739;
  color: #fff;
  border: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sib-form button:hover {
  background: #1f3327;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}


/* ==========================
   CAREERS / COLLAB SECTION
========================== */
#careers {
  position: relative;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    180deg,
    #f3f0ea 0%,
    #ece8e1 100%
  );
  overflow: hidden;
  text-align: center;
}

/* subtle texture overlay */
#careers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/texture-light.png");
  opacity: 0.05;
  pointer-events: none;
}

/* soft divider lines (matching intro section) */
#careers::after {
  content: "";
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
}

.careers-container {
  position: relative;
  max-width: 760px;
  width: 100%;
}

/* heading */
#careers h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  color: #2f4739;
}

/* paragraph */
#careers p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b4b4b;
  opacity: 0.95;
  margin-bottom: 34px;
}

/* button row */
.careers-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* primary button */
.careers-btn-primary {
  padding: 14px 34px;
  border-radius: 40px;
  background: #2f4739;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.25s ease;
}

.careers-btn-primary:hover {
  background: #1f3327;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* secondary button */
.careers-btn-secondary {
  padding: 14px 34px;
  border-radius: 40px;
  background: transparent;
  color: #2f4739;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.25);
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.careers-btn-secondary:hover {
  background: #c6b48a;
  color: #000;
  transform: translateY(-2px);
}

/* ==========================
   FOOTER
========================== */
footer {
  background: var(--deep-green);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.footer-seals {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer-seals img {
  width: 75px;
  opacity: 0.9;
}

/* ==========================
   ANIMATION
========================== */
.hero-content > * {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content > *:nth-child(2){animation-delay:.2s;}
.hero-content > *:nth-child(3){animation-delay:.35s;}
.hero-content > *:nth-child(4){animation-delay:.5s;}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}

/* ==========================
   FAQ PAGE — matching your brand
========================== */
.faq-nav {
  color: var(--deep-green);
  position: relative;
  padding: 30px 0;
  justify-content: center;
  transform: none;
  left: auto;
  top: auto;
}

.faq-nav a {
  color: var(--deep-green);
  opacity: 0.85;
  text-decoration: none;
  transition: all 0.25s ease;
}

.faq-nav a:hover {
  color: var(--sage);
  opacity: 1;
}
.page-header {
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(
    180deg,
    #f8f6f3 0%,
    #f1efe9 100%
  );
  position: relative;
}



/* subtle divider line like intro */
.page-header::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, #bfae8a, transparent);
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  color: #2f4739;
  margin-bottom: 12px;
}
.page-header .subhead {
  font-size: 1.05rem;
  color: #4b4b4b;
  opacity: 0.9;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  margin-bottom: 10px;
}
.page-header .site-button {
  display: inline-block;
  margin-bottom: 0;
}

.page-header p {
  margin-bottom: 18px;
}
/* container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px 120px;
}

/* each FAQ item */
.faq-item {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 18px 22px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(191,174,138,0.25);
  transition: all 0.25s ease;
}

/* subtle hover */
.faq-item:hover {
  transform: translateY(-2px);
}

/* question */
.faq-item summary {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2f4739;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

/* remove default marker */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* custom indicator */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #c6b48a;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

/* when open */
.faq-item[open] summary::after {
  content: "–";
}

/* answer text */
.faq-item p {
  margin-top: 12px;
  color: #4b4b4b;
  line-height: 1.8;
  font-size: 1rem;
}

/* footer */
.page-footer {
  background: var(--deep-green);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  letter-spacing: 0.05em;
}
/* Navigation Top Menu*/
.main-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  z-index: 10;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.08em;
}

.main-nav a {
  color: var(--soft-ivory);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: all 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.faq-nav a {
  color: var(--deep-green) !important;
  opacity: 0.85;
}

.faq-nav a:hover {
  color: var(--sage) !important;
  opacity: 1;
}



/*===============================
Business Support Page
=================================*/
.subhead {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b4b4b;
  max-width: 900px;
  margin: 0 auto 20px;
}

/* ==========================
   BUSINESS SUPPORT PAGE
========================== */

.business-support-section {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(
    180deg,
    #f8f6f3 0%,
    #f1efe9 100%
  );
  overflow: hidden;
}

/* subtle texture */
.business-support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/texture-light.png");
  opacity: 0.05;
  pointer-events: none;
}

.business-support-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* page intro */
.business-support-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.business-support-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  color: #2f4739;
  margin-bottom: 18px;
}

.business-support-header p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b4b4b;
}

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

/* cards */
.service-card,
.package-card {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(191,174,138,0.22);
  transition: all 0.25s ease;
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-3px);
}

/* headings */
.service-card h2,
.package-card h3 {
  font-family: "Playfair Display", serif;
  color: #2f4739;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

/* body text */
.service-card p,
.package-card p {
  color: #4b4b4b;
  line-height: 1.8;
}

/* pricing */
.service-price {
  display: block;
  margin-top: 22px;
  color: #2f4739;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* packages section */
.packages-section {
  margin-top: 60px;
}

.packages-section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2f4739;
}

/* CTA */
.business-cta {
  margin-top: 90px;
  text-align: center;
}

.business-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2f4739;
}

.business-cta p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: #4b4b4b;
  line-height: 1.8;
}

/*===================
VIRTUAL ASSISTANT IMAGES AND LIST
=====================*/

.service-image-row {
  display: flex;
  gap: 12px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.service-image-row img {
  flex: 1;
  min-width: 0;
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/*===================
VIRTUAL ASSISTANT GRID
=====================*/

.va-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.va-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.va-title {
  padding: 18px 22px;
  background: #ffffff;
  font-weight: 600;
}

.va-body {
  flex: 1;
  padding: 18px 22px;
  background: #2f4739;
  color: #fff;
}


/* ==========================
   UNIVERSAL SITE BUTTONS
========================== */

.site-button {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 30px;
  border-radius: 40px;

  background: #2f4739;
  color: #fff;

  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 0.95rem;

  border: none;
  cursor: pointer;

  transition: all 0.25s ease;
}

.site-button:hover {
  background: #1f3327;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* softer secondary version */
.site-button-light {
  background: transparent;
  color: #2f4739;
  border: 1px solid rgba(0,0,0,0.2);
}

.site-button-light:hover {
  background: #c6b48a;
  color: #000;
}


/* ==========================
   NAV OVERRIDE FOR LIGHT PAGES
========================== */

body.light-page .main-nav a {
  color: var(--deep-green);
  opacity: 0.9;
}

body.light-page .main-nav a:hover {
  color: var(--sage);
  opacity: 1;
}

/* ==========================
   CONTACT PAGE FORM to MATCH SITE
========================== */

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

input,
textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: 'Josefin Sans', sans-serif;
  background: rgba(255,255,255,0.85);
  transition: all 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(111, 143, 122, 0.15);
}

button {
  align-self: center;
}


/*=========================
LMT PHOTOS
===================*/
.profile-photo {
  width: 320px;
  height: 320px;

  object-fit: cover;
  object-position: center 20%;

  border-radius: 50%;
  display: block;
  margin: 30px auto !important;
  float: none !important;
  max-width: 100%;

  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
  border: 2px solid rgba(191,174,138,0.35);
}

/*=========================
IMAGE GRID PHOTOS
===================*/
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 50px auto;
  padding: 0 20px;
  max-width: 1100px;
}

.image-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  filter: saturate(0.95) contrast(0.98);
}

.service-mini-images {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.service-mini-images img {
  width: calc(50% - 6px);
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.service-image-row.single {
  display: flex;
  justify-content: center;
}

.service-image-row.single img {
  max-width: 700px;
  width: 100%;
  flex: none;
}


.page-photo {
  width: 240px;
  height: 240px;
  margin: 24px auto !important;
  display: block;

  border-radius: 50%;
  object-fit: cover;
}
/* ==========================
   CREDENTIALS SECTION
========================== */

.credentials-section {
  padding: 80px 20px;
}

.credentials-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.credentials-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #2f4739;
  margin-bottom: 18px;
}

.credentials-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #4b4b4b;
  line-height: 1.8;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.credential-item {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(191,174,138,0.22);
}

.credential-item h3 {
  font-family: "Playfair Display", serif;
  color: #2f4739;
  margin-bottom: 12px;
}

.credential-item p {
  color: #4b4b4b;
  line-height: 1.8;
}
/*==========================
Package listing design
=================*/
.package-list {
  margin-top: 2rem;
}

.package {
  margin-bottom: 2.5rem;
}

.package h3 {
  margin-bottom: 0.5rem;
}

.package-price {
  font-weight: 600;
  margin-top: 0.75rem;
}

/*====================
  VIRTUAL ASSISTANT  PAGE
  ======================*/
  .soft-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
  }
 
  .soft-list li {
    text-align: center;
    padding: 14px 0;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .page-photo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /*========================
  BACK TO TOP BUTTON
  ========================*/
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2f4739;
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0.9;
  }
  
  .back-to-top:hover {
    opacity: 1;
  }

  /*===========
  MAIN PAGE STYLING 
  ===================*/
  
  .va-title a {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .va-title a:hover {
    opacity: 0.8;
  }

  .site-button-green {
    display: inline-block;
    background: #2f4739;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
  }
  
  .site-button-green:hover {
    background: #3a5a47;
  }

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {

  .hero {
    min-height: 72vh;
    padding: 110px 16px 60px;
  }

  .tag-line {
    font-size: 1.25rem;
  }

  .sub-tag {
    font-size: .95rem;
  }

  .intro {
    padding: 60px 20px;
  }

  .sib-form {
    padding: 30px 20px;
  }

  .footer-seals img {
    width: 55px;
  }

}
@media (max-width: 768px) {

  .main-nav {
    width: 100%;
    left: 0;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 10px;
  }

  .main-nav a {
    font-size: 0.85rem;
  }

  @media (max-width: 768px) {

    .page-header {
      padding-top: 200px;
    }
  
  }

}
@media (max-width: 768px) {
  .va-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-accent {
    height: 120px;
  }
}

/* ==========================
   MOBILE ALIGNMENT FIXES
========================== */
@media (max-width: 768px) {

  /* prevent edge-to-edge text */
  .intro .container,
  .business-support-container,
  .faq-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* fix round profile image centering */
  .profile-photo {
    width: 240px;
    height: 240px;
    margin: 24px auto !important;
    display: block;
  }

  /* prevent image rows from sticking to edges */
  .service-image-row {
    padding: 0 6px;
    justify-content: center;
  }

  /* make stacked images feel balanced */
  .service-image-row img {
    width: 100%;
    max-width: 100%;
  }

  /* fix grid spacing feel */
  .va-grid {
    gap: 16px;
  }

  /* stop text from feeling cramped */
  .intro p {
    font-size: 1rem;
    line-height: 1.85;
  }

  /* bottom section image spacing consistency */
  .profile-photo + p,
  .profile-photo + strong,
  .profile-photo + img {
    margin-top: 18px;
  }
}

@media (max-width: 768px) {

  /* Force clean vertical flow for image rows */
  .service-image-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 20px 0 30px;
  }

  .service-image-row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Make sure grid is truly single column */
  .va-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Prevent text feeling cramped inside green boxes */
  .va-body {
    line-height: 1.7;
    font-size: 0.98rem;
  }

  .va-body p {
    margin: 0 0 12px;
  }

  .va-body p:last-child {
    margin-bottom: 0;
  }

}