/* ============================================================
   FRAME TALES — Co.mind Inspired Layout
   Ink + Cream neutrals, Rust accent, Stone secondary
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --cream: #F5F1E8;
  --cream-dark: #EBE7DD;
  --olive: #1A1613;
  --olive-light: #2A2520;
  --olive-card: #242019;
  --pink: #8A8578;
  --pink-light: #F5F1E8;
  --yellow: #D9622B;
  --yellow-light: #E0733F;
  --green: #4A6741;
  --orange: #D9622B;
  --rust: #D9622B;
  --stone: #8A8578;
  --purple: #6B4FA0;
  --white: #FFFFFF;
  --dark: #1A1613;
  --dark-sec: #4A4A3E;
  --muted: #8A8578;
  --light: #F5F1E8;
  --light-sec: #C8C4B8;
  --font-h: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;
  --max-w: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --r-sm: 12px; --r-md: 16px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 36px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); background: radial-gradient(circle at 50% 40%, #F5F1E8 0%, #F5F1E8 35%, #E0DCD0 100%) fixed; color: var(--dark); line-height: 1.6; overflow-x: hidden; cursor: none; }
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
@media (prefers-contrast: high) {
  body {
    background: var(--cream) !important;
  }
  body::after {
    display: none !important;
  }
}
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
::selection { background: var(--rust); color: var(--cream); }

/* ─── Cursor ─── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  width: 28px;
  height: 28px;
  margin-left: -10px;
  margin-top: -2px;
  transition: opacity 0.3s var(--ease);
}
.cursor__hand {
  width: 100%;
  height: 100%;
  fill: var(--cream);
  stroke: var(--dark);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  transform: rotate(-22deg);
  transform-origin: 10px 4px;
  transition: transform 0.25s var(--ease), fill 0.25s var(--ease), stroke 0.25s var(--ease);
}
body.cursor-hover .cursor__hand {
  fill: var(--rust);
  stroke: var(--dark);
  transform: rotate(-15deg) scale(1.15);
}
body.cursor-expand .cursor__hand {
  fill: var(--rust);
  stroke: var(--dark);
  transform: rotate(-10deg) scale(1.3);
}
body.cursor-button .cursor__hand {
  fill: var(--dark);
  stroke: var(--cream);
  transform: rotate(-25deg) scale(0.95);
}

/* ─── Scrollbar / Progress ─── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 4px; }
.progress-bar { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: var(--rust); z-index: 10001; }

/* ─── Loader ─── */
.loader { position: fixed; inset: 0; background: var(--olive); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; transition: opacity .5s, visibility .5s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__logo { font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; color: var(--light); letter-spacing: -.03em; }
.loader__logo span { color: var(--rust); }
.loader__bar-wrap { width: 180px; height: 3px; background: rgba(245,241,232,.1); border-radius: 3px; overflow: hidden; }
.loader__bar { width: 0; height: 100%; background: var(--rust); border-radius: 3px; animation: load 1.4s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }

/* ─── Container ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ─── Reveals ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── Section ─── */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section--olive { background: var(--olive); color: var(--light); }
.section--pink { background: var(--cream); }
.section-label { display: inline-block; font-size: .75rem; font-weight: 600; color: var(--rust); letter-spacing: .06em; margin-bottom: 12px; }
.section-label--dark { color: var(--dark); }
.section-title { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }

/* ─── Film Grain Overlay on .section--olive ─── */
.section--olive { position: relative; overflow: hidden; z-index: 1; }
.footer, .marquee { position: relative; z-index: 1; }
.section--olive::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grain-drift 10s linear infinite;
}
@keyframes grain-drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 8px); }
  100% { transform: translate(0, 0); }
}
.section--olive > * { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .section--olive::after { animation: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all .35s var(--ease); }
.nav.scrolled { background: rgba(245,241,232,.93); backdrop-filter: blur(18px); padding: 11px 0; border-bottom: 1px solid rgba(26,22,19,.07); box-shadow: 0 2px 24px rgba(0,0,0,.04); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-h); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; color: var(--dark); }
.nav__logo--light { color: var(--light); }
.nav__logo-icon { width: 34px; height: 34px; background: var(--rust); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: var(--cream); }
.nav__logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(26,26,20,.08); background: var(--white); flex-shrink: 0; }
.nav__logo-img--light { border-color: rgba(250,245,235,.15); filter: brightness(1.1); }
.loader__icon { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(217,98,43,.3); animation: loader-pulse 2s ease-in-out infinite; }
@keyframes loader-pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }
.nav__links { display: flex; gap: 28px; }
.nav__link { font-size: .85rem; font-weight: 500; color: var(--dark-sec); transition: color .2s; position: relative; display: flex; align-items: center; gap: 6px; padding: 4px 0; }
.nav__link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--rust); border-radius: 1px; transition: width .35s var(--ease); }
.nav__link:hover { color: var(--dark); }
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: 9px 22px; background: var(--rust); color: var(--cream); font-size: .85rem; font-weight: 700; border-radius: 100px; transition: all .2s var(--ease); }
.nav__cta:hover { background: var(--yellow-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(217,98,43,.3); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .2s; }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile-menu { display: none; position: fixed; inset: 0; background: rgba(45,43,31,.97); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity .35s; }
.nav__mobile-menu.open { opacity: 1; pointer-events: all; }
.nav__mobile-menu a { font-family: var(--font-h); font-size: 1.8rem; font-weight: 600; color: var(--cream); }
.nav__mobile-menu a:hover { color: var(--rust); }

/* ─── Folder Nav Icon ─── */
.nav__folder-icon { width: 18px; height: 14px; position: relative; flex-shrink: 0; }
.nav__folder-icon .folder-body { width: 18px; height: 12px; background: var(--rust); border-radius: 0 3px 3px 3px; position: absolute; bottom: 0; }
.nav__folder-icon .folder-tab { width: 8px; height: 4px; background: var(--rust); border-radius: 2px 2px 0 0; position: absolute; top: 0; left: 0; transition: transform .18s var(--ease); }
.nav__link:hover .folder-tab, .nav__link:focus-within .folder-tab { transform: rotateX(-25deg) translateY(-1px); }

/* ─── Nav Pop-out Card ─── */
.nav__popout { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px) scale(0.96); opacity: 0; pointer-events: none; background: var(--white); border: 1.5px solid rgba(26,26,20,.06); border-radius: var(--r-md); padding: 14px 18px; min-width: 200px; box-shadow: 0 12px 40px rgba(0,0,0,.08); transition: opacity .15s ease-out, transform .15s ease-out; z-index: 100; }
.nav__link:hover .nav__popout, .nav__link:focus-within .nav__popout { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); pointer-events: auto; }
.nav__popout-title { font-family: var(--font-h); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--rust); margin-bottom: 6px; }
.nav__popout-text { font-size: .78rem; color: var(--dark-sec); line-height: 1.5; }
.nav__popout-list { display: flex; flex-direction: column; gap: 3px; }
.nav__popout-list li { font-size: .75rem; color: var(--dark-sec); }
.nav__popout-thumbs { display: flex; gap: 6px; }
.nav__popout-thumb { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--cream-dark); }
.nav__popout-nums { display: flex; gap: 8px; }
.nav__popout-nums span { font-family: var(--font-h); font-size: .75rem; font-weight: 600; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  .nav__popout { transition-duration: 0.03s; }
  .nav__link:hover .folder-tab { transition-duration: 0.03s; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 13px 28px; font-size: .9rem; font-weight: 700; border-radius: 100px; transition: all .2s var(--ease); }
.btn--sm { padding: 9px 20px; font-size: .8rem; }
.btn--primary { background: var(--rust); color: var(--cream); }
.btn--primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(217,98,43,.3); }
.btn--yellow { background: var(--rust); color: var(--cream); }
.btn--yellow:hover { background: var(--yellow-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--dark); border: 1.5px solid rgba(26,22,19,.15); }
.btn--outline:hover { border-color: rgba(26,22,19,.3); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.btn--outline-light { background: transparent; color: var(--light); border: 1.5px solid rgba(245,241,232,.2); }
.btn--outline-light:hover { border-color: rgba(245,241,232,.4); transform: translateY(-2px); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.25); }

