:root {
  --ink: #17201c;
  --muted: #5f6964;
  --paper: #fffaf1;
  --panel: #ffffff;
  --sage: #3f715e;
  --sky: #d8edf4;
  --coral: #e96f52;
  --amber: #f5b84b;
  --line: rgba(23, 32, 28, 0.12);
  --shadow: 0 22px 70px rgba(31, 45, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 66px;
  height: 66px;
  transform: translateY(-50%) scale(0.4);
  background: radial-gradient(circle, rgba(245, 184, 75, 0.58), rgba(245, 184, 75, 0.18) 42%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: brand-glow-bloom 1.9s ease-out both;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(9, 15, 37, 0.18);
  animation: porchlight-on 1.9s ease-out both;
}

.brand-name {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-14px);
  color: #24332d;
  font-family: "Avenir Next Rounded", "Nunito Sans", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  animation: brand-name-in 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) 1.16s forwards;
}

.brand-name span:first-child {
  color: #24332d;
  text-shadow: 0 1px 8px rgba(245, 184, 75, 0.12);
}

.brand-name span:last-child {
  color: #3f715e;
  text-shadow: 0 1px 8px rgba(245, 184, 75, 0.1);
}

.brand-name::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(245, 184, 75, 0.46) 42%, transparent 72%);
  transform: translateX(-120%);
  animation: name-light-sweep 1.1s ease-out 1.28s forwards;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

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

