:root {
  --ink: #121212;
  --offwhite: #f5f2f0;
  --muted: #66605e;
  --line: #ddd6d2;
  --pink: #ffcdff;
  --pink-soft: #ffcdff;
  --max: 1120px;
  --radius: 12px;
  --radius-card: 12px;
  --radius-container: 12px;
  --section-title-size: clamp(1.2rem, 2.1vw, 1.6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: #fcfbff;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

p,
li,
small,
label,
caption {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
}

button,
.nav-links a,
.prototype-button,
.meta-label,
.meta-value {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.calm-lavender-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.lavender-layer,
.lavender-glow {
  position: absolute;
  inset: -8%;
  will-change: transform;
}

.layer-a {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(252, 251, 255, 0.9), rgba(252, 251, 255, 0.82)),
    url("assets/lavender-waves-a.svg");
  background-size: cover, 170% 170%;
  background-position: center, 50% 54%;
  mix-blend-mode: multiply;
}

.layer-b {
  opacity: 0.24;
  background-image:
    url("assets/lavender-waves-b.svg");
  background-size: 178% 178%;
  background-position: 48% 56%;
}

.lavender-glow {
  opacity: 0.28;
  background:
    radial-gradient(40% 30% at 30% 35%, rgba(232, 206, 244, 0.35), transparent 70%),
    radial-gradient(45% 35% at 72% 62%, rgba(203, 167, 225, 0.28), transparent 72%);
  filter: blur(18px);
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(255, 205, 255, 0.18);
  pointer-events: none;
  z-index: 9999;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: transform 140ms cubic-bezier(0.2, 0, 0, 1), opacity 180ms ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-active {
  transform: translate(-50%, -50%) scale(0.86);
}

.custom-cursor.is-black {
  background: #121212;
  box-shadow: 0 0 0 8px rgba(18, 18, 18, 0.12);
}


a {
  color: inherit;
  text-decoration: none;
}

.bg-orb {
  display: none;
}

.orb-a {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 80px;
  background: radial-gradient(circle at 30% 30%, #f4e2e4 0%, #efced1 70%);
}

.orb-b {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 80px;
  background: radial-gradient(circle at 30% 30%, #ece6e3 0%, #ddd5d2 70%);
}

.site-header {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(20, 16, 14, 0.06);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-inline: clamp(2rem, 5vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  position: relative;
}

main {
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  width: auto;
  height: 2rem;
  display: block;
  object-fit: contain;
  transform: translateY(-1px);
}

.brand-text {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.dot {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.nav-links a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1e1a18;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--pink);
  opacity: 1;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--ink);
  margin: 4px 0;
}

main {
  width: min(var(--max), 92vw);
  margin: 3.5rem auto 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  padding: 2rem 0 2.4rem;
}

.hero-copy-block {
  min-width: 0;
}

.hero-image-wrap {
  justify-self: end;
  width: min(100%, 200px);
  margin-right: 2.2rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0.85rem;
  font-size: clamp(1.75rem, 4.8vw, 3.9rem);
  line-height: 1.02;
  max-width: none;
}

.hero-title {
  cursor: default;
  width: fit-content;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .char {
  display: inline-block;
  color: var(--ink);
  transition:
    color 220ms cubic-bezier(0.2, 0, 0, 1),
    transform 220ms cubic-bezier(0.2, 0, 0, 1),
    text-shadow 220ms cubic-bezier(0.2, 0, 0, 1);
  will-change: color, transform;
}

.hero-title .char:hover {
  color: var(--pink);
  transform: translateY(-0.5px);
  text-shadow: 0 0 12px rgba(255, 205, 255, 0.16);
}

.hero-title .hero-dot {
  color: var(--pink);
}

.hero-title .hero-dot:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .char {
    transition: none;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }

  .hero-title {
    width: fit-content;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-image-wrap {
    justify-self: center;
    width: min(100%, 170px);
    margin-right: 0;
  }
}

.hero-copy {
  max-width: 52ch;
  color: #3f3a39;
  font-size: 1.04rem;
  margin: 1.35rem 0 0;
}

.hero {
  padding: 2rem 0 2.4rem;
}

.home-section-gap {
  height: clamp(4.6rem, 10vw, 7.6rem);
}

.hero-typing-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-typing-panel .focus-title {
  text-align: center;
}

.hero-typing-panel .focus-title::after {
  content: "";
  display: block;
  width: min(100%, 320px);
  height: 1px;
  margin: 0.95rem auto 0.85rem;
  background: rgba(255, 255, 255, 0.9);
}

.hero-typing-panel .focus-typing {
  margin: 0;
  text-align: center;
  justify-content: center;
}

.process-section {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding-bottom: 2.2rem;
}

.process-card {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  border-radius: var(--radius-container);
  background: rgba(255, 255, 255, 0.685);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 36px rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process-title {
  font-family: "Montserrat", sans-serif;
  font-size: var(--section-title-size);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.2rem);
  align-items: start;
  min-height: clamp(270px, 30vw, 370px);
}

.process-list {
  display: grid;
  gap: 0.55rem;
  align-content: stretch;
  height: 100%;
}

.process-row {
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  padding: 0.62rem 0.92rem;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.process-row:hover,
.process-row.is-active {
  background: var(--pink);
  border-color: transparent;
}

.process-right {
  display: contents;
}

.process-image-shell {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: clamp(270px, 30vw, 370px);
}

.process-image {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  display: block;
  visibility: hidden;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(26, 26, 26, 0.12));
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

.process-image.is-active {
  visibility: visible;
}

.featured-transition {
  margin-top: 0;
  margin-bottom: clamp(0.7rem, 1.8vw, 1.2rem);
  padding: clamp(0.8rem, 2vw, 1.2rem) 0;
  text-align: center;
}

.featured-transition-title {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.featured-transition .focus-title {
  text-align: center;
  margin: 0 auto;
}

.featured-transition + .single-project {
  margin-top: 0;
  padding-top: 0;
}

.focus-section {
  margin-top: 0;
  padding: 0;
  text-align: left;
}

.focus-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.focus-typing {
  margin: 1.05rem 0 0;
  height: 1.45em;
  width: 30ch;
  max-width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(1.18rem, 2.5vw, 1.8rem);
  line-height: 1.45;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  white-space: nowrap;
  overflow: hidden;
}

.focus-word {
  position: relative;
  padding: 0 0.08em;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.focus-word.is-selected {
  color: #121212;
  background: var(--pink);
  border-radius: 0.28rem;
}

.focus-caret {
  width: 2px;
  height: 1.06em;
  background: var(--pink);
  border-radius: 99px;
  animation: focusCaretBlink 1s steps(1, end) infinite;
}

@keyframes focusCaretBlink {
  0%, 48% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (max-width: 760px) {
  .home-section-gap {
    height: clamp(2.8rem, 7vw, 4rem);
  }

  .hero-typing-panel {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .hero-typing-panel .focus-typing {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .process-section {
    gap: 1.3rem;
    padding-bottom: 1.8rem;
    margin-top: 0.5rem;
  }

  .process-card {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-container);
  }

  .process-title {
    font-size: 1.15rem;
  }

  .project-title {
    font-size: 1.15rem;
  }

  #welcome-to-truffle {
    font-size: 1.15rem !important;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    min-height: 0;
  }

  .process-list {
    height: auto;
  }

  .process-image-shell {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
  }

  .truffle-brand-story {
    padding: 88px 16px 58px;
  }

  .truffle-brand-hero {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    align-items: start;
  }

  .truffle-brand-hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .truffle-brand-hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "top-left top-right"
      "bottom-left bottom-right";
    gap: 0.62rem;
    padding: 0;
  }

  .truffle-brand-hero-image-1,
  .truffle-brand-hero-image-2,
  .truffle-brand-hero-image-3,
  .truffle-brand-hero-image-4 {
    height: 180px;
    width: 100%;
    transform: none;
    justify-self: stretch;
  }

  .truffle-brand-grid-two,
  .truffle-brand-grid-three,
  .truffle-brand-grid-four,
  .truffle-brand-grid-five {
    grid-template-columns: 1fr;
  }

  .truffle-brand-placeholder {
    min-height: 168px;
  }

  .truffle-brand-card:has(.truffle-why-story-stack) {
    padding: 1rem;
  }

  .truffle-why-story-card,
  .truffle-why-story-card:nth-child(2),
  .truffle-why-story-card-mascot {
    gap: 0;
    padding: 0.95rem;
    border-radius: var(--radius-card);
  }

  .truffle-why-story-visual,
  .truffle-why-story-card:nth-child(1) .truffle-why-story-visual,
  .truffle-why-story-card:nth-child(2) .truffle-why-story-visual,
  .truffle-why-story-card-mascot .truffle-why-story-visual {
    width: min(220px, 100%);
    height: min(220px, 60vw);
    min-height: 0;
  }

  .truffle-why-story-card-mascot .truffle-why-story-visual img {
    width: min(100%, 82%);
  }

  .truffle-why-highlight span {
    width: 100%;
    padding: 0.72rem 0.95rem;
  }
}

.single-project {
  margin-top: 4.2rem;
  padding-top: 1.6rem;
  text-align: center;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#project {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.project-title {
  font-family: "Montserrat", sans-serif;
  font-size: var(--section-title-size);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 1.8rem;
}

#welcome-to-truffle {
  font-family: "Inter", sans-serif !important;
  font-size: var(--section-title-size) !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  line-height: 1.2 !important;
}

.project-video {
  width: min(100%, 860px);
  display: block;
  margin: 0;
  padding: 0;
  background: transparent !important;
  background-color: transparent !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.045);
  transform-origin: center;
  clip-path: none;
  border-radius: var(--radius-card);
  border: none !important;
  box-shadow: none !important;
  vertical-align: top;
}

.project-video-wrap {
  display: flex;
  justify-content: center;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 auto 2rem !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.project-meta-bar {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.meta-item {
  position: relative;
  padding: 1rem 1.2rem 1.05rem;
  text-align: center;
  isolation: isolate;
}

.meta-item::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border-radius: 10px;
  background: var(--pink);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0, 0, 1);
  z-index: -1;
}

.meta-item + .meta-item {
  border-left: 1px solid #d7d1ce;
}

.meta-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.meta-label {
  margin: 0;
  color: #9a9390;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.meta-value {
  margin: 0.38rem 0 0;
  color: #2f2b2a;
  font-size: clamp(1.03rem, 1.8vw, 1.15rem);
}

.project-details-two-col {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: center;
  text-align: left;
}

.project-image-col img {
  width: 100%;
  height: auto;
  display: block;
}

.project-copy-col h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0;
}

.project-copy-col p {
  margin: 0.9rem 0 0;
  color: #3f3938;
  max-width: 44ch;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ink);
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: transparent;
}

.projects,
.about,
.contact {
  margin-top: 3.6rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
}

.project-focus {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
}

.project-meta {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #5b5452;
  font-weight: 700;
}

.project-focus h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.project-focus > p {
  max-width: 60ch;
  color: #3c3634;
  line-height: 1.65;
}

.project-details {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.project-details p {
  margin: 0;
  color: #3c3634;
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about p {
  margin: 0;
  color: #3d3735;
  line-height: 1.6;
}

.contact {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid var(--line);
}

.mail {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.3rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  display: inline-block;
  margin-top: 1rem;
}

.site-footer {
  width: min(var(--max), 92vw);
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #5f5856;
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lavender-layer,
  .lavender-glow {
    transform: none !important;
  }
}

.projects-page {
  padding-top: 1.4rem;
}

.projects-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 1.2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.project-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  border: 1px solid #ddd7d3;
  background: #f8f8f8;
  isolation: isolate;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
  transition: background 260ms cubic-bezier(0.2, 0, 0, 1);
}

.project-tile img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 260ms cubic-bezier(0.2, 0, 0, 1), filter 260ms ease;
}

.project-tile-meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  background: none;
  border: 0;
  padding: 0;
  color: #fff;
}

.project-tile-meta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  margin: 0;
  letter-spacing: -0.01em;
  color: #fff;
}

.project-tile-meta p {
  margin: 0.16rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
}

.project-tile:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.project-tile:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.project-tile-truffle img {
  transform: scale(1.2);
  object-position: center 56%;
  clip-path: inset(0.5% 1.5% 0.5% 1.5%);
}

.project-tile-truffle:hover img {
  transform: scale(1.24);
}

.project-tile-moveit:hover img {
  transform: scale(1.02);
}

.project-tile-placeholder {
  aspect-ratio: 5 / 4;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 1px 1px, rgba(72, 58, 64, 0.035) 0.85px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(250, 247, 244, 0.5));
  background-size: 16px 16px, auto;
  background-position: center, center, center;
  border: 1px solid rgba(20, 16, 14, 0.08);
  overflow: hidden;
}

.project-tile-placeholder::after {
  content: none;
}

.project-tile-placeholder::before {
  content: none;
}

.project-tile-placeholder-eyebrow {
  position: absolute;
  top: 1.1rem;
  left: 1.3rem;
  z-index: 2;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30, 26, 24, 0.62);
}

.project-tile-placeholder-meta {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  max-width: 360px;
}

.project-tile-placeholder-meta h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: #1e1a18;
}