/* ============================================================
   HERO — Co.mind style: large text left, image right
   ============================================================ */
.hero { padding: 120px 0 80px; background: url('images/homepagebackground.png') center/cover no-repeat; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(245,241,232,0.82); z-index: 0; }
.hero > .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero__title { font-family: var(--font-h); font-size: clamp(4rem, 11vw, 9rem); font-weight: 700; line-height: .88; letter-spacing: -.06em; color: var(--dark); margin-bottom: 24px; }
.hero__title-line { display: block; }
.hero__dot { color: var(--rust); }
.hero__desc { font-size: clamp(.95rem, 1.4vw, 1.1rem); color: var(--dark-sec); line-height: 1.7; max-width: 440px; margin-bottom: 32px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__right { position: relative; }
.hero__image-wrap { position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__badge-float { position: absolute; top: 20px; right: -16px; background: var(--rust); color: var(--cream); padding: 12px 20px; border-radius: 100px; font-size: .8rem; font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 24px rgba(217,98,43,.3); animation: float-badge 3s ease-in-out infinite; z-index: 2; }
.hero__badge-emoji { font-size: 1.2rem; }
@keyframes float-badge { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { padding: 48px 0; border-top: 1px solid rgba(26,26,20,.06); border-bottom: 1px solid rgba(26,26,20,.06); }
.trust-bar__inner { text-align: center; }
.trust-bar__text { font-family: var(--font-h); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: 20px; }
.trust-bar__tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trust-tag { padding: 6px 16px; border-radius: 100px; font-size: .75rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.trust-tag--yellow { background: rgba(217,98,43,.1); color: var(--rust); }
.trust-tag--pink { background: rgba(138,133,120,.1); color: var(--stone); }
.trust-tag--green { background: rgba(74,103,65,.1); color: var(--green); }
.trust-tag--orange { background: rgba(217,98,43,.1); color: var(--rust); }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee { padding: 20px 0; background: var(--olive); overflow: hidden; border-top: 1px solid rgba(245,241,232,.06); border-bottom: 1px solid rgba(245,241,232,.06); }
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 35s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 8px; padding: 8px 24px; font-size: .8rem; font-weight: 600; color: var(--light-sec); white-space: nowrap; letter-spacing: .02em; }
.marquee__item span { font-size: 1.1rem; }
.marquee__sep { color: rgba(245,241,232,.15); padding: 0 4px; font-size: .6rem; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ============================================================
   ABOUT BENTO GRID — Co.mind mixed card layout
   ============================================================ */
.about-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

.bento {
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(26,26,20,.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.bento:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); border-color: rgba(217,98,43,.15); }
.bento--2col { grid-column: span 2; }
.bento--olive { background: var(--olive); }
.bento--pink { background: var(--cream); border-color: rgba(138,133,120,.15); }
.bento--yellow { background: var(--cream); border-color: rgba(138,133,120,.15); }
.bento--img { padding: 0; }
.bento__label { display: inline-block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rust); margin-bottom: 14px; background: rgba(217,98,43,.08); padding: 4px 12px; border-radius: 100px; }
.bento--olive .bento__label { background: rgba(217,98,43,.12); color: var(--rust); }
.bento--pink .bento__label { background: rgba(217,98,43,.08); color: var(--rust); }
.bento--yellow .bento__label { background: rgba(217,98,43,.08); color: var(--rust); }
.bento__heading { font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.03em; margin-bottom: 14px; }
.bento__heading--light { color: var(--light); }
.bento__heading em { font-style: italic; color: var(--rust); }
.bento__text { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.bento__text--light { color: var(--light-sec); }
.bento__cover { width: 100%; height: 100%; min-height: 240px; object-fit: cover; border-radius: var(--r-xl); }
.bento__stat { font-family: var(--font-h); font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 700; line-height: 1; margin-bottom: 6px; }
.bento--pink .bento__stat { color: var(--rust); }
.bento--yellow .bento__stat { color: var(--rust); }
.bento__stat-sub { font-size: .78rem; color: var(--dark-sec); }
.bento__quote { font-family: var(--font-h); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.5; letter-spacing: -.01em; margin-bottom: 20px; }
.bento__quote em { color: var(--rust); font-style: italic; }
.bento__quote-author { display: flex; align-items: center; gap: 12px; }
.bento__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(217,98,43,.1); color: var(--rust); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.bento__quote-author span { font-size: .78rem; color: var(--muted); }

/* ============================================================
   WHO WE SERVE — Audience Section
   ============================================================ */
.audience { background: transparent; }
.audience__header { text-align: center; margin-bottom: 48px; }
.audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.audience__card { border-radius: var(--r-xl); padding: 40px; border: 1.5px solid rgba(26,26,20,.05); transition: all .35s var(--ease); }
.audience__card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); }
.audience__card--local { background: var(--cream); border-color: rgba(138,133,120,.12); }
.audience__card--intl { background: var(--white); }
.audience__card-emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.audience__card-title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.audience__card-desc { font-size: .88rem; color: var(--dark-sec); line-height: 1.7; margin-bottom: 16px; }
.audience__card-list { display: flex; flex-direction: column; gap: 6px; }
.audience__card-list li { font-size: .82rem; color: var(--dark-sec); padding-left: 16px; position: relative; }
.audience__card-list li::before { content: '→'; position: absolute; left: 0; color: var(--rust); font-size: .75rem; }

/* ============================================================
   SERVICES — 2x2 Grid (Co.mind style)
   ============================================================ */
.services__header { margin-bottom: 48px; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { background: var(--white); border: 1.5px solid rgba(26,26,20,.05); border-radius: var(--r-xl); padding: 36px; transition: all .35s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); border-color: rgba(217,98,43,.15); }
.service-card--pink { background: var(--cream); border-color: rgba(138,133,120,.12); }
.service-card--olive { background: var(--olive); color: var(--light); }
.service-card__dot { width: 12px; height: 12px; border-radius: 50%; margin-bottom: 20px; }
.service-card__dot--orange { background: var(--rust); }
.service-card__dot--green { background: var(--green); }
.service-card__dot--yellow { background: var(--rust); }
.service-card__dot--pink { background: var(--stone); }
.service-card__title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -.02em; }
.service-card__list { display: flex; flex-direction: column; gap: 8px; }
.service-card__list li { font-size: .85rem; color: var(--dark-sec); padding-left: 16px; position: relative; }
.service-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--rust); font-size: .75rem; }
.service-card--olive .service-card__list li { color: var(--light-sec); }
.service-card--olive .service-card__list li::before { color: var(--rust); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--cream); }
.pricing__header { text-align: center; margin-bottom: 48px; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing__card { background: var(--white); border-radius: var(--r-xl); padding: 36px; border: 1.5px solid rgba(26,26,20,.05); transition: all .35s var(--ease); display: flex; flex-direction: column; }
.pricing__card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); }
.pricing__card--popular { border-color: var(--rust); position: relative; }
.pricing__card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--rust); color: var(--cream); font-size: .65rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.pricing__card-name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.pricing__card-price { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--rust); margin-bottom: 4px; }
.pricing__card-price-sub { font-size: .75rem; color: var(--muted); margin-bottom: 20px; }
.pricing__card-price-sub--has-alert { margin-bottom: 6px; }
.pricing__card-sub-badge { display: inline-block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(26, 26, 20, 0.06); color: var(--dark-sec); padding: 4px 10px; border-radius: 100px; margin-bottom: 8px; width: fit-content; align-self: flex-start; }
.pricing__card-price-alert { font-size: 0.72rem; color: var(--rust); font-weight: 600; margin-bottom: 20px; line-height: 1.4; }
.pricing__card-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.pricing__card-features li { font-size: .82rem; color: var(--dark-sec); padding-left: 18px; position: relative; }
.pricing__card-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: .75rem; }
.pricing__card .btn { width: 100%; justify-content: center; }

