/* ============================================================
   SAMATVA NYAYA — Design System
   Premium Legal Consultancy
   ============================================================ */

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

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --navy: #0A1931;
  --navy-support: #162E56;
  --navy-light: #1e3a6a;
  --gold: #C1963A;
  --gold-light: #E8C97A;
  --gold-glow: rgba(193, 150, 58, 0.15);
  --white: #FFFFFF;
  --off-white: #F8F5EF;
  --off-white-warm: #F5F0E8;
  --text-muted: #6B7A8D;
  --text-light: rgba(255, 255, 255, 0.7);
  --border-light: rgba(10, 25, 49, 0.08);
  --border-gold: rgba(193, 150, 58, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4rem;
  --text-7xl: 5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --max-width-wide: 1440px;
  --header-height: 80px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 25, 49, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 25, 49, 0.08);
  --shadow-lg: 0 8px 32px rgba(10, 25, 49, 0.10);
  --shadow-xl: 0 16px 48px rgba(10, 25, 49, 0.12);
  --shadow-gold: 0 4px 24px rgba(193, 150, 58, 0.20);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--navy);
  background-color: var(--off-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: var(--text-6xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  color: var(--navy-support);
  line-height: 1.8;
  max-width: 680px;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--sm {
  padding: var(--space-4xl) 0;
}

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

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5,
.section--navy h6 {
  color: var(--white);
}

.section--navy p {
  color: var(--text-light);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.section-header h2 {
  margin-bottom: var(--space-lg);
}

.section-header p {
  margin: 0 auto;
  font-size: var(--text-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: #d4a64a;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(193, 150, 58, 0.35);
}

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

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-light);
}

.btn--outline-navy:hover {
  border-color: var(--navy);
  background: rgba(10, 25, 49, 0.03);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-base);
}

.btn .btn-arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-out);
  background: transparent;
}

.header.scrolled {
  background: rgba(248, 245, 239, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--duration-normal) var(--ease-out);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

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

.header-logo .logo-accent {
  color: var(--gold);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: var(--space-xs) 0;
  letter-spacing: 0.01em;
  transition: color var(--duration-normal) var(--ease-out);
}

.header.scrolled .header-nav a {
  color: var(--navy);
}

.header .btn--gold {
  transition: all var(--duration-normal) var(--ease-out);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-out);
  transform-origin: center;
}

.header.scrolled .mobile-toggle span {
  background: var(--navy);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 49, 0.85) 0%,
    rgba(10, 25, 49, 0.5) 50%,
    rgba(10, 25, 49, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: var(--header-height);
}

.hero h1 {
  color: var(--white);
  font-size: var(--text-7xl);
  line-height: 1.05;
  margin-bottom: var(--space-xl);
}

.hero h1 .hero-highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero decorative element */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Bento Grid (Services) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--gold);
  font-size: 22px;
}

.bento-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.bento-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.bento-card-link svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.bento-card:hover .bento-card-link svg {
  transform: translateX(4px);
}

/* --- Timeline (How We Work) --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .timeline-number {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.timeline-step h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.timeline-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 240px;
}

.section--navy .timeline-step p {
  color: var(--text-light);
}

.section--navy .timeline-number {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* --- Philosophy Section (Staggered) --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.philosophy-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.philosophy-card:nth-child(2) {
  transform: translateY(40px);
}

.philosophy-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.philosophy-label {
  font-family: var(--font-serif);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.philosophy-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.philosophy-card .philosophy-subtitle {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.philosophy-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* --- Blog / Insights Cards --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.insight-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.05);
}

.insight-card-body {
  padding: var(--space-xl);
}

.insight-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.insight-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  line-height: 1.35;
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  transition: color var(--duration-fast) var(--ease-out);
}

.insight-card-link:hover {
  color: var(--gold);
}

.insight-card-link svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.insight-card:hover .insight-card-link svg {
  transform: translateX(4px);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--navy);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 150, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: var(--text-light);
  margin: 0 auto var(--space-2xl);
  max-width: 500px;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.footer-brand .tagline {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
}

.footer-disclaimer {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  line-height: 1.6;
}

.footer-copyright {
  font-size: var(--text-xs);
  white-space: nowrap;
}

/* --- Page Hero (Inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-height) + var(--space-5xl)) 0 var(--space-5xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(193, 150, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  max-width: 600px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-xl);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast) var(--ease-out);
}

.page-hero .breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero .breadcrumb .separator {
  font-size: var(--text-xs);
}

/* --- About Page Sections --- */
.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.approach-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--gold);
  font-size: 28px;
}

.audience-card h4 {
  margin-bottom: var(--space-sm);
}

.audience-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 auto;
}

/* --- Services Page --- */
.offerings-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.offering-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.offering-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.offering-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
}

.offering-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.offering-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* --- Contact / Intake Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.expectations-panel {
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.expectations-panel h3 {
  margin-bottom: var(--space-xl);
}

.expectation-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-light);
}

.expectation-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.expectation-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold);
  flex-shrink: 0;
}

.expectation-step h5 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 4px;
}

.expectation-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Form */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy);
  font-size: var(--text-base);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* --- Blog Post Layout --- */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.blog-meta .tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.blog-meta .read-time {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.blog-article h2 {
  font-size: var(--text-3xl);
  margin: var(--space-2xl) 0 var(--space-lg);
}

.blog-article h3 {
  font-size: var(--text-2xl);
  margin: var(--space-2xl) 0 var(--space-md);
}

.blog-article p {
  margin-bottom: var(--space-lg);
  max-width: 100%;
}

.blog-article .blog-highlight {
  padding: var(--space-xl);
  background: var(--gold-glow);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-2xl) 0;
}

.blog-article .blog-highlight p {
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0;
}

.blog-hero-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 500ms; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
  }

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

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .timeline::before {
    display: none;
  }

  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .philosophy-card:nth-child(2) {
    transform: translateY(20px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

@media (max-width: 768px) {
  :root {
    --text-7xl: 2.75rem;
    --text-6xl: 2.25rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-3xl);
    gap: var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: right var(--duration-normal) var(--ease-out);
    z-index: 1000;
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav a {
    font-size: var(--text-lg);
    color: var(--navy);
  }

  .header-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 49, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero h1 {
    font-size: var(--text-5xl);
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .timeline {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .philosophy-card:nth-child(2) {
    transform: none;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }

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

  .page-hero h1 {
    font-size: var(--text-4xl);
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --text-7xl: 2.25rem;
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --space-5xl: 4rem;
    --space-4xl: 3rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .bento-card {
    padding: var(--space-xl);
  }

  .blog-hero-image {
    height: 240px;
  }
}