.project-tile-placeholder-meta p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(30, 26, 24, 0.78);
  max-width: 32ch;
}

@media (max-width: 980px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.projects-closing-cta {
  margin-top: clamp(2.1rem, 5vw, 3.8rem);
}

.projects-closing-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(20, 16, 14, 0.08);
  background: linear-gradient(160deg, #ffffff 0%, #fffefe 58%, #fffdfd 100%);
  padding: calc(clamp(1.6rem, 3vw, 2.6rem) + 20px) clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
  box-shadow: 0 10px 30px rgba(40, 26, 35, 0.08);
}

.projects-closing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/pattern_aboutme.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.projects-closing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.projects-closing-logo-mark {
  position: absolute;
  left: 58%;
  right: auto;
  top: 56%;
  transform: translateY(-50%);
  width: clamp(185px, 22vw, 285px);
  height: auto;
  opacity: 0.042;
  pointer-events: none;
  z-index: 1;
}

.projects-closing-copy {
  text-align: left;
  position: relative;
  z-index: 2;
}

.projects-closing-card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
  color: #1f1718;
}

.projects-closing-card p {
  margin: 0.7rem 0 0;
  max-width: 54ch;
  color: #3c3132;
  line-height: 1.65;
}

.projects-closing-actions {
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.projects-closing-actions .btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 180ms ease;
}

.projects-closing-actions .btn-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}

.projects-closing-actions .btn-light {
  background: #fff;
  color: var(--ink);
}

.projects-closing-actions .btn-light:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (max-width: 760px) {
  .projects-closing-card {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .projects-closing-copy {
    text-align: left;
  }

  .projects-closing-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .projects-closing-actions .btn {
    width: 100%;
  }
}

.project-info-page {
  padding-top: 1.8rem;
}

.info-title {
  font-family: "Montserrat", sans-serif;
  margin-top: 0.55rem;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 0.95;
}

.info-copy {
  margin-top: 0.8rem;
  color: #3f3a39;
  max-width: 52ch;
}

.schultz-page {
  --schultz-space-black: #0C0D11;
  --schultz-border-dark: #2A2C32;
  --schultz-muted-grey: #595B61;
  --schultz-soft-grey: #989A9E;
  --schultz-off-white: #E1E3E7;
  --schultz-lab-red: #FF4B4B;
  --schultz-lab-red-soft: rgba(255, 75, 75, 0.18);
  --schultz-lab-red-line: rgba(255, 92, 92, 0.24);
  --schultz-lab-red-glow: rgba(255, 62, 62, 0.20);
  width: min(1120px, 92vw);
  margin: 2.2rem auto 5rem;
  position: relative;
  z-index: 1;
}

.schultz-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.4rem, 3.5vw, 3rem);
  align-items: stretch;
}

.schultz-hero-copy {
  min-width: 0;
}

.schultz-hero-copy .eyebrow {
  margin-bottom: 0.35rem;
}

.schultz-hero-copy .info-title {
  margin-bottom: 0.95rem;
}

.schultz-goal-copy {
  margin: 1rem 0 0;
  max-width: 54ch;
  color: #2f2a2b;
}

.schultz-hero-cta {
  margin-top: 1.2rem;
}

body.page-schultz .schultz-hero-cta {
  border-color: #2A2C32;
  background: rgba(12, 13, 17, 0.56);
  color: #E1E3E7;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

body.page-schultz .schultz-hero-cta:hover {
  border-color: rgba(255, 92, 92, 0.36);
  background: rgba(255, 75, 75, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.schultz-hero-preview {
  min-height: clamp(260px, 30vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}

.schultz-hero-preview::before {
  content: none;
}

.schultz-preview-label,
.schultz-preview-text {
  position: relative;
  z-index: 1;
}

.schultz-hero-preview img {
  width: min(100%, 594px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42));
  transform: rotate(-15deg) scale(1.1);
  transform-origin: center;
}

.schultz-preview-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 235, 241, 0.82);
}

.schultz-preview-text {
  margin: 0.45rem 0 0;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-family: "Montserrat", sans-serif;
  color: #fff3f7;
}

.schultz-sections {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.schultz-section-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(42, 35, 39, 0.1);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

.schultz-section-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(228, 120, 144, 0.72), rgba(228, 120, 144, 0));
  pointer-events: none;
}

.schultz-section-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(82, 62, 74, 0.66);
}

.schultz-section-card h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  line-height: 1.2;
  color: #1d181a;
}

.schultz-section-card p {
  margin: 0.7rem 0 0;
  max-width: 72ch;
  color: #352e31;
}

.schultz-design-module {
  margin-top: 1.35rem;
  display: grid;
  gap: 1.2rem;
}

.schultz-design-block {
  border-top: 1px solid rgba(42, 44, 50, 0.2);
  padding-top: 0.9rem;
}

.schultz-design-block h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  color: #1d181a;
}

.schultz-design-direction-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  letter-spacing: -0.01em;
}

.schultz-design-font-name {
  margin: 0.55rem 0 0;
  font-family: "Schibsted Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c0d11;
}

.schultz-design-specimen {
  margin: 0.35rem 0 0;
  font-family: "Schibsted Grotesk", "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #2a2c32;
}

.schultz-design-note {
  margin: 0.6rem 0 0;
  font-size: 0.86rem;
  color: #595b61;
}

.schultz-palette-group {
  margin-top: 0.95rem;
}

.schultz-palette-group-title {
  margin: 0 0 0.65rem;
  color: #1d181a;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.schultz-swatch-grid {
  display: grid;
  gap: 0.55rem;
}

.schultz-swatch-grid-main {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.schultz-swatch-grid-accent {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.schultz-swatch-item {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  min-width: 0;
}

.schultz-swatch-chip {
  display: block;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(42, 44, 50, 0.22);
}

.schultz-swatch-item p {
  margin: 0.5rem 0 0;
  color: #1d181a;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.schultz-swatch-item code {
  display: block;
  margin-top: 0.18rem;
  color: #595B61;
  font-size: 0.72rem;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
}

.schultz-swatch-item-light .schultz-swatch-chip {
  border-color: rgba(42, 44, 50, 0.38);
}

.schultz-swatch-chip--light {
  box-shadow: inset 0 0 0 1px rgba(12, 13, 17, 0.08);
}

.schultz-swatch-item-accent {
  box-shadow: none;
}

.schultz-swatch-chip--translucent {
  border-color: rgba(42, 44, 50, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(12, 13, 17, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.85);
}

.schultz-palette-group-head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.schultz-palette-group-head .schultz-palette-group-title {
  margin: 0;
}

.schultz-palette-note {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #595B61;
}

.schultz-palette-group-accent {
  margin-top: 1.05rem;
  padding-top: 0.9rem;
  border-top: none;
}

.schultz-origin-section {
  border: none;
  background: transparent;
  padding: 0;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: center;
}

.schultz-origin-section::before {
  content: none;
}

.schultz-origin-map {
  grid-column: 1;
  margin: 0;
}

.schultz-origin-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  border: 1px solid rgba(42, 44, 50, 0.14);
  box-shadow: 0 10px 22px rgba(24, 20, 22, 0.08);
}

.schultz-origin-content {
  grid-column: 2;
  align-self: center;
}

.schultz-origin-title {
  margin-bottom: 0.45rem;
}

.schultz-origin-copy {
  grid-column: 2;
}

.schultz-origin-copy p:first-child {
  margin-top: 0;
}

.schultz-site-structure {
  margin-top: 0.95rem;
  border-top: none;
}

.schultz-about-layout {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(1rem, 2.2vw, 1.7rem);
  align-items: center;
}

.schultz-about-visual {
  margin: 0;
}

.schultz-about-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  border: 1px solid rgba(42, 44, 50, 0.14);
}

.schultz-site-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(42, 44, 50, 0.1);
  transition: background-color 180ms ease, transform 180ms ease;
  border-radius: 0;
}

.schultz-site-row:last-child {
  border-bottom: none;
}

.schultz-site-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.schultz-site-page,
.schultz-site-description {
  margin: 0;
}

.schultz-site-page {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1d181a;
  padding-left: 12px;
}

.schultz-site-description {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a4346;
  max-width: 62ch;
}

@media (max-width: 900px) {
  .schultz-page {
    margin-top: 1.6rem;
  }

  .schultz-hero {
    grid-template-columns: 1fr;
  }

  .schultz-hero-preview {
    min-height: clamp(210px, 46vw, 300px);
  }

  .schultz-site-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.72rem 0;
  }

  .schultz-about-layout {
    grid-template-columns: 1fr;
  }

  .schultz-swatch-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schultz-swatch-grid-accent {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schultz-origin-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .schultz-origin-title,
  .schultz-origin-map,
  .schultz-origin-content,
  .schultz-origin-copy {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .schultz-swatch-grid-main,
  .schultz-swatch-grid-accent {
    grid-template-columns: 1fr;
  }
}

/* Schultz page: full dark theme scoped only to this project */
body.page-schultz {
  background:
    radial-gradient(1100px 540px at 14% 0%, rgba(255, 62, 62, 0.07), transparent 62%),
    radial-gradient(900px 500px at 88% 100%, rgba(89, 91, 97, 0.14), transparent 64%),
    #0C0D11;
}

body.page-schultz .calm-lavender-bg {
  display: none !important;
}

/* Keep navbar exactly consistent with the rest of the portfolio */
body.page-schultz .site-header {
  border-bottom: 1px solid rgba(20, 16, 14, 0.06);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.page-schultz .brand-text {
  color: #121212;
}

body.page-schultz .nav-links a {
  color: #1e1a18;
}

body.page-schultz .nav-links a:hover {
  color: var(--pink);
}

body.page-schultz .menu-btn span {
  background: var(--ink);
}

body.page-schultz .schultz-page {
  margin-top: 1.2rem;
  margin-bottom: 5.8rem;
  position: relative;
  isolation: isolate;
}

body.page-schultz .schultz-hero {
  min-height: 80vh;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.8rem) 0;
}

body.page-schultz .schultz-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 2% 8%, rgba(225, 227, 231, 0.55) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 6% 33%, rgba(225, 227, 231, 0.45) 0 1px, transparent 1.8px),
    radial-gradient(circle at 9% 71%, rgba(152, 154, 158, 0.38) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 13% 18%, rgba(225, 227, 231, 0.52) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 16% 56%, rgba(225, 227, 231, 0.42) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 19% 86%, rgba(152, 154, 158, 0.32) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 24% 41%, rgba(225, 227, 231, 0.5) 0 1px, transparent 1.7px),
    radial-gradient(circle at 27% 12%, rgba(225, 227, 231, 0.46) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 31% 76%, rgba(152, 154, 158, 0.34) 0 0.9px, transparent 1.5px),
    radial-gradient(circle at 35% 29%, rgba(225, 227, 231, 0.56) 0 1.2px, transparent 2px),
    radial-gradient(circle at 38% 62%, rgba(225, 227, 231, 0.42) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 42% 5%, rgba(152, 154, 158, 0.28) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 46% 48%, rgba(225, 227, 231, 0.5) 0 1px, transparent 1.8px),
    radial-gradient(circle at 51% 82%, rgba(225, 227, 231, 0.38) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 55% 22%, rgba(152, 154, 158, 0.32) 0 0.9px, transparent 1.5px),
    radial-gradient(circle at 59% 66%, rgba(225, 227, 231, 0.54) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 63% 14%, rgba(225, 227, 231, 0.44) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 67% 38%, rgba(152, 154, 158, 0.3) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 71% 91%, rgba(225, 227, 231, 0.48) 0 1px, transparent 1.8px),
    radial-gradient(circle at 74% 55%, rgba(225, 227, 231, 0.41) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 78% 26%, rgba(152, 154, 158, 0.34) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 82% 69%, rgba(225, 227, 231, 0.53) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 85% 8%, rgba(225, 227, 231, 0.4) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 89% 44%, rgba(152, 154, 158, 0.3) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 92% 79%, rgba(225, 227, 231, 0.5) 0 1px, transparent 1.8px),
    radial-gradient(circle at 96% 18%, rgba(225, 227, 231, 0.42) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 98% 61%, rgba(255, 62, 62, 0.2) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 44% 94%, rgba(255, 62, 62, 0.14) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 12% 92%, rgba(225, 227, 231, 0.35) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 58% 2%, rgba(225, 227, 231, 0.34) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 4% 52%, rgba(225, 227, 231, 0.36) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 17% 3%, rgba(152, 154, 158, 0.28) 0 0.7px, transparent 1.3px),
    radial-gradient(circle at 29% 58%, rgba(225, 227, 231, 0.4) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 36% 11%, rgba(225, 227, 231, 0.33) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 52% 34%, rgba(152, 154, 158, 0.27) 0 0.7px, transparent 1.3px),
    radial-gradient(circle at 61% 88%, rgba(225, 227, 231, 0.38) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 76% 3%, rgba(225, 227, 231, 0.35) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 87% 53%, rgba(152, 154, 158, 0.26) 0 0.7px, transparent 1.2px),
    radial-gradient(circle at 93% 94%, rgba(225, 227, 231, 0.4) 0 0.9px, transparent 1.6px);
  background-repeat: no-repeat;
  opacity: 0.44;
  z-index: 0;
}

