/* ============================================================
   HOME PAGE
   ============================================================ */

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
}

.hero-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.hero-title {
  font-size: clamp(72px, 16vw, 240px);
  text-align: center;
  position: relative;
}
.hero-title .line {
  display: block;
  overflow: visible;
}
.hero-title .line > span {
  display: inline-block;
  animation: heroRise 1.1s cubic-bezier(.2,.65,.15,1) both;
}
.hero-title .line:nth-child(1) > span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.45s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.8s; }

@keyframes heroRise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Brushstroke under "Rarefy" script */
.brushwrap {
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
}
.brush {
  position: absolute;
  inset: -8% -6% -2% -6%;
  z-index: 0;
  pointer-events: none;
}
.brush svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.brush rect {
  transform-origin: left center;
  transform: scaleX(0);
  animation: brushSweep 1.1s cubic-bezier(.7,0,.2,1) 0.5s forwards;
}
@keyframes brushSweep {
  to { transform: scaleX(1); }
}

.hero-script {
  font-family: var(--font-script);
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.95em;
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
  padding: 0 0.05em;
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  animation: fadeIn 0.9s ease 1.2s both;
}
.hero-lede {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-foot-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-scrollhint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  animation: fadeIn 0.9s ease 1.5s both;
}
.hero-scrollhint .hint-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.hero-scrollhint .hint-line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background: var(--ink);
  animation: hintMove 2s ease-in-out infinite;
}
@keyframes hintMove {
  0%, 100% { left: 0; }
  50% { left: 22px; }
}

/* INTRO */
.intro {
  padding: var(--section) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left { position: sticky; top: 120px; }

.intro-statement {
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 400;
  margin-top: 12px;
}
.intro-statement .accent-text {
  background: var(--accent);
  padding: 0 0.12em 0.05em;
  display: inline-block;
}
.intro-statement .hand {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.08em;
  font-style: normal;
}

.intro-image {
  width: 100%;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.stat-num {
  display: block;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
}
.stat-num .plus { color: var(--accent-deep); }
.stat-label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

/* SERVICES */
.services {
  padding: var(--section) var(--gutter);
  background: var(--bg);
}
.services-head {
  margin-bottom: 60px;
}
.services-title {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.92;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  --card-bg: var(--bg-soft);
  --card-fg: var(--ink);
  background: var(--card-bg);
  color: var(--card-fg);
  padding: 36px 32px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: transform 0.5s cubic-bezier(.7,0,.2,1);
}
.service-card:hover { transform: translateY(-6px); }

.service-card.s1 { --card-bg: #c5e84e; }
.service-card.s2 { --card-bg: #efece1; }
.service-card.s3 { --card-bg: #0d0d0b; --card-fg: #f4f1e8; }
.service-card.s4 { --card-bg: #efece1; }
.service-card.s5 { --card-bg: #c5e84e; }
.service-card.s6 { --card-bg: #0d0d0b; --card-fg: #f4f1e8; }

.card-num {
  margin-bottom: auto;
  opacity: 0.6;
}
.card-title {
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 0.92;
  margin: 60px 0 18px;
}
.card-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
  opacity: 0.9;
}
.card-list {
  list-style: none;
  border-top: 1px solid currentColor;
  padding-top: 14px;
  margin-bottom: 24px;
}
.card-list li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed currentColor;
  opacity: 0.85;
}
.card-list li:last-child { border-bottom: 0; }
.card-link {
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}
.service-card.s3 .card-link:hover,
.service-card.s6 .card-link:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.service-card.s1 .card-link:hover,
.service-card.s2 .card-link:hover,
.service-card.s4 .card-link:hover,
.service-card.s5 .card-link:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.card-link .arrow { transition: transform 0.3s; }
.card-link:hover .arrow { transform: translateX(4px); }

/* EVENT TYPES — sticky split */
.types {
  background: var(--bg-soft);
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.types-sticky {
  position: sticky;
  top: 120px;
  padding-left: var(--gutter);
}
.types-title {
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.9;
  margin: 16px 0 20px;
}
.types-title .dot-accent { color: var(--accent-deep); }
.types-sub {
  max-width: 360px;
  font-size: 16px;
  color: var(--ink-soft);
}
.types-scroller {
  display: grid;
  gap: 24px;
  padding-right: var(--gutter);
}
.type-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr 1.4fr;
  gap: 28px;
  align-items: center;
  transition: background 0.4s, color 0.4s;
}
.type-card:hover {
  background: var(--ink);
  color: var(--bg);
}
.type-card:hover .type-img {
  background:
    repeating-linear-gradient(45deg, rgba(244,241,232,0.08) 0 12px, transparent 12px 24px),
    var(--ink-soft);
  border-color: rgba(244,241,232,0.2);
}
.type-card:hover .ph-label {
  background: var(--ink);
  color: var(--bg);
  border-color: rgba(244,241,232,0.2);
}
.type-num {
  align-self: start;
  color: var(--accent-deep);
  font-weight: 600;
}
.type-name {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.95;
}
.type-img {
  aspect-ratio: 16/9;
  border-radius: 12px;
}

/* WHY */
.why {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section) var(--gutter);
}
.why-head { margin-bottom: 80px; }
.why-head .section-tag.light { color: rgba(244,241,232,0.55); }
.why-title {
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.9;
}
.why-title .split-line { color: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244,241,232,0.18);
  border: 1px solid rgba(244,241,232,0.18);
}
.why-card {
  background: var(--ink);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  transition: background 0.4s;
  position: relative;
}
.why-card:hover { background: #1a1a16; }
.why-num {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 24px;
}
.why-card h4 {
  font-size: 22px;
  font-weight: 500;
}
.why-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,232,0.7);
  max-width: 32ch;
}

/* VISION */
.vision {
  padding: var(--section) var(--gutter);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.vision-text {
  font-size: clamp(36px, 5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-display);
  max-width: 22ch;
  margin-top: 24px;
}

/* HOME CTA */
.home-cta {
  padding: var(--section) var(--gutter);
  text-align: center;
  background: var(--bg-soft);
}
.cta-title {
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.88;
}
.cta-sub {
  margin: 24px 0 36px;
  font-size: 18px;
  color: var(--ink-soft);
}
.cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-left { position: static; }
  .types { grid-template-columns: 1fr; }
  .types-sticky { position: static; padding: 0 var(--gutter); }
  .types-scroller { padding: 0 var(--gutter); }
  .type-card { grid-template-columns: auto 1fr; }
  .type-img { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-meta { font-size: 10px; }
}
