/* ============================================================
   UNIKA — home.css
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 56px 80px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse 80% 70% at 80% 30%, rgba(126,207,179,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 80% at 25% 50%, black 0%, transparent 100%);
}
.hero-left {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--mint);
  opacity: 0.55;
  display: block;
}
.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-headline-sub {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mint);
  margin-bottom: 32px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,249,247,0.5);
  margin-bottom: 48px;
  max-width: 440px;
}
.hero-sub span {
  color: rgba(250,249,247,0.85);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Discipline cards (hero right) */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.discipline-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.discipline-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--dark-border-mid);
}
.discipline-card.featured {
  border-color: var(--mint-mid);
  background: var(--mint-dim);
}
.disc-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--mint);
  opacity: 0.25;
  line-height: 1;
  min-width: 52px;
  transition: opacity 0.2s;
}
.discipline-card:hover .disc-num,
.discipline-card.featured .disc-num { opacity: 0.7; }

.disc-content { flex: 1; }
.disc-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.disc-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(250,249,247,0.38);
  line-height: 1.4;
}
.disc-arrow {
  color: var(--mint);
  font-size: 18px;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.discipline-card:hover .disc-arrow { opacity: 1; transform: translateX(3px); }
.discipline-card.featured .disc-arrow { opacity: 0.8; }

/* ── WORK PREVIEW — LIGHT ── */
.work-section {
  background: var(--white);
  padding: 100px 56px;
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.work-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 4px;
}
.filter-pill {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--light-border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--mint); color: var(--mint); }
.filter-pill.active { background: var(--mint); border-color: var(--mint); color: var(--black); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--off-white);
  border: 1px solid var(--light-border);
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(.25,.46,.45,.94), box-shadow 0.3s;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.work-card:hover .wc-img-wrap img { transform: scale(1.05); }
.work-card:hover .wc-overlay { opacity: 1; }
.work-card:hover .wc-arrow { opacity: 1; transform: translate(0,0); }

/* Card column spans */
.wc { grid-column: span 6; }
.wc--large { grid-column: span 8; }
.wc--small { grid-column: span 4; }
.wc--third { grid-column: span 4; }

.wc-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.wc--large .wc-img-wrap { aspect-ratio: 16/9; }
.wc--small .wc-img-wrap { aspect-ratio: 3/4; }

.wc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), opacity 0.3s ease;
}
.work-card:hover .wc-img-wrap img { opacity: 1; }

/* Placeholder colours */
.ph-dplus        { background: linear-gradient(135deg,#1a1010,#281818); }
.ph-growth       { background: linear-gradient(135deg,#1a0808,#2e1010); }
.ph-k9           { background: linear-gradient(135deg,#0a1a12,#0f2218); }
.ph-session      { background: linear-gradient(135deg,#08081a,#0e0e28); }
.ph-archer       { background: linear-gradient(135deg,#10140e,#181c14); }
.ph-hospitality  { background: linear-gradient(135deg,#1a1008,#241610); }
.ph-autocampaign { background: linear-gradient(135deg,#180e04,#201208); }

.wc-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
}

.wc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 45%, transparent 100%);
  opacity: 0.85;
  transition: opacity 0.3s;
  pointer-events: none;
}
.wc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 1;
}
.wc-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 5px;
  opacity: 0.8;
}
.wc-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.wc-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--black);
  opacity: 0;
  transform: translate(6px, -6px);
  transition: opacity 0.25s, transform 0.25s;
}

/* ── SERVICES STRIP — DARK ── */
.services-section {
  background: var(--dark2);
  padding: 100px 56px;
  border-top: 1px solid var(--dark-border);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--mint-mid);
  transform: translateY(-2px);
}
.service-card.featured {
  border-color: var(--mint-mid);
  background: var(--mint-dim);
}
.sc-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--mint);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: opacity 0.2s;
  font-family: var(--font-title);
}
.service-card:hover .sc-num,
.service-card.featured .sc-num { opacity: 0.5; }
.sc-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: var(--font-title);
}
.sc-name em { font-style: normal; color: var(--mint); }
.sc-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,249,247,0.4);
  flex: 1;
}
.sc-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-card:hover .sc-link { gap: 14px; }
.sc-link::after { content: '→'; }

/* ── ABOUT / FOUNDER STRIP — LIGHT ── */
.about-strip {
  background: var(--off-white);
  padding: 100px 56px;
  border-top: 1px solid var(--light-border);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-left {}
.about-strip-photo {
  width: 100%;
  max-width: 75%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8d4cb, #c5c0b4);
  position: relative;
}
.about-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%);
}
.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.about-photo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.about-photo-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--mint);
  margin-top: 2px;
}
.about-strip-right {}
.about-strip-right .s-title-light {
  margin-bottom: 2.5rem;
}
.about-strip-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-strip-body span { color: var(--text-dark); font-weight: 500; }
.about-strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.about-stat-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-num em { font-style: normal; color: var(--mint); }
.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── TESTIMONIAL / QUOTE STRIP — DARK ── */
.quote-section {
  background: var(--dark);
  padding: 100px 56px;
  border-top: 1px solid var(--dark-border);
}
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-size: 80px;
  line-height: 0.6;
  color: var(--mint);
  opacity: 0.3;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 24px;
}
.quote-text {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(250,249,247,0.75);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.quote-text em { font-style: normal; color: var(--mint); font-weight: 500; }
.quote-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.3);
}
.quote-author span { color: var(--mint); opacity: 0.7; }

/* ── CTA SECTION — OFF-WHITE ── */
.cta-section {
  background: var(--off-white);
  text-align: center;
  padding: 120px 56px;
  border-top: 1px solid var(--light-border);
}
.cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 22px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.025em;
}
.cta-title em { font-style: normal; color: var(--mint); }
.cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-wrap: pretty;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 120px 40px 80px;
  }
  .hero-right { display: none; }

  .work-grid .wc--large { grid-column: span 12; }
  .work-grid .wc--small { grid-column: span 6; }
  .work-grid .wc { grid-column: span 6; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-strip-left { display: none; }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-headline { font-size: clamp(32px, 9vw, 52px); }
  .hero-headline-sub { font-size: clamp(26px, 7vw, 42px); }

  .work-section { padding: 60px 24px; }
  .work-header { flex-direction: column; align-items: flex-start; }
  .work-grid .wc, .work-grid .wc--large, .work-grid .wc--small, .work-grid .wc--third {
    grid-column: span 12;
  }

  .services-section { padding: 60px 24px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  .about-strip { padding: 60px 24px; }

  .quote-section { padding: 60px 24px; }

  .cta-section { padding: 80px 24px; }
  .cta-actions { flex-direction: column; }
}
