/* ============================================
   ROOT VARIABLES — WARM EDITORIAL THEME
============================================ */
:root {
  --terracotta: #c2410c;
  --terracotta-dark: #9a3412;
  --terracotta-light: #ea580c;
  --amber: #f59e0b;
  --cream: #fef3c7;
  --cream-soft: #fffbeb;
  --cream-deep: #fef7e8;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --ink-muted: #78716c;
  --stone: #e7e5e4;
  --stone-dark: #d6d3d1;
  --white: #ffffff;
  
  --gradient-warm: linear-gradient(135deg, #c2410c 0%, #ea580c 50%, #f59e0b 100%);
  --gradient-paper: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.08);
  --shadow-md: 0 4px 16px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 25, 23, 0.12);
  --shadow-warm: 0 12px 40px rgba(194, 65, 12, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream-soft);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Grain texture overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Warm gradient blobs */
.bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.warm-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.warm-1 { width: 500px; height: 500px; background: #fbbf24; top: -150px; left: -100px; animation: floatA 30s ease-in-out infinite; }
.warm-2 { width: 600px; height: 600px; background: #ea580c; top: 40%; right: -200px; opacity: 0.15; animation: floatB 40s ease-in-out infinite; }
.warm-3 { width: 400px; height: 400px; background: #f59e0b; bottom: -100px; left: 30%; opacity: 0.2; animation: floatA 35s ease-in-out infinite reverse; }

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.15); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; transition: color 0.25s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ============================================
   NAVIGATION
============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(254, 243, 199, 0);
}

.main-nav.scrolled {
  padding: 14px 0;
  background: rgba(254, 243, 199, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
  box-shadow: 0 2px 20px rgba(28, 25, 23, 0.04);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  font-family: var(--serif);
  box-shadow: var(--shadow-warm);
}

.brand-name span { color: var(--terracotta); font-style: italic; }

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-menu a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  transition: width 0.3s;
}

.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 22px;
  background: var(--ink);
  color: var(--cream-soft);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.burger {
  display: none;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-warm {
  background: var(--gradient-warm);
  color: white;
  box-shadow: var(--shadow-warm);
  background-size: 200% 100%;
  background-position: 0% 0%;
}

.btn-warm:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(194, 65, 12, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream-soft);
}

.full-btn { width: 100%; }

/* ============================================
   HERO
============================================ */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(194, 65, 12, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(194, 65, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-title em,
.hero-title i {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--stone-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  backdrop-filter: blur(10px);
}

.trust-chip span {
  color: var(--terracotta);
  font-size: 14px;
}

/* Hero visual stack */
.hero-visual {
  position: relative;
  height: 500px;
}

.visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.stack-card {
  position: absolute;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: cardFloat 6s ease-in-out infinite;
}

.stack-card .card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.stack-card .card-stat {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}

.stack-card .card-sub {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.card-1 {
  width: 220px;
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  width: 200px;
  top: 40%;
  right: 0;
  animation-delay: -2s;
}

.card-3 {
  width: 180px;
  bottom: 5%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  padding: 60px 0;
  background: var(--ink);
  color: var(--cream-soft);
  position: relative;
  z-index: 2;
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(254, 243, 199, 0.15);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--amber);
  display: inline;
}

.stat-plus {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terracotta-light);
  font-weight: 500;
}

.stat-label {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(254, 243, 199, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  position: relative;
  padding: 0 40px;
}

.kicker::before,
.kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--terracotta);
}

.kicker::before { left: 0; }
.kicker::after { right: 0; }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

section { padding: 100px 0; position: relative; z-index: 2; }

/* ============================================
   SERVICES MASONRY GRID
============================================ */
.services-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 20px;
}

.service-tile {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-tile > * { position: relative; z-index: 1; }

.tile-large {
  grid-row: span 2;
  background: var(--ink);
  color: var(--cream-soft);
  border-color: var(--ink);
}

.tile-large::before {
  background: var(--gradient-warm);
  opacity: 0.15;
}

.tile-icon {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 700;
  transition: transform 0.4s;
}

.tile-large .tile-icon {
  background: var(--terracotta);
  color: white;
}

.service-tile h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-tile p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.tile-large p { color: rgba(254, 243, 199, 0.8); }

.tile-list {
  margin-bottom: 24px;
}

.tile-list li {
  font-size: 0.9rem;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--ink-soft);
}