/* ============================================================
   BIG STATEMENT — Co.mind style large text
   ============================================================ */
.statement__text { font-family: var(--font-h); font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 700; line-height: .95; letter-spacing: -.05em; color: var(--light); text-align: center; }
.statement__text span { color: var(--rust); }

/* ============================================================
   FEATURED WORK — Large cards with floating stats
   ============================================================ */
.work__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 16px; }
.project-card { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: var(--white); border-radius: var(--r-2xl); overflow: hidden; border: 1.5px solid rgba(26,26,20,.05); margin-bottom: 28px; transition: all .4s var(--ease); }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.07); border-color: rgba(217,98,43,.12); }
.project-card--reverse { direction: rtl; }
.project-card--reverse > * { direction: ltr; }
.project-card__visual { position: relative; overflow: hidden; min-height: 380px; }
.project-card__visual img, .project-card__visual video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.project-card__visual video { object-fit: contain; background: var(--white); }
.project-card:hover .project-card__visual img, .project-card:hover .project-card__visual video { transform: scale(1.04); }
.project-card__float-stat { position: absolute; bottom: 20px; left: 20px; background: var(--cream); border: 1.5px solid rgba(138,133,120,.15); padding: 12px 20px; border-radius: var(--r-lg); box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 2; }
.project-card__float-stat--pink { background: var(--cream); border-color: rgba(138,133,120,.15); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.project-card__float-num { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; display: block; line-height: 1; }
.project-card__float-label { font-size: .65rem; color: var(--dark-sec); text-transform: uppercase; letter-spacing: .04em; }
.project-card__info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.project-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.project-card__title { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -.02em; }
.project-card__detail { font-size: .85rem; color: var(--dark-sec); line-height: 1.7; margin-bottom: 6px; }
.project-card__detail strong { color: var(--rust); font-weight: 600; }
.project-card__metrics { display: flex; gap: 24px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(26,26,20,.06); }
.project-card__metric-val { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--rust); }
.project-card__metric-lbl { font-size: .6rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ============================================================
   RESULTS STRIP — Dark section with big numbers
   ============================================================ */
.results-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.results-strip__item { text-align: center; padding: 40px 20px; background: var(--olive-card); border-radius: var(--r-xl); border: 1px solid rgba(250,245,235,.05); transition: all .35s var(--ease); }
.results-strip__item:hover { transform: translateY(-4px); border-color: rgba(217,98,43,.25); }
.results-strip__num { font-family: var(--font-h); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--rust); line-height: 1; margin-bottom: 6px; }
.results-strip__label { font-size: .8rem; color: var(--light-sec); }

