:root {
  --black: #050505;
  --white: #ffffff;
  --off-white: #f5f5f2;
  --grey: #6f6f6f;
  --light-grey: #e7e7e2;
  --dark-grey: #191919;
  --accent: #d8d2c4;
  --max-width: 1160px;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 1.25rem;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--dark-grey);
}

.desktop-nav a:hover {
  text-decoration: underline;
}

.header-cta {
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.mobile-menu-button {
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--light-grey);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--light-grey);
  background: var(--off-white);
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-weight: 800;
  border-bottom: 1px solid var(--light-grey);
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  padding: 70px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 56px;
  align-items: center;
}

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

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
  max-width: 760px;
}

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

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.18rem;
  max-width: 620px;
  color: var(--dark-grey);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.quick-quote-line {
  margin: 0 0 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--grey);
  max-width: 540px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

@keyframes softWiggle {
  0% {
    transform: rotate(0deg);
  }

  3% {
    transform: rotate(-2deg);
  }

  6% {
    transform: rotate(2deg);
  }

  9% {
    transform: rotate(-1deg);
  }

  12% {
    transform: rotate(1deg);
  }

  15% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.wiggle-attention {
  animation: softWiggle 3s ease-in-out infinite;
  transform-origin: center;
}

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

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

.full-width {
  width: 100%;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-points span {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}
.mini-proof {
  margin-top: 22px;
  background: var(--white);
  border-left: 4px solid var(--black);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 560px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.mini-proof strong {
  display: block;
  margin-bottom: 6px;
}

.mini-proof p {
  margin: 0;
  color: var(--grey);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.before-after-placeholder {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--light-grey);
}

.before-after-placeholder div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  min-height: 350px;
}

.before-after-placeholder div:first-child {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08)),
    #9f9f96;
  color: var(--white);
}

.before-after-placeholder div:last-child {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04)),
    #d7d3c7;
  color: var(--white);
}

.before-after-placeholder span {
  display: inline-flex;
  width: fit-content;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.before-after-placeholder p {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
}

.image-placeholder {
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
    var(--light-grey);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--grey);
  font-weight: 800;
}

.image-placeholder.small {
  min-height: 230px;
  border-radius: 18px;
  margin-bottom: 22px;
}

.hero-card-content {
  padding: 24px;
}

.hero-card-content p {
  margin-bottom: 0;
  color: var(--grey);
}

.proof-strip {
  padding: 28px 0;
  background: var(--black);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-grid div {
  display: grid;
  gap: 2px;
}

.proof-grid strong {
  font-size: 1rem;
}

.proof-grid span {
  color: #c7c7c7;
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--grey);
  font-size: 1.05rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

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

.included-list div {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.included-list p {
  margin-bottom: 0;
  color: var(--grey);
}

.results-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.result-card,
.process-step,
.local-card,
.quote-form {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-card p,
.process-step p,
.local-card li,
.contact-options p,
.form-note {
  color: var(--grey);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-heading.light p {
  color: #c7c7c7;
}

.section-dark .eyebrow {
  color: var(--accent);
}

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

.service-grid article {
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.service-grid p {
  color: #c7c7c7;
  margin-bottom: 0;
}

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

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.local-section {
  background: var(--white);
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 42px;
  align-items: start;
}

.local-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 18px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--grey);
}

.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.pricing-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card ul {
  margin: 0;
  padding-left: 20px;
}

.pricing-card li {
  color: var(--grey);
  margin-bottom: 8px;
}

.quote-section {
  background: var(--accent);
}

.quote-trust-card {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid #cfc8b8;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.quote-trust-card h3 {
  margin-bottom: 16px;
}

.quote-trust-card ul {
  margin: 0;
  padding-left: 20px;
}

.quote-trust-card li {
  color: var(--grey);
  margin-bottom: 10px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
}

.form-row {
  display: grid;
  gap: 16px;
}

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

.form-row-address {
  grid-template-columns: 1.45fr 0.55fr;
}

.required-star {
  color: #b00020;
  font-weight: 900;
}

.contact-preferences {
  border: 1px solid #cfc8b8;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  background: var(--white);
}

.contact-preferences legend {
  font-weight: 800;
  padding: 0 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.contact-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  padding: 10px;
}

.contact-grid input {
  width: auto;
}

.contact-error {
  display: none;
  margin: 0;
  color: #b00020;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-preferences.has-error .contact-error {
  display: block;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8b8;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.response-note {
  margin: -4px 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-grey);
}

.form-note {
  font-size: 0.88rem;
  margin-bottom: 0;
  text-align: center;
}
.mobile-sticky-quote {
  display: none;

  .thank-you-section {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 74px 0;
  background: var(--off-white);
}

.thank-you-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  max-width: 900px;
}

.whatsapp-prompt {
  margin: 30px 0;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 24px;
}

.whatsapp-prompt h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.whatsapp-prompt p {
  margin-bottom: 0;
  color: var(--grey);
}

.thank-you-next-steps {
  margin: 34px 0;
}

.thank-you-next-steps h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.thank-you-steps div {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 18px;
  padding: 22px;
}

.thank-you-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 14px;
}

.thank-you-steps p {
  color: var(--grey);
  margin-bottom: 0;
}

}
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  font-weight: 800;
  text-decoration: underline;
}