.tile-large .tile-list li { color: rgba(254, 243, 199, 0.75); }

.tile-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.tile-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tile-large .tile-cta { color: var(--amber); }

.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta-light);
}

.service-tile:hover .tile-icon {
  transform: scale(1.05) rotate(-5deg);
}

.service-tile:hover .tile-cta { gap: 12px; }

/* ============================================
   PROCESS TIMELINE
============================================ */
.process { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream-deep) 100%); }

.process-track {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--terracotta), var(--amber));
  opacity: 0.4;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all 0.3s;
}

.step-content {
  flex: 1;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.process-step:hover .step-num {
  background: var(--terracotta);
  color: white;
  transform: scale(1.05);
}

.process-step:hover .step-content {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta-light);
}

/* ============================================
   SHOWCASE / PORTFOLIO
============================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.showcase-large { grid-column: span 2; grid-row: span 1; }

.showcase-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.bg-a { background: linear-gradient(135deg, #c2410c 0%, #9a3412 50%, #7c2d12 100%); }
.bg-b { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); }
.bg-c { background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%); }
.bg-d { background: linear-gradient(135deg, #78716c 0%, #44403c 100%); }
.bg-e { background: linear-gradient(135deg, #9a3412 0%, #c2410c 50%, #f59e0b 100%); }

/* Geometric patterns for visual interest */
.showcase-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 40%);
}

.showcase-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
  background-size: 20px 20px;
}

.showcase-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.9), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.4s;
}

.showcase-meta span {
  display: inline-block;
  padding: 4px 12px;
  background: var(--terracotta);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 10px;
}

.showcase-meta h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.showcase-meta p { font-size: 0.85rem; opacity: 0.85; }

.showcase-item:hover .showcase-bg {
  transform: scale(1.08);
}

.showcase-item:hover .showcase-meta {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   JOURNAL / ARTICLE SECTION
============================================ */
.journal {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.journal-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--stone);
}

.journal-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}

.journal-meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 14px;
}

.meta-dot { color: var(--terracotta); }

.journal-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.journal-lead {
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 40px;
  font-family: var(--serif);
  font-style: italic;
  padding-left: 24px;
  border-left: 3px solid var(--terracotta);
}

.journal-body h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 56px 0 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.journal-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 40px 0 14px;
  color: var(--ink);
}

.journal-body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--ink);
}

.journal-body p {
  margin-bottom: 20px;
}

.journal-body ul, .journal-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}

.journal-body ul li, .journal-body ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.journal-body ul li::marker { color: var(--terracotta); }

.journal-body a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-color: rgba(194, 65, 12, 0.3);
  text-underline-offset: 3px;
  font-weight: 500;
}

.journal-body a:hover {
  color: var(--terracotta-dark);
  text-decoration-color: var(--terracotta-dark);
}

/* Callout boxes */
.journal-callout {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  align-items: flex-start;
}

.callout-warm {
  background: var(--cream-deep);
  border: 1px solid rgba(194, 65, 12, 0.15);
}

.callout-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-warm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-warm);
}

.callout-text strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 1rem;
}

.warning-box {
  padding: 24px 28px;
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  border-radius: var(--radius-md);
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warning-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
}

.warning-content strong {
  display: block;
  color: #991b1b;
  margin-bottom: 4px;
}

.tip-box {
  padding: 24px 28px;
  background: #ecfdf5;
  border-left: 4px solid #059669;
  border-radius: var(--radius-md);
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-icon {
  flex-shrink: 0;
  color: #059669;
  font-size: 1.3rem;
}

.tip-content strong {
  display: block;
  color: #065f46;
  margin-bottom: 4px;
}

.checklist-box {
  padding: 32px;
  background: var(--ink);
  color: var(--cream-soft);
  border-radius: var(--radius-lg);
  margin: 36px 0;
}

.checklist-box h4 {
  color: var(--amber);
  margin-top: 0;
  margin-bottom: 20px;
}

.checklist-box ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.checklist-box ul li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin: 0;
}

