:root {
  --ink: #090909;
  --paper: #f4f1ea;
  --cream: #fff9ed;
  --surface: #ffffff;
  --muted: #66625b;
  --line: #d9d1c3;
  --orange: #ff7a18;
  --yellow: #ffd84d;
  --green: #17836f;
  --blue: #304f9f;
  --graphite: #2a2927;
  --silver: #b7b7b2;
  --shadow: 0 24px 80px rgba(9, 9, 9, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 122, 24, 0.15), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(255, 216, 77, 0.22), transparent 24%),
    var(--paper);
}

body.nav-open {
  overflow: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 77, 0.48), transparent 22%),
    linear-gradient(135deg, #fff9ed, #f4f1ea 48%, #2a2927 48%, #090909);
  transition: opacity 650ms ease, visibility 650ms ease, transform 650ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  pointer-events: none;
}

.loader-orbit {
  position: relative;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
}

.loader-orbit img {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 18px 50px rgba(9, 9, 9, 0.28);
  animation: loaderLogo 1.6s ease-in-out infinite;
}

.loader-orbit span {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 122, 24, 0.85);
  border-top-color: transparent;
  border-radius: 50%;
  animation: loaderSpin 1.2s linear infinite;
}

.loader-orbit span:last-child {
  inset: 18px;
  border-color: rgba(9, 9, 9, 0.85);
  border-bottom-color: transparent;
  animation-duration: 1.8s;
  animation-direction: reverse;
}

.loader p {
  margin: 0;
  color: white;
  font-weight: 900;
  text-align: center;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 241, 233, 0.88);
  border-bottom: 1px solid rgba(9, 9, 9, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(-100%);
  animation: dropHeader 800ms ease 450ms forwards;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: #38342e;
  font-weight: 800;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: 118px clamp(18px, 5vw, 76px) 44px;
  background:
    radial-gradient(circle at 76% 25%, rgba(255, 216, 77, 0.58), transparent 23%),
    radial-gradient(circle at 17% 83%, rgba(255, 122, 24, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.32), rgba(255, 250, 240, 0) 38%),
    linear-gradient(315deg, rgba(42, 41, 39, 0.12), rgba(255, 250, 240, 0) 42%),
    var(--cream);
  overflow: hidden;
  position: relative;
}

.floating-shape {
  position: absolute;
  z-index: 0;
  border: 2px solid rgba(9, 9, 9, 0.14);
  pointer-events: none;
}

.shape-one {
  width: 120px;
  height: 120px;
  left: clamp(18px, 6vw, 92px);
  bottom: 11%;
  border-radius: 30px;
  transform: rotate(14deg);
  animation: floatShape 11s ease-in-out infinite;
}

.shape-two {
  width: 86px;
  height: 86px;
  right: clamp(24px, 8vw, 112px);
  top: 18%;
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.38);
  animation: floatShape 8s ease-in-out 1.2s infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 900;
}

h1 span {
  display: block;
  color: var(--orange);
  text-shadow: 5px 5px 0 rgba(9, 9, 9, 0.08);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 780ms ease forwards;
}

.hero-copy h1 {
  animation-delay: 160ms;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 300ms;
}

.hero-actions {
  animation-delay: 440ms;
}

.btn {
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(9, 9, 9, 0.18);
}

.btn.primary {
  background: var(--ink);
  color: white;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.94) rotate(-2deg);
  animation: popStage 900ms cubic-bezier(0.2, 0.85, 0.2, 1.2) 240ms forwards;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: min(84vw, 510px);
  aspect-ratio: 1;
  border-radius: 42% 58% 45% 55%;
  background:
    linear-gradient(135deg, var(--yellow), var(--orange));
  transform: rotate(-10deg);
  box-shadow: var(--shadow);
  animation: morphBlob 9s ease-in-out infinite;
}

.hero-stage img {
  position: relative;
  z-index: 1;
  width: min(74vw, 420px);
  border-radius: 34px;
  background: #000;
  transform: rotate(3deg);
  box-shadow: 0 22px 60px rgba(9, 9, 9, 0.24);
  animation: floatLogo 7s ease-in-out infinite;
}

