/* ============================================================
   Kate Bruce Portfolio — Global Styles
   StoryBrand Framework + Brand Colors
   ============================================================ */

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

:root {
  /* Brand Colors */
  --blue:        #94A5B3;
  --blue-light:  #C4D0D9;
  --blue-dark:   #6B859A;
  --olive:       #8B9652;
  --olive-light: #B5BF82;
  --olive-dark:  #6A7340;
  --brown:       #5E4B3B;   /* accent only — fonts & minute details */

  /* Backgrounds — mostly white */
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-gray:  #F2F1EE;

  /* Text */
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-soft:   #7A7A7A;

  --border:      rgba(0,0,0,0.07);
  --nav-height:  72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  color: var(--text-dark);
}

/* Brown only for inline emphasis / accent text */
.accent { color: var(--brown); }
em { font-style: italic; color: var(--olive-dark); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Layout ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 580px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--olive);
  color: white;
}
.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(139,150,82,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.18);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.btn-white {
  background: white;
  color: var(--olive-dark);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: white;
  transition: color 0.3s;
  letter-spacing: -0.3px;
}
.nav-logo em { font-style: italic; color: rgba(255,255,255,0.65); }
nav.scrolled .nav-logo { color: var(--text-dark); }
nav.scrolled .nav-logo em { color: var(--olive-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; }
nav.scrolled .nav-links a { color: var(--text-soft); }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: var(--text-dark); }

.nav-cta {
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.nav-cta:hover { background: rgba(255,255,255,0.25); }
nav.scrolled .nav-cta { background: var(--olive); color: white; border-color: var(--olive); }
nav.scrolled .nav-cta:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
nav.scrolled .nav-toggle span { background: var(--text-dark); }

/* Mobile nav open */
.nav-links-wrap.open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: white;
  padding: 32px 48px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  gap: 20px;
}
.nav-links-wrap.open .nav-links a { color: var(--text-dark); font-size: 14px; }

/* ============================================================
   HERO — StoryBrand: The Character Has a Problem
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent, transparent 72px,
      rgba(255,255,255,0.025) 72px,
      rgba(255,255,255,0.025) 74px
    );
  pointer-events: none;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(148,165,179,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(139,150,82,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #6B859A 0%, #4A6070 60%, #3A4A35 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-light);
}

/* StoryBrand hero copy: speak to the visitor's desire */
.hero h1 {
  font-size: clamp(50px, 8vw, 96px);
  font-weight: 700;
  color: white;
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.hero h1 .line-em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
  display: block;
}

/* The problem statement — empathy for client */
.hero-problem {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 500px;
  margin: 28px 0 44px;
  font-weight: 300;
}
.hero-problem strong {
  color: white;
  font-weight: 500;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Bottom anchor stats */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-cue span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--olive);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-item::after { content: '◆'; font-size: 5px; color: rgba(255,255,255,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   PROBLEM SECTION — StoryBrand: Name the External Problem
   ============================================================ */
.problem-section {
  padding: 100px 0;
  background: var(--white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-cards {
  display: grid;
  gap: 16px;
}
.problem-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.problem-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.problem-card-body {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============================================================
   GUIDE SECTION — StoryBrand: Meet the Guide
   ============================================================ */
.guide-section {
  padding: 100px 0;
  background: var(--off-white);
}
.guide-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.guide-photo-wrap { position: relative; }
.guide-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blue-light);
}
.guide-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Stats badge overlaid on photo */
.guide-stats-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 4px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 150px;
}
.guide-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-stat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.guide-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.guide-stat-lbl {
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: 1px;
}

/* Guide authority proof points */
.guide-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.guide-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.guide-proof-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ============================================================
   PLAN SECTION — StoryBrand: The Simple Plan
   ============================================================ */
.plan-section {
  padding: 100px 0;
  background: var(--white);
}
.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.plan-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--off-white);
  border-radius: 4px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}
/* Connector line between steps */
.plan-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--blue-light);
}
.plan-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.plan-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.plan-step-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}
.plan-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   WORK SECTION
   ============================================================ */
.work-section {
  padding: 100px 0;
  background: var(--off-white);
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.work-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.work-card:first-child { grid-column: span 2; aspect-ratio: 2/1; }

.work-card-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.work-card:hover .work-card-bg { transform: scale(1.06); }

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 6px;
}
.work-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
}

