/* ==========================================================================
   SocialMocktail — Shared stylesheet
   --------------------------------------------------------------------------
   Sections:
     1. Design tokens
     2. Reset / base
     3. Layout primitives
     4. Typography utilities
     5. Decorative 3D elements
     6. Nav (shared)
     7. Hero (homepage)
     8. Marquee
     9. Services
    10. Receipts
    11. Approach
    12. Pricing
    13. Founder note
    14. FAQ
    15. Contact form
    16. CTA strip
    17. Footer (shared)
    18. Blog index
    19. Blog post
    20. Animations
   ========================================================================== */

/* 1. DESIGN TOKENS ----------------------------------------------------------*/
:root {
  --orange: #EF5B2B;
  --orange-light: #FF6E40;
  --lime: #C8E847;
  --espresso: #231815;
  --espresso-90: #2E2521;
  --espresso-70: #5C504A;
  --espresso-40: #A89E97;
  --espresso-20: #D6CFC8;
  --cream: #F7F2E5;
  --cream-deep: #EFE9DC;
  --mango: #F4B942;
  --strawberry: #EF6F8E;
  --mint: #9DCAB1;
  --success: #7CA82B;
  --error: #D63862;

  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --max-w: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  --radius: 14px;
  --radius-lg: 22px;
}

/* 2. RESET / BASE ----------------------------------------------------------*/
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 3. LAYOUT PRIMITIVES -----------------------------------------------------*/
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section { padding: var(--section-y) 0; position: relative; overflow: hidden; }
.dark { background: var(--espresso); color: var(--cream); }

/* 4. TYPOGRAPHY UTILS ------------------------------------------------------*/
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--orange); }

/* 5. 3D DECORATIVE ELEMENTS ------------------------------------------------*/
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(35, 24, 21, 0.18));
  will-change: transform;
}
.decor svg { width: 100%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .decor { animation: float 7s ease-in-out infinite; }
  .decor--slow { animation-duration: 11s; }
  .decor--fast { animation-duration: 5s; }
  .decor--spin { animation: float 9s ease-in-out infinite, spin 22s linear infinite; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-18px) rotate(calc(var(--rot, 0deg) + 4deg)); }
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* 6. NAV (SHARED) ----------------------------------------------------------*/
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 242, 229, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange);
  color: var(--cream);
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.18s, background 0.2s;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; }

@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle {
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
  }
  .nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); }
}

.mobile-menu { display: none; background: var(--espresso); border-bottom: 1px solid rgba(247, 242, 229, 0.1); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 1rem var(--gutter) 2rem; }
.mobile-menu a {
  display: block; padding: 0.85rem 0;
  font-family: var(--font-display); font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 242, 229, 0.05);
}
.mobile-menu .mobile-cta {
  display: inline-block; margin-top: 1rem;
  background: var(--orange); padding: 0.85rem 1.6rem; border-radius: 100px;
}

