:root {
  --bg: #fff3df;
  --card: #ffffff;

  --primary: #111111;
  --primary-text: #ffffff;

  --text: #111111;
  --muted: #5f5147;

  --accent: #ff4d2e;
  --accent-two: #7c3aed;
  --accent-three: #ffd166;

  --soft: rgba(255, 255, 255, 0.6);
  --line: rgba(17, 17, 17, 0.18);

  --focus-ring: rgba(255, 77, 46, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* DECOR */
.blob {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
}

.blob-one {
  right: -5rem;
  top: 7rem;
  width: 18rem;
  height: 18rem;
  background: var(--accent-three);
}

.blob-two {
  left: -6rem;
  bottom: 2rem;
  width: 14rem;
  height: 14rem;
  background: var(--accent-two);
  opacity: 0.25;
}

/* BADGE / LABELS */
.creative-badge,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.creative-badge {
  border: 2px solid var(--primary);
  background: var(--card);
  padding: 0.65rem 0.95rem;
  box-shadow: 6px 6px 0 var(--primary);
}

/* BUTTONS */
.icon-pill,
.btn-main,
.btn-ghost,
.floating-whatsapp {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-pill {
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.85rem 1.2rem;
  box-shadow: 5px 5px 0 var(--accent);
}

.btn-main {
  border: 2px solid var(--primary);
  background: var(--accent);
  color: var(--primary-text);
  padding: 0.95rem 1.4rem;
  box-shadow: 6px 6px 0 var(--primary);
}

.btn-ghost {
  border: 2px solid var(--primary);
  background: var(--card);
  color: var(--primary);
  padding: 0.95rem 1.4rem;
}

.icon-pill:hover,
.btn-main:hover,
.btn-ghost:hover,
.floating-whatsapp:hover {
  transform: translate(-2px, -2px);
}

.btn-main:hover,
.icon-pill:hover {
  box-shadow: 8px 8px 0 var(--primary);
}

/* PHOTO */
.photo-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 3px solid var(--primary);
  background: var(--card);
  box-shadow: 14px 14px 0 var(--primary);
  transform: rotate(2deg);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.floating-tag {
  position: absolute;
  z-index: 3;
  border: 2px solid var(--primary);
  background: var(--card);
  padding: 0.7rem 1rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--primary);
}

.tag-one {
  left: -1rem;
  bottom: 2rem;
  transform: rotate(-5deg);
}

.tag-two {
  right: -1rem;
  top: 2rem;
  background: var(--accent-three);
  transform: rotate(6deg);
}

/* STATS */
.stat-item {
  padding: 1.3rem 0;
}

@media (min-width: 768px) {
  .stat-item {
    flex: 1;
    padding: 1.5rem;
  }
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
}

.stat-label {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

/* ABOUT */
.about-box {
  border: 3px solid var(--primary);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 10px 10px 0 var(--accent-three);
}

.about-box p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.75;
}

.social-link {
  display: inline-flex;
  border: 2px solid var(--primary);
  background: var(--card);
  padding: 0.65rem 0.95rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--primary);
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translate(-2px, -2px);
}

/* SERVICES */
.service-card {
  border: 3px solid var(--primary);
  background: var(--card);
  padding: 1.4rem;
  box-shadow: 8px 8px 0 var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:nth-child(2) {
  background: var(--accent-three);
}

.service-card:nth-child(3) {
  background: #f9d7ff;
}

.service-card:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 12px 12px 0 var(--primary);
}

.service-number {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 950;
}

.service-title {
  margin-top: 1.5rem;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.08;
}

.service-desc {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.6;
}

/* CONTACT */
.contact-card {
  border: 3px solid var(--primary);
  background: var(--card);
  padding: 1.6rem;
  box-shadow: 12px 12px 0 var(--primary);
}

@media (min-width: 768px) {
  .contact-card {
    padding: 2.4rem;
  }
}

/* LOCATION */
.location-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 3px solid var(--primary);
  background: var(--primary);
  box-shadow: 12px 12px 0 var(--accent-two);
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.2) contrast(1.05) brightness(0.85);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.9),
    rgba(17, 17, 17, 0.55),
    rgba(17, 17, 17, 0.12)
  );
  pointer-events: none;
}

.location-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* FLOATING */
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.85rem 1.2rem;
  box-shadow: 5px 5px 0 var(--accent);
}

/* ACCESSIBILITY */
a:focus-visible {
  outline: 4px solid var(--focus-ring);
  outline-offset: 4px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 640px) {
  .btn-main,
  .btn-ghost {
    width: 100%;
  }

  .photo-card {
    transform: rotate(0deg);
    box-shadow: 8px 8px 0 var(--primary);
  }

  .floating-tag {
    display: none;
  }

  .creative-badge {
    box-shadow: 4px 4px 0 var(--primary);
  }

  .floating-whatsapp {
    bottom: 1rem;
  }
}