body.page-schultz .schultz-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(225, 227, 231, 0.28), rgba(225, 227, 231, 0.28)),
    linear-gradient(90deg, rgba(225, 227, 231, 0.28), rgba(225, 227, 231, 0.28)),
    linear-gradient(rgba(225, 227, 231, 0.24), rgba(225, 227, 231, 0.24)),
    linear-gradient(90deg, rgba(225, 227, 231, 0.24), rgba(225, 227, 231, 0.24)),
    linear-gradient(rgba(255, 62, 62, 0.2), rgba(255, 62, 62, 0.2)),
    linear-gradient(90deg, rgba(255, 62, 62, 0.2), rgba(255, 62, 62, 0.2)),
    linear-gradient(rgba(225, 227, 231, 0.22), rgba(225, 227, 231, 0.22)),
    linear-gradient(90deg, rgba(225, 227, 231, 0.22), rgba(225, 227, 231, 0.22)),
    linear-gradient(rgba(225, 227, 231, 0.22), rgba(225, 227, 231, 0.22)),
    linear-gradient(90deg, rgba(225, 227, 231, 0.22), rgba(225, 227, 231, 0.22)),
    radial-gradient(circle at 18% 27%, rgba(225, 227, 231, 0.24) 0 6px, transparent 14px),
    radial-gradient(circle at 63% 58%, rgba(225, 227, 231, 0.22) 0 5px, transparent 12px),
    radial-gradient(circle at 84% 41%, rgba(255, 62, 62, 0.18) 0 5px, transparent 11px),
    radial-gradient(circle at 41% 18%, rgba(225, 227, 231, 0.2) 0 5px, transparent 12px),
    radial-gradient(circle at 72% 82%, rgba(225, 227, 231, 0.2) 0 5px, transparent 12px);
  background-size:
    1px 12px,
    12px 1px,
    1px 10px,
    10px 1px,
    1px 9px,
    9px 1px,
    1px 11px,
    11px 1px,
    1px 10px,
    10px 1px,
    auto,
    auto,
    auto,
    auto,
    auto;
  background-position:
    18% 27%,
    18% 27%,
    63% 58%,
    63% 58%,
    84% 41%,
    84% 41%,
    41% 18%,
    41% 18%,
    72% 82%,
    72% 82%,
    18% 27%,
    63% 58%,
    84% 41%,
    41% 18%,
    72% 82%;
  background-repeat: no-repeat;
  opacity: 0.28;
  z-index: 0;
}

body.page-schultz .schultz-page > * {
  position: relative;
  z-index: 1;
}

body.page-schultz .schultz-hero-copy .info-title {
  color: #E1E3E7;
}

body.page-schultz .schultz-hero-copy .info-copy,
body.page-schultz .schultz-goal-copy {
  color: #989A9E;
}

body.page-schultz .schultz-hero-preview {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.page-schultz .schultz-preview-label {
  color: #989A9E;
}

body.page-schultz .schultz-preview-text {
  color: #E1E3E7;
}

body.page-schultz .schultz-sections {
  margin-top: clamp(5rem, 11vh, 7rem);
  gap: clamp(3.75rem, 6vw, 5rem);
}

body.page-schultz .schultz-sections .schultz-section-card + .schultz-section-card {
  margin-top: clamp(1.25rem, 2.6vw, 2rem);
}

body.page-schultz .schultz-section-card {
  background: transparent;
  border: none;
  padding: 0;
}

body.page-schultz .schultz-about-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(225, 227, 231, 0.12);
  border-radius: var(--radius-card);
  padding: clamp(1.05rem, 2.1vw, 1.5rem);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  transition: box-shadow 220ms ease;
}

body.page-schultz .schultz-design-card > .schultz-design-direction-title {
  margin-bottom: 0.85rem;
}

body.page-schultz .schultz-design-card > p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

body.page-schultz .schultz-design-card .schultz-design-module {
  margin-top: 1.7rem;
  gap: 1.9rem;
}

body.page-schultz .schultz-design-card .schultz-design-block {
  padding-top: 1.2rem;
}

body.page-schultz .schultz-design-card .schultz-palette-group {
  margin-top: 1.15rem;
}

body.page-schultz .schultz-design-card .schultz-palette-group-accent {
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: none;
}

body.page-schultz .schultz-design-card .schultz-design-palette {
  border-top: 1px solid #2A2C32;
  padding-top: 1.2rem;
}

body.page-schultz .schultz-section-card::before {
  content: none;
}

body.page-schultz .schultz-section-card h2,
body.page-schultz .schultz-design-direction-title,
body.page-schultz .schultz-design-block h3,
body.page-schultz .schultz-design-font-name,
body.page-schultz .schultz-site-page,
body.page-schultz .schultz-swatch-item p,
body.page-schultz .schultz-palette-group-title {
  color: #E1E3E7;
}

body.page-schultz .schultz-section-card p,
body.page-schultz .schultz-site-description,
body.page-schultz .schultz-design-specimen,
body.page-schultz .schultz-palette-note,
body.page-schultz .schultz-swatch-item code {
  color: #989A9E;
}

body.page-schultz .schultz-design-note {
  color: #595B61;
}

body.page-schultz .schultz-design-block,
body.page-schultz .schultz-palette-group-accent,
body.page-schultz .schultz-site-structure,
body.page-schultz .schultz-site-row {
  border-color: #2A2C32;
}

body.page-schultz .schultz-design-palette {
  border: none;
  background: transparent;
  padding: 0;
}

body.page-schultz .schultz-swatch-chip {
  border-color: rgba(225, 227, 231, 0.2);
}

body.page-schultz .schultz-swatch-chip--light {
  box-shadow: inset 0 0 0 1px rgba(12, 13, 17, 0.12);
}

body.page-schultz .schultz-swatch-chip--translucent {
  border-color: rgba(225, 227, 231, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(12, 13, 17, 0.22),
    0 0 0 1px rgba(12, 13, 17, 0.28);
}

body.page-schultz .schultz-origin-map img {
  border: 1px solid #2A2C32;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

body.page-schultz .schultz-closing-cta {
  margin-top: clamp(4.2rem, 8vw, 6.5rem);
  border-radius: var(--radius-card);
  border: 1px solid #2A2C32;
  background: rgba(16, 17, 21, 0.52);
  padding: clamp(2rem, 4.2vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.page-schultz .schultz-closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 110% at 88% 12%, rgba(255, 62, 62, 0.1), transparent 58%),
    radial-gradient(100% 130% at 4% 90%, rgba(89, 91, 97, 0.22), transparent 62%);
  pointer-events: none;
}

body.page-schultz .schultz-closing-cta > * {
  position: relative;
  z-index: 1;
}

body.page-schultz .schultz-closing-watermark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 48%, 520px);
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

body.page-schultz .schultz-closing-copy p {
  margin-top: 0.9rem;
  color: #989A9E;
  max-width: 58ch;
}

body.page-schultz .schultz-closing-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.page-schultz .schultz-closing-btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid #2A2C32;
  color: #E1E3E7;
  background: transparent;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

body.page-schultz .schultz-closing-btn:hover {
  border-color: rgba(255, 92, 92, 0.32);
  background: rgba(255, 75, 75, 0.12);
  color: #ffffff;
}

body.page-schultz .schultz-closing-btn-primary {
  background: #0C0D11;
  color: #E1E3E7;
  border-color: #E1E3E7;
}

body.page-schultz .schultz-closing-btn-primary:hover {
  background: #ffffff;
  color: #0C0D11;
  border-color: #0C0D11;
}

@media (max-width: 900px) {
  body.page-schultz .schultz-hero {
    min-height: auto;
    padding-top: 1rem;
  }

  body.page-schultz .schultz-closing-cta {
    grid-template-columns: 1fr;
  }

  body.page-schultz .schultz-closing-actions {
    justify-content: flex-start;
  }

  body.page-schultz .schultz-closing-watermark {
    right: -14%;
    width: min(72%, 380px);
    opacity: 0.18;
  }
}

@media (max-width: 560px) {
  body.page-schultz .schultz-closing-watermark {
    display: none;
  }
}

.truffle-case-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.truffle-case-page {
  width: min(1080px, 92vw);
  margin: 2.8rem auto 5rem;
  position: relative;
  z-index: 1;
}

.truffle-png-page {
  width: min(1440px, 100%);
  margin: 1.25rem auto 0;
  padding: 0;
}

.truffle-png-stack {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.truffle-png-frame {
  width: 100%;
  height: auto;
  display: block;
}

.trf-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.truffle-prototype-page {
  background: #f5f5f5;
}

.truffle-prototype-page .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.truffle-brand-story {
  background:
    radial-gradient(1200px 480px at 12% 0%, rgba(105, 211, 179, 0.1), transparent 60%),
    radial-gradient(900px 420px at 88% 100%, rgba(64, 26, 2, 0.08), transparent 62%),
    #f7f6f2;
  padding: 112px 24px 76px;
}

.truffle-brand-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.8rem, 2.8vw, 2.8rem);
}

.truffle-brand-header {
  text-align: left;
  margin-bottom: 0.45rem;
}

.truffle-brand-eyebrow {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(46, 46, 46, 0.65);
}

.truffle-brand-header h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #401a02;
}

.truffle-brand-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: center;
  margin-bottom: clamp(1.8rem, 3.4vw, 2.8rem);
}

.truffle-brand-hero-copy {
  text-align: left;
}

.truffle-brand-hero-copy h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #2e2e2e;
}

.truffle-brand-hero-copy h1 span {
  color: #69d3b3;
}

.truffle-brand-hero-subheading {
  margin-top: 1rem !important;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem) !important;
  line-height: 1.45 !important;
  color: #3a3a3a !important;
}

.truffle-brand-hero-pill {
  display: inline-flex;
  margin-top: 1rem !important;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 46, 46, 0.14);
  background: rgba(105, 211, 179, 0.24);
  color: #2e2e2e !important;
  font-weight: 600;
}