/* ============================================================
   PROCESS — Pink section, 4 cards
   ============================================================ */
.process__header { margin-bottom: 48px; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process__card { background: var(--white); border-radius: var(--r-xl); padding: 32px 28px; border: 1.5px solid rgba(26,26,20,.05); transition: all .35s var(--ease); }
.process__card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.07); border-color: var(--rust); }
.process__num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 700; color: var(--rust); opacity: .3; line-height: 1; display: block; margin-bottom: 16px; transition: opacity .3s; }
.process__card:hover .process__num { opacity: 1; }
.process__card-title { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; }
.process__card-desc { font-size: .82rem; color: var(--dark-sec); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS — 3-column cards
   ============================================================ */
.testimonials__header { margin-bottom: 48px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: var(--white); border: 1.5px solid rgba(26,26,20,.05); border-radius: var(--r-xl); padding: 32px; transition: all .35s var(--ease); }
.testimonial-card--pink { background: var(--cream); border-color: rgba(138,133,120,.12); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); border-color: rgba(217,98,43,.15); }
.testimonial-card__stars { color: var(--rust); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card__text { font-size: .92rem; color: var(--dark-sec); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(217,98,43,.1); color: var(--rust); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.testimonial-card__author strong { font-size: .9rem; display: block; }
.testimonial-card__author span { font-size: .75rem; color: var(--muted); }

/* ============================================================
   PROOF OF WORK — Replaces testimonials section
   ============================================================ */
.proof { background: transparent; }
.proof__header { margin-bottom: 48px; }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof__card { background: var(--white); border: 1.5px solid rgba(26,26,20,.05); border-radius: var(--r-xl); padding: 32px; transition: all .35s var(--ease); }
.proof__card--olive { background: var(--olive); color: var(--light); }
.proof__card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); border-color: rgba(217,98,43,.15); }
.proof__card-type { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rust); margin-bottom: 12px; background: rgba(217,98,43,.08); padding: 4px 10px; border-radius: 100px; display: inline-block; }
.proof__card--olive .proof__card-type { background: rgba(217,98,43,.12); color: var(--rust); }
.proof__card-name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.proof__card-role { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.proof__card--olive .proof__card-role { color: var(--light-sec); }
.proof__card-desc { font-size: .85rem; color: var(--dark-sec); line-height: 1.65; }
.proof__card--olive .proof__card-desc { color: var(--light-sec); }

/* ============================================================
   CTA — Dark olive
   ============================================================ */
.cta__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta__title { font-family: var(--font-h); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 16px; color: var(--light); }
.cta__title span { color: var(--rust); }
.cta__desc { font-size: 1rem; color: var(--light-sec); margin-bottom: 32px; line-height: 1.7; }
.cta__buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER — Olive
   ============================================================ */
.footer { background: var(--olive); color: var(--light); padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.footer__desc { font-size: .85rem; color: var(--light-sec); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social-link { width: 36px; height: 36px; border-radius: 50%; background: var(--olive-card); border: 1px solid rgba(245,241,232,.06); display: flex; align-items: center; justify-content: center; color: var(--light-sec); transition: all .2s var(--ease); }
.footer__social-link:hover { background: var(--rust); border-color: var(--rust); color: var(--cream); }
.footer__social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer__col-title { font-family: var(--font-h); font-weight: 600; font-size: .9rem; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .82rem; color: var(--light-sec); transition: color .2s, padding-left .2s; }
.footer__links a:hover { color: var(--rust); padding-left: 4px; }
.footer__divider { height: 1px; background: rgba(245,241,232,.06); margin-bottom: 20px; }
.footer__bottom { font-size: .75rem; color: var(--light-sec); text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 32px; }
  .hero__ctas { justify-content: center; }
  .hero__right { max-width: 400px; margin: 0 auto; }
  .about-bento__grid { grid-template-columns: repeat(2, 1fr); }
  .bento--2col { grid-column: span 2; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card--reverse { grid-template-columns: 1fr; direction: ltr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .results-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile-menu { display: flex; }
  .nav__cta { display: none; }
  .hero__title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .about-bento__grid { grid-template-columns: 1fr; }
  .bento--2col { grid-column: span 1; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .results-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .work__header { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .cursor { display: none !important; }
  body, a, button { cursor: auto !important; }
  a, button { cursor: pointer !important; }
  .statement__text { font-size: clamp(2rem, 10vw, 3.5rem); }
  .pricing__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
  .nav__popout { display: none !important; }
  .nav__folder-icon { display: none; }
  .marquee__item { padding: 6px 16px; font-size: .72rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .results-strip__grid { grid-template-columns: 1fr; }
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn { width: 100%; justify-content: center; }
  .audience__card { padding: 28px; }
}

/* ============================================================
   SAY HI! CONTACT SECTION & YELLOW FOOTER
   ============================================================ */

/* ─── Say Hi! Section (Contact) ─── */
.say-hi {
  background-color: var(--olive);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Film grain on Say Hi section, matching the rest of the site */
.say-hi::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
.say-hi__inner {
  position: relative;
  z-index: 2;
}
.say-hi__title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cream);
  letter-spacing: -.03em;
}
.say-hi__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 780px;
  margin: 0 auto 56px auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.say-hi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.say-hi__card {
  background: #ffffff;
  border-radius: var(--r-xl);
  padding: 44px 36px;
  text-align: left;
  color: var(--dark);
  border: 1.5px solid rgba(26,26,20,.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.say-hi__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(217, 98, 43, 0.25);
}
.say-hi__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(217, 98, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--rust);
}
.say-hi__icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.say-hi__card-title {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  letter-spacing: -.02em;
}
.say-hi__card-value {
  font-size: 0.95rem;
  color: var(--dark-sec);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.say-hi__card-value a {
  color: inherit;
  transition: color 0.2s var(--ease);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(26,26,20,.15);
}
.say-hi__card-value a:hover {
  color: var(--rust);
  text-decoration-color: currentColor;
}

/* ─── Yellow Footer Override ─── */
.footer--yellow {
  background-color: var(--cream);
  color: var(--dark);
  border-top: 1.5px solid rgba(26,26,20,.1);
}
.footer--yellow .footer__desc {
  color: var(--dark-sec);
}
.footer--yellow .footer__col-title {
  color: var(--dark);
}
.footer--yellow .footer__links a {
  color: var(--dark-sec);
}
.footer--yellow .footer__links a:hover {
  color: var(--dark);
}
.footer--yellow .footer__social-link {
  color: var(--dark);
  border-color: rgba(26,26,20,.15);
}
.footer--yellow .footer__social-link:hover {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
}
.footer--yellow .nav__logo--light {
  color: var(--dark);
}

/* ─── Responsive for Say Hi ─── */
@media (max-width: 1024px) {
  .say-hi__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* make last card span 2 cols to balance layout */
  .say-hi__card:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .say-hi {
    padding: 80px 0;
  }
  .say-hi__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .say-hi__card:last-child {
    grid-column: span 1;
  }
  .say-hi__card {
    padding: 36px 28px;
  }
}

/* ============================================================
   CONTACT PAGE — Minimal Block Layout
   ============================================================ */

.contact-page {
  padding: 160px 0 100px; /* Generous top padding to clear fixed sticky nav height */
  min-height: 100vh;
  position: relative;
  background: transparent !important;
}
.contact-page__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.contact-page__title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1;
  text-align: left;
}
.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 32px; /* gap between rows ~32px */
}
.contact-page__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; /* gap ~24px */
  margin-bottom: 24px;
}
.contact-page__field {
  display: flex;
  flex-direction: column;
  gap: 8px; /* gap ~8px between label and input */
}
.contact-page__field--full {
  width: 100%;
  grid-column: 1 / -1; /* spans both grid columns */
}
.contact-page__label {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* letter-spacing ~0.05em */
  color: var(--dark);
}
.contact-page__input, .contact-page__select, .contact-page__textarea {
  padding: 14px 16px;
  border: 1px solid rgba(26,26,20,0.15);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}
.contact-page__input {
  font-family: var(--font-b);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.85); /* white/cream */
  color: var(--dark);
  outline: none;
  transition: all 0.25s var(--ease);
}
.contact-page__input::placeholder {
  color: #b0afaa;
}
.contact-page__input:focus {
  border-color: var(--rust); /* focus state with accent-color border highlight */
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 98, 43, 0.1);
}
.contact-page__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231A1A14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-page__textarea {
  min-height: 140px; /* min-height ~140px */
  resize: vertical;
}
.contact-page__submit-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px; /* margin-top ~16px */
}
.contact-page__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px; /* padding ~14px 32px */
  background: var(--dark); /* dark background */
  color: var(--cream);
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px; /* matching other buttons */
  border: none;
  cursor: none;
  transition: all 0.25s var(--ease);
  width: auto; /* NOT full width */
}
.contact-page__submit:hover {
  background: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 20, 0.15);
}
.contact-page__success {
  background: #eafaf1;
  border: 1px solid #2ecc71;
  color: #27ae60;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: none;
  animation: fadeIn 0.4s var(--ease);
}