/* Comparison grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.comparison-col {
  padding: 28px;
  background: var(--cream-deep);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
}

.comparison-col h4 {
  color: var(--terracotta);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.comparison-col ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.comparison-col ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}

.comparison-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* Stat boxes */
.stat-box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.stat-box {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta-light);
  box-shadow: var(--shadow-md);
}

.stat-box-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone);
  font-size: 0.95rem;
}

.data-table thead {
  background: var(--ink);
  color: var(--cream-soft);
}

.data-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.data-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--stone);
  color: var(--ink-soft);
}

.data-table tbody tr:hover {
  background: var(--cream-deep);
}

/* Quote block */
.journal-quote {
  margin: 48px 0;
  padding: 48px 40px;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.journal-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.25;
}

.journal-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}

.journal-quote cite {
  display: block;
  font-style: normal;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Journal CTA */
.journal-cta {
  margin-top: 60px;
  padding: 48px;
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-warm);
  color: white;
}

.journal-cta h3 {
  color: white;
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.journal-cta p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.journal-cta .btn {
  background: white;
  color: var(--terracotta-dark);
  font-weight: 700;
}

.journal-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--terracotta-light);
}

.faq-item[open] {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item[open] .faq-plus {
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--cream-deep);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta-light);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-text {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--stone);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--serif);
  flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #c2410c, #ea580c); }
.av-2 { background: linear-gradient(135deg, #44403c, #78716c); }
.av-3 { background: linear-gradient(135deg, #f59e0b, #ea580c); }

.author-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}

.author-loc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ============================================
   CONTACT
============================================ */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info {
  padding: 48px 40px;
  background: var(--ink);
  color: var(--cream-soft);
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--amber);
}

.info-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(254, 243, 199, 0.1);
}

.info-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.5);
  font-weight: 600;
  margin-bottom: 6px;
}

.info-value {
  font-size: 1.05rem;
  color: var(--cream-soft);
  display: block;
}

.info-value:hover { color: var(--amber); }

.hours-list {
  margin-top: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(254, 243, 199, 0.85);
}

.closed-tag { color: #f87171; font-weight: 600; }

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-actions .btn-warm {
  background: var(--amber);
  color: var(--ink);
}

.contact-actions .btn-ghost {
  border-color: rgba(254, 243, 199, 0.3);
  color: var(--cream-soft);
}

.contact-form {
  padding: 48px 40px;
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream-soft);
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
  background: white;
}

.field textarea { resize: vertical; min-height: 110px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2344403c' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--ink);
  color: var(--cream-soft);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer .brand { color: var(--cream-soft); }
.footer .brand-mark {
  background: var(--gradient-warm);
  color: white;
}

.brand-col p {
  color: rgba(254, 243, 199, 0.7);
  margin: 20px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(254, 243, 199, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-soft);
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.social-row a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--amber);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  color: rgba(254, 243, 199, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(254, 243, 199, 0.1);
  text-align: center;
  color: rgba(254, 243, 199, 0.5);
  font-size: 0.88rem;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
  
  .nav-menu, .nav-cta { display: none; }
  .burger { display: flex; }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-soft);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--stone);
  }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item:not(:last-child)::after { display: none; }
  
  .services-masonry { grid-template-columns: 1fr; }
  .tile-large { grid-row: auto; }
  
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-large { grid-column: span 2; }
  
  .testimonial-row { grid-template-columns: 1fr; }
  
  .contact-shell { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  
  .comparison-grid { grid-template-columns: 1fr; }
  .stat-box-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; text-align: center; }
  
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { text-align: left; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .stat-label { margin-top: 0; width: 100%; }
  
  .process-step { flex-direction: column; gap: 16px; }
  .process-track::before { display: none; }
  .step-num { width: 60px; height: 60px; font-size: 1.2rem; }
  
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-large { grid-column: auto; }
  
  .contact-info, .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .visual-stack { height: 340px; }
  .card-1, .card-2, .card-3 { width: 70%; }
  .card-3 { left: 10%; }
  
  .journal-callout { flex-direction: column; }
  .warning-box, .tip-box { flex-direction: column; }
  
  .data-table { font-size: 0.85rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
}

/* Selection */
::selection {
  background: var(--terracotta);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta-dark); }