:root {
  --bg: #fff8ed;
  --ink: #131315;
  --muted: #54545f;
  --card: #ffffff;
  --line: #dcd2ff;
  --accent-a: #ff5a5f;
  --accent-b: #ffb400;
  --accent-c: #00c2a8;
  --accent-d: #4f46e5;
  --shadow: 0 16px 40px rgba(22, 21, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 90, 95, 0.18), transparent 40%),
    radial-gradient(circle at 88% 28%, rgba(79, 70, 229, 0.18), transparent 38%),
    linear-gradient(180deg, #fff6ea 0%, #f8f5ff 60%, #f7fcff 100%);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.5;
}

.glow-a {
  background: var(--accent-b);
  top: -120px;
  left: -90px;
}

.glow-b {
  background: var(--accent-c);
  bottom: -140px;
  right: -80px;
}

.topbar,
main,
footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
}

.brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 4rem 0 3rem;
  max-width: 760px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent-d);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  margin-top: 0.6rem;
}

.hero-copy {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #181818;
  text-decoration: none;
  font-weight: 700;
  padding: 0.74rem 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 4.2rem;
}

.stats article,
.service-grid article,
.case-grid article,
.photo-grid figure {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(4px);
  border: 1px solid #ece5ff;
  border-radius: 16px;
  padding: 1.1rem;
}

.stats h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: var(--accent-d);
}

.stats p,
.services p,
.work p,
.contact p,
.gallery p {
  margin: 0;
  color: var(--muted);
}

.services,
.gallery,
.work,
.contact {
  padding-bottom: 4.2rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin-top: 0.55rem;
}

.service-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-grid figure {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo-grid figcaption {
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #2a2852;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.label {
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-a);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: linear-gradient(135deg, #ffead8, #e8eeff);
  border-radius: 20px;
  padding: 1.4rem;
  border: 1px solid #e5dcff;
}

.contact-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin: 0.55rem 0;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  color: #2a2852;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6ceff;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
}

footer {
  padding: 0.8rem 0 1.5rem;
  color: #6a6976;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .stats,
  .service-grid,
  .case-grid,
  .photo-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.8rem;
  }
}