/* ─── Premium Contact Details Card ─── */
.contact-page__details-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 26, 20, 0.05);
  border-radius: var(--r-xl); /* matching other cards */
  padding: 48px;
  margin-top: 48px; /* margin-top ~48px from form */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}
.contact-page__details-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(26, 26, 20, 0.08);
  padding-bottom: 16px;
}
.contact-page__info-row {
  display: flex;
  justify-content: space-between;
  gap: 32px; /* flex row with gap */
  flex-wrap: wrap; /* wrapping on mobile */
}
.contact-page__info-item {
  flex: 1;
  min-width: 200px; /* 3 items spaced evenly, wrapping naturally */
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page__info-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* reuse same style as form labels */
  color: var(--rust);
  background: rgba(217, 98, 43, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}
.contact-page__info-value {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5; /* line-height comfortable */
}
.contact-page__info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-page__info-value a:hover {
  color: var(--rust);
}

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

/* ─── Responsive for Contact Page ─── */
@media (max-width: 768px) {
  .contact-page {
    padding: 130px 0 60px;
  }
  .contact-page__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-page__details-card {
    padding: 32px 24px;
    margin-top: 40px;
  }
  .contact-page__details-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
  .contact-page__info-row {
    flex-direction: column;
    gap: 24px;
  }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
  background: transparent;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 28px;
}
.badge {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px 24px 26px;
  box-shadow: 0 14px 30px -10px rgba(26, 26, 20, 0.18);
  border: 1.5px solid rgba(26, 26, 20, 0.05);
  transition: transform .25s var(--ease);
}
.badge:hover {
  transform: translateY(-6px);
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
  .badge:hover {
    transform: none;
  }
}

/* Lanyard hole notch */
.badge::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 14px;
  background: #F5F1E8; /* Matches the site's main cream background */
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  border: 1.5px solid rgba(26, 26, 20, 0.05);
  border-top: none;
  z-index: 2;
}
.badge::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 5px;
  border-radius: 3px;
  background: var(--rust);
  z-index: 3;
}

.badge-tab {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.badge-tab .folder-icon {
  width: 14px;
  height: 11px;
  position: relative;
}
.badge-tab .folder-icon .body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 9px;
  background: var(--rust);
  border-radius: 2px;
}
.badge-tab .folder-icon .tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 3px;
  background: var(--rust);
  border-radius: 2px 2px 0 0;
}
.badge-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .06em;
  font-weight: 500;
}

.badge-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  margin-top: 26px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.badge-photo.filled {
  background: linear-gradient(150deg, var(--olive-light), var(--dark));
}
.badge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-origin, center);
}
.badge-photo .initials {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 32px;
  color: var(--rust);
}

.badge-name {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 19px;
  margin-top: 18px;
  color: var(--dark);
}
.badge-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.badge-divider {
  height: 1px;
  background: rgba(26, 26, 20, 0.08);
  margin: 16px 0 12px;
}
.badge-barcode {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 22px;
  opacity: .55;
}
.badge-barcode span {
  width: 2px;
  background: var(--dark);
  display: block;
}