/* CTA attention animations */

.btn-ring {
  position: relative;
  overflow: visible;
}

.btn-ring::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(5, 5, 5, 0.45);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  animation: ringPulse 3s ease-out infinite;
}

.btn-ring-delay::after {
  animation-delay: 1.5s;
}

@keyframes ringPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  18% {
    opacity: 0.35;
  }

  55% {
    transform: scale(1.16);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes stickyPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }
}

@keyframes nudgeSide {
  0%, 100% {
    transform: translateX(0);
  }

  5% {
    transform: translateX(-4px);
  }

  10% {
    transform: translateX(4px);
  }

  15% {
    transform: translateX(-2px);
  }

  20% {
    transform: translateX(2px);
  }

  25% {
    transform: translateX(0);
  }
}

.btn-nudge {
  animation: nudgeSide 5.5s ease-in-out infinite;
}

@media (max-width: 900px) {
    .thank-you-steps {
    grid-template-columns: 1fr;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-button {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 64px 0 46px;
  }

    .hero-content {
    text-align: center;
    margin-inline: auto;
  }

  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-eyebrow,
  .hero-text,
  .quick-quote-line {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-points {
    justify-content: center;
  }

 .hero-grid,
.quote-grid,
.local-grid,
.included-grid,
.pricing-grid {
  grid-template-columns: 1fr;
}
  .proof-grid,
  .results-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
.before-after-placeholder {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--light-grey);
}

.before-after-placeholder div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  min-height: 390px;
}

.before-after-placeholder div:first-child {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08)),
    #b8b8b0;
  color: var(--white);
}

.before-after-placeholder div:last-child {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04)),
    #dedbd1;
  color: var(--white);
}

.before-after-placeholder span {
  display: inline-flex;
  width: fit-content;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.before-after-placeholder p {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
}
  .image-placeholder {
    min-height: 300px;
  }
}

@keyframes stickyPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }

  50% {
    transform: scale(1.025);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 620px) {
    body {
    padding-bottom: 82px;
  }

  .mobile-sticky-quote {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    background: var(--black);
    color: var(--white);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    animation: stickyPulse 3.5s ease-in-out infinite;
      .contact-grid {
    grid-template-columns: 1fr 1fr;
      .form-row,
  .form-row-halves,
  .form-row-address {
    grid-template-columns: 1fr;
  }
  }
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .header-inner {
    min-height: 66px;
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.2rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .proof-grid,
  .results-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
  
/* Mobile form overflow fix */
.quote-form,
.quote-form *,
.contact-preferences,
.contact-grid,
.form-row,
input,
select,
textarea,
button {
  max-width: 100%;
}

.form-row-halves,
.form-row-address {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.form-row-address {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
}

.form-row label,
.quote-form label,
.contact-grid label {
  min-width: 0;
}

input,
select,
textarea {
  min-width: 0;
}

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

@media (max-width: 620px) {
  .quote-section {
    overflow-x: hidden;
  }

  .quote-form {
    width: 100%;
  }

  .form-row,
  .form-row-halves,
  .form-row-address {
    grid-template-columns: 1fr;
  }

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

  .contact-grid label {
    font-size: 0.92rem;
    padding: 10px 8px;
  }
}

/* Mobile centring polish */
@media (max-width: 620px) {
  .hero-content,
  .section-heading,
  .quote-section,
  .quote-section .container,
  .quote-grid > div,
  .local-grid > div,
  .pricing-grid > div,
  .included-grid > div,
  .thank-you-card {
    text-align: center;
  }

  .hero-content h1,
  .hero-text,
  .quick-quote-line,
  .section-heading,
  .section-heading p,
  .quote-grid h2,
  .quote-grid p,
  .local-grid h2,
  .local-grid p,
  .pricing-grid h2,
  .pricing-grid p,
  .included-grid h2,
  .included-grid p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-points,
  .footer-inner {
    justify-content: center;
  }

  .mini-proof,
  .quote-trust-card,
  .local-card,
  .pricing-card,
  .included-list div,
  .process-step,
  .result-card,
  .quote-form {
    text-align: center;
  }

  .quote-trust-card ul,
  .local-card ul,
  .pricing-card ul {
    text-align: left;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .process-step span,
  .thank-you-steps span {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-form label,
  .contact-preferences legend {
    text-align: left;
  }

  .response-note,
  .form-note {
    text-align: center;
  }
}

/* Mobile contact preference tidy-up */
.contact-grid label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  text-align: left;
  line-height: 1.2;
}

.contact-grid input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.contact-grid label span {
  min-width: 0;
}

@media (max-width: 620px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-grid label {
    min-height: 70px;
    padding: 12px;
    font-size: 0.95rem;
    word-break: normal;
    overflow-wrap: normal;
  }
}

@media (max-width: 380px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid label {
    min-height: auto;
  }
}
  /* mobile overflow fix deployed */
}