/* 7. HERO ------------------------------------------------------------------*/
.hero {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-glow {
  position: absolute;
  top: 40%; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(239, 91, 43, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-eyebrow { color: var(--orange); margin-bottom: 2rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.7rem, 8.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  color: var(--cream);
}
.hero-title .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--espresso-20);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-glass-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
@media (max-width: 1000px) { .hero-glass-wrap { max-width: 320px; margin: 1rem auto 0; } }
.hero-glass {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 50px rgba(239, 91, 43, 0.25)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transform-style: preserve-3d;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-glass { animation: hero-float 6s ease-in-out infinite; }
  .hero-glass .ice-1 { animation: ice-wobble 4s ease-in-out infinite; transform-origin: 180px 200px; }
  .hero-glass .ice-2 { animation: ice-wobble 4s ease-in-out infinite 1s; transform-origin: 235px 215px; }
  .hero-glass .citrus { animation: citrus-bob 5s ease-in-out infinite; transform-origin: 85px 65px; }
  .hero-glass .bubble { animation: bubble-rise 3s ease-in infinite; }
  .hero-glass .b1 { animation-delay: 0s; }
  .hero-glass .b2 { animation-delay: 0.7s; }
  .hero-glass .b3 { animation-delay: 1.4s; }
  .hero-glass .b4 { animation-delay: 2.1s; }
  .hero-glass .b5 { animation-delay: 2.8s; }
  .hero-glass .liquid-surface { animation: surface-wave 4s ease-in-out infinite; transform-origin: 200px 225px; }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotateY(-2deg); }
  50% { transform: translateY(-12px) rotateY(2deg); }
}
@keyframes ice-wobble {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-2px); }
}
@keyframes citrus-bob {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
@keyframes bubble-rise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-180px) scale(1.3); opacity: 0; }
}
@keyframes surface-wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.4); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.8rem;
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--orange); color: var(--cream); box-shadow: 0 8px 20px -6px rgba(239, 91, 43, 0.45); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(239, 91, 43, 0.6); }
.btn-ghost { border: 1.5px solid var(--cream); color: var(--cream); background: transparent; }
.btn-ghost:hover { background: var(--cream); color: var(--espresso); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 242, 229, 0.12);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-num .unit { color: var(--orange); }
.hero-stat-label { font-size: 0.82rem; color: var(--espresso-40); line-height: 1.4; }

/* 8. MARQUEE ---------------------------------------------------------------*/
.marquee {
  background: var(--orange);
  color: var(--cream);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--espresso);
  border-bottom: 1px solid var(--espresso);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
  gap: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--espresso);
  flex-shrink: 0;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 9. SERVICES --------------------------------------------------------------*/
.services-section { background: var(--cream); position: relative; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.section-head-text { flex: 1; min-width: 280px; max-width: 720px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}
.section-title .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--orange); }
.section-lede {
  font-size: 1.15rem;
  color: var(--espresso-70);
  max-width: 620px;
  line-height: 1.5;
}

.services-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) { .services-stack { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-stack { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream-deep);
  border: 1px solid rgba(35, 24, 21, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, background 0.3s;
  cursor: pointer;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -16px rgba(35, 24, 21, 0.18);
  background: #FFFFFF;
}
.service-illo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, rgba(239, 91, 43, 0.08) 0%, transparent 65%);
}
.service-illo {
  width: 80%;
  height: 80%;
  filter: drop-shadow(0 18px 30px rgba(35, 24, 21, 0.18));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (prefers-reduced-motion: no-preference) {
  .service-card:hover .service-illo,
  .service-card:focus-within .service-illo {
    transform: scale(1.06) rotate(-2deg) translateY(-4px);
  }
  .service-card:hover .service-garnish,
  .service-card:focus-within .service-garnish {
    animation: garnish-spin 1.4s ease-in-out;
  }
  .service-card:hover .service-icon,
  .service-card:focus-within .service-icon {
    animation: icon-pulse 1.2s ease-in-out;
  }
  .service-card:hover .bub,
  .service-card:focus-within .bub {
    animation: bub-rise 1.6s ease-out infinite;
  }
}
@keyframes garnish-spin {
  0% { transform: translate(110px, 55px) rotate(0); }
  100% { transform: translate(110px, 55px) rotate(360deg); }
}
@keyframes icon-pulse {
  0%, 100% { transform: translate(180px, 195px) scale(1); }
  50% { transform: translate(180px, 195px) scale(1.12); }
}
@keyframes bub-rise {
  0% { transform: translateY(0); opacity: 0.5; }
  100% { transform: translateY(-60px); opacity: 0; }
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso-70);
  margin-bottom: 0.85rem;
}
.service-num { color: var(--orange); font-variant-numeric: tabular-nums; }
.service-divider { flex-grow: 0; width: 30px; height: 1px; background: var(--espresso-20); }
.service-tag { opacity: 0.6; }

