@import url('https://fonts.googleapis.com/css2?family=Jua&family=Do+Hyeon&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css');

:root {
  /* Palette — 스마일 톤: 코랄 + 옐로우 + 민트 + 딥 잉크 */
  --bg: #fdf4e3;
  --bg-soft: #fff8ee;
  --ink: #15172a;
  --ink-soft: #2e3142;
  --muted: #6b6f85;
  --line: rgba(21, 23, 42, 0.1);

  --primary: #ff5a5f;
  --primary-deep: #d63a3f;
  --yellow: #ffd23f;
  --mint: #58cdb1;
  --plum: #2d1f56;

  --font-display: 'Jua', 'Pretendard Variable', sans-serif;
  --font-bold: 'Do Hyeon', 'Pretendard Variable', sans-serif;
  --font-body: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-xl: 48px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px -22px rgba(21, 23, 42, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(21, 23, 42, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: min(1240px, 92%); margin: 0 auto; }

/* ════════════════════════════════════════════════
   TICKER (top announcement, infinite horizontal)
══════════════════════════════════════════════════ */
.ticker {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 0.7rem 0;
  position: relative;
  z-index: 90;
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.ticker__track > span { display: inline-flex; align-items: center; gap: 2.5rem; }
.ticker__track > span::after {
  content: '◆';
  color: var(--yellow);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════════════════ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--primary), var(--plum));
  z-index: 200;
}

/* ════════════════════════════════════════════════
   HEADER (floating pill)
══════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 1.1rem 0;
  background: transparent;
  transition: padding 0.3s var(--ease);
}
.header.scrolled { padding: 0.6rem 0; }
.header__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.7rem 0.7rem 0.7rem 1.6rem;
  background: var(--ink);
  border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}
.header.scrolled .header__pill { transform: scale(0.97); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--bg);
}
.brand__logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.brand__logo::before,
.brand__logo::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 50%;
}
.brand__logo::before {
  width: 6px; height: 6px;
  top: 32%; left: 28%;
}
.brand__logo::after {
  width: 6px; height: 6px;
  top: 32%; right: 28%;
}
.brand__logo .smile {
  position: absolute;
  bottom: 25%; left: 50%;
  width: 16px; height: 8px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  border: 2.5px solid var(--ink);
  border-top: 0;
  transform: translateX(-50%);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}
.brand__domain {
  font-size: 0.7rem;
  color: rgba(253, 244, 227, 0.55);
  letter-spacing: 1px;
  margin-top: -2px;
}

.nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
  margin-right: 0.8rem;
}
.nav a {
  color: rgba(253, 244, 227, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.7rem 1.3rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.nav-cta:hover { background: var(--primary); color: var(--bg); transform: translateY(-2px); }

.nav-toggle { display: none; }

/* ════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 5rem 0 7rem;
  overflow: hidden;
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* sunburst rotating circle */
.sunburst {
  position: absolute;
  top: -250px; right: -250px;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--yellow) 0deg 30deg,
    transparent 30deg 60deg,
    var(--yellow) 60deg 90deg,
    transparent 90deg 120deg,
    var(--yellow) 120deg 150deg,
    transparent 150deg 180deg,
    var(--yellow) 180deg 210deg,
    transparent 210deg 240deg,
    var(--yellow) 240deg 270deg,
    transparent 270deg 300deg,
    var(--yellow) 300deg 330deg,
    transparent 330deg 360deg
  );
  opacity: 0.6;
  filter: blur(0.5px);
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  will-change: transform;
}

/* sticker emojis floating around */
.sticker {
  position: absolute;
  font-size: 2.4rem;
  will-change: transform;
  filter: drop-shadow(0 8px 16px rgba(21,23,42,0.18));
  user-select: none;
}
.sticker--1 { top: 18%; left: 6%; }
.sticker--2 { top: 8%; left: 38%; font-size: 1.8rem; }
.sticker--3 { top: 60%; left: 12%; font-size: 2rem; }
.sticker--4 { top: 70%; right: 18%; font-size: 2.2rem; }
.sticker--5 { top: 30%; right: 8%; font-size: 1.6rem; }