.stage-card {
  position: absolute;
  z-index: 2;
  max-width: 190px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: white;
  box-shadow: 8px 8px 0 var(--ink);
  animation: cardDrift 6s ease-in-out infinite;
}

.stage-card strong {
  display: block;
  font-size: 2.15rem;
  font-weight: 900;
}

.stage-card span {
  color: var(--muted);
  font-weight: 800;
}

.top-card {
  top: 54px;
  right: 0;
}

.bottom-card {
  left: 0;
  bottom: 60px;
  animation-delay: 1.4s;
}

.brand-family {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, var(--ink), var(--graphite));
  color: white;
}

.brand-family p {
  margin: 0;
  color: var(--yellow);
  font-weight: 900;
}

.brand-family div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-family span,
.brand-family a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.brand-family a {
  background: var(--orange);
}

.service-marquee {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  border-block: 1px solid var(--line);
  background: white;
  overflow: hidden;
}

.service-marquee a {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 900;
  animation: marqueePulse 5s ease-in-out infinite;
}

.service-marquee a:nth-child(2n) {
  animation-delay: 500ms;
}

.service-marquee a:nth-child(3n) {
  animation-delay: 900ms;
}

.service-marquee a:hover {
  background: var(--yellow);
  transform: translateY(-3px);
}

.section {
  padding: clamp(68px, 10vw, 124px) clamp(18px, 5vw, 76px);
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  background: var(--paper);
}

.promise h2 {
  max-width: 930px;
}

.founder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  scroll-margin-top: 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 216, 77, 0.42), transparent 28%),
    linear-gradient(135deg, var(--cream), #f4eadc);
}

.founder::before {
  content: "";
  position: absolute;
  inset: 72px clamp(18px, 5vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 30% 58%, rgba(255, 122, 24, 0.14), transparent 32%);
  box-shadow: 0 30px 90px rgba(9, 9, 9, 0.08);
  pointer-events: none;
}

.founder-portrait {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.founder-portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: min(64vw, 420px);
  height: 120px;
  bottom: 36px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(9, 9, 9, 0.24), transparent 68%);
  filter: blur(10px);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--cream) 8%, rgba(255, 249, 237, 0.74) 36%, transparent 88%);
  pointer-events: none;
}

.founder-halo {
  position: absolute;
  width: min(78vw, 500px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 42% 58% 45% 55%;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(145deg, var(--yellow), var(--orange));
  box-shadow: 18px 18px 0 var(--ink);
  animation: morphBlob 9s ease-in-out infinite;
}

.founder-halo::before,
.founder-halo::after {
  content: "";
  position: absolute;
  inset: -26px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.38), transparent 66%);
  filter: blur(28px);
  z-index: -1;
}

.founder-halo::after {
  inset: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(9, 9, 9, 0.06));
  filter: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.founder-portrait img {
  position: relative;
  z-index: 4;
  width: min(72vw, 430px);
  max-height: 540px;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 20px rgba(9, 9, 9, 0.28))
    drop-shadow(0 0 28px rgba(255, 216, 77, 0.26));
  animation: founderFloat 7s ease-in-out infinite;
}

.founder-copy {
  position: relative;
  z-index: 1;
}

.founder-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.founder-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 14px;
  background: white;
  box-shadow: 4px 4px 0 rgba(9, 9, 9, 0.16);
  font-weight: 900;
}

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

.service-columns article,
.number-grid article,
.review-list article,
.contact-form,
.contact-card,
.estimator-panel,
.package-card,
.rate-grid article {
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: white;
}

.service-columns article {
  min-height: 430px;
  padding: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-columns article:hover,
.number-grid article:hover,
.package-card:hover,
.rate-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 var(--ink);
}

.magnetic-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.column-label {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 46px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--yellow);
  font-weight: 900;
}

.service-columns ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-columns li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.clientele {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 24, 0.18), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(255, 216, 77, 0.28), transparent 28%),
    var(--cream);
}

.clientele-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  margin-bottom: 34px;
}

.clientele-heading h2 {
  max-width: 820px;
}

.clientele-heading .btn {
  justify-self: end;
  white-space: nowrap;
}

.client-marquee {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 8px 0;
}

.client-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: clientSlide 34s linear infinite;
}

