:root {
  --cream: #f8f9ff;
  --paper: #ffffff;
  --ink: #171536;
  --muted: #687082;
  --coral: #ef4b72;
  --coral-dark: #d72f5b;
  --yellow: #ffc844;
  --teal: #1fc4c3;
  --lavender: #7654d7;
  --blue: #3556b6;
  --green: #88c929;
  --line: rgba(23, 21, 54, .13);
  --shadow: 0 20px 50px rgba(23, 21, 54, .15);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 20;
  background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(248, 249, 255, .92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 21, 54, .08);
}
.nav {
  width: min(var(--max), calc(100% - 40px)); margin: 0 auto;
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.04em; font-size: 1.25rem; }
.brand-logo { width: 68px; height: 68px; flex: none; object-fit: contain; object-position: center; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 13px; border-radius: 999px; font-weight: 800; color: #59676c; font-size: .94rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: #fff; box-shadow: 0 5px 18px rgba(64, 54, 40, .08); }
.menu-button { display: none; border: 0; background: transparent; color: var(--ink); font-size: 1.5rem; padding: 8px; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero { position: relative; overflow: hidden; padding: 90px 0 72px; background: var(--ink); color: #fff; border-radius: 0 0 46px 46px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; z-index: 0; opacity: .9; }
.hero::before { width: 330px; height: 330px; background: rgba(255,200,68,.25); right: -120px; top: 36px; }
.hero::after { width: 210px; height: 210px; background: rgba(31,196,195,.22); left: -110px; bottom: -50px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
.eyebrow { color: var(--coral-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .77rem; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.05em; margin: 0 0 18px; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 720px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
h3 { font-size: 1.35rem; }
.hero p { color: rgba(255,255,255,.78); max-width: 570px; font-size: 1.12rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 999px; font-weight: 900; border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(64, 54, 40, .12); }
.button-primary { color: #fff; background: var(--coral); }
.button-primary:hover { background: var(--coral-dark); }
.button-light { color: var(--ink); background: #fff; border-color: var(--line); }
.button-dark { color: #fff; background: var(--ink); }

.hero-art { position: relative; min-height: 410px; display: grid; place-items: center; }
.hero-logo { width: min(100%, 470px); border-radius: 26px; background: transparent; filter: drop-shadow(0 20px 22px rgba(0,0,0,.3)); transform: rotate(2deg); }
.art-card { width: min(100%, 450px); min-height: 360px; position: relative; overflow: hidden; border: 8px solid #fff; border-radius: 42% 58% 49% 51% / 45% 42% 58% 55%; background: linear-gradient(140deg, #ffb875, #f26b5e 52%, #9185dc); box-shadow: var(--shadow); transform: rotate(3deg); }
.art-card::before, .art-card::after { content: ""; position: absolute; border-radius: 50%; }
.art-card::before { width: 210px; height: 210px; top: -50px; right: -28px; background: rgba(255,255,255,.28); }
.art-card::after { width: 160px; height: 160px; bottom: -35px; left: -28px; background: rgba(102,200,187,.65); }
.film-strip { position: absolute; width: 72%; height: 76%; left: 14%; top: 12%; border: 3px solid var(--ink); border-radius: 22px; background: #fff5da; transform: rotate(-7deg); display: flex; align-items: center; justify-content: center; box-shadow: 12px 14px 0 rgba(32,49,59,.12); }
.film-strip::before, .film-strip::after { content: "✦  ✦  ✦  ✦"; position: absolute; left: 8%; right: 8%; letter-spacing: 14px; color: var(--coral); font-size: 1.1rem; white-space: nowrap; overflow: hidden; }
.film-strip::before { top: 10px; }
.film-strip::after { bottom: 10px; }
.film-word { font-size: clamp(2.4rem, 7vw, 4.6rem); font-weight: 900; letter-spacing: -.1em; color: var(--coral); transform: rotate(7deg); text-shadow: 4px 4px 0 var(--yellow); }
.spark { position: absolute; font-size: 2rem; color: var(--yellow); }
.spark.one { top: 12%; left: 5%; }.spark.two { right: 1%; bottom: 10%; color: var(--teal); }.spark.three { top: 8%; right: 8%; color: var(--lavender); }

.section { padding: 92px 0; }
.section-tight { padding: 62px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-heading p { max-width: 480px; color: var(--muted); margin: 0; }
.kicker { font-weight: 900; color: var(--coral-dark); font-size: .86rem; text-transform: uppercase; letter-spacing: .11em; }
.intro { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 10px 25px rgba(23, 21, 54, .06); }
.card p { color: var(--muted); margin: 0; }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--yellow); color: var(--ink); font-size: 1.5rem; margin-bottom: 20px; }
.card:nth-child(2) .card-icon { background: var(--teal); }.card:nth-child(3) .card-icon { background: var(--lavender); color: #fff; }.card:nth-child(4) .card-icon { background: var(--coral); color: #fff; }.card:nth-child(5) .card-icon { background: var(--green); }.card:nth-child(6) .card-icon { background: var(--blue); color: #fff; }
.number { color: var(--coral); font-weight: 900; font-size: 2.4rem; line-height: 1; margin-bottom: 20px; }
.band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 54px; position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; border: 32px solid rgba(102,200,187,.35); right: -55px; bottom: -100px; }
.band p { color: rgba(255,255,255,.74); max-width: 650px; }
.band .button-light { color: var(--ink); }

.page-hero { padding: 82px 0 64px; background: #eef2ff; border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--blue); }
.texture { position: relative; overflow: hidden; }
.texture::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 48% 52% 64% 36%; background: rgba(118,84,215,.2); right: 8%; top: -60px; transform: rotate(22deg); }
.team-card { display: flex; gap: 18px; align-items: center; }
.avatar { width: 66px; height: 66px; flex: none; display: grid; place-items: center; border-radius: 45% 55% 52% 48%; background: var(--coral); color: #fff; font-weight: 900; font-size: 1.3rem; }
.team-card:nth-child(2) .avatar { background: var(--teal); color: var(--ink); }.team-card:nth-child(3) .avatar { background: var(--yellow); }
.team-card p { margin: 3px 0 0; font-size: .92rem; }
.project-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.project-cover { min-height: 210px; padding: 25px; display: flex; align-items: end; position: relative; overflow: hidden; }
.project-cover::before, .project-cover::after { content: ""; position: absolute; border-radius: 50%; }
.project-cover::before { width: 170px; height: 170px; right: -25px; top: -42px; background: rgba(255,255,255,.28); }
.project-cover::after { width: 115px; height: 115px; left: -22px; bottom: -40px; background: rgba(32,49,59,.12); }
.cover-coral { background: linear-gradient(135deg, #f26b5e, #f5b55d); }.cover-teal { background: linear-gradient(135deg, #66c8bb, #d7efbd); }.cover-lavender { background: linear-gradient(135deg, #9185dc, #e4c8db); }
.project-tag { position: relative; z-index: 1; background: rgba(255,255,255,.84); padding: 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 900; }
.project-body { padding: 25px; flex: 1; display: flex; flex-direction: column; align-items: start; }.project-body p { color: var(--muted); margin-top: 0; }.text-link { color: var(--coral-dark); font-weight: 900; margin-top: auto; }.text-link:hover { text-decoration: underline; }
.detail-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 54px; align-items: start; }.detail-aside { position: sticky; top: 110px; }.detail-aside .card { background: #fff; }.detail-content p { color: var(--muted); font-size: 1.05rem; }.detail-content h2 { margin-top: 36px; font-size: 2rem; }.detail-list { padding-left: 20px; color: var(--muted); }.detail-list li { margin: 8px 0; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }.contact-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }.contact-row { display: flex; align-items: start; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }.contact-row:last-child { border-bottom: 0; }.contact-row strong { display: block; }.contact-row span { color: var(--muted); font-size: .93rem; }.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: none; border-radius: 13px; background: #fff0c4; }.notice { background: #fff0c4; border: 1px solid rgba(134, 99, 12, .2); color: #775913; border-radius: var(--radius-sm); padding: 16px 18px; font-size: .93rem; }
.site-footer { padding: 38px 0; background: var(--ink); color: #fff; margin-top: 50px; }.footer-grid { display: flex; justify-content: space-between; gap: 25px; align-items: center; }.footer-grid p { color: rgba(255,255,255,.68); margin: 6px 0 0; font-size: .9rem; }.footer-links { display: flex; gap: 17px; flex-wrap: wrap; font-weight: 800; font-size: .9rem; }.footer-links a:hover { color: var(--yellow); }
.empty-page { min-height: 68vh; display: grid; place-items: center; text-align: center; }.empty-page .card { max-width: 560px; }

@media (max-width: 820px) {
  .nav { min-height: 70px; }.menu-button { display: block; }.nav-links { display: none; position: absolute; top: 70px; left: 20px; right: 20px; padding: 12px; flex-direction: column; align-items: stretch; background: #fffdf9; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }.nav-links.open { display: flex; }.nav-links a { text-align: center; }
  .hero { padding-top: 56px; }.hero-grid, .detail-layout, .contact-layout { grid-template-columns: 1fr; }.hero-art { min-height: 330px; }.section { padding: 70px 0; }.grid-3 { grid-template-columns: 1fr; }.grid-2 { grid-template-columns: 1fr; }.section-heading { display: block; }.section-heading p { margin-top: 12px; }.detail-aside { position: static; }.band { padding: 34px 25px; }
}
@media (max-width: 520px) {
  .container, .nav { width: min(var(--max), calc(100% - 28px)); }.brand-logo { width: 58px; height: 58px; }.hero { padding-bottom: 48px; }.hero-art { min-height: 270px; }.footer-grid { display: block; }.footer-links { margin-top: 20px; }.page-hero { padding: 58px 0 45px; }
}