@keyframes brand-glow-bloom {
  0%,
  24% {
    opacity: 0;
    transform: translateY(-50%) scale(0.35);
  }

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

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

@keyframes porchlight-on {
  0% {
    filter: brightness(0.18) saturate(0.55);
    opacity: 0.58;
    box-shadow: 0 0 0 rgba(245, 184, 75, 0);
    transform: scale(0.92);
  }

  22% {
    filter: brightness(0.28) saturate(0.7);
    opacity: 0.78;
    box-shadow: 0 0 3px rgba(245, 184, 75, 0.18);
  }

  34% {
    filter: brightness(2.1) saturate(1.35);
    opacity: 1;
    box-shadow: 0 0 42px rgba(245, 184, 75, 0.95), 0 0 72px rgba(245, 184, 75, 0.45);
    transform: scale(1.05);
  }

  45% {
    filter: brightness(0.55) saturate(0.88);
    box-shadow: 0 0 10px rgba(245, 184, 75, 0.28);
    transform: scale(0.99);
  }

  58% {
    filter: brightness(1.8) saturate(1.22);
    box-shadow: 0 0 36px rgba(245, 184, 75, 0.88), 0 0 60px rgba(245, 184, 75, 0.38);
    transform: scale(1.03);
  }

  100% {
    filter: brightness(1.12) saturate(1.05);
    opacity: 1;
    box-shadow: 0 8px 24px rgba(9, 15, 37, 0.18), 0 0 34px rgba(245, 184, 75, 0.74);
    transform: scale(1);
  }
}

@keyframes brand-name-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes name-light-sweep {
  to {
    transform: translateX(120%);
  }
}

@keyframes headline-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand::before,
  .brand-logo,
  .brand-name,
  .brand-name::after,
  .handshake-graphic span,
  .handshake-graphic::after,
  .phone-graphic span,
  .leads-graphic span,
  .lead-phone span,
  .lead-notification,
  .lead-notification::before,
  .message,
  .hammer,
  .paid-ad-block,
  .crack,
  h1 {
    animation: none;
  }

  .brand-name,
  .message,
  h1 {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 128px clamp(20px, 6vw, 78px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(245, 184, 75, 0.36), transparent 18rem),
    linear-gradient(135deg, #203b31 0%, #315f50 52%, #f6d68a 52.2%, #f3b45f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(11, 18, 15, 0.62) 0%, rgba(11, 18, 15, 0.24) 58%, rgba(11, 18, 15, 0) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lamp {
  position: absolute;
  right: clamp(34px, 13vw, 170px);
  top: 15%;
  width: clamp(118px, 18vw, 210px);
  height: clamp(118px, 18vw, 210px);
  background: radial-gradient(circle, rgba(255, 226, 141, 0.88) 0 20%, rgba(255, 226, 141, 0.28) 42%, transparent 70%);
  border-radius: 50%;
}

.lamp span {
  position: absolute;
  left: 50%;
  top: 28%;
  width: 42%;
  height: 58%;
  transform: translateX(-50%);
  background: #fff7cf;
  border: 7px solid #193128;
  border-radius: 50% 50% 18% 18%;
  box-shadow: 0 0 34px rgba(255, 226, 141, 0.9);
}

.lamp span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -36%;
  width: 12px;
  height: 44%;
  transform: translateX(-50%);
  background: #193128;
  border-radius: 999px;
}

.porch-card {
  position: absolute;
  right: clamp(18px, 7vw, 96px);
  bottom: clamp(28px, 7vw, 76px);
  width: clamp(180px, 28vw, 350px);
  height: clamp(110px, 17vw, 210px);
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(23, 32, 28, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.porch-card::before,
.porch-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  height: 12px;
  background: rgba(63, 113, 94, 0.24);
  border-radius: 999px;
}

.porch-card::before {
  top: 32px;
}

.porch-card::after {
  top: 60px;
  right: 82px;
}

.card-one {
  transform: rotate(-7deg) translate(-72px, -46px);
}

.card-two {
  background: rgba(216, 237, 244, 0.94);
  transform: rotate(5deg) translate(28px, -10px);
}

.card-three {
  background: rgba(255, 250, 241, 0.96);
  transform: rotate(-1deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fffdf8;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd786;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: headline-rise 0.9s ease-out 0.38s forwards;
}

.warm-word {
  color: #ffd786;
  text-shadow: 0 0 24px rgba(245, 184, 75, 0.3);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
}

.hero-hook {
  max-width: 620px;
  margin-bottom: 10px;
  color: #ffd786;
  font-size: clamp(1.16rem, 2vw, 1.6rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.section,
.contact {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.contact p {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: var(--sky);
  border-radius: 50%;
  color: var(--sage);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  background: var(--ink);
  color: #fffdf8;
}

.contact-copy {
  max-width: 790px;
}

.contact p {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.74);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

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

.contact-form span {
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 8px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 3px solid rgba(245, 184, 75, 0.36);
  border-color: var(--amber);
}

.contact-form button {
  cursor: pointer;
}

.form-full {
  grid-column: 1 / -1;
}

.work {
  background: #fffaf1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(31, 45, 39, 0.06);
}

.work-card p {
  color: var(--muted);
}

.work-graphic {
  position: relative;
  display: grid;
  place-items: center;
  height: 142px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 50% 52%, rgba(245, 184, 75, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(216, 237, 244, 0.88), rgba(237, 247, 240, 0.9));
  border: 1px solid rgba(63, 113, 94, 0.12);
  border-radius: 8px;
}

.handshake-graphic span {
  position: absolute;
  width: 82px;
  height: 34px;
  background: var(--sage);
  border-radius: 18px 12px 12px 18px;
  transform-origin: center;
  animation: handshake 1.7s ease-in-out infinite;
}

.handshake-graphic span:first-child {
  left: calc(50% - 82px);
  transform: rotate(16deg);
}

.handshake-graphic span:last-child {
  right: calc(50% - 82px);
  background: var(--coral);
  border-radius: 12px 18px 18px 12px;
  transform: rotate(-16deg);
  animation-delay: 0.12s;
}

.handshake-graphic::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 34px;
  background: #f5b84b;
  border: 6px solid #fffaf1;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(31, 45, 39, 0.14);
  animation: handshake-center 1.7s ease-in-out infinite;
}

.phone-graphic span:first-child {
  position: absolute;
  width: 56px;
  height: 92px;
  background: #203b31;
  border: 6px solid #17201c;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(31, 45, 39, 0.2);
  animation: phone-float 2.2s ease-in-out infinite;
}

.phone-graphic span:first-child::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 16px;
  height: 7px;
  background: #f5b84b;
  border-radius: 999px;
  box-shadow: 0 18px 0 rgba(255, 250, 241, 0.72), 0 36px 0 rgba(255, 250, 241, 0.5);
}

.phone-graphic span:nth-child(2),
.phone-graphic span:nth-child(3) {
  position: absolute;
  width: 42px;
  height: 28px;
  background: #fffaf1;
  border: 2px solid rgba(63, 113, 94, 0.24);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(31, 45, 39, 0.12);
  animation: post-pop 2.2s ease-in-out infinite;
}

.phone-graphic span:nth-child(2) {
  left: calc(50% - 86px);
  top: 28px;
}

.phone-graphic span:nth-child(3) {
  right: calc(50% - 90px);
  bottom: 26px;
  animation-delay: 0.36s;
}

.leads-graphic span {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fffaf1;
  border: 5px solid var(--sage);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(31, 45, 39, 0.12);
}

.leads-graphic span:first-child {
  left: calc(50% - 92px);
  top: 34px;
  animation: lead-pulse 2s ease-in-out infinite;
}

.leads-graphic span:nth-child(2) {
  right: calc(50% - 92px);
  top: 34px;
  animation: lead-pulse 2s ease-in-out 0.22s infinite;
}

.leads-graphic span:nth-child(3) {
  left: calc(50% - 12px);
  bottom: 30px;
  border-color: var(--coral);
  animation: lead-pulse 2s ease-in-out 0.44s infinite;
}

.leads-graphic::before,
.leads-graphic::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 3px;
  background: rgba(245, 184, 75, 0.9);
  border-radius: 999px;
  transform-origin: center;
}

.leads-graphic::before {
  transform: translate(-34px, 16px) rotate(35deg);
}

.leads-graphic::after {
  transform: translate(34px, 16px) rotate(-35deg);
}

.lead-example {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  max-width: 980px;
  margin: clamp(34px, 6vw, 64px) auto 0;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 184, 75, 0.22), transparent 24rem),
    linear-gradient(135deg, #17201c, #25483c);
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 45, 39, 0.16);
}

.lead-example-heading {
  grid-column: 1 / -1;
  max-width: 680px;
}

.lead-example-heading h3 {
  margin-bottom: 0;
  color: #fffdf8;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1;
}

.lead-phone {
  position: relative;
  width: min(150px, 100%);
  aspect-ratio: 0.56;
  justify-self: center;
  background: #0e1512;
  border: 8px solid #090d0b;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.12), 0 22px 48px rgba(0, 0, 0, 0.28);
}

.lead-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 46px;
  height: 5px;
  transform: translateX(-50%);
  background: rgba(255, 250, 241, 0.22);
  border-radius: 999px;
}

