/* =========================================
   DIGITAL GINGER — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --ginger-deep:    #7A1E00;
  --ginger-mid:     #B84A1A;
  --ginger-bright:  #D4621F;
  --ginger-amber:   #E8841A;
  --ginger-gold:    #F5A623;
  --bg-dark:        #0C0806;
  --bg-card:        #180E08;
  --bg-section:     #120A05;
  --border:         rgba(212, 98, 31, 0.2);
  --text-light:     #FDF6EE;
  --text-muted:     #B89A7A;
  --text-dim:       #7A6050;
  --white:          #FFFFFF;
  --radius:         8px;
  --radius-lg:      16px;
  --transition:     0.25s ease;
  --max-w:          1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.75; }

.accent { color: var(--ginger-amber); }
.highlight {
  background: linear-gradient(135deg, var(--ginger-bright), var(--ginger-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ginger-amber);
  margin-bottom: 16px;
}
.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--ginger-bright), var(--ginger-amber));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232, 132, 26, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 132, 26, 0.45);
}
.btn-outline {
  border: 2px solid var(--border);
  color: var(--text-light);
}
.btn-outline:hover {
  border-color: var(--ginger-amber);
  color: var(--ginger-amber);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ginger-amber);
  padding: 0;
  font-size: 0.875rem;
}
.btn-ghost:hover { opacity: 0.75; }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* --- Divider --- */
.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--ginger-bright), var(--ginger-amber));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(12, 8, 6, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-text span { display: block; }
.logo-text .logo-top {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.logo-text .logo-bottom {
  color: var(--ginger-amber);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--ginger-amber);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 1px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--ginger-amber); }

/* =========================================
   INTERACTIVE CANVAS BACKGROUNDS
   ========================================= */
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
/* Ensure hero content sits above canvas */
.hero-content,
.hero-scroll,
.hero-badge { position: relative; z-index: 2; }

#page-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184, 74, 26, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(122, 30, 0, 0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 98, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 98, 31, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 132, 26, 0.1);
  border: 1px solid rgba(232, 132, 26, 0.25);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.hero-badge span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ginger-amber);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--ginger-amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll svg { animation: bounce 2s ease-in-out infinite; }
@keyframes float { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* =========================================
   PILLARS / WHAT WE DO
   ========================================= */
.pillars { background: var(--bg-section); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: var(--bg-card);
  padding: 44px 36px;
  transition: background var(--transition);
}
.pillar:hover { background: rgba(24, 14, 8, 0.8); }
.pillar-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(212, 98, 31, 0.15), rgba(232, 132, 26, 0.15));
  border: 1px solid rgba(212, 98, 31, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ginger-amber);
}
.pillar h3 { margin-bottom: 12px; color: var(--text-light); }
.pillar p { font-size: 0.95rem; }

/* =========================================
   PROCESS
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--ginger-bright), var(--ginger-amber));
  opacity: 0.3;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--ginger-bright), var(--ginger-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 132, 26, 0.3);
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 0.95rem; }

/* =========================================
   SERVICES GRID
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ginger-bright), var(--ginger-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: rgba(212, 98, 31, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(212, 98, 31, 0.15), rgba(232, 132, 26, 0.15));
  border: 1px solid rgba(212, 98, 31, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ginger-amber);
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; line-height: 1.65; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--ginger-deep) 0%, var(--ginger-mid) 50%, var(--ginger-bright) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2, .cta-banner p { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { opacity: 0.85; margin: 16px auto 36px; max-width: 480px; font-size: 1.05rem; }
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-white {
  background: var(--white);
  color: var(--ginger-bright);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184, 74, 26, 0.1) 0%, transparent 70%);
}
.page-hero h1 { margin-bottom: 20px; position: relative; }
.page-hero .sub {
  font-size: 1.1rem;
  max-width: 560px;
  position: relative;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 2px dashed rgba(212, 98, 31, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-dim);
}
.about-photo-placeholder svg { color: rgba(212, 98, 31, 0.3); }
.about-photo-placeholder span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 20px; }
.about-text p:last-of-type { margin-bottom: 32px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.value-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--ginger-bright), var(--ginger-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 { color: var(--text-light); margin-bottom: 8px; font-size: 1rem; }
.value-card p { font-size: 0.9rem; }

/* =========================================
   PORTFOLIO PAGE
   ========================================= */
.portfolio-coming {
  text-align: center;
  padding: 100px 0;
}
.portfolio-coming .icon-wrap {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, rgba(212, 98, 31, 0.15), rgba(232, 132, 26, 0.15));
  border: 1px solid rgba(212, 98, 31, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--ginger-amber);
}
.portfolio-coming h2 { margin-bottom: 16px; }
.portfolio-coming p { max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 40px; font-size: 1rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(212, 98, 31, 0.1);
  border: 1px solid rgba(212, 98, 31, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ginger-amber);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail-text span { color: var(--text-muted); font-size: 0.95rem; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 32px;
  color: var(--text-light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ginger-amber);
  background: rgba(232, 132, 26, 0.04);
}
.form-group select { color: var(--text-muted); }
.form-group select option { background: var(--bg-dark); color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; font-size: 0.9rem; padding: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--ginger-bright), var(--ginger-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}
.form-success h3 { color: var(--text-light); margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }

/* Calendly section */
.calendly-wrap {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.calendly-wrap .section-header { margin-bottom: 40px; }
.calendly-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendly-placeholder {
  text-align: center;
  padding: 60px;
  color: var(--text-dim);
}
.calendly-placeholder p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 16px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--ginger-amber); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--ginger-amber); }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-placeholder { aspect-ratio: 16/9; max-height: 360px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 32px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
