:root {
  --yellow: #f6d328;
  --ink: #16181d;
  --ink-soft: #4a4f58;
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --line: #e6e6e2;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

header.site {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
header.site .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site .brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; text-decoration: none; }
header.site .brand img { height: 2.1rem; width: auto; }
header.site .header-cta {
  font-weight: 700;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
header.site .site-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
}
header.site .site-nav a { text-decoration: none; color: var(--ink-soft); }
header.site .site-nav a.active { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .hero .art { aspect-ratio: 16 / 9; }
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 1.7rem;
  max-width: 46ch;
}
.hero .art {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero .art img { width: 100%; height: 100%; object-fit: cover; }

.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid var(--ink);
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.secondary { background: transparent; color: var(--ink); }

section.services { background: var(--bg-soft); padding: 3rem 1.5rem; }
.services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1080px;
  margin: 1.8rem auto 0;
}
@media (max-width: 800px) { .services .grid { grid-template-columns: 1fr; } }
.services .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}
.services .card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.services .card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.section-heading { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section-heading h2 { font-size: 1.6rem; letter-spacing: -0.02em; margin: 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
}

section.how { padding: 3.5rem 1.5rem; }
.how .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 1.8rem auto 0;
  counter-reset: step;
}
@media (max-width: 800px) { .how .steps { grid-template-columns: 1fr; } }
.how .step { position: relative; padding-left: 2.6rem; }
.how .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.how .step h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.how .step p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

section.gallery { padding: 3.5rem 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 1.8rem auto 0;
}
@media (max-width: 800px) { section.gallery { display: none; } }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

section.about {
  background: var(--bg-soft);
  padding: 3.5rem 1.5rem;
}
.about .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) { .about .inner { grid-template-columns: 1fr; } .about .art { aspect-ratio: 4 / 3; } }
.about .art { border-radius: 18px; overflow: hidden; aspect-ratio: 3 / 4; }
.about .art img { width: 100%; height: 100%; object-fit: cover; }
.about p { color: var(--ink-soft); }

section.partner {
  padding: 3.5rem 1.5rem;
}
.partner .box {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 800px) { .partner .box { grid-template-columns: 1fr; } }
.partner .box .eyebrow { color: var(--yellow); }
.partner .box h2 { margin: 0 0 0.8rem; font-size: 1.5rem; }
.partner .box p { margin: 0; color: #cfd1d6; }
.partner .box .btn.primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

section.simple { padding: 3.5rem 1.5rem; max-width: 760px; margin: 0 auto; }
section.simple h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
section.simple p { color: var(--ink-soft); font-size: 1.05rem; }
section.simple .contact-list { list-style: none; padding: 0; margin: 1.5rem 0; }
section.simple .contact-list li { margin-bottom: 0.6rem; font-size: 1.05rem; }
section.simple .contact-list a { font-weight: 700; text-decoration: underline; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
}
footer.site .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
@media (max-width: 800px) { footer.site .inner { grid-template-columns: 1fr; } }
footer.site h4 { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 0.6rem; }
footer.site .brand-line { font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
