/** Shopify CDN: Minification failed

Line 153:29 Expected ":"
Line 154:10 Expected identifier but found whitespace
Line 154:11 Unexpected "1"
Line 229:31 Expected ":"
Line 230:8 Expected identifier but found whitespace
Line 230:9 Unexpected "rgba("
Line 279:2 Unexpected "{"
Line 279:14 Expected ":"
Line 283:0 Unexpected "}"

**/
/* =============================================================================
   TERRACINI COFFEE — Pillars Section
   section-tc-pillars.css
   ============================================================================= */

.tc-pillars {
  position: relative;
  /* bg set by stagger wrapper — #2A1510 */
  background-color: transparent;
  overflow: hidden;
}

.tc-pillars--spaced {
  padding: 128px 0 140px;
}

/* Ambient glow */
.tc-pillars__glow {
  position: absolute;
  top: 0;
  left: 25%;
  width: 480px;
  height: 480px;
  background: rgba(233, 201, 168, 0.04);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.tc-pillars__inner {
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.tc-pillars .tc-section-header {
  max-width: 760px;
  margin-bottom: 80px;
}

.tc-pillars .tc-section-header__eyebrow {
  margin-bottom: 28px;
}

.tc-pillars .tc-section-header__subheading {
  margin-top: 0;
}

.tc-pillars .tc-section-header__heading em {
  font-family: var(--font-stack-display, var(--font-stack-headings));
  font-style: italic;
  font-weight: 300;
  color: var(--tc-text-muted-inv);
}

/* ---- Grid ---- */
.tc-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
}

/* ---- Pillar card ---- */
.tc-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: default;
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 243, 230, 0.07);
  background: rgba(255, 243, 230, 0.03);
  transition: border-color var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth),
              background-color var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth);
}

.tc-pillar:hover {
  border-color: rgba(255, 243, 230, 0.12);
  background: rgba(255, 243, 230, 0.05);
}

.tc-pillar__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 243, 230, 0.1);
  background: rgba(255, 243, 230, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-mid);
  margin-bottom: 28px;
  transition:
    background-color var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth),
    color var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth),
    transform var(--tc-motion-duration-fast) var(--tc-motion-ease-card);
}

.tc-pillar:hover .tc-pillar__icon-wrap {
  background-color: var(--tc-mid);
  color: var(--tc-dark);
  transform: scale(1.1);
}

.tc-pillar__title {
  font-family: var(--font-stack-headings);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--tc-cream);
  margin: 0 0 8px;
  transition: color var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth);
}

.tc-pillar:hover .tc-pillar__title {
  color: var(--tc-mid);
}

.tc-pillar__subtitle {
  display: block;
  font-family: var(--font-stack-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tc-mid);
  margin-bottom: 20px;
}

.tc-pillar__desc {
  font-family: var(--font-stack-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--tc-text-muted-inv);
  margin: 0;
  opacity: 0.8;
  transition: opacity var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth);
}

.tc-pillar:hover {PLACEHOLDER}
  opacity: 1;
}

/* ---- Light color scheme ---- */
.tc-pillars--light .tc-section-header__eyebrow {
  color: rgba(63, 35, 24, 0.5);
}

.tc-pillars--light .tc-section-header__heading {
  color: var(--tc-dark);
}

.tc-pillars--light .tc-section-header__heading em {
  color: rgba(63, 35, 24, 0.52);
}

.tc-pillars--light .tc-section-header__subheading {
  color: rgba(63, 35, 24, 0.68);
}

.tc-pillars--light .tc-section-header__action {
  color: var(--tc-dark);
}

.tc-pillars--light .tc-section-header__action-icon {
  background-color: rgba(63, 35, 24, 0.06);
  border-color: rgba(63, 35, 24, 0.2);
  color: var(--tc-dark);
}

.tc-pillars--light .tc-section-header__action:hover .tc-section-header__action-icon {
  background-color: var(--tc-dark);
  border-color: var(--tc-dark);
  color: var(--tc-cream);
}

.tc-pillars--light .tc-pillars__glow {
  display: none;
}

.tc-pillars--light .tc-pillar {
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid rgba(63, 35, 24, 0.09);
  background: rgba(255, 255, 255, 0.6);
  transition: box-shadow var(--tc-motion-duration-fast) var(--tc-motion-ease-smooth);
}

.tc-pillars--light .tc-pillar:hover {
  box-shadow: 0 8px 28px rgba(63, 35, 24, 0.08);
}

.tc-pillars--light .tc-pillar__icon-wrap {
  border-color: rgba(63, 35, 24, 0.1);
  background: rgba(63, 35, 24, 0.04);
  color: rgba(63, 35, 24, 0.55);
}

.tc-pillars--light .tc-pillar:hover .tc-pillar__icon-wrap {
  background-color: var(--tc-dark);
  color: var(--tc-cream);
}

.tc-pillars--light .tc-pillar__title {
  color: var(--tc-dark);
}

.tc-pillars--light .tc-pillar:hover .tc-pillar__title {
  color: var(--tc-mid);
}

.tc-pillars--light .tc-pillar__subtitle {
  color: rgba(63, 35, 24, 0.5);
}

.tc-pillars--light {PLACEHOLDER}
  color: rgba(63, 35, 24, 0.65);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .tc-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 600px) {
  .tc-pillars--spaced {
    padding: 64px 0 80px;
  }

  .tc-pillars .tc-section-header {
    margin-bottom: 56px;
  }

  .tc-pillars__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tc-pillar {
    padding: 24px 20px;
  }

  .tc-pillars--light .tc-pillar {
    border-color: rgba(63, 35, 24, 0.09);
    background: rgba(255, 255, 255, 0.6);
  }

  .tc-pillar__icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .tc-pillar__title {
    font-size: 1.22rem;
  }

  .tc-pillar__subtitle {
    margin-bottom: 16px;
    letter-spacing: 0.22em;
  }

  {PLACEHOLDER}
    font-size: 0.92rem;
    line-height: 1.64;
  }
}
