/* ============================================
   Manor Park Media — Main Stylesheet
   Elegant, minimal, performance agency
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #0f1623;
  --navy-mid:   #1a2540;
  --cream:      #f4efe6;
  --cream-dark: #e8e0d2;
  --gold:       #c9a96e;
  --gold-light: #dfc08a;
  --charcoal:   #2a2a2a;
  --grey:       #7a7570;
  --white:      #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --section-pad: 120px;
  --section-pad-sm: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s ease, padding 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(15, 22, 35, 0.96);
  padding: 16px 48px;
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo .logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.3s;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 25, 0.45) 0%,
    rgba(10, 15, 25, 0.65) 60%,
    rgba(10, 15, 25, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 48px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.65;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: var(--cream);
  opacity: 0.3;
}

/* Subpage hero (shorter) */
.hero-sub {
  height: 55vh;
  min-height: 420px;
}

/* ============================================
   SECTION STRUCTURE
   ============================================ */
.section {
  padding: var(--section-pad) 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-full {
  padding: var(--section-pad) 48px;
}

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

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

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

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Section eyebrow label */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Section headings */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
}

.section-title.light {
  color: var(--cream);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  opacity: 0.65;
  margin-bottom: 32px;
}

.section-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
  color: var(--charcoal);
}

.section-body.light {
  color: var(--cream);
  opacity: 0.8;
}

.section-body p + p {
  margin-top: 20px;
}

/* Divider rule */
.rule {
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
  margin: 0;
}

/* ============================================
   HOMEPAGE — INTRO SECTION
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.intro-quote em {
  font-style: normal;
  color: var(--gold);
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.service-card {
  background: var(--cream-dark);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--cream);
}

.service-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey);
}

/* ============================================
   STATS / FACTS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.1);
  margin-top: 64px;
}

.stat-item {
  padding: 48px 40px;
  background: var(--navy-mid);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
}

/* ============================================
   BELIEFS / PILLARS
   ============================================ */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.belief-item {
  border-top: 1px solid rgba(15, 22, 35, 0.15);
  padding-top: 32px;
}

.belief-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.belief-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  font-size: 15px;
}

.compare-table th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.15);
}

.compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.65;
  vertical-align: top;
}

.compare-table td:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  white-space: nowrap;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   JOURNAL / BLOG
   ============================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.journal-card {
  background: var(--cream-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.journal-card:hover {
  background: var(--cream);
}

.journal-card-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.journal-card:hover .journal-card-image {
  transform: scale(1.02);
}

.journal-card-image-wrap {
  overflow: hidden;
}

.journal-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journal-card-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.journal-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.journal-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grey);
  flex: 1;
}

.journal-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s;
}

.journal-card-link:hover {
  gap: 14px;
}

.journal-card-link::after {
  content: '→';
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-header {
  padding: 160px 48px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.article-date::before,
.article-date::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.article-excerpt {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--grey);
  line-height: 1.6;
}

.article-hero-image {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 48px;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.article-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 48px 0 20px;
  line-height: 1.2;
}

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 15px;
}

.article-body th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15, 22, 35, 0.15);
}

.article-body td {
  padding: 16px;
  border-bottom: 1px solid rgba(15, 22, 35, 0.08);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.65;
  vertical-align: top;
}

.article-body td:first-child {
  font-weight: 500;
  color: var(--navy);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.15);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(244, 239, 230, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select option {
  background: var(--navy);
  color: var(--cream);
}

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

.btn-submit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: none;
  padding: 16px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--gold-light);
}

.contact-info {
  padding-top: 16px;
}

.contact-info-item {
  margin-bottom: 40px;
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: var(--section-pad) 48px;
}

.cta-section .section-title {
  max-width: 700px;
  margin: 0 auto 24px;
}

.cta-section .section-body {
  max-width: 520px;
  margin: 0 auto 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  padding: 15px 40px;
  border-radius: 2px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 48px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-brand .brand-name em {
  font-style: italic;
  color: var(--gold);
}

.footer-brand .brand-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-brand .brand-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.55;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-address {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.35;
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.7;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 48px 120px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.legal-content .legal-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.legal-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

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

  .services-grid,
  .beliefs-grid,
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 48px;
  }

  .site-nav {
    padding: 20px 24px;
  }

  .site-nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

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

  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .section {
    padding: var(--section-pad) 24px;
  }

  .section-full {
    padding: var(--section-pad) 24px;
  }

  .services-grid,
  .beliefs-grid,
  .journal-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .article-header,
  .article-body,
  .article-hero-image {
    padding-left: 24px;
    padding-right: 24px;
  }

  .legal-content {
    padding: 120px 24px 80px;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 52px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}