.truffle-brand-hero-collage {
  display: grid;
  grid-template-columns: 0.92fr 0.92fr 1.45fr;
  grid-template-areas:
    "top-left top-left top-right"
    "bottom-left bottom-right top-right";
  gap: 0.78rem;
  align-items: start;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.truffle-brand-hero-image {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.truffle-brand-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.truffle-brand-hero-image-1 {
  grid-area: bottom-left;
  height: clamp(150px, 16vw, 190px);
}

.truffle-brand-hero-image-2 {
  grid-area: top-left;
  height: clamp(180px, 20vw, 235px);
}

.truffle-brand-hero-image-3 {
  grid-area: top-right;
  height: clamp(342px, 37vw, 438px);
}

.truffle-brand-hero-image-4 {
  grid-area: bottom-right;
  height: clamp(150px, 16vw, 190px);
}

@media (max-width: 1024px) and (min-width: 761px) {
  .truffle-brand-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.4rem;
  }

  .truffle-brand-hero-collage {
    width: min(100%, 520px);
    max-width: 520px;
    margin: 40px auto 0;
  }
}

.truffle-brand-card {
  padding: clamp(1.05rem, 2.2vw, 1.7rem);
  border-radius: var(--radius-card);
  border: 1px solid rgba(64, 26, 2, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 34px rgba(64, 26, 2, 0.06);
}

.truffle-brand-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  color: #401a02;
}

.truffle-brand-card h3,
.truffle-brand-card h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
}

.truffle-brand-card h3 {
  font-size: 1.02rem;
}

.truffle-brand-card h4 {
  font-size: 0.95rem;
}

.truffle-brand-card p {
  margin: 0.65rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2e2e2e;
}

.truffle-brand-subtitle {
  color: #5a4b42;
}

.truffle-brand-closing {
  font-weight: 600;
  color: #401a02;
}

.truffle-brand-card:has(.truffle-why-story-stack) {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(2rem, 2.5vw, 2.35rem);
  border-radius: var(--radius-card);
  background-image: url("assets/tarjeta_patron.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(105, 211, 179, 0.22);
}

.truffle-brand-card:has(.truffle-why-story-stack)::before {
  content: none;
}

.truffle-brand-card:has(.truffle-why-story-stack) > * {
  position: relative;
  z-index: 1;
}

.truffle-brand-card:has(.truffle-why-story-stack) h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: #2e2e2e;
}

.truffle-brand-card:has(.truffle-why-story-stack) .truffle-brand-subtitle {
  max-width: 72ch;
  font-size: 0.98rem;
  line-height: 1.5;
}

.truffle-why-story-stack {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.truffle-why-story-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 450px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(105, 211, 179, 0.26);
  box-shadow: 0 12px 28px rgba(64, 26, 2, 0.04);
}

.truffle-why-story-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 0;
  width: 100%;
}

.truffle-why-story-copy {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 22px;
  padding-inline: 2px;
}

.truffle-why-story-eyebrow {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
  padding: 0.62rem 1rem;
  font-size: 0.98rem !important;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.96) !important;
  border-radius: 999px;
  background: rgba(32, 28, 26, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.truffle-why-story-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #69d3b3;
}

.truffle-why-story-copy p {
  margin-top: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2e2e2e;
  max-width: 38ch;
  overflow-wrap: normal;
  word-break: normal;
}

.truffle-why-story-copy p + p {
  margin-top: 0.45rem;
}

.truffle-why-story-visual {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.truffle-why-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
}

.truffle-why-story-card-mascot .truffle-why-story-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(105, 211, 179, 0.2), rgba(105, 211, 179, 0.1));
}

.truffle-why-mascot-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: rgba(105, 211, 179, 0.18);
}

.truffle-why-story-card-mascot .truffle-why-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.truffle-why-story-media-wrap {
  width: 100%;
  position: relative;
}

.truffle-why-highlight {
  margin: 28px 0 0 !important;
  text-align: center;
  position: relative;
  z-index: 1;
}

.truffle-why-highlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(105, 211, 179, 0.45);
  background: rgba(105, 211, 179, 0.18);
  color: #2e2e2e;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.truffle-identity-world {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-container);
  border: 1px solid rgba(105, 211, 179, 0.22);
  background: rgba(105, 211, 179, 0.04);
  padding: clamp(1.45rem, 2.5vw, 2.2rem);
}

.truffle-identity-world::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/patternbackground.png");
  background-repeat: repeat;
  background-size: 140px auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.truffle-identity-world > * {
  position: relative;
  z-index: 1;
}

.truffle-identity-label,
.truffle-identity-caption {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e2e2e;
  font-weight: 700;
}

.truffle-identity-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: center;
}

.truffle-identity-copy h2 {
  margin: 0.35rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  color: #2e2e2e;
  letter-spacing: -0.02em;
}

.truffle-identity-copy p {
  margin: 0.85rem 0 0;
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 46ch;
  color: #2e2e2e;
}

.truffle-identity-hero-logo {
  margin: 0;
  position: relative;
  min-height: clamp(220px, 28vw, 320px);
  display: grid;
  place-items: center;
}

.truffle-identity-blob {
  position: absolute;
  width: min(100%, 420px);
  height: clamp(180px, 20vw, 260px);
  border-radius: 52% 48% 46% 54% / 44% 56% 48% 52%;
  background: rgba(105, 211, 179, 0.34);
}

.truffle-identity-hero-logo img {
  position: relative;
  width: min(100%, 360px);
  height: auto;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 18px 32px rgba(46, 46, 46, 0.1));
}

.truffle-identity-top-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.truffle-identity-logo-variants {
  border: 1px solid rgba(65, 26, 2, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.truffle-identity-variants-row {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.truffle-identity-variants-row figure {
  margin: 0;
  border-radius: var(--radius-card);
  border: 1px solid rgba(65, 26, 2, 0.09);
  background: rgba(247, 246, 242, 0.86);
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 0.55rem;
}

.truffle-identity-variants-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.truffle-identity-note {
  border-radius: var(--radius-card);
  border: 1px solid rgba(105, 211, 179, 0.3);
  background: rgba(105, 211, 179, 0.16);
  box-shadow: 0 10px 24px rgba(46, 46, 46, 0.04);
  padding: 1rem;
  align-self: center;
}

.truffle-identity-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #2e2e2e;
}

.truffle-identity-mascot {
  margin-top: 1.15rem;
}

.truffle-identity-mascot-grid {
  margin-top: 0.68rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.truffle-identity-mascot-grid article {
  border-radius: var(--radius-card);
  border: 1px solid rgba(105, 211, 179, 0.25);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.78rem;
}

.truffle-identity-mascot-grid h3 {
  margin: 0;
  font-size: 0.93rem;
  color: #2e2e2e;
}

.truffle-identity-mascot-grid p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #2e2e2e;
}

.truffle-identity-type-color {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.truffle-identity-type-card,
.truffle-identity-color-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(65, 26, 2, 0.11);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
}

.truffle-identity-type-card > p,
.truffle-identity-color-card > p {
  margin: 0.58rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2e2e2e;
}

.truffle-identity-type-pairs {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.62rem;
}

.truffle-identity-type-pairs h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #2e2e2e;
}

.truffle-identity-type-pairs p {
  margin: 0.24rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.truffle-identity-type-words {
  margin-top: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.truffle-identity-type-words span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: -0.02em;
  color: #2e2e2e;
}

.truffle-identity-swatches {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.6rem;
}

.truffle-identity-swatches span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #2e2e2e;
}

.truffle-identity-swatches i {
  width: 13px;
  height: 13px;
  border-radius: 99px;
  border: 1px solid rgba(46, 46, 46, 0.22);
}

.truffle-identity-pattern {
  margin: 0.85rem 0 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(65, 26, 2, 0.1);
  background: #f7f6f2;
}

.truffle-identity-pattern img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}

.truffle-identity-graphic {
  margin-top: 1.15rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(105, 211, 179, 0.24);
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem;
}

.truffle-identity-graphic-head p {
  margin: 0.58rem 0 0;
  max-width: 62ch;
  font-size: 0.94rem;
  line-height: 1.55;
}

.truffle-identity-product-stage {
  margin-top: 0.9rem;
  position: relative;
  min-height: 430px;
  border-radius: var(--radius-card);
  background: rgba(247, 246, 242, 0.9);
  overflow: hidden;
}

.truffle-identity-stage-accent {
  position: absolute;
  width: 360px;
  height: 220px;
  border-radius: 50%;
  background: rgba(105, 211, 179, 0.2);
  right: 70px;
  top: 90px;
}

.truffle-identity-product {
  position: absolute;
  margin: 0;
  filter: drop-shadow(0 12px 24px rgba(46, 46, 46, 0.12));
}

.truffle-identity-product img {
  width: 100%;
  height: auto;
  display: block;
}

.truffle-identity-product-hero { width: 330px; left: 22px; bottom: 12px; z-index: 3; }
.truffle-identity-product-teddy { width: 126px; left: 300px; bottom: 36px; z-index: 4; }
.truffle-identity-product-passdog { width: 148px; left: 370px; top: 38px; z-index: 3; }
.truffle-identity-product-passcat { width: 148px; left: 524px; top: 40px; z-index: 3; }
.truffle-identity-product-id { width: 118px; left: 700px; top: 170px; z-index: 4; }
.truffle-identity-product-arness { width: 144px; left: 420px; bottom: 38px; z-index: 3; }
.truffle-identity-product-necklace { width: 140px; left: 570px; bottom: 24px; z-index: 3; }
.truffle-identity-product-ceramic { width: 132px; right: 186px; bottom: 56px; z-index: 3; }
.truffle-identity-product-drink { width: 122px; right: 72px; bottom: 64px; z-index: 3; }
.truffle-identity-product-totebrown { width: 158px; right: 172px; top: 26px; z-index: 2; }
.truffle-identity-product-totegreen { width: 146px; right: 24px; top: 24px; z-index: 2; }


.truffle-identity-closing {
  margin: 1rem auto 0 !important;
  max-width: 740px;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(105, 211, 179, 0.35);
  background: rgba(105, 211, 179, 0.16);
  color: #2e2e2e;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .truffle-why-story-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truffle-why-story-stack .truffle-why-story-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .truffle-why-story-copy p:last-child {
    max-width: 42ch;
  }

  .truffle-identity-hero {
    grid-template-columns: 1fr;
  }

  .truffle-identity-top-grid,
  .truffle-identity-type-color {
    grid-template-columns: 1fr;
  }

  .truffle-identity-mascot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truffle-identity-product-stage {
    min-height: 520px;
  }

  .truffle-identity-product-hero { width: 300px; left: 18px; }
  .truffle-identity-product-teddy { width: 112px; left: 258px; }
  .truffle-identity-product-passdog { width: 128px; left: 350px; }
  .truffle-identity-product-passcat { width: 128px; left: 488px; }
  .truffle-identity-product-id { width: 102px; left: 620px; }
  .truffle-identity-product-arness { width: 130px; left: 380px; }
  .truffle-identity-product-necklace { width: 122px; left: 518px; }
}

@media (max-width: 920px) {
  .truffle-identity-mascot-grid {
    grid-template-columns: 1fr;
  }

  .truffle-identity-swatches {
    grid-template-columns: 1fr;
  }

  .truffle-identity-product-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.7rem;
  }

  .truffle-identity-stage-accent {
    display: none;
  }

  .truffle-identity-product {
    position: static;
    width: auto !important;
  }

  .truffle-identity-product img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-card);
    padding: 0.25rem;
  }
}

@media (max-width: 920px) {
  .truffle-why-story-stack {
    grid-template-columns: 1fr;
  }

  .truffle-why-story-stack .truffle-why-story-card:nth-child(3) {
    grid-column: auto;
  }
}

.truffle-brand-grid {
  display: grid;
  gap: 0.78rem;
  margin-top: 1rem;
}

.truffle-brand-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.truffle-brand-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.truffle-brand-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.truffle-brand-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.truffle-brand-mini-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(64, 26, 2, 0.14);
  background: rgba(247, 246, 242, 0.92);
  padding: 0.82rem 0.88rem 0.86rem;
}

.truffle-brand-mini-card p {
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

.truffle-brand-placeholder {
  margin: 0;
  min-height: 190px;
  border-radius: var(--radius-card);
  border: 1px dashed rgba(64, 26, 2, 0.32);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 246, 242, 0.92));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.8rem;
}

