/* ============================================================
   THE STORYLINE — Global Stylesheet
   Palette: #FAFAF8 (bg) · #111111 (ink) · #FFFFFF (white)
   Fonts: Sora (sans) · Fraunces (serif display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:        #FAFAF8;
  --ink:       #111111;
  --white:     #FFFFFF;
  --gray-light:#F0EEEB;
  --gray-mid:  #D4D2CE;
  --gray-dark: #888884;

  --font-sans: 'Sora', system-ui, sans-serif;
  --font-serif:'Fraunces', Georgia, serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 11rem;

  --max-w:     1280px;
  --nav-h:     72px;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
}
:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 3px;
}

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-sm {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.serif-display {
  font-family: var(--font-serif);
  font-style: italic;
}
.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; font-weight: 300; }
.body-md { font-size: 1rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

.section { padding-block: var(--space-xl); }
.section-sm { padding-block: var(--space-lg); }
.section-inverted { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s var(--ease-out), color 0.2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
}
.btn-primary:hover { background: var(--white); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost-white:hover { background: var(--white); color: var(--ink); }

/* ── Sectional scroll lock ── */
html.scrolljack,
html.scrolljack body {
  height: 100%;
  overflow: hidden;
}
/* ── Top navbar — logo only ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(17,17,17,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
}
.site-nav-logo {
  height: 52px;
  width: auto;
  display: block;
}

#scroll-stage {
  position: relative;
  width: 100%;
  margin-top: var(--nav-h);
  will-change: transform;
}
html.scrolljack #scroll-stage {
  transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
}
html.scrolljack .slide {
  height: calc(100svh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
html.scrolljack .slide.section { padding-block: var(--space-lg); }
html.scrolljack .slide::-webkit-scrollbar { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--nav-h));
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(14,7,2,0.78) 0%,
      rgba(14,7,2,0.52) 38%,
      rgba(14,7,2,0.18) 62%,
      transparent 82%),
    linear-gradient(to top,
      rgba(14,7,2,0.40) 0%,
      transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  color: var(--white);
}
.hero-headline {
  max-width: 16ch;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  text-shadow: 0 2px 24px rgba(14,7,2,0.35);
}
.hero-tagline {
  max-width: 42ch;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.80);
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero { align-items: flex-end; }
  .hero-bg-img { object-position: 68% center; }
  .hero-scrim {
    background:
      linear-gradient(to top,
        rgba(14,7,2,0.88) 0%,
        rgba(14,7,2,0.55) 45%,
        rgba(14,7,2,0.10) 80%,
        transparent 100%);
  }
  .hero-content { padding: 0 1.25rem 2.5rem; }
  .hero-headline { font-size: clamp(2rem, 9vw, 2.8rem); max-width: none; }
  .hero-tagline { margin-top: 0.85rem; font-size: 0.95rem; }
  .hero-actions { margin-top: 1.5rem; gap: 0.6rem; }
  .hero-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.72rem; }
}

/* ── Cards ── */
.card {
  border: 1.5px solid var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
  border-bottom: 1.5px solid var(--ink);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}
