/* ============================================================
   MIMILOOM LLC — Marketing Website Styles
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --cream:      #F7F2EA;
  --ink:        #1C1712;
  --terra:      #C4875A;
  --sage:       #7A8F7D;
  --ink-soft:   #2E2820;
  --terra-light:#E8B48A;
  --cream-dark: #EDE6D9;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(28,23,18,0.08);
  --shadow-md:  0 8px 40px rgba(28,23,18,0.12);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.eyebrow-light { color: var(--terra-light); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.section-title.light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--terra); }

.body-text {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  color: #5a4f45;
  max-width: 520px;
}

.body-text.light { color: #c8b9a8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  border: 2px solid var(--terra);
}
.btn-primary:hover {
  background: #b07348;
  border-color: #b07348;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,135,90,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: 10px 24px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-outline-terra:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,135,90,0.3);
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--cream);
}
.btn-cream:hover {
  background: transparent;
  color: var(--cream);
  transform: translateY(-1px);
}

.full-width { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,242,234,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,23,18,0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(28,23,18,0.10);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #5a4f45;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--terra); }

.nav-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 4px;
  border-top: 1px solid rgba(28,23,18,0.08);
  background: var(--cream);
}

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

.nav-mobile a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(28,23,18,0.06);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--terra); }

.nav-mobile .btn {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
  padding: 14px 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 120px 32px 80px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin: 20px 0 28px;
  letter-spacing: -0.01em;
}

.hero-heading em {
  font-style: italic;
  font-weight: 300;
  display: inline-block;
}

/* "intelligent" shimmer / color-cycle animation */
@keyframes wordShimmer {
  0%   { color: var(--terra); text-shadow: none; }
  30%  { color: #d4956a; text-shadow: 0 0 32px rgba(196,135,90,0.3); }
  60%  { color: #b87042; text-shadow: 0 0 48px rgba(196,135,90,0.15); }
  80%  { color: #c8885c; text-shadow: 0 0 24px rgba(196,135,90,0.25); }
  100% { color: var(--terra); text-shadow: none; }
}

.word-shimmer {
  animation: wordShimmer 4s ease-in-out infinite;
  will-change: color, text-shadow;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #6b5e53;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right — dark stat panel */
.hero-right {
  flex-shrink: 0;
  width: 360px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}

.stat-card {
  background: var(--ink-soft);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition);
}

.stat-card:hover { background: #3a3128; }

.stat-num {
  font-family: var(--ff-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--terra-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: #a0907e;
  line-height: 1.4;
}

/* ============================================================
   SOFT CTA BANNER
   ============================================================ */
.soft-cta-bar {
  background: linear-gradient(to right, #f0e8d9, var(--cream-dark));
  border-top: 1px solid rgba(196,135,90,0.18);
  border-bottom: 1px solid rgba(196,135,90,0.18);
  padding: 20px 0;
}

.soft-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.soft-cta-text {
  font-size: 15px;
  color: #5a4f45;
  line-height: 1.5;
}

.soft-cta-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   MARQUEE — refined, lower visual weight
   ============================================================ */
.marquee-bar {
  background: transparent;
  border-top: 1px solid rgba(196,135,90,0.25);
  border-bottom: 1px solid rgba(196,135,90,0.25);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 6px;
}

.marquee-track .dot {
  color: rgba(196,135,90,0.35);
  font-size: 10px;
  vertical-align: middle;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(28,23,18,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.service-num {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.1em;
}

.service-icon {
  font-size: 22px;
  color: var(--sage);
  opacity: 0.7;
}

.service-name {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-name .cn {
  display: block;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6b5e53;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.service-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(196,135,90,0.1);
  color: var(--terra);
  border: 1px solid rgba(196,135,90,0.2);
}

.service-price {
  font-size: 13px;
  color: #8a7a6e;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(28,23,18,0.07);
}

.service-price strong {
  color: var(--ink);
  font-weight: 600;
}

.service-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 20px;
  color: var(--terra);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--ink);
}

.process .eyebrow { color: var(--terra-light); }
.process .section-title { color: var(--cream); }
.process .section-title em { color: var(--terra-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 0 32px 0 0;
  position: relative;
}

.step-num {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--terra);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 20px;
}

.step-line {
  height: 2px;
  background: linear-gradient(to right, var(--terra), rgba(196,135,90,0.2));
  margin-bottom: 28px;
  position: relative;
}

.step-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
  border: 2px solid var(--ink);
}

.step-line.last::after { display: none; }

.process-step h4 {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.65;
  color: #a0907e;
}

/* ============================================================
   AI BOOKS FEATURE
   ============================================================ */
.books-feature { background: var(--cream); }

.books-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Book visual */
.books-visual {
  position: relative;
}

.book-spread {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.book-page {
  flex: 1;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.left-page {
  background: #F0EBE0;
  border-right: 2px solid rgba(28,23,18,0.12);
}

.right-page {
  background: #E8E0D4;
}

.page-illustration {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-text-cn,
.page-text-en {
  position: relative;
  z-index: 2;
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.65;
  text-align: center;
  padding: 0 16px;
}

.page-text-cn { font-family: var(--ff-serif); }
.page-text-en { font-family: var(--ff-serif); font-style: italic; }

.book-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(196,135,90,0.4);
}

/* Books copy */
.books-copy { padding-top: 16px; }

.books-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.books-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #5a4f45;
}

.feat-dot {
  color: var(--terra);
  font-size: 10px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--ink); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-copy .body-text { margin: 24px 0 40px; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(247,242,234,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-feat-card {
  background: rgba(247,242,234,0.04);
  padding: 32px 28px;
  transition: background var(--transition);
}

.about-feat-card:hover { background: rgba(247,242,234,0.08); }

.feat-icon {
  display: block;
  font-size: 18px;
  color: var(--terra-light);
  margin-bottom: 16px;
}

.about-feat-card h5 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.about-feat-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #8a7a6e;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream-dark); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}

.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: var(--ink);
}

.contact-detail a:hover { color: var(--terra); }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b5e53;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream-dark);
  border: 1.5px solid rgba(28,23,18,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a09080;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,135,90,0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: #6b5e53;
  font-style: italic;
  font-family: var(--ff-serif);
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: 13px;
  color: #5a4f45;
  line-height: 1.7;
}

.footer-craft {
  color: var(--terra) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.75s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }

  /* Navbar */
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px 64px;
    gap: 48px;
    min-height: auto;
  }

  .hero-right { width: 100%; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero CTA buttons — larger tap targets on mobile */
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: 12px;
  }

  .hero-btns .btn {
    justify-content: center;
    padding: 16px 28px;
    font-size: 15px;
  }

  /* Soft CTA */
  .soft-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn-outline-terra { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .process-step { padding: 0; }

  /* Books */
  .books-inner { grid-template-columns: 1fr; gap: 64px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-cards { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 36px 28px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }

  .container { padding: 0 24px; }
}

@media (max-width: 560px) {
  .hero-heading { font-size: 52px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: 1fr; }
  .stat-card { padding: 28px 20px; }
  .stat-num { font-size: 36px; }
}

/* ============================================================
   WORK / PORTFOLIO
   ============================================================ */
.work { background: var(--ink); }
.work .eyebrow        { color: var(--terra-light); }
.work .section-title  { color: var(--cream); }
.work .section-title em { color: var(--terra-light); }

.work-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(247,242,234,0.04);
}

.case-card {
  background: rgba(247,242,234,0.03);
  padding: 48px 48px 44px;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(247,242,234,0.06);
}
.case-card:last-child { border-bottom: none; }
.case-card:hover { background: rgba(247,242,234,0.06); }

.case-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.case-num {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.1em;
}

.case-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(196,135,90,0.12);
  color: var(--terra-light);
  border: 1px solid rgba(196,135,90,0.2);
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: start;
}

.case-title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 28px;
  max-width: 560px;
}

.case-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.case-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
}

.case-block span:last-child {
  font-size: 13px;
  line-height: 1.65;
  color: #a09080;
}

.case-result {
  padding: 20px 24px;
  background: rgba(196,135,90,0.07);
  border-left: 3px solid var(--terra);
  border-radius: 0 8px 8px 0;
}

.result-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 6px;
}

.case-result p {
  font-size: 14px;
  line-height: 1.65;
  color: #c8b9a8;
}

.case-result strong { color: var(--terra-light); font-weight: 600; }

/* Case visuals */
.case-visual {
  background: rgba(247,242,234,0.04);
  border: 1px solid rgba(247,242,234,0.08);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  transition: background var(--transition);
}
.case-card:hover .case-visual {
  background: rgba(247,242,234,0.07);
}
.case-visual svg { width: 100%; height: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream-dark); }

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

.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(28,23,18,0.07);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.testi-card--featured {
  background: var(--ink);
  border-color: transparent;
}

.testi-card--featured .testi-quote { color: #c8b9a8; }
.testi-card--featured .testi-name  { color: var(--cream); }
.testi-card--featured .testi-role  { color: #6b5e53; }
.testi-card--featured .testi-stars { color: var(--terra-light); }

.testi-stars {
  font-size: 14px;
  color: var(--terra);
  letter-spacing: 2px;
}

.testi-quote {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.testi-quote::before {
  content: '\201C';
  font-size: 48px;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
  color: var(--terra);
  opacity: 0.4;
  font-family: var(--ff-serif);
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(28,23,18,0.07);
  padding-top: 20px;
}

.testi-card--featured .testi-footer {
  border-top-color: rgba(247,242,234,0.08);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testi-avatar svg { width: 44px; height: 44px; }

.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.testi-role {
  display: block;
  font-size: 12px;
  color: #8a7a6e;
  margin-top: 2px;
}

/* ============================================================
   ABOUT — FOUNDER BLOCK
   ============================================================ */
.founder-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 8px;
}

.founder-avatar {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink-soft);
  border: 2px solid rgba(196,135,90,0.55);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.founder-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center 43%;
  border-radius: 50%;
  display: block;
}

.founder-intro { padding-top: 4px; }

.founder-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.founder-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #a09080;
  max-width: 380px;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 900px) {
  /* Work / Cases */
  .case-body { grid-template-columns: 1fr; gap: 28px; }
  .case-visual { aspect-ratio: 16/7; }
  .case-row { grid-template-columns: 1fr; gap: 16px; }
  .case-card { padding: 32px 24px 28px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Founder block */
  .founder-block { flex-direction: column; align-items: flex-start; gap: 32px; }
  .founder-avatar { width: 88px; height: 88px; }
  .founder-avatar img { width: 88px; height: 88px; }
}

@media (max-width: 560px) {
  .case-body { gap: 20px; }
  .testi-card { padding: 28px 24px; }
  .testi-quote { font-size: 16px; }
}
