@import url("https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #fff8ec;
  --panel: rgba(255, 252, 246, 0.84);
  --panel-strong: #fff6e7;
  --ink: #18161b;
  --muted: #5d5963;
  --line: rgba(24, 22, 27, 0.12);
  --lime: #cbff42;
  --peach: #ff9877;
  --pink: #ffd4e4;
  --sky: #d8ecff;
  --shadow: 0 22px 60px rgba(33, 26, 53, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 13%, rgba(203, 255, 66, 0.34), transparent 18%),
    radial-gradient(circle at 90% 9%, rgba(255, 152, 119, 0.22), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fff6e8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 120px;
  right: -40px;
  background: rgba(255, 212, 228, 0.65);
}

body::after {
  bottom: 120px;
  left: -60px;
  background: rgba(216, 236, 255, 0.85);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 22, 27, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 22, 27, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  opacity: 0.35;
}

.site-header,
.section,
.identity-strip,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 16px;
}

.brand,
.nav a,
.header-cta,
.button,
.identity-strip a,
.contact-details a,
.footer-meta a {
  color: inherit;
  text-decoration: none;
}

.brand,
h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
}

.brand-lockup {
  display: grid;
  gap: 6px;
}

.brand {
  letter-spacing: 0.08em;
  font-size: 0.98rem;
}

.brand-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--muted);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(24, 22, 27, 0.08);
}

.button.primary {
  background: var(--ink);
  color: #fffef8;
  box-shadow: 0 16px 32px rgba(24, 22, 27, 0.18);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.button.full {
  width: 100%;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  padding-top: 84px;
}

.hero {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6a57ff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.1;
}

.hero-text,
.about-copy p,
.about-note p,
.service-card p,
.process-card p,
.fit-card p,
.contact-copy p,
.contact-details p,
.site-footer p,
input,
textarea {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.hero-actions,
.hero-badges,
.values-cloud,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-badges {
  margin-top: 24px;
}

.hero-badges span,
.values-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(24, 22, 27, 0.06);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card,
.identity-strip article,
.card,
.service-card,
.process-card,
.fit-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card,
.identity-strip article,
.card,
.service-card,
.process-card,
.fit-card,
.contact-card {
  border-radius: 30px;
}

.main-photo {
  grid-row: span 2;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 221, 0.92));
}

.main-photo img,
.mini-photo img,
.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.memo-card,
.mini-photo {
  padding: 14px;
}

.memo-card {
  display: grid;
  align-content: start;
  background: linear-gradient(180deg, rgba(203, 255, 66, 0.34), rgba(255, 255, 255, 0.92));
}

.memo-tag,
.note-label,
.service-index,
.process-card span {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(24, 22, 27, 0.12);
  animation: floaty 4.8s ease-in-out infinite;
}

.sticker-one {
  top: -14px;
  left: 24%;
  background: var(--lime);
}

.sticker-two {
  right: -6px;
  bottom: 18px;
  background: var(--pink);
  animation-delay: 0.9s;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.identity-strip article,
.service-card,
.process-card,
.fit-card,
.contact-card,
.card {
  padding: 24px;
}

.identity-strip span {
  display: inline-block;
  margin-bottom: 12px;
  color: #6a57ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.about-copy {
  grid-row: span 2;
}

.about-note {
  background: linear-gradient(180deg, rgba(255, 212, 228, 0.52), rgba(255, 255, 255, 0.88));
}

.about-photo {
  padding: 14px;
  min-height: 320px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
}

.service-card.accent {
  background: linear-gradient(180deg, rgba(216, 236, 255, 0.66), rgba(255, 255, 255, 0.94));
}

.service-index {
  color: #6a57ff;
}

.process-shell {
  padding: 30px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 16% 18%, rgba(203, 255, 66, 0.25), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 230, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.process-grid,
.fit-grid {
  display: grid;
  gap: 16px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card span {
  display: inline-block;
  color: #6a57ff;
}

.values-cloud {
  gap: 16px;
}

.fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-card.highlight {
  background: linear-gradient(180deg, rgba(255, 152, 119, 0.22), rgba(255, 255, 255, 0.96));
}

.contact-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 84px;
}

.contact-card {
  padding: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px 18px;
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-details {
  margin-top: 18px;
  padding: 8px 6px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 34px;
}

.footer-brand {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .nav {
    justify-content: flex-start;
  }

  .identity-strip,
  .services-grid,
  .process-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-visual,
  .about-grid,
  .identity-strip,
  .services-grid,
  .process-grid,
  .fit-grid,
  .contact-section,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    gap: 24px;
  }

  .main-photo {
    grid-row: auto;
  }

  .about-copy {
    grid-row: auto;
  }

  .sticker {
    position: static;
    margin-top: 8px;
    justify-self: start;
  }

  .process-shell {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }
}