.card:hover .card-img img { transform: scale(1.04); filter: grayscale(100%) contrast(1.2); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}
.card-title { font-weight: 700; font-size: 1.25rem; line-height: 1.2; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.card-text { font-size: 0.9rem; opacity: 0.7; line-height: 1.65; flex: 1; }
.card-action { margin-top: 1.5rem; }

/* Icon cards */
.icon-card {
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.icon-card-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-card-icon svg { width: 28px; height: 28px; }
.icon-card-title { font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
.icon-card-text  { font-size: 0.875rem; opacity: 0.65; line-height: 1.6; }

/* ── Section Headers ── */
.section-header { margin-bottom: var(--space-lg); }
.section-header-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
@media (min-width: 900px) {
  .section-header-split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ── Two-column Brand Story ── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .brand-story { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .brand-story.reverse > *:first-child { order: 2; }
  .brand-story.reverse > *:last-child  { order: 1; }
}
.brand-story-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  background: var(--gray-light);
}
.brand-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}
.brand-story-img.about-photo-wrap img {
  filter: none;
}
html.scrolljack .about-photo-wrap {
  aspect-ratio: unset;
  max-height: 72svh;
}
.brand-story-img.art-contain img {
  object-fit: contain;
  background: var(--bg);
  padding: 2rem;
}
.brand-story-text { display: flex; flex-direction: column; gap: 1.25rem; }
.brand-story-text .display-sm { max-width: 16ch; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1.5px solid var(--ink);
}
.testimonial-item {
  padding: 2rem;
  border-bottom: 1.5px solid var(--ink);
}
.testimonial-item:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-item {
    border-right: 1.5px solid var(--ink);
    border-bottom: none;
  }
  .testimonial-item:last-child { border-right: none; }
  .testimonial-item:nth-child(2n) { border-right: none; }
  .testimonial-item:nth-child(-n+2) { border-bottom: 1.5px solid var(--ink); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-item:nth-child(2n) { border-right: 1.5px solid var(--ink); }
  .testimonial-item:nth-child(3n) { border-right: none; }
  .testimonial-item:nth-child(-n+2) { border-bottom: none; }
  .testimonial-item:nth-child(-n+3) { border-bottom: 1.5px solid var(--ink); }
  .testimonial-item:nth-child(n+4)  { border-bottom: none; }
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.testimonial-author span { display: block; font-weight: 400; opacity: 0.5; margin-top: 2px; }

.testimonial-grid--dark,
.testimonial-grid--dark .testimonial-item { border-color: rgba(255,255,255,0.18); }
.testimonial-grid--dark .testimonial-quote,
.testimonial-grid--dark .testimonial-author { color: var(--white); }

/* ── Gallery Strip ── */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink);
  overflow: hidden;
}
@media (min-width: 640px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.22) brightness(0.88);
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
}
.gallery-item-art img {
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  max-height: 100%;
}
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--gray-light);
  gap: 0.5rem;
  text-align: center;
}
.gallery-item-placeholder p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink);
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  padding: 2rem;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.team-card:last-child { border-right: none; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: 1.5px solid var(--ink);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar svg { width: 40px; height: 40px; opacity: 0.4; }
.team-avatar svg.face-icon { width: 56px; height: 56px; opacity: 1; }
.team-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.75rem; }
.team-bio  { font-size: 0.875rem; opacity: 0.65; line-height: 1.6; }

/* Only two founders — keep the grid to two clean columns instead of stretching to three */
#team .team-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
@media (min-width: 640px) { #team .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Contact / Connect ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1.5px solid var(--ink);
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-panel { padding: 2.5rem; }
.contact-panel + .contact-panel { border-top: 1.5px solid var(--ink); }
@media (min-width: 768px) {
  .contact-panel + .contact-panel { border-top: none; border-left: 1.5px solid var(--ink); }
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; }

/* ── Combined CTA + Find Us ── */
#find-us.slide > .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-find-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .cta-find-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}
.cta-left { display: flex; flex-direction: column; gap: 2rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17,17,17,0.12);
}
.cta-detail-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.cta-detail-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.45; }
.cta-detail-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.4; margin-bottom: 0.15rem; }
.cta-detail-value { font-size: 0.875rem; font-weight: 500; color: var(--ink); opacity: 0.8; }
.cta-map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(17,17,17,0.12);
  overflow: hidden;
}
.cta-map-frame svg { width: 100%; height: 100%; display: block; }

