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

:root {
  --cream:      #FAF4E6;
  --ink:        #28140A;
  --walnut:     #4A2A10;
  --blue-accent: #6f8ec3;
  --navy:       #1e3558;
  --blue:       #2f5697;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
}

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

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--walnut);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--ink);
  line-height: 1.3;
}

a { color: var(--blue-accent); text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== CTA BUTTON — identical to home page ===== */
.cta-btn {
  display: inline-block;
  background: #2f5697;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: #3d6ab0; transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }
.nav-cta { background: var(--blue-accent); }
.nav-cta:hover { background: #5a7ab5; }

/* ===== NAV — identical to home page ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #13100d;
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(30,26,22,0.07);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: #fff;
  border-bottom: 2px solid var(--blue-accent);
  padding-bottom: 2px;
}
@media (max-width: 480px) {
  .nav-links { gap: 16px; }
  .nav-link  { font-size: 0.72rem; }
}
.nav-logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}
.logo-voice   { color: var(--blue-accent); }
.logo-moments { color: #fff; }
.logo-tm {
  font-size: 0.45em;
  vertical-align: super;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.nav-cta {
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
}

/* ===== HERO ===== */
.ht-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px 64px;
}
.ht-hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.ht-hero h1 span { color: #fff; }
.ht-hero p {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.ht-hero .cta-btn {
  background: var(--cream);
  color: var(--navy);
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
}
.ht-hero .cta-btn:hover { background: #fff; }

/* ===== SECTIONS ===== */
.ht-section { padding: 64px 0; }
.ht-section--alt { background: #fff; }
.ht-section--dark { background: var(--navy); color: #fff; }
.ht-section--dark h2,
.ht-section--dark h3 { color: #fff; }

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 12px;
}
.ht-section--dark .eyebrow { color: #a8c4e8; }

.ht-section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.ht-section-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  opacity: 0.75;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===== CARDS ===== */
.ht-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.ht-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.ht-section--alt .ht-card { background: var(--cream); }
.ht-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.ht-card-img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  display: block;
}
.ht-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ht-card-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 6px;
}
.ht-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.3;
}
.ht-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #555;
  flex: 1;
}

/* ===== STEPS ===== */
.ht-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 32px;
}
.ht-step { display: flex; flex-direction: column; gap: 12px; }
.ht-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ht-step-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.ht-step-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ===== TIPS ===== */
.ht-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.ht-tip {
  background: var(--cream);
  border-left: 4px solid var(--blue-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px;
}
.ht-tip-icon { font-size: 1.5rem; margin-bottom: 8px; }
.ht-tip-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ht-tip-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.ht-cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
}
.ht-cta-banner h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.ht-cta-banner p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.ht-cta-banner .cta-btn {
  background: var(--cream);
  color: var(--navy);
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
}
.ht-cta-banner .cta-btn:hover { background: #fff; }

/* ===== FOOTER ===== */
.ht-footer {
  background: #fff;
  color: #888;
  padding: 40px 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
.ht-footer-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.ht-footer-links {
  margin-bottom: 14px;
}
.ht-footer-links a,
.ht-footer-links a:visited {
  color: var(--blue);
  font-size: 0.92rem;
  margin: 0 10px;
  transition: color 0.2s;
}
.ht-footer-links a:hover { color: var(--blue-accent); }
.ht-footer-copy {
  font-size: 0.88rem;
  color: #666;
}
.ht-footer-copy:first-of-type { margin-top: 28px; }
.ht-footer-copy a { color: var(--blue); }
.ht-footer-copy a:hover { color: var(--blue-accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .ht-hero { padding: 56px 20px 48px; }
  .ht-section { padding: 48px 0; }
  .nav-cta { display: none; }
}
