/* South MS Marketing — warm professional Pine Belt look */
:root {
  --navy: #1a2f4a;
  --navy-deep: #122238;
  --forest: #2d5a3d;
  --forest-light: #3d7a52;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --warm-white: #fffcf7;
  --gold: #c4a35a;
  --gold-soft: #d4b87a;
  --text: #2c2a26;
  --text-muted: #5c574f;
  --border: #ddd5c5;
  --shadow: 0 4px 24px rgba(26, 47, 74, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 47, 74, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --max: 1100px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--navy);
}

ul {
  list-style: none;
}

/* —— Layout —— */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
  color: var(--cream);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.section--navy .section__label {
  color: var(--gold-soft);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section--navy .section__title {
  color: var(--cream);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.section--navy .section__lead {
  color: rgba(247, 243, 235, 0.85);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  line-height: 1.15;
}

.logo:hover {
  color: var(--navy);
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
}

.hero__mark {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 0 1.25rem;
  box-shadow: 0 8px 24px rgba(26, 47, 74, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
  background: var(--cream);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--forest);
  color: var(--warm-white);
  border-color: var(--forest);
}

.btn--primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--warm-white);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 235, 0.45);
}

.btn--ghost:hover {
  background: rgba(247, 243, 235, 0.12);
  color: var(--cream);
  border-color: var(--cream);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 55%, #e8f0e9 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: min(360px, 40vw);
  height: min(360px, 40vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 47, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--forest);
  background: rgba(45, 90, 61, 0.1);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 999px;
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 0.25rem;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--cream), var(--cream-dark));
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--forest);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.card__body {
  color: var(--text-muted);
  font-size: 1rem;
}

.card__link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.card__link:hover {
  text-decoration: underline;
}

/* —— Who we help —— */
.audience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr 1fr;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.audience-item__mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--cream);
  border-radius: 8px;
  font-size: 0.95rem;
}

.audience-item__title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.audience-item__text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* —— Soft CTA band —— */
.cta-band {
  text-align: center;
}

.cta-band .section__lead {
  margin-inline: auto;
}

.cta-band .btn-row {
  justify-content: center;
}

/* —— Contact block —— */
.contact-block {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: rgba(247, 243, 235, 0.08);
  border: 1px solid rgba(247, 243, 235, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.contact-card a {
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold-soft);
}

.contact-card p {
  color: rgba(247, 243, 235, 0.8);
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(247, 243, 235, 0.85);
  max-width: 36rem;
}

/* —— Service detail blocks —— */
.service-detail {
  display: grid;
  gap: 2rem;
}

.service-block {
  padding: 2rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-block__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.service-block p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.service-block p:last-child {
  margin-bottom: 0;
}

.service-block ul {
  margin: 0.75rem 0 0;
  padding-left: 0;
}

.service-block li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
}

/* —— About —— */
.about-prose {
  max-width: 40rem;
}

.about-prose p {
  margin-bottom: 1.15rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--cream);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-highlight strong {
  color: var(--navy);
}

/* —— Contact form —— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.contact-list__item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
}

.contact-list__item a {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--navy);
}

.contact-list__item a:hover {
  color: var(--forest);
}

.form-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 243, 235, 0.75);
  padding: 3rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo__name {
  color: var(--cream);
}

.footer-brand .logo__tag {
  color: var(--gold-soft);
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  color: rgba(247, 243, 235, 0.85);
  text-decoration: none;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 243, 235, 0.12);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* —— Utilities —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Responsive —— */
@media (min-width: 640px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

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

  .nav__link {
    padding: 0.85rem 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .site-header {
    position: relative;
  }

  .site-header.is-nav-open {
    position: sticky;
  }

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

  .hero {
    padding: 3rem 0 3.5rem;
  }
}


/* —— Pricing packages —— */
.price-panel {
  margin-top: 1.5rem;
  padding: 1.75rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-panel--bundle {
  border-color: var(--forest);
  background: linear-gradient(135deg, #f0f7f2 0%, #fff8ef 100%);
}

.price-panel__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
}

.price-panel__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.price-panel__desc {
  color: var(--text-muted);
  max-width: 36rem;
}

.price-panel__price {
  text-align: right;
  flex-shrink: 0;
}

.price-panel__amount {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.price-panel--bundle .price-panel__amount {
  color: var(--navy);
}

.price-panel__unit {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-save {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.price-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.price-card {
  padding: 1.5rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  border-color: var(--gold);
  background: #fff8ef;
  box-shadow: var(--shadow-lg);
}

.price-card__tier {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.price-badge {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  vertical-align: middle;
}

.price-card__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.price-card__amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card ul {
  margin-top: auto;
}

.price-card li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.addon-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.addon-card {
  padding: 1.35rem 1.5rem;
  background: var(--warm-white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.addon-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.addon-card p {
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.addon-card__price {
  margin-bottom: 0 !important;
  color: var(--text) !important;
}

.addon-card__price strong {
  color: var(--gold);
}

@media (min-width: 700px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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