.client-track.reverse {
  animation-name: clientSlideReverse;
  animation-duration: 38s;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track article {
  width: clamp(150px, 18vw, 230px);
  height: clamp(108px, 12vw, 150px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 16px;
  background: white;
  box-shadow: 8px 8px 0 rgba(9, 9, 9, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.client-track article:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 11px 11px 0 var(--ink);
}

.client-track img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.04);
}

.rate-list {
  background:
    linear-gradient(180deg, var(--ink), var(--graphite));
  color: white;
}

.rate-list .eyebrow {
  color: var(--yellow);
}

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

.package-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
  color: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.featured-package {
  background: var(--yellow);
}

.package-kicker {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  margin-bottom: 26px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--ink);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
  margin: 6px 0 22px;
  color: var(--orange);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 900;
}

.package-card ul,
.rate-grid p {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
  font-weight: 750;
}

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

.rate-grid article {
  min-height: 260px;
  padding: 22px;
  color: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.rate-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 28px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--orange);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
}

.rate-grid h3 {
  margin-bottom: 12px;
}

.rate-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 1.12rem;
  font-weight: 900;
}

.gst-note {
  margin: 22px 0 0;
  color: #e5e0d6;
  font-weight: 800;
}

.brochure-btn {
  margin-top: 22px;
  border-color: white;
  color: white;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  background:
    linear-gradient(135deg, #e9f0ec, #fff7e5);
}

.review-score {
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, var(--ink), #33302a);
  color: white;
}

.review-score strong {
  display: block;
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
}

.counting {
  color: var(--orange);
}

.review-score span {
  display: block;
  margin: 10px 0 28px;
  color: #d8d8d8;
  font-weight: 800;
}

.review-score .btn {
  border-color: white;
  color: white;
}

.review-list {
  display: grid;
  gap: 16px;
}

.review-list article {
  padding: 24px;
  box-shadow: 8px 8px 0 rgba(9, 9, 9, 0.08);
}

.review-list p {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.review-list span {
  color: var(--green);
  font-weight: 900;
}

.numbered {
  background: var(--paper);
}

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

.number-grid article {
  min-height: 290px;
  padding: 24px;
  box-shadow: 8px 8px 0 var(--ink);
}

.number-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--orange);
  font-weight: 900;
}

.number-grid p,
.contact-card p,
.estimate-result span {
  color: var(--muted);
  line-height: 1.65;
}

.estimator {
  background: var(--cream);
}

.estimator-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
}

.estimate-form,
.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: #3c3831;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(244, 123, 32, 0.18);
  border-color: var(--orange);
}

.estimate-result {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px;
  background: var(--yellow);
}

.estimate-result p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.estimate-result strong {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
}

.cta-band {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, var(--orange), var(--yellow));
  overflow: hidden;
}

.cta-band .eyebrow {
  color: var(--ink);
}

.cta-band h2 {
  max-width: 860px;
}

.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
  gap: 18px;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full,
.contact-form .btn,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.contact-card {
  padding: 28px;
}

.contact-card img {
  width: 108px;
  margin-bottom: 24px;
  border-radius: 26px;
  background: #000;
}

.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.whatsapp-link {
  color: #128c7e !important;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 35;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  background: #25d366;
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 var(--ink);
}

.whatsapp-float span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 8px 0 0;
  color: #d4d4d4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderLogo {
  0%,
  100% {
    transform: scale(1) rotate(-4deg);
  }
  50% {
    transform: scale(1.08) rotate(4deg);
  }
}