/* squiggle SVG underline */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero__pre {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero__pre .blink {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -2px;
  margin-bottom: 2rem;
}
.hero__title .row {
  display: block;
  position: relative;
}
.hero__title .word-coral {
  background: var(--primary);
  color: var(--bg);
  padding: 0.05em 0.3em;
  border-radius: 14px;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero__title .word-yellow {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero__title .word-yellow::before {
  content: '';
  position: absolute;
  inset: 65% -8px -2px -8px;
  background: var(--yellow);
  border-radius: 100px;
  z-index: -1;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: 2.5px solid var(--ink);
}
.btn--solid {
  background: var(--ink);
  color: var(--bg);
}
.btn--solid:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--primary);
}
.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn--yellow:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn__icon { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover .btn__icon { transform: translateX(4px); }

.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero__rating .stars { color: var(--yellow); font-size: 1.05rem; letter-spacing: 1px; }

/* Hero visual — big circle with 'SMILE' label that rotates with scroll */
.hero__visual {
  position: relative;
  height: 520px;
  display: grid;
  place-items: center;
}
.smile-card {
  position: relative;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--ink);
  display: grid; place-items: center;
  box-shadow: 12px 12px 0 var(--ink);
  z-index: 2;
}
.smile-card__face {
  width: 70%; height: 70%;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  position: relative;
}
.smile-card__face .eye {
  position: absolute;
  width: 18px; height: 22px;
  background: var(--ink);
  border-radius: 50%;
  top: 32%;
}
.smile-card__face .eye--l { left: 28%; }
.smile-card__face .eye--r { right: 28%; }
.smile-card__face .mouth {
  position: absolute;
  bottom: 22%; left: 50%;
  width: 60%; height: 30%;
  border: 5px solid var(--ink);
  border-top: 0;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background: var(--primary);
  transform: translateX(-50%);
}
.smile-card__face .blush {
  position: absolute;
  width: 24px; height: 12px;
  background: var(--primary);
  border-radius: 100px;
  bottom: 28%;
  opacity: 0.7;
}
.smile-card__face .blush--l { left: 14%; }
.smile-card__face .blush--r { right: 14%; }

/* rotating ring text */
.ring-text {
  position: absolute;
  inset: -40px;
  will-change: transform;
}
.ring-text svg { width: 100%; height: 100%; }
.ring-text text {
  font-family: var(--font-display);
  font-size: 14px;
  fill: var(--ink);
  letter-spacing: 6px;
}

/* corner decoration */
.hero__corner {
  position: absolute;
  bottom: -30px; right: -30px;
  font-family: var(--font-display);
  background: var(--mint);
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  border: 3px solid var(--ink);
  font-size: 0.95rem;
  transform: rotate(8deg);
  z-index: 3;
}

/* ════════════════════════════════════════════════
   STATS BAR (counters)
══════════════════════════════════════════════════ */
.stats {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 90, 95, 0.2) 0%, transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(255, 210, 63, 0.15) 0%, transparent 40%);
  will-change: transform;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 0.6rem;
  letter-spacing: -1px;
}
.stat__num .unit {
  font-size: 0.55em;
  color: var(--bg);
  margin-left: 0.1em;
}
.stat__label {
  font-size: 0.95rem;
  color: rgba(253, 244, 227, 0.7);
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════
   COMMON SECTION
══════════════════════════════════════════════════ */
.section {
  padding: 7rem 0;
  position: relative;
}
.section__head { max-width: 760px; margin-bottom: 4rem; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
}
.section__desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.about__deco-circle {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.4;
  top: -100px; left: -100px;
  filter: blur(40px);
  will-change: transform;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--primary);
  border: 3px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
  overflow: hidden;
}
.about__visual::before {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  background:
    radial-gradient(circle, rgba(255, 210, 63, 0.6) 0%, transparent 40%);
  top: -50%; left: -50%;
  will-change: transform;
}
.about__badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  z-index: 2;
}
.about__badge .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1px;
}
.about__badge .num span { color: var(--primary); }
.about__badge .label {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about__sticker {
  position: absolute;
  top: -30px; right: -30px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink);
  transform: rotate(12deg);
  z-index: 3;
  line-height: 1.2;
}

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.about__content h2 em {
  font-style: normal;
  background: var(--yellow);
  padding: 0 0.2em;
  border-radius: 8px;
}
.about__content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}

.about__points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease);
}
.point:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.point__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border: 2px solid var(--ink);
}
.point strong {
  display: block;
  font-family: var(--font-bold);
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.3px;
}
.point span { color: var(--muted); font-size: 0.93rem; }