.lead-phone span {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 58px;
  height: 10px;
  background: rgba(245, 184, 75, 0.9);
  border-radius: 999px;
  box-shadow:
    0 24px 0 rgba(255, 250, 241, 0.34),
    0 48px 0 rgba(255, 250, 241, 0.24),
    0 72px 0 rgba(255, 250, 241, 0.18);
  animation: phone-alert-glow 2.6s ease-in-out infinite;
}

.lead-notification {
  position: relative;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 250, 241, 0.7);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  animation: notification-arrive 4.2s ease-in-out infinite;
}

.lead-notification::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 2px solid rgba(245, 184, 75, 0.52);
  border-radius: 8px;
  opacity: 0;
  animation: notification-ring 4.2s ease-in-out infinite;
}

.notification-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.notification-top strong {
  color: var(--ink);
  margin-right: auto;
}

.notification-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(245, 184, 75, 0.9);
}

.lead-notification h3 {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.lead-notification dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.lead-notification dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 32, 28, 0.1);
}

.lead-notification dt {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-notification dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.conversation-example {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 980px;
  margin: clamp(34px, 6vw, 64px) auto 0;
}

.conversation-copy {
  max-width: 430px;
}

.conversation-copy h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.messenger-mockup {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 45, 39, 0.14);
}

.messenger-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #f7fbff, #edf7f0);
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
}

.avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1877f2, #65a4ff);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.messenger-header strong,
.messenger-header span {
  display: block;
}

.messenger-header strong {
  color: var(--ink);
}

.messenger-header div > span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.chat-thread {
  display: grid;
  gap: 14px;
  padding: 24px 18px 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 119, 242, 0.08), transparent 14rem),
    #fbfcfb;
}

