:root {
  --bg: #f6f0e5;
  --bg-alt: #fffaf2;
  --ink: #1f2933;
  --muted: #5f6c77;
  --line: rgba(31, 41, 51, 0.12);
  --card: rgba(255, 250, 242, 0.88);
  --accent: #0f766e;
  --accent-deep: #0c4a6e;
  --accent-soft: #f59e0b;
  --shadow: 0 24px 60px rgba(12, 74, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
#services,
#projects {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24rem),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.22), transparent 28rem),
    linear-gradient(180deg, #f8f4eb 0%, #f2ece1 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.topbar {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(31, 41, 51, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 1 34rem;
  min-width: 0;
}

.brand img {
  display: block;
  width: min(100%, 33rem);
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-kicker,
.eyebrow,
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-kicker,
.eyebrow {
  color: var(--accent);
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
}

.brand-name {
  font-size: 1.55rem;
  line-height: 0.95;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mini-link,
.cta-small,
.cta-primary,
.cta-secondary {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.js-phone-text {
  display: inline-block;
  margin-left: 0.28em;
}

.mini-link {
  padding: 0.6rem 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

.cta-small,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), #f97316);
  color: #fffdf7;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.cta-small::before,
.cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 42%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.18) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%);
  animation: cta-shimmer 4.2s ease-in-out infinite;
  pointer-events: none;
}

.topbar .cta-small::before {
  animation-delay: 2.1s;
}

.cta-small::after,
.cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.cta-small {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
}

.cta-primary {
  padding: 1rem 1.25rem;
  animation: cta-float 2.8s ease-in-out infinite;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.is-hidden {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 1rem 0 1.5rem;
}

.hero-copy,
.hero-card,
.proof-strip,
.service-card,
.contact-banner,
.gallery-card,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 2rem;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -5rem -6rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.15), transparent 68%);
  pointer-events: none;
}

h1 {
  margin: 0.65rem 0 0.85rem;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.92;
}

.hero-subhead {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-text,
.section-heading p,
.contact-banner p,
.footer p,
.service-card li,
.gallery-card figcaption,
.panel-label,
.proof-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.mini-brand-mark {
  display: block;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.mini-brand-mark-hero {
  flex: 0 0 auto;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0;
}

.mini-brand-mark-footer {
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin: 1.5rem 0 1rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.trust-list li::before {
  content: "📍";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  animation: trust-emoji-reveal 0.6s ease forwards;
  animation-delay: 3s;
}

.trust-list li:nth-child(2)::before {
  content: "😊";
  animation-delay: 5s;
}

.trust-list li:nth-child(3)::before {
  content: "🛠️";
  animation-delay: 7s;
}

.hero-card {
  overflow: hidden;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0.02)),
    #eef5f3;
}

.hero-card > img {
  width: 100%;
  height: 27rem;
  object-fit: contain;
  object-position: center top;
  padding: 1rem 1rem 0;
}

.hero-card-panel {
  padding: 1.15rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.8), rgba(255, 255, 255, 0.98));
}

.hero-card-panel ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

.hero-card-panel li {
  margin-top: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

.popular-jobs-list li {
  position: relative;
  padding-right: 1.7rem;
}

.popular-jobs-list li::after {
  content: "🎨";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  animation: trust-emoji-reveal 0.6s ease forwards;
}

.popular-jobs-list li:nth-child(1)::after {
  animation-delay: 9s;
}

.popular-jobs-list li:nth-child(2)::after {
  content: "🚪";
  animation-delay: 11s;
}

.popular-jobs-list li:nth-child(3)::after {
  content: "🚿";
  animation-delay: 13s;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 1.75rem;
}

.proof-strip article {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.45);
}

.proof-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.section {
  padding: 4rem 0 0;
}

.section-alt {
  position: relative;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 0.95;
}

.service-grid,
.gallery,
.project-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
}

.service-card ul {
  margin: 0;
  padding-left: 1rem;
}

.service-card li + li {
  margin-top: 0.35rem;
}

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

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.65rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
  object-position: center center;
}

.project-copy {
  padding: 1rem 1.05rem 1.15rem;
}

.project-kicker {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.65rem;
  line-height: 1;
}

.project-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-card {
  overflow: hidden;
  border-radius: 1.5rem;
}

.gallery-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-weight: 700;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2rem;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
}

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

.site-footer-block p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer-title {
  margin: 0 0 0.25rem;
  color: var(--ink) !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.site-footer-link {
  color: var(--accent-deep);
  font-weight: 800;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.site-footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.mini-link:hover,
.cta-small:hover,
.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-1px);
}

@keyframes cta-shimmer {
  0%,
  58%,
  100% {
    transform: translateX(-140%);
  }

  72% {
    transform: translateX(140%);
  }
}

@keyframes cta-float {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
    transform: translateY(-1px);
  }
}

@keyframes trust-emoji-reveal {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .contact-banner {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 1.5rem;
    padding: 1rem;
  }

  .topbar-actions,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .cta-small,
  .cta-primary,
  .cta-secondary {
    flex: 1 1 14rem;
  }

  .proof-strip,
  .service-grid,
  .gallery,
  .project-grid,
  .site-footer-grid,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card > img {
    height: 22rem;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 42rem);
  }

  .proof-strip,
  .service-grid,
  .gallery,
  .project-grid,
  .site-footer-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
  }

  .topbar {
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
  }

  .brand {
    flex: 0 1 100%;
    justify-content: center;
  }

  .brand img {
    width: min(100%, 20rem);
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .mini-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.45rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
  }

  .cta-small {
    grid-column: 1 / -1;
    min-height: 3rem;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
  }

  .cta-primary,
  .cta-secondary {
    flex: 0 0 auto;
    min-height: 2.7rem;
    max-width: min(72%, 13.5rem);
    width: fit-content;
    padding: 0.72rem 0.95rem;
    font-size: 0.88rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  .cta-primary {
    border-radius: 999px;
    background: linear-gradient(180deg, #ff9828 0%, #ff811a 100%);
    box-shadow:
      0 8px 18px rgba(249, 115, 22, 0.16),
      0 2px 6px rgba(249, 115, 22, 0.1);
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .cta-secondary {
    border-radius: 999px;
  }

  .cta-primary:active,
  .cta-secondary:active {
    transform: translateY(1px) scale(0.99);
  }

  .hero-actions {
    margin: 1rem 0 0.95rem;
  }

  .mini-brand-mark-hero {
    width: 3rem;
    height: 3rem;
    margin: 0;
  }

  .contact-actions {
    margin-top: 0.5rem;
  }

  .hero-copy,
  .hero-card,
  .contact-banner,
  .site-footer {
    border-radius: 1.5rem;
  }

  .site-footer-bottom {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-small::before,
  .cta-primary::before,
  .cta-primary,
  .trust-list li::before {
    animation: none;
  }
}
