:root {
  --bg: #EBE8DB;
  --surface: #E4E1D4;
  --surface-light: #D9D5C6;
  --text: #2A2119;
  --text-muted: #6B5E52;
  --primary: #FFDA3D;
  --primary-hover: #FFE566;
  --secondary: #2A2119;
  --accent: #2A2119;
  --radius: 24px;
  --font-heading: 'Instrument Serif', serif;
  --font-body: 'Instrument Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s;
}
header.scrolled { background: rgba(235, 232, 219, 0.92); backdrop-filter: blur(12px); }
nav { display: flex; justify-content: space-between; align-items: center; }

.logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
  color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 38px; height: 38px; background: var(--primary); border-radius: 10px;
  display: grid; place-items: center; font-size: 0.85rem; color: var(--text); border: 2px dashed rgba(42,33,25,0.2);
}

.nav-links { display: flex; gap: 12px; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 8px 14px; border-radius: 50px;
  position: relative; overflow: hidden; z-index: 1; transition: color 0.25s;
}
.nav-links a:not(.btn)::before {
  content: ''; position: absolute; inset: 0; background: var(--primary); border-radius: 50px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1); z-index: -1;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::before { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 50px; font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; text-decoration: none; border: none;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden;
  color: var(--cta-color, #2A2119);
}
.btn-primary { background: var(--primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(42,33,25,0.12); }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid rgba(42,33,25,0.18);
}
.btn-outline:hover { border-color: rgba(42,33,25,0.35); background: rgba(42,33,25,0.04); }

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; padding: 160px 0 100px;
  overflow: hidden;
}
.hero-small { min-height: 60vh; padding: 180px 0 80px; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(235,232,219,0.96) 0%, rgba(235,232,219,0.8) 45%, rgba(235,232,219,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 620px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px;
  background: var(--surface); border: 1px solid rgba(42,33,25,0.08); border-radius: 50px;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 24px; font-weight: 600;
}
.eyebrow span { color: var(--primary); font-size: 0.9rem; }

h1 {
  font-family: var(--font-heading); font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px;
}
h1 em { color: var(--primary); font-style: italic; }
.lead {
  font-size: 1.2rem; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.split-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-inner { display: inline-block; }

section { padding: 110px 0; position: relative; }
.section-header { max-width: 620px; margin: 0 auto 60px; text-align: center; }
.section-header h2 {
  font-family: var(--font-heading); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px;
}
.section-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 12px; font-weight: 600;
}

.services { background: var(--surface); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-item {
  background: var(--bg); border: 1px solid rgba(42,33,25,0.08); border-radius: var(--radius);
  padding: 26px; display: flex; align-items: center; gap: 18px; cursor: pointer;
  position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s;
}
.service-item::before {
  content: ''; position: absolute; inset: 0; background: var(--primary); border-radius: var(--radius);
  transform: scaleX(0); transform-origin: var(--origin, left); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); z-index: 0;
}
.service-item:hover { transform: translateY(-4px); border-color: var(--primary); }
.service-item:hover::before { transform: scaleX(1); }
.service-num, .service-name { position: relative; z-index: 1; }
.service-num { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-muted); }
.service-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; }
.service-item:hover .service-num { color: var(--text); }
.service-item.active { background: var(--primary); border-color: var(--primary); }
.service-item.active .service-num { color: var(--text); }

.flick-list {
  display: flex; gap: 16px; overflow-x: auto; cursor: grab; padding-bottom: 10px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.flick-list::-webkit-scrollbar { display: none; }
.flick-list .service-item { min-width: 280px; }
.flick-list .service-item:active { cursor: grabbing; }

.points-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.point-card {
  background: var(--surface); border: 1px solid rgba(42,33,25,0.08); border-radius: var(--radius);
  padding: 28px; display: flex; align-items: flex-start; gap: 16px;
}
.point-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.point-card p { color: var(--text-muted); font-size: 1rem; }

.cta-section { padding-bottom: 140px; }
.cta-box {
  background: var(--surface); border: 1px solid rgba(42,33,25,0.08); border-top: 4px solid var(--primary);
  border-radius: 36px; padding: 80px 40px; text-align: center;
}
.cta-box h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-box p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 32px; }

footer { padding: 50px 0; border-top: 1px solid rgba(42,33,25,0.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: var(--text); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

.option-mascot {
  position: fixed; right: 24px; bottom: 24px; width: 64px; height: 64px; z-index: 900;
  pointer-events: none; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}
.mascot-face {
  width: 100%; height: 100%; background: var(--surface); border: 2px solid rgba(42,33,25,0.12);
  border-radius: 50%; display: grid; place-items: center;
}
.mascot-eyes { display: flex; gap: 8px; }
.mascot-eye { width: 14px; height: 14px; background: var(--text); border-radius: 50%; position: relative; }
.mascot-pupil {
  width: 6px; height: 6px; background: var(--bg); border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.crumb {
  position: absolute; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; pointer-events: none;
}

.logo-wall { overflow: hidden; margin-top: 50px; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.logo-track { display: flex; gap: 60px; width: max-content; align-items: center; }
.logo-track span {
  font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-muted); white-space: nowrap; opacity: 0.7;
}

.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.option-card {
  background: var(--surface); border: 1px solid rgba(42,33,25,0.08); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s;
}
.option-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(42,33,25,0.08); }
.option-thumb { height: 160px; overflow: hidden; }
.option-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.option-card:hover .option-thumb img { transform: scale(1.05); }
.option-meta { padding: 22px; }
.option-industry { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.option-meta h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 8px; }
.option-meta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.option-cta { display: inline-block; padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(235,232,219,0.95) 0%, rgba(235,232,219,0.85) 60%, rgba(235,232,219,0.4) 100%); }
  .service-list, .points-grid, .options-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .logo-wall { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}