.message {
  max-width: min(82%, 430px);
  padding: 13px 15px;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.42;
  box-shadow: 0 10px 24px rgba(31, 45, 39, 0.08);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: chat-bubble-in 4.8s ease-in-out infinite;
}

.message.incoming {
  justify-self: start;
  background: #eef1f4;
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.message.outgoing {
  justify-self: end;
  background: #1877f2;
  color: #fff;
  border-bottom-right-radius: 6px;
  animation-delay: 1.2s;
}

.other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.other-services strong {
  color: var(--ink);
}

.other-services span {
  padding-left: 14px;
  border-left: 1px solid rgba(23, 32, 28, 0.16);
  font-weight: 700;
}

.organic-switch {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: clamp(48px, 8vw, 86px) clamp(20px, 6vw, 78px);
  background: #edf7f0;
  text-align: center;
}

.organic-switch h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.hammer-animation {
  position: relative;
  width: 220px;
  height: 124px;
}

.paid-ad-block {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 132px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  background: #fffdf8;
  border: 2px solid rgba(23, 32, 28, 0.22);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31, 45, 39, 0.1);
  animation: paid-ad-smash 2.6s ease-in-out infinite;
}

.hammer {
  position: absolute;
  left: 80px;
  top: 16px;
  width: 72px;
  height: 20px;
  transform-origin: 88% 50%;
  transform: rotate(-34deg);
  background: var(--ink);
  border-radius: 5px;
  animation: hammer-swing 2.6s ease-in-out infinite;
}

.hammer::before {
  content: "";
  position: absolute;
  right: -18px;
  top: -9px;
  width: 34px;
  height: 38px;
  background: var(--coral);
  border-radius: 6px;
}

.hammer::after {
  content: "";
  position: absolute;
  left: -44px;
  top: 7px;
  width: 52px;
  height: 6px;
  background: #8b6b3f;
  border-radius: 999px;
}

.crack {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 44px;
  height: 28px;
  transform: translateX(-50%);
  opacity: 0;
  background:
    linear-gradient(112deg, transparent 0 44%, var(--coral) 45% 52%, transparent 53%),
    linear-gradient(62deg, transparent 0 48%, var(--coral) 49% 56%, transparent 57%);
  animation: crack-flash 2.6s ease-in-out infinite;
}

@keyframes hammer-swing {
  0%,
  42%,
  100% {
    transform: rotate(-34deg);
  }

  54%,
  62% {
    transform: rotate(16deg);
  }
}

@keyframes paid-ad-smash {
  0%,
  48%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  58% {
    transform: translateX(-50%) scale(0.94) rotate(-1deg);
  }

  66% {
    transform: translateX(-50%) scale(0.98) rotate(1deg);
  }
}

@keyframes crack-flash {
  0%,
  52%,
  100% {
    opacity: 0;
  }

  58%,
  70% {
    opacity: 1;
  }
}

@keyframes handshake {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 5px 2px;
  }
}

@keyframes handshake-center {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(-4deg) scale(1.04);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes post-pop {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes lead-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(31, 45, 39, 0.12);
  }

  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 10px rgba(245, 184, 75, 0.16), 0 10px 20px rgba(31, 45, 39, 0.12);
  }
}

@keyframes notification-arrive {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  16%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
}

@keyframes notification-ring {
  18% {
    opacity: 0.85;
    transform: scale(1);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.035);
  }
}

@keyframes phone-alert-glow {
  0%,
  100% {
    opacity: 0.64;
  }

  50% {
    opacity: 1;
  }
}

@keyframes chat-bubble-in {
  0%,
  12% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  24%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 28px clamp(20px, 6vw, 78px);
  background: #111713;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.92rem;
}

.footer > span:first-child {
  color: #fffdf8;
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-contact a {
  color: #fffdf8;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--amber);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 112px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(11, 18, 15, 0.72), rgba(11, 18, 15, 0.24));
  }

  .hero-art {
    opacity: 0.72;
  }

  .work-grid,
  .lead-example,
  .conversation-example,
  .contact {
    grid-template-columns: 1fr;
  }

  .lead-phone {
    width: 120px;
  }

  .contact {
    justify-items: start;
  }

  .footer {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .lead-notification dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

}