.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.1vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  color: var(--espresso);
}
.service-desc {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--espresso-70);
  margin-bottom: 1.3rem;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
  padding-top: 1rem;
  border-top: 1px solid var(--espresso-20);
  transition: color 0.2s;
}
.service-link:hover { color: var(--orange); }
.service-arrow { transition: transform 0.25s; }
.service-link:hover .service-arrow { transform: translateX(4px); }

/* 10. RECEIPTS -------------------------------------------------------------*/
.receipts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(247, 242, 229, 0.08);
  border: 1px solid rgba(247, 242, 229, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .receipts-grid { grid-template-columns: repeat(2, 1fr); } }
.receipt-cell {
  background: var(--espresso);
  padding: 2.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.3s;
}
.receipt-cell:hover { background: var(--espresso-90); }
.receipt-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.receipt-num .unit { color: var(--orange); font-size: 0.6em; }
.receipt-label { font-size: 0.95rem; color: var(--espresso-40); line-height: 1.45; }

/* 11. APPROACH -------------------------------------------------------------*/
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .recipe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .recipe-grid { grid-template-columns: 1fr; } }
.recipe-step {
  background: var(--cream-deep);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  position: relative;
  border-top: 4px solid var(--orange);
  transition: transform 0.3s, box-shadow 0.3s;
}
.recipe-step:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -12px rgba(35, 24, 21, 0.15); }
.recipe-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}
.recipe-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.recipe-desc { font-size: 0.97rem; line-height: 1.55; color: var(--espresso-70); }

/* 12. PRICING --------------------------------------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--espresso-90);
  border: 1px solid rgba(247, 242, 229, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.4); }
.price-card.featured { background: var(--orange); color: var(--cream); border-color: var(--orange); }
.price-badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--espresso);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.price-size {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.price-card.featured .price-size { color: var(--espresso); }
.price-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.price-amt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.price-amt .from { font-size: 0.85rem; opacity: 0.7; font-weight: 400; margin-right: 0.4rem; }
.price-pitch {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--espresso-40);
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.price-card.featured .price-pitch { color: rgba(247, 242, 229, 0.85); }
.price-list { list-style: none; margin-bottom: 1.8rem; }
.price-list li {
  font-size: 0.92rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(247, 242, 229, 0.08);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.price-card.featured .price-list li { border-bottom-color: rgba(35, 24, 21, 0.15); color: var(--cream); }
.price-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.price-card.featured .price-list li::before { background: var(--espresso); }
.price-cta {
  width: 100%;
  text-align: center;
  background: var(--orange);
  color: var(--cream);
  padding: 1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.price-cta:hover { background: var(--orange-light); }
.price-card.featured .price-cta { background: var(--espresso); color: var(--cream); }
.price-card.featured .price-cta:hover { background: #000; }

/* 13. FOUNDER NOTE ---------------------------------------------------------*/
.founder-note {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) { .founder-note { grid-template-columns: 1fr; } }
.founder-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--orange), var(--mango));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  color: var(--cream);
  letter-spacing: -0.03em;
  box-shadow: 0 18px 36px -12px rgba(239, 91, 43, 0.35);
}
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.35;
  color: var(--espresso);
  margin-bottom: 1.3rem;
}
.founder-quote::before { content: "\201C"; color: var(--orange); margin-right: 0.05em; }
.founder-quote::after { content: "\201D"; color: var(--orange); margin-left: 0.05em; }
.founder-attribution {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso-70);
}

/* 14. FAQ ------------------------------------------------------------------*/
.faq-list { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.faq-item { border-bottom: 1px solid var(--espresso-20); }
.faq-item[open] { background: rgba(239, 91, 43, 0.04); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  cursor: pointer;
  list-style: none;
  gap: 1.5rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  transition: transform 0.25s, background 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--cream); }
.faq-a {
  padding: 0 3rem 1.8rem 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--espresso-70);
}

