/* ================================================
   Happy Horse Consulting — Sepia-Toned Western Heritage
   Elevated & Refined • Warm Heritage-Inspired Aesthetic
   ================================================ */

/* Fonts loaded via HTML <link> tags: Playfair Display, Lora, Poppins */

:root {
  /* Warm Heritage Color Palette */
  --color-bg-cream: #FAF6F1;
  --color-text-dark: #2C1810;
  --color-text-brown: #4A3C34;
  --color-accent-amber: #C17B3B;
  --color-accent-sienna: #8B4513;
  --color-accent-gold: #B8860B;
  --color-white: #FFFFFF;
  --color-light-cream: #FDF9F5;
  --color-border-tan: #D4C0A8;
  --color-section-dark: #2C1810;
  --color-divider: #E8DFD3;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --font-accent: 'Poppins', sans-serif;

  --max-width: 1140px;
  --transition: 0.3s ease;
  --letter-spacing-accent: 0.08em;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-brown);
  background: var(--color-bg-cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

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

a:hover {
  color: var(--color-accent-amber);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-dark);
}

h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Decorative Dividers ---- */
.section-divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  color: var(--color-border-tan);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-cream);
  border-bottom: 2px solid var(--color-border-tan);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.12);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
}

.logo-img {
  height: 58px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.logo-text {
  display: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-brown);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-amber);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-accent-amber);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('DSC05072.jpg') center 30%/cover no-repeat;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  margin-top: 84px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.35) 0%, rgba(44, 24, 16, 0.5) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-accent);
  text-transform: uppercase;
  color: var(--color-accent-amber);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-accent-amber);
  color: var(--color-white);
  border-color: var(--color-accent-amber);
}

.btn-primary:hover {
  background: var(--color-accent-sienna);
  border-color: var(--color-accent-sienna);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-brown);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, #6B5A48 0%, #5C4A38 100%);
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.1) 100%);
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Intro Section ---- */
.intro-section {
  background: var(--color-bg-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-text h2 {
  margin-bottom: 24px;
  color: var(--color-text-dark);
}

.intro-text p {
  margin-bottom: 18px;
  color: var(--color-text-brown);
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--color-accent-amber);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.text-link:hover {
  border-bottom-color: var(--color-accent-amber);
}

.intro-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: 10px;
  border-left: 4px solid var(--color-accent-amber);
  border: 1px solid var(--color-divider);
  border-left: 4px solid var(--color-accent-amber);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}

.value-icon {
  color: var(--color-accent-amber);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--color-text-dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--color-text-brown);
  margin: 0;
  line-height: 1.6;
}

/* ---- Services Preview ---- */
.services-preview {
  background: var(--color-bg-cream);
  border-top: 2px solid var(--color-border-tan);
  border-bottom: 2px solid var(--color-border-tan);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: 10px;
  border: 1px solid var(--color-divider);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent-amber);
  border-radius: 10px 10px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(44, 24, 16, 0.12);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-accent-amber);
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: var(--color-text-dark);
}

.service-card p {
  color: var(--color-text-brown);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(193, 123, 59, 0.1);
  color: var(--color-accent-amber);
}

.center-cta {
  text-align: center;
}

/* ---- Founder Section ---- */
.founder-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}

.founder-photo-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--color-border-tan);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.15);
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: sepia(12%) contrast(1.05) brightness(1.02);
}

.founder-text h2 {
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.founder-role {
  font-size: 1.05rem;
  color: var(--color-accent-amber);
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, #6B5A48 0%, #5C4A38 100%);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.1) 100%);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

/* ---- Service Detail Pages ---- */
.service-detail-header {
  margin-bottom: 40px;
}

.service-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-accent);
  text-transform: uppercase;
  color: var(--color-accent-amber);
  margin-bottom: 12px;
}

.service-headline {
  color: var(--color-text-brown);
  font-size: 1.15rem;
  margin-top: 8px;
  font-style: italic;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.service-detail-main h3 {
  font-size: 1.2rem;
  margin: 32px 0 14px;
  color: var(--color-text-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border-tan);
}

.service-detail-main h3:first-child {
  margin-top: 0;
}

.service-detail-main p {
  margin-bottom: 14px;
  color: var(--color-text-brown);
  line-height: 1.7;
}

.service-detail-main ul {
  margin: 12px 0 18px 24px;
}

.service-detail-main li {
  position: relative;
  padding: 6px 0 6px 16px;
  color: var(--color-text-brown);
  list-style: disc;
  line-height: 1.6;
}

.service-note,
.service-addon {
  font-style: italic;
  padding: 18px 24px;
  border-radius: 6px;
  background: rgba(193, 123, 59, 0.08);
  border-left: 4px solid var(--color-accent-amber);
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--color-text-brown);
  line-height: 1.6;
}