@keyframes dropHeader {
  to {
    transform: translateY(0);
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popStage {
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(14deg);
  }
  50% {
    transform: translate3d(18px, -22px, 0) rotate(-8deg);
  }
}

@keyframes marqueePulse {
  0%,
  100% {
    background: white;
  }
  50% {
    background: rgba(255, 216, 77, 0.38);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
}

@keyframes clientSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes clientSlideReverse {
  from {
    transform: translateX(calc(-50% - 9px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 42% 58% 45% 55%;
    transform: rotate(-10deg) scale(1);
  }
  50% {
    border-radius: 58% 42% 56% 44%;
    transform: rotate(8deg) scale(1.04);
  }
}

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

@keyframes founderFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@media (max-width: 1060px) {
  .hero,
  .promise,
  .founder,
  .reviews,
  .contact-layout,
  .estimator-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    min-height: 440px;
  }

  .founder-portrait {
    min-height: 520px;
  }

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

  .service-columns,
  .number-grid,
  .package-grid,
  .rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clientele-heading {
    grid-template-columns: 1fr;
  }

  .clientele-heading .btn {
    justify-self: start;
  }

  .client-track article {
    width: 180px;
    height: 120px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: white;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 15px;
  }

  .nav-cta {
    justify-content: center;
    color: white;
  }

  .hero {
    min-height: auto;
    padding: 92px 18px 42px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
    line-height: 0.88;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-copy > p:not(.eyebrow),
  .founder-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .founder-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .founder-copy .btn,
  .promise .btn,
  .cta-band .btn {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .brand-family {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-marquee,
  .service-columns,
  .number-grid,
  .package-grid,
  .rate-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .client-track {
    animation-duration: 24s;
  }

  .client-track.reverse {
    animation-duration: 28s;
  }

  .package-card,
  .rate-grid article {
    min-height: auto;
  }

  .hero-stage {
    min-height: 440px;
    align-content: center;
    padding: 22px 0 70px;
    overflow: visible;
  }

  .hero-stage::before {
    width: min(88vw, 330px);
  }

  .hero-stage img {
    width: min(78vw, 300px);
    border-radius: 26px;
  }

  .stage-card {
    max-width: 158px;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .stage-card strong {
    font-size: 1.65rem;
  }

  .stage-card span {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .top-card {
    top: auto;
    right: auto;
    left: 4px;
    bottom: 74px;
  }

  .bottom-card {
    left: auto;
    right: 4px;
    bottom: 0;
  }

  .founder {
    gap: 20px;
    text-align: left;
    overflow: visible;
    scroll-margin-top: 74px;
  }

  .founder::before {
    inset: 28px 10px;
    border-radius: 24px;
  }

  .founder-portrait {
    min-height: 520px;
    overflow: visible;
    align-items: center;
    padding: 18px 0 28px;
  }

  .founder-portrait::before {
    width: min(78vw, 320px);
    height: 90px;
    bottom: 20px;
  }

  .founder-portrait::after {
    height: 24%;
    background: linear-gradient(0deg, var(--cream) 5%, rgba(255, 249, 237, 0.62) 34%, transparent 88%);
  }

  .founder-halo {
    width: min(82vw, 350px);
    bottom: 70px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .founder-portrait img {
    width: min(80vw, 315px);
    max-height: 470px;
    object-position: center bottom;
  }

  .founder-points span {
    justify-content: center;
    text-align: center;
  }

  .client-track article {
    width: 148px;
    height: 102px;
    padding: 12px;
    border-radius: 18px;
  }

  .client-track img {
    max-height: 70px;
  }

  .estimate-form,
  .contact-form,
  .contact-card {
    padding: 20px;
  }

  .contact-layout,
  .estimator-panel {
    gap: 14px;
  }

  .service-columns article,
  .number-grid article {
    min-height: auto;
  }

  .service-marquee a {
    min-height: 72px;
  }

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

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float {
    padding: 8px;
    left: 16px;
    bottom: 16px;
    min-height: 56px;
    box-shadow: 5px 5px 0 var(--ink);
  }
}

@media (max-width: 430px) {
  .hero-stage {
    min-height: 405px;
    padding-bottom: 62px;
  }

  .hero-stage img {
    width: min(76vw, 270px);
  }

  .hero-stage::before {
    width: min(86vw, 300px);
  }

  .stage-card {
    max-width: 142px;
  }

  .stage-card strong {
    font-size: 1.45rem;
  }

  .stage-card span {
    font-size: 0.82rem;
  }

  .founder-portrait {
    min-height: 490px;
  }

  .founder-halo {
    width: min(84vw, 315px);
    bottom: 66px;
  }

  .founder-portrait img {
    width: min(80vw, 292px);
    max-height: 445px;
  }

  .whatsapp-float span {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .loader {
    display: none;
  }

  body.loading {
    overflow: auto;
  }
}