/* 15. CONTACT FORM ---------------------------------------------------------*/
.contact-section { background: var(--cream); position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info p {
  font-size: 1.1rem;
  color: var(--espresso-70);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.contact-direct {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  margin-bottom: 1rem;
}
.contact-direct-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-70);
  margin-bottom: 0.5rem;
}
.contact-direct-email {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--espresso);
  transition: color 0.2s;
}
.contact-direct-email:hover { color: var(--orange); }
.contact-promise {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--espresso-70);
  margin-top: 1.5rem;
}
.contact-promise-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(124, 168, 43, 0.18);
  flex-shrink: 0;
}

.contact-form {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid rgba(35, 24, 21, 0.06);
  box-shadow: 0 24px 50px -20px rgba(35, 24, 21, 0.12);
}
.field { margin-bottom: 1.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}
.field label .req { color: var(--orange); margin-left: 0.15em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.97rem;
  color: var(--espresso);
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #FFFFFF;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--espresso-40); }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C504A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--cream);
  padding: 1.1rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.2s, transform 0.18s;
  box-shadow: 0 10px 24px -8px rgba(239, 91, 43, 0.5);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 0.85rem;
  color: var(--espresso-70);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(124, 168, 43, 0.12); color: var(--success); }
.form-status.error { background: rgba(214, 56, 98, 0.12); color: var(--error); }

/* 16. CTA STRIP ------------------------------------------------------------*/
.cta-section {
  background: var(--orange);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.cta-title .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cta-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto 2.4rem;
  opacity: 0.92;
  position: relative;
  z-index: 2;
}
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--espresso);
  color: var(--cream);
  padding: 1.1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  transition: transform 0.2s, background 0.2s;
  position: relative;
  z-index: 2;
}
.cta-email:hover { transform: translateY(-2px); background: #000; }
.cta-mailicon { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }

/* 17. FOOTER ---------------------------------------------------------------*/
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 4rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 242, 229, 0.1);
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 42px; margin-bottom: 1.4rem; }
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--espresso-40);
  max-width: 320px;
  line-height: 1.45;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--cream); font-size: 0.96rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--espresso-40);
  position: relative;
  z-index: 2;
}
.footer-bottom .dot { margin: 0 0.6rem; }

/* 18. BLOG INDEX -----------------------------------------------------------*/
.blog-hero {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.blog-hero h1 .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--orange); }
.blog-hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--espresso-20);
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 24, 21, 0.06);
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(35, 24, 21, 0.18);
  background: #FFFFFF;
}
.blog-card-thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  margin: -0.4rem -0.6rem 1.4rem -0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb .thumb-art {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  padding: 1.4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--espresso-70);
}
.blog-card-category { color: var(--orange); }
.blog-card-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--espresso-20);
}
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
  color: var(--espresso);
}
.blog-card-excerpt {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--espresso-70);
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--espresso-20);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
}
.blog-card-foot .arrow { transition: transform 0.25s; }
.blog-card:hover .blog-card-foot .arrow { transform: translateX(4px); color: var(--orange); }

/* 19. BLOG POST ------------------------------------------------------------*/
.post-hero {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--espresso-40);
  margin-bottom: 1.6rem;
  transition: color 0.2s;
  position: relative;
  z-index: 2;
}
.post-back:hover { color: var(--orange); }
.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: var(--espresso-40);
  position: relative;
  z-index: 2;
}
.post-meta-category { color: var(--orange); }
.post-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--espresso-40);
}
.post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 920px;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}
.post-deck {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--espresso-20);
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
  position: relative;
  z-index: 2;
}
.post-byline-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--mango));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
}
.post-byline-text { line-height: 1.3; }
.post-byline-name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.post-byline-role { font-size: 0.83rem; color: var(--espresso-40); }

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--espresso-90);
}
.post-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 2.8rem 0 1.2rem;
  color: var(--espresso);
}
.post-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 2rem 0 0.8rem;
}
.post-body p { margin-bottom: 1.4rem; }
.post-body a { color: var(--orange); border-bottom: 1px solid var(--orange); }
.post-body a:hover { background: rgba(239, 91, 43, 0.1); }
.post-body strong { font-weight: 600; }
.post-body em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--espresso); }
.post-body ul, .post-body ol { margin: 0 0 1.4rem 1.4rem; }
.post-body ul li, .post-body ol li { margin-bottom: 0.6rem; padding-left: 0.4rem; }
.post-body ul li::marker { color: var(--orange); }
.post-body blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--espresso);
  border-left: 4px solid var(--orange);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.4rem 0;
}
.post-body hr {
  border: none;
  height: 1px;
  background: var(--espresso-20);
  margin: 3rem 0;
}
.post-body code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--cream-deep);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.92em;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 3rem 0 1rem;
}
.post-tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--cream-deep);
  color: var(--espresso-70);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.post-tag:hover { background: var(--orange); color: var(--cream); }