.sidebar-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--color-divider);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.05);
}

.sidebar-card h4 {
  margin-bottom: 14px;
  color: var(--color-text-dark);
  font-size: 1rem;
}

.check-list {
  margin: 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--color-text-brown);
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-amber);
  font-weight: 700;
}

.outcome-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-accent-amber);
  font-weight: 700;
}

.section-divider {
  padding: 40px 0;
}

.section-divider hr {
  border: none;
  border-top: 2px solid var(--color-border-tan);
  opacity: 0.6;
}

/* ---- Packages Together ---- */
.packages-together {
  background: var(--color-light-cream);
}

.together-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.together-item {
  text-align: center;
  padding: 28px;
}

.together-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent-amber);
}

.together-arrow {
  font-size: 1.6rem;
  color: var(--color-border-tan);
  margin: 12px 0;
}

.together-item h4 {
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.together-item p {
  font-size: 0.9rem;
  color: var(--color-text-brown);
  line-height: 1.6;
}

.together-summary {
  text-align: center;
  font-style: italic;
  color: var(--color-text-brown);
  margin-top: 12px;
}

/* ---- About Page ---- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 56px;
}

.about-block h2 {
  margin-bottom: 24px;
  color: var(--color-text-dark);
}

.about-block p {
  color: var(--color-text-brown);
  margin-bottom: 18px;
  line-height: 1.8;
}

.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.diff-item {
  background: var(--color-white);
  padding: 32px;
  border-radius: 10px;
  border-top: 4px solid var(--color-accent-amber);
  border: 1px solid var(--color-divider);
  border-top: 4px solid var(--color-accent-amber);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.05);
}

.diff-item h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--color-text-dark);
}

.diff-item p {
  color: var(--color-text-brown);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.audience-card {
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--color-divider);
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.04);
}

.audience-card h4 {
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--color-text-brown);
  margin: 0;
  line-height: 1.6;
}

/* ---- Contact Page ---- */
.contact-section {
  background: var(--color-bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
  color: var(--color-text-dark);
}

.contact-info > p {
  color: var(--color-text-brown);
  margin-bottom: 18px;
  line-height: 1.7;
}

.contact-details {
  margin-top: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-accent-amber);
  margin-top: 2px;
}

.contact-detail-item h4 {
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.contact-detail-item p {
  color: var(--color-text-brown);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.small-text {
  font-size: 0.85rem !important;
  color: var(--color-border-tan) !important;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 44px;
  border-radius: 10px;
  border: 1px solid var(--color-divider);
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  letter-spacing: 0.02em;
}

.required {
  color: var(--color-accent-amber);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border-tan);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-light-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-amber);
  box-shadow: 0 0 0 2px rgba(193, 123, 59, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-border-tan);
  margin-top: 18px;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-amber);
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-success h3 {
  margin-bottom: 14px;
  color: var(--color-text-dark);
}

.form-success p {
  color: var(--color-text-brown);
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-section-dark);
  color: rgba(255, 248, 240, 0.7);
  padding: 60px 0 0;
  border-top: 2px solid var(--color-border-tan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  display: none;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.footer-brand p {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-amber);
}

.footer-contact a {
  color: rgba(255, 248, 240, 0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-accent-amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- Responsive Tablet (900px) ---- */
@media (max-width: 900px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    order: -1;
  }

  .together-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-grid {
    gap: 36px;
  }

  .founder-intro {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrapper {
    max-width: 260px;
  }

  .nav-links {
    gap: 28px;
  }
}

/* ---- Responsive Mobile (640px) ---- */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero {
    min-height: 70vh;
    padding: 100px 20px 60px;
    margin-top: 72px;
    background-position: center 25%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg-cream);
    padding: 20px;
    gap: 12px;
    border-bottom: 1px solid var(--color-border-tan);
    box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .page-header {
    padding: 110px 20px 48px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .services-grid,
  .together-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

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

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

  .founder-intro {
    grid-template-columns: 1fr;
  }

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

  .nav-container {
    height: 72px;
  }

  .logo {
    gap: 8px;
  }

  .logo-img {
    height: 46px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}