/* Card bg colors using brand palette */
.work-card:nth-child(1) .work-card-bg { background-color: #4A6B58; }
.work-card:nth-child(2) .work-card-bg { background-color: #5E7A8A; }
.work-card:nth-child(3) .work-card-bg { background-color: #6B859A; }
.work-card:nth-child(4) .work-card-bg { background-color: #6A7340; }
.work-card:nth-child(5) .work-card-bg { background-color: #8B9652; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  padding: 80px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-divider { border-left: 1px solid var(--border); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 10px;
  line-height: 1.5;
}
/* Brown used as accent on stat numbers */
.stat-value .accent { color: var(--olive); font-style: normal; }

/* ============================================================
   SUCCESS VISION — StoryBrand: What Success Looks Like
   ============================================================ */
.success-section {
  padding: 100px 0;
  background: var(--olive);
  position: relative;
  overflow: hidden;
}
.success-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 72px,
    rgba(255,255,255,0.04) 72px,
    rgba(255,255,255,0.04) 74px
  );
}
.success-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.success-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}
.success-attribution {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.success-outcomes {
  display: grid;
  gap: 20px;
}
.outcome-item {
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.outcome-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.outcome-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience-section { padding: 100px 0; background: white; }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  margin-top: 64px;
}
.exp-item {
  border-top: 1.5px solid var(--olive-light);
  padding-top: 24px;
  margin-bottom: 36px;
}
.exp-company {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.exp-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 6px;
}
.exp-date {
  font-size: 12px;
  color: var(--brown); /* brown accent on dates */
  margin-bottom: 10px;
  font-weight: 500;
}
.exp-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  color: var(--olive-dark);
}
.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-value a { color: var(--olive-dark); }
.contact-value a:hover { color: var(--olive); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(139,150,82,0.12);
}
.form-group textarea { min-height: 130px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 100px 0;
  background: white;
  text-align: center;
}
.cta-band .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: clamp(36px, 5vw, 60px);
}
.cta-band .section-body {
  margin: 0 auto 44px;
  text-align: center;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text-dark);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.footer-logo em { font-style: italic; color: var(--olive-light); }
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  font-style: normal;
}
.social-link:hover { background: var(--olive); border-color: var(--olive); color: white; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 72px;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 72px,
    rgba(255,255,255,0.025) 72px,
    rgba(255,255,255,0.025) 74px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.page-hero h1 em { color: rgba(255,255,255,0.55); }
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 100px 0; background: white; }
.about-story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-sticky { position: sticky; top: 100px; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blue-light);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-cap {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  font-style: italic;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-text blockquote {
  border-left: 3px solid var(--olive);
  padding-left: 24px;
  margin: 32px 0;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--brown); /* brown accent on pull quote */
  line-height: 1.65;
}

/* Skills chips */
.skills-wrap { margin-top: 32px; }
.skills-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.skills-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.skill-chip:hover { background: var(--olive); color: white; border-color: var(--olive); }

/* Certs */
.certs-section { padding: 80px 0; background: var(--off-white); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.cert-card {
  background: white;
  border-radius: 4px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cert-icon { font-size: 26px; flex-shrink: 0; }
.cert-name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.cert-sub { font-size: 12px; color: var(--text-soft); }

/* ============================================================
   WORK / PORTFOLIO PAGE
   ============================================================ */
.portfolio-section { padding: 80px 0 100px; background: white; }
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--olive);
  border-color: var(--olive);
  color: white;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  border-radius: 4px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.portfolio-item.featured { grid-column: span 2; }
.portfolio-thumb-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--blue-light);
}
.portfolio-item.featured .portfolio-thumb-wrap { aspect-ratio: 16/8; }
.portfolio-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.04); }
.portfolio-meta { padding: 22px 24px; }
.portfolio-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 6px;
}
.portfolio-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.portfolio-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}
/* Portfolio bg placeholders */
.portfolio-thumb-wrap.c1 { background: #4A6B58; }
.portfolio-thumb-wrap.c2 { background: #5E7A8A; }
.portfolio-thumb-wrap.c3 { background: #6A7340; }
.portfolio-thumb-wrap.c4 { background: #8B9652; }
.portfolio-thumb-wrap.c5 { background: #6B859A; }
.portfolio-thumb-wrap.c6 { background: #94A5B3; }

/* Instagram Account Showcase */
.ig-accounts { padding: 80px 0; background: var(--off-white); }
.ig-account-block { margin-bottom: 64px; }
.ig-account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.ig-account-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
}
.ig-account-handle {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}
.ig-account-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.ig-account-link:hover { color: var(--olive); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-radius: 4px;
  overflow: hidden;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.ig-cell-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.ig-cell:hover .ig-cell-bg { transform: scale(1.07); }
.ig-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.ig-cell:hover .ig-cell-overlay { opacity: 1; }
.ig-cell-overlay span {
  font-size: 20px;
  color: white;
}

/* IG cell colors */
.ig-cell:nth-child(4n+1) .ig-cell-bg { background-color: #4A6B58; }
.ig-cell:nth-child(4n+2) .ig-cell-bg { background-color: #5E7A8A; }
.ig-cell:nth-child(4n+3) .ig-cell-bg { background-color: #8B9652; }
.ig-cell:nth-child(4n+0) .ig-cell-bg { background-color: #6B859A; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .container { padding: 0 32px; }
  .guide-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .success-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 800px) {
  .container { padding: 0 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .plan-steps { grid-template-columns: 1fr; gap: 20px; }
  .plan-step::after { display: none; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(odd) { border-left: none; }
  .exp-grid { grid-template-columns: 1fr; gap: 0; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .work-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 52px; letter-spacing: -1px; }
  .work-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .work-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-stats-badge { position: static; margin-top: 20px; flex-direction: row; flex-wrap: wrap; }
}