/* 20. ANIMATIONS / REVEAL --------------------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ADDITIONS — About, Contact, Service, Legal pages
   ========================================================================== */

/* ---- Generic page hero (used by About/Contact/Services/Legal) ---- */
.page-hero {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 920px;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}
.page-hero h1 .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--orange); }
.page-hero-deck {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--espresso-20);
  max-width: 720px;
  position: relative;
  z-index: 2;
}

/* ---- Generic content section ---- */
.page-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--espresso-90);
}
.page-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 2.8rem 0 1rem;
  color: var(--espresso);
}
.page-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 2rem 0 0.7rem;
}
.page-body p { margin-bottom: 1.3rem; }
.page-body ul, .page-body ol { margin: 0 0 1.4rem 1.4rem; }
.page-body ul li, .page-body ol li { margin-bottom: 0.5rem; padding-left: 0.3rem; }
.page-body ul li::marker { color: var(--orange); }
.page-body a { color: var(--orange); border-bottom: 1px solid var(--orange); }
.page-body a:hover { background: rgba(239, 91, 43, 0.1); }
.page-body strong { font-weight: 600; }
.page-body em { font-family: var(--font-serif); font-style: italic; }
.page-body blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.4;
  color: var(--espresso);
  border-left: 4px solid var(--orange);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.2rem 0;
}
.page-body hr {
  border: none;
  height: 1px;
  background: var(--espresso-20);
  margin: 3rem 0;
}
.page-body .last-updated {
  font-size: 0.92rem;
  color: var(--espresso-70);
  margin-bottom: 2rem;
}

/* ---- About: value cards / team grid (optional) ---- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 800px) { .about-values { grid-template-columns: 1fr; } }
.value-card {
  background: var(--cream-deep);
  padding: 1.8rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 0.97rem;
  color: var(--espresso-70);
  margin: 0;
  line-height: 1.55;
}

/* ---- Service detail page ---- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; } }

.service-sidebar {
  position: sticky;
  top: 100px;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border-top: 4px solid var(--orange);
}
.service-sidebar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.service-sidebar .price-stub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.service-sidebar .price-stub-from { font-size: 0.8rem; opacity: 0.7; font-weight: 400; margin-right: 0.3rem; }
.service-sidebar .price-stub-note { font-size: 0.85rem; color: var(--espresso-70); margin-bottom: 1.5rem; }
.service-sidebar ul { list-style: none; margin: 0 0 1.5rem 0; }
.service-sidebar ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--espresso-20);
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.service-sidebar ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.service-sidebar .btn {
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.95rem;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--espresso-40);
  margin-bottom: 1.4rem;
  transition: color 0.2s;
  position: relative;
  z-index: 2;
}
.service-back:hover { color: var(--orange); }

/* ---- Breadcrumb visual ---- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--espresso-40);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}
.breadcrumbs a { color: var(--espresso-40); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--cream); }

/* ---- Service related (footer of service detail page) ---- */
.service-related {
  background: var(--cream-deep);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 800px) { .service-related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -12px rgba(35, 24, 21, 0.18);
}
.related-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.related-card p { font-size: 0.92rem; color: var(--espresso-70); line-height: 1.45; margin: 0; }