.truffle-brand-placeholder figcaption {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b4f48;
}

.truffle-brand-color-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(64, 26, 2, 0.14);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.75rem;
}

.truffle-brand-swatch {
  width: 100%;
  height: 76px;
  border-radius: 10px;
  border: 1px solid rgba(46, 46, 46, 0.14);
}

.truffle-brand-hex {
  margin-top: 0.56rem;
  font-size: 0.82rem !important;
  letter-spacing: 0.07em;
  color: #6d5e53 !important;
}

.truffle-brand-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.truffle-brand-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(64, 26, 2, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #2e2e2e;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.truffle-brand-final {
  margin-top: 1rem !important;
  font-size: 1.06rem !important;
  font-weight: 600;
  color: #401a02 !important;
}

.truffle-prototype-showcase {
  background: #f5f5f5;
  padding: 96px 24px;
  overflow: hidden;
  text-align: center;
}

.section-prototype {
  padding-top: 120px;
}

.prototype-intro {
  max-width: 720px;
  margin: 0 auto 56px;
}

.prototype-intro .eyebrow {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.prototype-intro h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
}

.prototype-intro > p:last-child {
  margin: 14px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  color: #6b6b6b;
}

.macbook {
  max-width: 1100px;
  margin: 0 auto;
}

.macbook-frame {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  background: #1e1e1e;
  border-radius: var(--radius-container);
  padding: 14px;
  filter: drop-shadow(0 38px 75px rgba(0, 0, 0, 0.24));
}

.camera-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 14px;
  background: #000;
  border-radius: 0 0 10px 10px;
  z-index: 3;
}

.macbook-screen-slot {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}

.macbook-screen-slot iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}

.macbook-base {
  width: 70%;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, #eaeaea, #cfcfcf);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.prototype-button {
  display: inline-flex;
  margin-top: 34px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  transition: all 180ms ease;
}

.prototype-button:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

.moveit-dark-page {
  background:
    radial-gradient(circle, rgba(105, 211, 179, 0.16) 0.8px, transparent 0.9px),
    radial-gradient(1200px 460px at 12% 0%, rgba(186, 255, 0, 0.07), transparent 56%),
    radial-gradient(900px 380px at 92% 100%, rgba(186, 255, 0, 0.06), transparent 58%),
    #252525;
  background-size: 14px 14px, auto, auto, auto;
  background-position: 0 0, center, center, center;
  background-attachment: fixed, scroll, scroll, scroll;
}

.moveit-dark-page .layer-a {
  opacity: 0.24;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(37, 37, 37, 0.92), rgba(37, 37, 37, 0.88)),
    radial-gradient(145% 92% at 10% 20%, rgba(177, 240, 40, 0.13) 0 20%, transparent 24%),
    radial-gradient(155% 92% at 72% 12%, rgba(110, 199, 70, 0.11) 0 18%, transparent 22%),
    radial-gradient(145% 92% at 30% 76%, rgba(177, 240, 40, 0.1) 0 20%, transparent 24%);
  background-size: cover, 140% 140%, 150% 150%, 140% 140%;
  background-position: center, 0% 0%, 100% 0%, 0% 100%;
}

.moveit-dark-page .layer-b {
  opacity: 0.2;
  background-image:
    radial-gradient(180% 120% at 22% 30%, rgba(154, 230, 58, 0.11) 0 16%, transparent 22%),
    radial-gradient(180% 120% at 84% 72%, rgba(104, 181, 65, 0.1) 0 16%, transparent 22%);
  background-size: 165% 165%, 170% 170%;
  background-position: 0% 0%, 100% 100%;
}

.moveit-dark-page .lavender-glow {
  opacity: 0.18;
  background:
    radial-gradient(42% 34% at 28% 34%, rgba(177, 240, 40, 0.2), transparent 72%),
    radial-gradient(44% 36% at 74% 66%, rgba(109, 188, 66, 0.17), transparent 74%);
}

.moveit-showcase {
  width: 100%;
  background: transparent;
  padding: 112px 24px 120px;
}

.moveit-showcase-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.moveit-showcase-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #f4f4f2;
}

.moveit-showcase-intro {
  margin: 18px auto 42px;
  max-width: 700px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #c7c7c5;
}

.moveit-overview-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 0.5rem;
}

.moveit-mockups {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 8px;
}

.moveit-mockups img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 46px rgba(0, 0, 0, 0.16));
}

.moveit-mockups img:first-child {
  max-width: 270px;
}

.moveit-mockups img:last-child {
  max-width: 170px;
}

.moveit-details-grid {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.moveit-detail-card {
  border: 1px solid #4a4a48;
  border-radius: var(--radius-card);
  background: rgba(58, 58, 56, 0.88);
  padding: 0.85rem 0.95rem 0.9rem;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.moveit-detail-card:hover,
.moveit-detail-card:focus-within {
  background: #c7ff18;
  border-color: #c7ff18;
}

.moveit-detail-card:hover .moveit-detail-label,
.moveit-detail-card:hover .moveit-detail-value,
.moveit-detail-card:focus-within .moveit-detail-label,
.moveit-detail-card:focus-within .moveit-detail-value {
  color: #121212;
}

.moveit-detail-label {
  margin: 0;
  color: #9f9f9c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.moveit-detail-value {
  margin: 0.42rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.02rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  color: #ecece9;
}

.moveit-preview {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 3.5vw, 3.2rem);
  align-items: start;
  text-align: left;
}

.moveit-preview-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  color: #f1f1ef;
}

.moveit-preview-copy p {
  margin: 0.9rem 0 0;
  color: #c7c7c5;
  max-width: 70ch;
  line-height: 1.6;
}

.moveit-preview-cta {
  display: flex;
  justify-content: flex-end;
}

.moveit-dark-page .prototype-button {
  margin-top: 0;
  border-color: #d3d3cf;
  color: #efefeb;
  background: transparent;
}

.moveit-dark-page .prototype-button:hover {
  background: #c7ff18;
  border-color: #c7ff18;
  color: #121212;
}

.trf-hero {
  width: 1440px;
  height: 950.11px;
  margin: 0 auto;
  background: #69d3b3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 124px 120px;
  gap: 10px;
  position: relative;
  overflow: hidden;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.trf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(140px 72px at 12% 16%, rgba(94, 197, 167, 0.26) 0 40%, transparent 45%),
    radial-gradient(126px 66px at 46% 7%, rgba(94, 197, 167, 0.24) 0 42%, transparent 47%),
    radial-gradient(110px 60px at 32% 61%, rgba(94, 197, 167, 0.24) 0 43%, transparent 48%),
    radial-gradient(132px 72px at 83% 20%, rgba(94, 197, 167, 0.22) 0 40%, transparent 45%),
    radial-gradient(126px 68px at 89% 90%, rgba(94, 197, 167, 0.22) 0 41%, transparent 46%);
  opacity: 0.88;
  pointer-events: none;
}

.trf-hero-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  height: 702.11px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 0;
  flex: none;
  order: 0;
  flex-grow: 1;
}

.trf-copy-col {
  position: relative;
  width: 637.81px;
  height: 612.52px;
  margin: 0 -163px 0 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.trf-mobile-titlehero,
.trf-mobile-meta,
.trf-mobile-cards {
  display: none;
}

.trf-meta-card-clone {
  display: none;
}

.trf-logo-title {
  position: absolute;
  width: 384.15px;
  height: 85.35px;
  left: 0;
  top: 0;
}

.trf-logo-shadow {
  position: absolute;
  width: 77.44px;
  height: 9.91px;
  left: 0;
  top: 75.44px;
}

.trf-logo-mark {
  position: absolute;
  width: 77.44px;
  height: 77.84px;
  left: 0;
  top: 0;
  object-fit: cover;
  filter: drop-shadow(0 2px 19.8px rgba(230, 229, 227, 0.1));
}

.trf-wordmark-back {
  position: absolute;
  width: 281.16px;
  height: 67.52px;
  left: 102.99px;
  top: 12.87px;
  object-fit: contain;
}

.trf-wordmark-front {
  position: absolute;
  width: 277.45px;
  height: 62.28px;
  left: 102.58px;
  top: 11.29px;
  object-fit: contain;
}

.trf-tagline {
  margin: 0;
  position: absolute;
  left: 0;
  top: 47.09px;
  width: 480px;
  height: 119px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 119px;
  font-weight: 800;
  color: #2e2e2e;
  letter-spacing: 0;
  white-space: nowrap;
}

.trf-lead {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 247.54px;
  height: 120px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 40px;
  color: #1a1a1a;
  letter-spacing: 0;
}

.trf-lead strong {
  font-weight: 500;
}

.trf-meta-card {
  position: absolute;
  left: 0;
  top: 516.52px;
  width: 588px;
  height: 96px;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trf-meta-item {
  width: 140px;
  text-align: center;
  display: grid;
  align-content: center;
}

.trf-meta-item p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 40px;
  color: #8a8a8a;
}

.trf-meta-item h3 {
  margin: -8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0;
}

.trf-meta-sep {
  width: 1px;
  height: 49px;
  background: #c6c6c6;
}

.trf-visual-col {
  position: relative;
  width: 734.47px;
  height: 702.11px;
  margin: 0 -163px 0 0;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.trf-phones {
  position: absolute;
  left: 0;
  top: 27.16px;
  width: 734.47px;
  height: 609.96px;
  object-fit: cover;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.25));
}

.trf-float {
  position: absolute;
  width: 162px;
  height: 73px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}

.trf-float img {
  width: 24px;
  height: 24px;
}

.trf-float p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #8a8a8a;
  white-space: nowrap;
}

.trf-float h4 {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #1a1a1a;
}

.trf-float-routines {
  left: 73.97px;
  top: 124.91px;
}

.trf-float-health {
  left: 354.47px;
  top: 0;
  width: 185px;
}

.trf-float-health h4 {
  font-size: 12px;
}

.trf-float-shared {
  left: 235.97px;
  top: 586.81px;
}

.trf-float-reminders {
  left: 437.97px;
  top: 629.11px;
}

.trf-arrow {
  position: absolute;
  pointer-events: none;
}

.trf-arrow-a {
  left: 81.43px;
  top: 209.36px;
  width: 35.4px;
}

.trf-arrow-b {
  left: 544.88px;
  top: 20.78px;
  width: 60.01px;
}

.trf-arrow-c {
  left: 385.47px;
  top: 483.79px;
  width: 34.26px;
}

.trf-arrow-d {
  left: 614.11px;
  top: 626.85px;
  width: 46.26px;
}

.truffle-hero {
  border-radius: var(--radius-container);
  padding: clamp(1.1rem, 2vw, 1.8rem);
  background: #69d3b3;
}

.truffle-hero-top h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  margin: 1rem 0 0;
}

.truffle-hero-copy {
  margin: 1rem 0 0;
  max-width: 52ch;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 600;
  line-height: 1.55;
}

.truffle-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.42);
}

.truffle-logo-lockup img {
  height: 1.2rem;
  width: auto;
}