/* ════════════════════════════════════════════════
   SERVICES — sticky horizontal scroll
══════════════════════════════════════════════════ */
.services {
  background: var(--bg);
  padding: 0;
  position: relative;
}
.services__intro {
  padding: 7rem 0 5rem;
  text-align: center;
}
.services__pin {
  position: relative;
  height: 320vh; /* total scroll length controls horizontal range */
}
.services__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.services__track {
  display: flex;
  gap: 1.8rem;
  padding: 0 8vw;
  will-change: transform;
}
.svc-card {
  flex: none;
  width: clamp(280px, 28vw, 400px);
  height: 60vh;
  max-height: 540px;
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.svc-card:nth-child(1) { background: #ffe4d4; }
.svc-card:nth-child(2) { background: var(--yellow); }
.svc-card:nth-child(3) { background: var(--mint); color: var(--ink); }
.svc-card:nth-child(4) { background: #f8d6d8; }
.svc-card:nth-child(5) { background: var(--primary); color: var(--bg); }
.svc-card:nth-child(6) { background: #d8e8ff; }

.svc-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: auto;
  letter-spacing: 1px;
  opacity: 0.7;
}
.svc-card__emoji {
  font-size: 4.5rem;
  line-height: 1;
  margin: 1rem 0;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.7rem;
}
.svc-card__desc { font-size: 0.95rem; line-height: 1.7; opacity: 0.85; }

.services__hint {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
  border: 2px solid var(--ink);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  letter-spacing: 1px;
}
.services__hint::before { content: '↓ '; color: var(--primary); }
.services__hint::after { content: ' ↓'; color: var(--primary); }

/* ════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════ */
.process {
  background: var(--plum);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.process .section__title { color: var(--bg); }
.process .section__desc { color: rgba(253,244,227,0.7); }
.process .section__tag { background: var(--bg); color: var(--plum); }

.process__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.process__deco .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.process__deco .orb--1 {
  width: 400px; height: 400px;
  background: var(--primary);
  opacity: 0.35;
  top: -100px; right: -100px;
}
.process__deco .orb--2 {
  width: 350px; height: 350px;
  background: var(--yellow);
  opacity: 0.25;
  bottom: -80px; left: -80px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.step {
  background: rgba(253, 244, 227, 0.06);
  border: 2px solid rgba(253, 244, 227, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.step:hover { background: rgba(253, 244, 227, 0.1); transform: translateY(-6px); }
.step__num {
  font-family: var(--font-display);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--bg);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}
.step p { color: rgba(253,244,227,0.72); font-size: 0.94rem; line-height: 1.7; }

/* ════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════ */
.reviews {
  background: var(--bg-soft);
  overflow: hidden;
}
.reviews__rail {
  display: flex;
  gap: 1.5rem;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
  margin-top: 3rem;
}
.reviews__rail:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review {
  flex: none;
  width: 360px;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: 6px 6px 0 var(--ink);
}
.review__stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review__text { color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.2rem; font-size: 0.96rem; }
.review__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  border: 2px solid var(--ink);
}
.review__author span { font-weight: 700; color: var(--ink); }
.review__author small { color: var(--muted); margin-left: 0.4rem; }

/* ════════════════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════════════════ */
.contact {
  background: var(--bg);
  padding: 5rem 0 7rem;
}
.contact__card {
  background: var(--primary);
  border: 3px solid var(--ink);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  box-shadow: 16px 16px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.contact__card::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  background: var(--yellow);
  border-radius: 50%;
  bottom: -120px; right: -80px;
  filter: blur(40px);
  opacity: 0.6;
  will-change: transform;
}
.contact__head { color: var(--bg); position: relative; z-index: 1; }
.contact__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.contact__head p {
  line-height: 1.85;
  margin-bottom: 2rem;
  color: rgba(253, 244, 227, 0.92);
}
.contact__list {
  display: grid;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.contact__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  align-items: center;
}
.contact__row .label {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 0.92rem;
}
.contact__row .value { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }
.contact__row .value a { color: var(--primary-deep); font-weight: 700; }

/* ════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(253, 244, 227, 0.7);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer__massive {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.9;
  color: var(--bg);
  letter-spacing: -3px;
  margin-bottom: 3rem;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0.92;
}
.footer__massive .ghost { -webkit-text-stroke: 2px var(--bg); color: transparent; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(253,244,227,0.12);
}
.footer__brand h3 {
  font-family: var(--font-display);
  color: var(--bg);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}
.footer__brand p { font-size: 0.92rem; line-height: 1.7; }
.footer__col h4 {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col a, .footer__col li {
  font-size: 0.9rem;
  color: rgba(253, 244, 227, 0.65);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(253,244,227,0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.83rem;
  color: rgba(253,244,227,0.5);
}
.footer__biz {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__biz span strong { color: var(--bg); margin-right: 0.4rem; }

/* ════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.22s; }
.reveal--d3 { transition-delay: 0.34s; }

/* ════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__grid,
  .about__grid,
  .contact__card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__visual { height: 400px; }
  .smile-card { width: 320px; height: 320px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .services__pin { height: 240vh; }
  .svc-card { width: 280px; height: 50vh; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .header__pill { padding: 0.6rem 0.9rem; }
  .ticker__track { font-size: 0.85rem; gap: 1.5rem; }
  .ticker__track > span { gap: 1.5rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .contact__card { padding: 2.5rem 1.8rem; }
  .contact__row { grid-template-columns: 1fr; gap: 0.3rem; }
  .services__pin { height: 280vh; }
  .svc-card { width: 240px; padding: 1.6rem; }
  .footer__massive { font-size: 3rem; letter-spacing: -1.5px; white-space: normal; }
  .smile-card { width: 260px; height: 260px; box-shadow: 8px 8px 0 var(--ink); }
  .about__sticker { width: 100px; height: 100px; font-size: 0.8rem; top: -20px; right: -10px; }
  .about__visual { box-shadow: 8px 8px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .services__pin { height: auto; }
  .services__sticky { position: relative; height: auto; overflow-x: auto; padding: 2rem 0; }
  .services__track { transform: none !important; }
}