/* ── Map ── */
.map-frame {
  width: 100%;
  aspect-ratio: 16/7;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--gray-light);
}
.map-frame svg { width: 100%; height: 100%; display: block; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-top: 0;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-block: var(--space-lg) var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1fr auto; gap: clamp(2rem, 6vw, 5rem); } }
.footer-brand-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.footer-brand-text {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.7;
  max-width: 28ch;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-bottom {
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.35;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Misc Utilities ── */
.border-top-ink { border-top: 1.5px solid var(--ink); }
.border-bottom-ink { border-bottom: 1.5px solid var(--ink); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-white { background: var(--white); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* ── Illustration Frame ── */
.illus-frame {
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: #F5F3F0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Black section text helpers ── */
.section-inverted .card { border-color: rgba(255,255,255,0.2); }
.section-inverted .card-img { border-color: rgba(255,255,255,0.2); }
.section-inverted .icon-card { border-color: rgba(255,255,255,0.15); }
.section-inverted .icon-card-icon { border-color: rgba(255,255,255,0.2); }

/* ── Café Hours banner ── */
.hours-banner {
  background: var(--ink);
  color: var(--white);
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  border-bottom: 1.5px solid var(--ink);
}
.hours-banner-item {
  text-align: center;
}
.hours-banner-item .label { opacity: 0.4; margin-bottom: 0.25rem; }
.hours-banner-item p { font-size: 1rem; font-weight: 600; }

/* ── Stats section illustrations (matches reference layout/proportions) ── */
.stats-content { position: relative; }
#stats { position: relative; }
.stats-deco-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.stats-deco { position: absolute; height: auto; display: block; }
.stats-deco--latte {
  width: 37vw;
  max-width: 480px;
  top: 2%;
  right: -1%;
}
.stats-deco--plant {
  width: 22vw;
  max-width: 300px;
  bottom: -2%;
  left: 9%;
}
.stats-deco--table {
  width: 23vw;
  max-width: 320px;
  bottom: -3%;
  right: 9%;
}
@media (max-width: 900px) {
  .stats-deco-layer { display: none; }
}

.stats-deco-mobile { display: none; }
@media (max-width: 900px) {
  .stats-deco-mobile {
    display: block;
    width: min(58%, 260px);
    height: auto;
    margin: 2.5rem auto 0;
  }
}

/* ── Vibe interstitial slide ─────────────────── */
.vibe-slide {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.vibe-deco-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.vibe-deco {
  position: absolute;
  height: auto;
  display: block;
  filter: invert(1);
}
.vibe-deco--latte {
  width: 44vw;
  max-width: 580px;
  top: -2%;
  right: -2%;
}
.vibe-deco--plant {
  width: 28vw;
  max-width: 380px;
  bottom: -4%;
  left: 5%;
}
.vibe-deco--table {
  width: 30vw;
  max-width: 420px;
  bottom: -4%;
  right: 8%;
}
@media (max-width: 900px) {
  .vibe-deco--latte { width: 60vw; right: -4%; }
  .vibe-deco--plant { width: 42vw; left: 2%; }
  .vibe-deco--table { display: none; }
}

/* ── Process section illustrations (bag lower-left, plant upper-right) ── */
#process { position: relative; }
.process-deco-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.process-deco { position: absolute; height: auto; display: block; }
.process-deco--bag {
  width: 13vw;
  max-width: 170px;
  bottom: -2%;
  left: 5%;
}
.process-deco--plant {
  width: 30vw;
  max-width: 400px;
  top: 4%;
  right: 3%;
}
@media (max-width: 900px) {
  .process-deco-layer { display: none; }
}

/* ── Team section illustrations (flanking the founder cards) ── */
#team { position: relative; }
.team-deco-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.team-deco {
  position: absolute;
  top: 50%;
  height: auto;
  display: block;
  transform: translateY(-50%);
}
.team-deco--left {
  width: min(42vw, calc((100vw - 824px) / 2 - 16px), 640px);
  left: -1%;
}
.team-deco--right {
  width: min(42vw, calc((100vw - 824px) / 2 - 16px), 640px);
  right: -1%;
}
@media (max-width: 1100px) {
  .team-deco-layer { display: none; }
}

/* ── Stat block ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1.5px solid var(--ink);
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
@media (min-width: 640px) {
  .stat-item:last-child { border-right: none; }
  .stat-item { border-bottom: none; }
}
.stat-item:nth-child(2n) { border-right: none; }
@media (min-width: 640px) {
  .stat-item:nth-child(2n) { border-right: 1.5px solid var(--ink); }
}
.stat-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.45; }

/* ── Marquee strip ── */
.marquee-strip {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-block: 0.85rem;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-item {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  flex-shrink: 0;
}
.marquee-sep {
  opacity: 0.2;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page-specific responsive layouts ── */

/* Connect: contact info rows — stack on mobile */
.contact-row-2col {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-row-2col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Print ── */
@media print {
  .brand-mark, .marquee-strip, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; opacity: .5; }
}