.truffle-logo-lockup p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.truffle-hero-visual {
  margin-top: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: var(--radius-card);
  padding: clamp(1.2rem, 2.6vw, 2.2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  position: relative;
  overflow: hidden;
}

.truffle-hero-visual img {
  width: min(760px, 100%);
  display: block;
  margin: 0 auto;
}

.truffle-float-card {
  position: absolute;
  width: min(220px, 40vw);
  border-radius: var(--radius-card);
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.truffle-float-card h3 {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Manrope", sans-serif;
}

.truffle-float-card p {
  margin: 0.42rem 0 0;
  font-size: 0.84rem;
  color: #535353;
  line-height: 1.35;
}

.card-a {
  left: 2%;
  top: 26%;
}

.card-b {
  right: 3%;
  top: 16%;
}

.card-c {
  right: 8%;
  bottom: 10%;
}

.truffle-meta-grid {
  margin-top: 1.3rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.68);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.truffle-meta-col {
  text-align: center;
  padding: 1.2rem 0.7rem;
}

.truffle-meta-col + .truffle-meta-col {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.truffle-meta-col p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #777;
}

.truffle-meta-col h4 {
  margin: 0.45rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.case-section {
  margin-top: clamp(2rem, 4vw, 3.1rem);
}

.case-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a7471;
}

.case-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.case-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.case-section p {
  margin: 0.75rem 0 0;
  color: #3f3a39;
  line-height: 1.6;
  max-width: 72ch;
}

.case-two-col {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.case-two-col > div {
  border: 1px solid #e4dfdc;
  border-radius: var(--radius-card);
  background: #fff;
  padding: 1rem;
}

.case-two-col ul,
.hmw-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: #3f3a39;
  line-height: 1.6;
}

.insight-cards {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.insight-cards article {
  border: 1px solid #e4dfdc;
  border-radius: var(--radius-card);
  background: #fff;
  padding: 1rem;
}

.placeholder-block {
  min-height: 220px;
  border: 1px dashed #bdb4b0;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.placeholder-block span {
  color: #655f5d;
  font-size: 0.92rem;
  font-weight: 700;
}

.placeholder-block.large {
  min-height: 300px;
}

.case-carousel {
  margin-top: 0.8rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 40%);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
}

.carousel-item {
  margin: 0;
  border-radius: var(--radius-card);
  border: 1px solid #e4dfdc;
  background: #fff;
  min-height: 300px;
  overflow: hidden;
  scroll-snap-align: start;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-cta {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  padding-top: 1.2rem;
  border-top: 1px solid #ddd7d4;
  display: flex;
  justify-content: center;
}

.case-cta .btn {
  min-width: 240px;
}

.mini-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #1a1a1a;
}

.persona-figma {
  display: grid;
  grid-template-columns: 0.82fr 1.48fr;
  gap: 0.75rem;
}

.persona-left,
.persona-right {
  border-radius: var(--radius-card);
  background: #f2f2f2;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.persona-main-photo {
  width: 100%;
  border-radius: var(--radius-card);
  margin-top: 0.65rem;
}

.persona-info-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.4rem;
}

.persona-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.persona-info-card .label {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.72rem;
}

.persona-info-card p {
  margin: 0.18rem 0 0;
  font-size: 0.83rem;
}

.persona-foot-copy {
  margin-top: 0.7rem;
  font-size: 0.95rem;
}

.persona-quote {
  background: #dfede4;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
}

.persona-summary {
  background: #fff;
  border-radius: var(--radius-card);
  margin-top: 0.7rem;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.persona-needs-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.persona-need-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 0.8rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.persona-need-card h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.persona-need-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ia-flow-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 1rem;
  align-items: start;
}

.ia-flow-title {
  padding-top: 0.4rem;
}

.ia-flow-title h3 {
  margin: 0.4rem 0 0;
  font-size: 2.1rem;
  line-height: 1.06;
}

.ia-flow-steps {
  display: grid;
  gap: 1rem;
}

.ia-step-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 1.3rem;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 1rem;
  align-items: center;
}

.ia-step-card img {
  width: 100%;
  border-radius: var(--radius-card);
}

.wire-card {
  min-height: auto;
  padding: 0.85rem;
}

.wire-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
}

.wire-copy {
  margin-top: 0.7rem;
}

.wire-copy h4 {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
}

.final-ui-figma {
  background: #e9f0eb;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 0.52fr 1fr;
}

.final-ui-copy {
  padding: 1.4rem;
}

.final-ui-copy h3 {
  margin: 0.45rem 0 0;
  font-size: 2rem;
  line-height: 1.14;
}

.final-ui-copy p {
  margin-top: 0.65rem;
}

.final-ui-track {
  margin: 0;
  border-left: 2px solid #959794;
  padding: 1rem;
  background: #e6efe9;
  grid-auto-columns: 210px;
}

.final-ui-track img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 2px solid #202020;
  background: #fff;
}

.darkmode-figma {
  background: #4a4a4a;
  border-radius: var(--radius-card);
  color: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.25rem;
}

.darkmode-copy h3 {
  margin: 0.45rem 0 0;
  font-size: 2rem;
  line-height: 1.15;
}

.darkmode-copy .mini-kicker {
  color: #f5f5f5;
}

.darkmode-preview {
  background: #3d3d3d;
  border-radius: var(--radius-card);
  padding: 1rem;
  text-align: center;
}

.darkmode-preview p {
  margin: 0;
  color: #f5f5f5;
  font-size: 1.15rem;
}

.darkmode-preview img {
  width: min(242px, 100%);
  margin-top: 0.6rem;
}

@keyframes caseReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-section.is-visible,
.truffle-hero.is-visible,
.case-cta.is-visible {
  animation: caseReveal 620ms cubic-bezier(0.2, 0, 0, 1) both;
}

@media (max-width: 940px) {
  .about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 1rem;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: rgba(250, 247, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 0.65rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
  }

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

  .hero {
    padding: 2rem 1.3rem;
  }

  .single-project {
    margin-top: 1.6rem;
    padding-top: 1.2rem;
  }

  .featured-transition {
    margin-top: 0;
    margin-bottom: 0.9rem;
    padding: 0.75rem 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-details-two-col {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .project-meta-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meta-item:nth-child(3) {
    border-left: none;
  }

  .brand-icon {
    height: 1.75rem;
  }

  .brand-text {
    font-size: 1.75rem;
  }

  main {
    margin-top: 2.2rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .truffle-meta-grid,
  .insight-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-carousel {
    grid-auto-columns: minmax(260px, 72%);
  }

  .truffle-float-card {
    display: none;
  }

  .persona-figma,
  .final-ui-figma,
  .ia-flow-grid,
  .darkmode-figma {
    grid-template-columns: 1fr;
  }

  .persona-needs-grid {
    grid-template-columns: 1fr;
  }

  .ia-flow-title h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 620px) {
  .case-two-col,
  .truffle-meta-grid,
  .insight-cards {
    grid-template-columns: 1fr;
  }

  .truffle-meta-col + .truffle-meta-col {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 1023px) {
  .trf-hero {
    width: 100%;
    height: auto;
    padding: 40px 24px 36px;
    overflow: visible;
  }

  .trf-hero-inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    gap: 18px;
  }

  .trf-copy-col,
  .trf-visual-col {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .trf-logo-title,
  .trf-tagline,
  .trf-meta-card {
    display: none;
  }

  .trf-mobile-titlehero {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto 10px;
  }

  .trf-lead {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    margin: 0;
    font-size: clamp(22px, 3.2vw, 32px);
    line-height: 1.34;
    max-width: 980px;
  }

  .trf-visual-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .trf-phones {
    position: static;
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    margin: 0;
  }

  .trf-meta-card-clone {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 760px;
    position: static;
    height: auto;
    min-height: 0;
    padding: 12px;
    overflow: hidden;
  }

  .trf-meta-card-clone .trf-meta-sep {
    display: none;
  }

  .trf-meta-card-clone .trf-meta-item {
    width: auto;
    min-height: 96px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    display: grid;
    align-content: center;
  }

  .trf-meta-card-clone .trf-meta-item p {
    font-size: 12px;
    line-height: 1.2;
  }

  .trf-meta-card-clone .trf-meta-item h3 {
    margin-top: 4px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
  }

  .trf-float {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: 96px;
    padding: 12px 16px;
    display: flex;
  }

  .trf-float h4 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.12;
    margin-top: 6px;
  }

  .trf-float p {
    font-size: 12px;
    line-height: 1;
  }

  .trf-arrow,
  .trf-mobile-meta,
  .trf-mobile-cards {
    display: none;
  }
}

@media (max-width: 767px) {
  .trf-hero { padding: 28px 16px; }

  .trf-mobile-titlehero {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    margin: 0 auto 22px;
  }

  .trf-lead {
    font-size: clamp(16px, 4.8vw, 22px);
    line-height: 1.32;
  }

  .trf-meta-card-clone {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .trf-meta-card-clone .trf-meta-item {
    min-height: 78px;
  }

  .trf-meta-card-clone .trf-meta-item h3 {
    font-size: clamp(22px, 7.5vw, 34px);
  }

  .trf-visual-col {
    gap: 12px;
  }

  .trf-phones {
    max-width: 420px;
  }

  .trf-float {
    max-width: 100%;
  }

  .trf-float h4 {
    font-size: clamp(16px, 7vw, 28px);
  }
}

.trf-hero-v2 {
  width: 100%;
  margin: 0;
  background: #69d3b3;
}

.trf-hero-desktop-tablet {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}

.trf-hero-desktop-tablet img {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: block;
  object-fit: contain;
}

.trf-hero-mobile {
  display: none;
}

@media (max-width: 767px) {
  .truffle-prototype-showcase {
    padding: 64px 16px;
  }

  .moveit-showcase {
    padding: 84px 16px 92px;
  }

  .moveit-showcase-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .moveit-details-grid {
    margin-top: 1.35rem;
  }

  .moveit-preview {
    margin-top: 2.4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .moveit-preview-cta {
    justify-content: flex-start;
  }

  .moveit-overview-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .moveit-mockups {
    justify-content: center;
    gap: 8px;
    padding-left: 0;
  }

  .moveit-mockups img:first-child {
    max-width: 220px;
  }

  .moveit-mockups img:last-child {
    max-width: 145px;
  }

  .prototype-intro {
    margin-bottom: 36px;
  }

  .macbook {
    width: 100%;
  }

  .macbook-frame {
    border-radius: var(--radius-container);
    padding: 8px;
  }

  .camera-notch {
    width: 80px;
    height: 10px;
  }

  .macbook-screen-slot {
    border-radius: 8px;
    aspect-ratio: 16 / 11;
  }

  .macbook-base {
    height: 14px;
    width: 74%;
    border-radius: 0 0 18px 18px;
  }

  .trf-hero-desktop-tablet {
    display: none;
  }

  .trf-hero-mobile {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 16px;
    background: #69d3b3;
    overflow: hidden;
    height: auto;
  }

  .trf-hero-mobile > * {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .trf-mobile-title,
  .trf-mobile-role-card,
  .trf-mobile-app-present,
  .trf-mobile-phone,
  .trf-mobile-feature-stack img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
  }

  .trf-mobile-title {
    max-width: 360px;
    margin: 0 auto;
  }

  .trf-mobile-description-text {
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(15px, 5.2vw, 21px);
    line-height: 1.55;
    color: #1a1a1a;
    letter-spacing: 0;
    text-align: left;
    max-width: 320px;
  }

  .trf-mobile-description-text strong {
    font-weight: 600;
  }

  .trf-mobile-role-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .trf-mobile-phone {
    display: none;
    max-width: 85%;
    margin: 32px auto;
  }

  .trf-mobile-app-present {
    display: block;
    max-width: 85%;
    margin: 32px auto;
  }

  .trf-mobile-feature-stack {
    display: none;
  }

  .trf-mobile-feature-stack img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .truffle-prototype-showcase {
    padding: 88px 20px;
  }

  .macbook-screen-slot {
    border-radius: 8px;
  }
}

.trf-problem-goal {
  width: 100%;
  padding: 96px 120px;
  background: #f5f5f5;
}

.trf-problem-goal-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.trf-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.trf-goal-block {
  margin-top: 120px;
}

.trf-split-text,
.trf-split-media {
  min-width: 0;
}

.trf-eyebrow {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.trf-split-title {
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.trf-split-body {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #5f5f5f;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.trf-split-quote {
  margin: 10px 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: #1a1a1a;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.trf-split-closing {
  margin-bottom: 0;
}

.trf-split-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.trf-problem-block .trf-split-media img {
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: auto;
}

.trf-goal-block .trf-split-media img,
.trf-goal-media img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .trf-problem-goal {
    padding: 80px 40px;
  }

  .trf-problem-goal-container {
    gap: 80px;
  }

  .trf-goal-block {
    margin-top: 96px;
  }

  .trf-split {
    gap: 48px;
  }

  .trf-problem-block .trf-split-media img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .trf-goal-block .trf-split-media img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 900px) {
  .trf-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trf-goal-block {
    margin-top: 72px;
  }

  .trf-problem-block .trf-split-text {
    order: 1;
  }

  .trf-problem-block .trf-split-media {
    order: 2;
  }

  .trf-goal-block .trf-split-media {
    order: 2;
  }

  .trf-goal-block .trf-split-text {
    order: 1;
  }
}

@media (max-width: 767px) {
  .trf-problem-goal {
    padding: 64px 16px;
    background: #f5f5f5;
  }

  .trf-problem-goal-container {
    padding: 0;
    gap: 72px;
  }

  .trf-goal-block {
    margin-top: 96px;
  }

  .trf-problem-block,
  .trf-goal-block {
    display: flex;
    flex-direction: column;
  }

  .trf-split {
    gap: 24px;
  }

  .trf-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .trf-split-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.35;
  }

  .trf-split-body {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .trf-split-quote {
    margin: 8px 0 20px;
    font-size: 20px;
    line-height: 1.45;
  }

  .trf-split-media img,
  .trf-problem-block .trf-split-media img,
  .trf-goal-block .trf-split-media img {
    position: static;
    width: 80%;
    height: auto;
    margin: 32px auto 0;
    object-fit: contain;
  }

  .trf-problem-block .trf-split-media img {
    max-width: 280px;
  }

  .trf-goal-block .trf-split-media img {
    max-width: 280px;
  }

  .goal-copy {
    order: 1;
  }

  .goal-image {
    order: 2;
  }
}

.trf-research {
  width: 100%;
  background: #f5f5f5;
  padding: 96px 120px;
}

.trf-research-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.trf-research-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trf-research-intro-image img,
.trf-research-row-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.trf-research-intro-image img {
  margin-left: auto;
}

.trf-research-rows {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.trf-research-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trf-sub-eyebrow {
  margin-bottom: 18px;
}

.trf-row-description {
  margin: 0;
}

@media (max-width: 1023px) {
  .trf-research {
    padding: 80px 40px;
  }

  .trf-research-intro,
  .trf-research-row {
    gap: 48px;
  }

  .trf-research-rows {
    margin-top: 80px;
    gap: 56px;
  }

  .trf-research-intro-image img,
  .trf-research-row-image img {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .trf-research {
    padding: 64px 16px;
  }

  .trf-research-container {
    max-width: 100%;
  }

  .trf-research-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trf-research-rows {
    margin-top: 56px;
    gap: 48px;
  }

  .trf-research-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trf-research-intro-image {
    order: 4;
  }

  .trf-research-row-copy {
    display: contents;
  }

  .trf-research-row-image {
    order: 2;
  }

  .trf-sub-eyebrow {
    order: 1;
    margin-bottom: 0;
  }

  .trf-row-description {
    order: 3;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .trf-research-intro-image img,
  .trf-research-row-image img {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 24px auto;
    object-fit: contain;
  }

  .trf-research .trf-split-title {
    font-size: 24px;
  }

  .trf-research .trf-split-body {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Editorial redesign: The world of Truffle */
.truffle-identity-world {
  border: none;
  background: #faf9f7;
  padding: clamp(2rem, 3vw, 3rem);
}

.truffle-identity-world::before {
  opacity: 0.05;
  background-size: 160px auto;
}

.truffle-identity-block + .truffle-identity-block {
  margin-top: clamp(2.2rem, 4vw, 4.2rem);
}

.truffle-identity-block-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}

.truffle-identity-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 0.42rem;
}

.truffle-identity-copy p {
  max-width: 44ch;
  font-size: 1.02rem;
}

.truffle-identity-logo-stage {
  min-height: clamp(260px, 34vw, 420px);
  position: relative;
}

.truffle-identity-logo {
  margin: 0;
  position: absolute;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  padding: 0.7rem;
}

.truffle-identity-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.truffle-identity-logo-main {
  width: min(72%, 420px);
  left: 50%;
  transform: translateX(-50%);
  top: 6%;
  z-index: 3;
}

.truffle-identity-logo-secondary-a {
  width: min(34%, 200px);
  left: 6%;
  bottom: 6%;
  z-index: 2;
}

.truffle-identity-logo-secondary-b {
  width: min(34%, 200px);
  right: 6%;
  bottom: 6%;
  z-index: 2;
}

.truffle-identity-block-foundations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 2.8vw, 2.6rem);
}

.truffle-identity-foundation-intro {
  margin: 0.58rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.truffle-identity-mini-label {
  margin: 0;
  font-size: 0.68rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.64) !important;
}

.truffle-identity-type-samples {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.truffle-identity-type-samples h3 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
}

.truffle-identity-blacker-word {
  font-family: "Blacker Shield", "Montserrat", serif;
}

.truffle-identity-type-samples p {
  margin: 0.28rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.truffle-identity-type-words {
  margin-top: 1.2rem;
  gap: 0.9rem;
}

.truffle-identity-type-words span {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #2e2e2e;
}

.truffle-identity-swatches-large {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.truffle-identity-swatches-large span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
}

.truffle-identity-swatches-large i {
  width: 13px;
  height: 13px;
  border-radius: 99px;
  border: 1px solid rgba(46, 46, 46, 0.2);
}

.truffle-identity-color-extras {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.75rem;
  align-items: end;
}

.truffle-identity-pattern,
.truffle-identity-ui-mockup {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.truffle-identity-pattern img {
  height: 126px;
  opacity: 0.5;
}

.truffle-identity-ui-mockup img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}


/* Fallback without :has for Why Truffle background pattern */
.why-truffle-section {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("assets/tarjeta_patron.png") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.why-truffle-section::before {
  content: none !important;
}

.why-truffle-section > * {
  position: relative;
  z-index: 1;
}

/* Remove all page background treatment only on project-truffle */
body.truffle-prototype-page,
body.truffle-prototype-page .trf-page,
body.truffle-prototype-page .truffle-brand-story {
  background: transparent !important;
  background-image: none !important;
}

/* Make Truffle case-study sections appear instantly (no reveal delay) */
body.truffle-prototype-page .reveal,
body.truffle-prototype-page .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Keep navigation visible on project-truffle */
body.truffle-prototype-page .site-header {
  background: rgba(255, 255, 255, 0.9) !important;
  background-image: none !important;
}

.truffle-visual-identity-section {
  width: 100%;
  min-height: clamp(320px, 48vh, 560px);
  border-radius: var(--radius-container);
  padding: clamp(2.8rem, 6vw, 5.2rem) clamp(1.2rem, 3vw, 2rem);
  display: grid;
  place-items: start center;
}

.truffle-visual-identity-section h2 {
  margin: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #2e2e2e;
}

.truffle-visual-identity-hero-image {
  width: min(100%, 1100px);
  margin: clamp(1.25rem, 3vw, 2.2rem) auto 0;
}

.truffle-visual-identity-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.truffle-mascot-split {
  width: min(100%, 1100px);
  margin: clamp(2.2rem, 4.6vw, 3.8rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: center;
}

.truffle-mascot-copy {
  text-align: left;
}

.truffle-mascot-copy h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #2e2e2e;
}

.truffle-mascot-copy p {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.7;
  color: #2e2e2e;
  max-width: 62ch;
}

.truffle-mascot-visual {
  margin: 0;
  width: min(100%, 260px);
  justify-self: center;
}

.truffle-mascot-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.truffle-mascot-pillars {
  width: min(100%, 1100px);
  margin: clamp(1.7rem, 3.6vw, 2.7rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1rem);
}

.truffle-mascot-pillars h3 {
  margin: 0 0 clamp(0.35rem, 0.9vw, 0.55rem);
  grid-column: 1 / -1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #2e2e2e;
  text-align: left;
}

.truffle-mascot-pillar-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(150px, 15.5vw, 178px);
  border-radius: var(--radius-card);
  padding: clamp(0.85rem, 1.2vw, 1rem) clamp(0.85rem, 1.4vw, 1.05rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  background: #d5f4ea;
  border: 1px solid rgba(105, 211, 179, 0.42);
}

.truffle-mascot-pillars article:nth-of-type(2) {
  background: rgba(211, 221, 246, 0.3);
  border-color: #d3ddf6;
}

.truffle-mascot-pillars article:nth-of-type(3) {
  background: rgba(246, 211, 234, 0.3);
  border-color: #f6d3ea;
}

.truffle-mascot-pillars article:nth-of-type(4) {
  background: rgba(255, 212, 148, 0.3);
  border-color: #ffd494;
}

.truffle-mascot-pillar-card h4 {
  margin: 0;
  width: min(100%, 33ch);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.02rem, 1.32vw, 1.2rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: #2e2e2e;
}

.truffle-mascot-pillar-card p {
  margin: clamp(0.45rem, 0.9vw, 0.65rem) 0 0;
  width: min(100%, 30ch);
  font-size: clamp(0.92rem, 1.08vw, 0.98rem);
  line-height: 1.48;
  color: #2e2e2e;
}

.truffle-identity-foundations {
  width: min(100%, 1150px);
  margin: clamp(2.8rem, 5.6vw, 4.8rem) auto 0;
}

.truffle-identity-block-head {
  border-bottom: 3px solid #2e2e2e;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.truffle-identity-block-head h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 700;
  color: #2e2e2e;
}

.truffle-identity-color-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.4rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.truffle-identity-color-item p {
  margin: 0.75rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: rgba(46, 46, 46, 0.75);
}

.truffle-identity-color-item span {
  display: block;
  margin-top: 0.25rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  color: #2e2e2e;
}

.truffle-identity-chip {
  height: clamp(54px, 6.2vw, 72px);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.truffle-identity-chip-cream {
  background: #f7f6f2;
}

.truffle-identity-type-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.8vw, 2.8rem);
}

.truffle-identity-type-item h4 {
  margin: 0 0 0.45rem;
  color: #2e2e2e;
}

.truffle-identity-type-item p {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2e2e2e;
  white-space: normal;
  overflow-wrap: anywhere;
}

.truffle-identity-type-blacker h4,
.truffle-identity-type-blacker p {
  font-family: "Blacker Shield", "Montserrat", serif;
}

.truffle-identity-type-blacker h4 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.truffle-identity-type-blacker p {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
}

.truffle-identity-type-montserrat h4,
.truffle-identity-type-montserrat p {
  font-family: "Montserrat", sans-serif;
}

.truffle-identity-type-montserrat h4 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
}

.truffle-identity-type-montserrat p {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 500;
}

.truffle-tone-identity {
  width: min(100%, 1150px);
  margin: clamp(2.8rem, 5.6vw, 4.8rem) auto 0;
}

.truffle-tone-intro {
  margin: 1rem 0 0;
  max-width: 95ch;
  text-align: left;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.35;
  color: #2e2e2e;
}

.truffle-tone-orbit {
  position: relative;
  margin-top: 1.3rem;
  min-height: clamp(340px, 38vw, 470px);
}

.truffle-tone-center {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: clamp(120px, 12vw, 165px);
}

.truffle-tone-center img {
  width: 100%;
  height: auto;
  display: block;
}

.truffle-tone-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 11vw, 180px);
  height: clamp(36px, 3.2vw, 42px);
  padding: 0 1rem;
  border-radius: 999px;
  border: 1.5px solid #69d3b3 !important;
  background: rgba(255, 255, 255, 0.85);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0;
  color: #2e2e2e;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.truffle-tone-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 46, 46, 0.12);
  background: #ffffff;
}

.chip-joyful { top: 6%; left: 2%; }
.chip-calming { top: 3%; left: 32%; }
.chip-supportive { top: 1%; right: 1%; }
.chip-positive { top: 34%; left: 16%; }
.chip-sensitive { top: 14%; right: 28%; }
.chip-inviting { top: 36%; right: 10%; }
.chip-characterful { top: 66%; left: 4%; }
.chip-meaningful { top: 63%; right: 23%; }
.chip-bright { bottom: 4%; left: 30%; }
.chip-cool { bottom: 11%; right: 4%; }

.truffle-merch-hero {
  width: min(100%, 1150px);
  margin: clamp(3.2rem, 6.2vw, 5.6rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.2rem, 3.2vw, 3rem);
  align-items: center;
}

.truffle-merch-copy {
  text-align: left;
}

.truffle-merch-copy h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4.3vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #111111;
  max-width: 9ch;
}

.truffle-merch-copy p {
  margin-top: 1rem !important;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem) !important;
  line-height: 1.45 !important;
  color: #3a3a3a !important;
}

.truffle-merch-visual {
  margin: 0;
}

.truffle-merch-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.truffle-merch-grid-section {
  width: min(100%, 1150px);
  margin: clamp(2.6rem, 5vw, 4.4rem) auto 0;
}

.truffle-merch-count {
  margin: 0 0 1rem;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2e2e2e;
}

.truffle-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2.2vw, 1.5rem);
}

.truffle-merch-item {
  text-align: left;
}

.truffle-merch-item-visual {
  margin: 0;
  background: #f1f1f1;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.truffle-merch-item-visual img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
}

.truffle-merch-item h4 {
  margin: 0.78rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.truffle-merch-item p {
  margin: 0.3rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #5c5c5c;
}

.truffle-merch-swatch-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.truffle-merch-swatch-row span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.swatch-mint {
  background: #69d3b3;
}

.swatch-brown {
  background: #6b5043;
}

@media (max-width: 920px) {
  .truffle-mascot-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .truffle-mascot-copy p {
    max-width: none;
  }

  .truffle-mascot-pillars {
    grid-template-columns: 1fr;
  }

  .truffle-mascot-pillar-card {
    min-height: 0;
  }

  .truffle-identity-color-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truffle-identity-type-row {
    grid-template-columns: 1fr;
  }

  .truffle-tone-orbit {
    min-height: 0;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .truffle-tone-center {
    position: static;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
    width: 130px;
    margin: 0.2rem 0 0.6rem;
  }

  .truffle-tone-chip {
    position: static;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .truffle-merch-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .truffle-merch-copy h3 {
    max-width: none;
  }

  .truffle-merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .truffle-merch-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .truffle-brand-hero {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .truffle-brand-hero-copy {
    order: 1;
  }

  .truffle-brand-hero-collage {
    order: 2;
    width: min(100%, 520px);
    max-width: 520px;
    margin: 40px auto 0;
    justify-self: center;
    position: static;
    right: auto;
    left: auto;
    overflow: visible;
  }

  .truffle-brand-hero-image,
  .truffle-brand-hero-image-1,
  .truffle-brand-hero-image-2,
  .truffle-brand-hero-image-3,
  .truffle-brand-hero-image-4 {
    position: relative;
    right: auto;
    left: auto;
  }
}

.truffle-closing-cta {
  width: min(1150px, 92vw);
  margin: clamp(2.2rem, 5vw, 4.5rem) auto clamp(3rem, 6vw, 5rem);
}

.truffle-closing-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-container);
  padding: clamp(1.6rem, 3.4vw, 3rem);
  background-color: #69d3b3;
  background-image: url("assets/patron_trufas_transparent.png");
  background-repeat: repeat;
  background-size: 1800px auto;
  background-position: center;
  border: 1px solid rgba(105, 211, 179, 0.3);
  box-shadow: 0 16px 40px rgba(46, 46, 46, 0.08);
  text-align: center;
}

.truffle-closing-cta-card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #2e2e2e;
}

.truffle-closing-cta-card p {
  margin: clamp(0.8rem, 1.8vw, 1.2rem) auto 0;
  max-width: 72ch;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.55;
  color: #3a3a3a;
}

.truffle-closing-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1rem, 2.2vw, 1.5rem);
  padding: 0.76rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #2e2e2e;
  background: rgba(255, 255, 255, 0.94);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #2e2e2e;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
  box-shadow: 0 8px 20px rgba(46, 46, 46, 0.12);
}

.truffle-closing-cta-link:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: #69d3b3;
  box-shadow: 0 10px 22px rgba(46, 46, 46, 0.16);
}

.about-page {
  margin-top: 2.6rem;
}

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-container);
  border: 1px solid rgba(255, 205, 255, 0.2);
  background: linear-gradient(160deg, #ffffff 0%, #fffefe 58%, #fffdfd 100%);
  padding: clamp(1.8rem, 4.2vw, 4.3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.82fr);
  align-items: center;
  gap: clamp(1.4rem, 3.2vw, 4rem);
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 18px 48px rgba(85, 56, 80, 0.14);
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/pattern_aboutme.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  z-index: -2;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.about-hero-copy {
  min-width: 0;
  max-width: 50ch;
  align-self: center;
}

.about-hero-copy h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: #1f1718;
}

.about-hero-copy p {
  margin: 1.25rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  line-height: 1.75;
  color: #3c3132;
}

.about-hero-media {
  justify-self: end;
  width: min(100%, 380px);
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  object-fit: cover;
}

@media (max-width: 940px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: clamp(1.4rem, 6vw, 2.2rem);
    gap: 1.5rem;
  }

  .about-hero-copy {
    max-width: 100%;
  }

  .about-hero-media {
    width: min(100%, 340px);
    justify-self: center;
  }

  .about-hero-pattern {
    opacity: 0.25;
  }
}

.about-timeline-section {
  margin-top: clamp(3.6rem, 8vw, 7rem);
}

.about-timeline-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0 0 clamp(2.6rem, 5vw, 4rem);
}

.about-timeline {
  --timeline-y: 154px;
  --dot-size: 26px;
  --pill-width: clamp(212px, 20vw, 242px);
  --pill-height: 96px;
  --connector-height: 44px;
  --line-thickness: 4px;
  --connector-thickness: 4px;

  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.1vw, 2rem);
  padding: 0 clamp(2.2rem, 4vw, 4.2rem);
  margin-bottom: clamp(1.8rem, 3.2vw, 2.5rem);
  min-height: 238px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 24px;
  top: var(--timeline-y);
  height: var(--line-thickness);
  border-radius: 999px;
  background: #c9c9cb;
}

.about-timeline::after {
  content: "";
  position: absolute;
  left: 62.5%;
  right: 24px;
  top: var(--timeline-y);
  height: var(--line-thickness);
  border-radius: 999px;
  background: var(--pink);
}

.about-timeline > .about-timeline-item:last-child::after {
  content: "";
  position: absolute;
  right: -28px;
  top: calc(var(--timeline-y) - 10px);
  width: 18px;
  height: 18px;
  border-top: var(--line-thickness) solid var(--pink);
  border-right: var(--line-thickness) solid var(--pink);
  transform: rotate(45deg);
  border-radius: 2px;
}

.about-timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 250px;
  padding-bottom: 0;
}

.about-timeline-item p {
  margin: 0;
  width: var(--pill-width);
  min-height: var(--pill-height);
  text-align: center;
  display: grid;
  place-items: center;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: rgba(196, 196, 199, 0.65);
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
  transition: transform 180ms cubic-bezier(0.2, 0, 0, 1), box-shadow 180ms ease;
  transform-origin: center;
}

.about-timeline-item p:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(46, 46, 46, 0.08);
}

.about-timeline-item p:focus-visible {
  outline: 2px solid rgba(255, 205, 255, 0.7);
  outline-offset: 2px;
}

.about-timeline-dot {
  position: absolute;
  left: 50%;
  top: calc(var(--timeline-y) - (var(--dot-size) / 2));
  transform: translateX(-50%);
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: #c4c4c7;
  border: none;
  z-index: 2;
}

.about-timeline-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(-1 * var(--connector-height));
  width: var(--connector-thickness);
  height: var(--connector-height);
  border-radius: 999px;
  background: #c4c4c7;
  transform: translateX(-50%);
}

.about-timeline-item.is-inactive p {
  color: #2f2d31;
  background: rgba(197, 197, 200, 0.65);
}

.about-timeline-item.is-active p {
  color: #1f1718;
  background: rgba(255, 205, 255, 0.65);
}

.about-timeline-item.is-active .about-timeline-dot {
  background: var(--pink);
}

.about-timeline-item.is-active .about-timeline-dot::before {
  background: var(--pink);
}

.about-story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
}

.about-story-intro-copy p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.8;
  color: #322b2d;
  max-width: 58ch;
}

.about-story-intro-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-story-intro-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

.about-story-intro-horse {
  object-position: 100% center;
  transform: scale(1.04);
  transform-origin: right center;
}

.about-care-block {
  margin-top: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 3.1rem);
  align-items: center;
}

.about-care-media img {
  width: 100%;
  max-width: 440px;
  display: block;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.about-care-copy h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  letter-spacing: -0.02em;
  color: #1f1718;
}

.about-care-copy p {
  margin: 1rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.8;
  color: #332d2f;
  max-width: 52ch;
}

.about-design-today-block {
  margin-top: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 3.1rem);
  align-items: start;
}

.about-design-today-placeholder {
  width: 100%;
  min-height: 1px;
}

.about-real-life-block {
  margin-top: clamp(3.4rem, 7vw, 5.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: clamp(1.3rem, 4vw, 3.1rem);
  align-items: start;
}

.about-real-life-placeholder {
  width: 100%;
  min-height: 1px;
}

.about-conclusion {
  margin-top: clamp(4rem, 10vw, 9rem);
  min-height: 82vh;
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  max-width: 72ch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-conclusion p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.22rem, 2.15vw, 1.72rem);
  line-height: 1.75;
  color: #262124;
  font-weight: 500;
}

.about-conclusion p + p {
  margin-top: 1rem;
}

.about-conclusion p strong {
  font-weight: 800;
}

.about-closing-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(3.2rem, 8vw, 7.2rem);
  border-radius: var(--radius-card);
  border: 1px solid rgba(20, 16, 14, 0.08);
  background: linear-gradient(160deg, #ffffff 0%, #fffefe 58%, #fffdfd 100%);
  padding: calc(clamp(3.2rem, 7vw, 4.5rem) + 20px) clamp(2rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(40, 26, 35, 0.08);
}

.about-closing-card-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/pattern_aboutme.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  z-index: -2;
}

.about-closing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.about-closing-logo-mark {
  position: absolute;
  right: clamp(2rem, 8vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(185px, 22vw, 285px);
  height: auto;
  opacity: 0.042;
  pointer-events: none;
  z-index: 1;
}

.about-closing-copy {
  text-align: left;
  position: relative;
  z-index: 2;
}

.about-closing-card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #121212;
  max-width: 22ch;
  margin-left: 0;
  margin-right: 0;
}

.about-closing-card .footer-title-dot {
  color: var(--pink);
}

.about-closing-card p {
  margin: 0.7rem 0 0;
  max-width: 54ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.65;
  color: #1f1718;
}

.about-closing-actions {
  margin-top: clamp(1.75rem, 3vw, 2.2rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.about-closing-actions .btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 180ms ease;
}

.about-closing-actions .btn-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}

.about-closing-actions .btn-light {
  background: #fff;
  color: var(--ink);
}

.about-closing-actions .btn-light:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (max-width: 980px) {
  .about-timeline {
    --timeline-y: 140px;
    --dot-size: 24px;
    --pill-width: 202px;
    --pill-height: 90px;
    --connector-height: 40px;
    --line-thickness: 4px;
    --connector-thickness: 4px;

    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 1.9rem;
    min-height: 220px;
    scrollbar-width: thin;
  }

  .about-timeline::before {
    left: 10px;
    right: 24px;
    top: var(--timeline-y);
  }

  .about-timeline::after {
    left: auto;
    right: 10px;
    width: 30%;
    top: var(--timeline-y);
  }

  .about-timeline-item {
    min-width: 248px;
    min-height: 220px;
  }

  .about-timeline-item p {
    width: var(--pill-width);
    min-height: var(--pill-height);
    font-size: 1rem;
    padding: 0.9rem 1.15rem;
  }

  .about-timeline > .about-timeline-item:last-child::after {
    right: -24px;
    top: calc(var(--timeline-y) - 9px);
    width: 16px;
    height: 16px;
  }

  .about-closing-card {
    padding: clamp(1.6rem, 6vw, 2.4rem) 1rem;
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .about-closing-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .about-closing-actions .btn {
    width: min(100%, 360px);
  }
}

@media (max-width: 900px) {
  .about-story-intro,
  .about-care-block,
  .about-design-today-block,
  .about-real-life-block {
    grid-template-columns: 1fr;
  }

  .about-story-intro-media {
    max-width: 460px;
  }

  .about-care-media img {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .about-story-intro-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .about-timeline-item p {
    font-size: 0.9rem;
  }
}
