@font-face {
  font-family: "Forum";
  src: url("../fonts/forum/Forum-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: local("Instrument Sans"), url("../fonts/Instrument_Sans/InstrumentSans-VariableFont_wdth,wght.ttf")
    format("truetype");
  font-display: optional;
}

:root {
  --orange: #e74d10;
  --green: #3f4a25;
  --sand: #e3deda;
  --ivory: #f8f4f1;
  --white: #ffffff;
  --text: #3f4a25;
  --muted: rgba(63, 74, 37, 0.74);
  --line: rgba(63, 74, 37, 0.14);
  --shadow: 0 24px 80px rgba(40, 53, 18, 0.12);
  --radius-xl: 36px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(231, 77, 16, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(227, 222, 218, 0.65), rgba(248, 244, 241, 0.92) 24%),
    var(--ivory);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(63, 74, 37, 0.08);
}

.nav-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  width: clamp(168px, 18vw, 212px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"],
.nav-item.is-active > .nav-link {
  color: var(--green);
}

.nav a[aria-current="page"]::after,
.nav-item.is-active > .nav-link::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 290px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(63, 74, 37, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 50px rgba(40, 53, 18, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown a {
  width: max-content;
}

.nav-item-services:hover .nav-dropdown,
.nav-item-services:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  position: relative;
  z-index: 81;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(63, 74, 37, 0.14);
  border-radius: 10px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.site-header.mobile-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.mobile-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.mobile-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  top: 92px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  height: calc(100dvh - 92px);
  padding: 24px 20px 24px;
  background:
    radial-gradient(circle at top left, rgba(231, 77, 16, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(227, 222, 218, 0.98), rgba(248, 244, 241, 0.99));
  overflow-y: auto;
}

.mobile-nav {
  display: grid;
  align-content: start;
  gap: 18px;
  flex: 0 0 auto;
  justify-items: end;
  text-align: right;
}

.mobile-nav a {
  position: relative;
  width: max-content;
  font-family: "Forum", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 0.96;
  color: var(--green);
}

.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-subnav {
  display: grid;
  gap: 10px;
  margin: -4px 0 12px;
  justify-items: end;
}

.mobile-subnav a {
  font-size: 1rem;
  line-height: 1.15;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(63, 74, 37, 0.18);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(63, 74, 37, 0.14);
  color: var(--green);
}

.button-light {
  background: var(--white);
  color: var(--green);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
}

.hero-grid {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-visual {
  position: absolute;
  inset: 0 calc(50% - 50vw) 0 auto;
  width: min(50vw, 820px);
  pointer-events: none;
}

.hero-image-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 900ms ease;
  mask-image: linear-gradient(to left, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 70%, transparent 100%);
}

.hero-image-shell:hover .hero-image {
  transform: scale(1.04);
}

.eyebrow {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Forum", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  max-width: min(60vw, 840px);
  margin-bottom: 18px;
  font-size: 60px;
}

h2 {
  max-width: none;
  margin-bottom: 18px;
  font-size: 52px;
}

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

.hero-subtitle {
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--green);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(60vw, 840px);
}

.lead {
  max-width: 56ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.review-stars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: none;
  margin: 26px 0 22px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-height: 122px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 74, 37, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.proof-card:hover,
.proof-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(63, 74, 37, 0.18);
}

.proof-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  white-space: nowrap;
}

.proof-logo {
  width: auto;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(17%) saturate(861%) hue-rotate(38deg)
    brightness(95%) contrast(89%);
}

.proof-logo-booksy {
  height: 18px;
}

.proof-logo-google {
  height: 20px;
}

.proof-stars {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.proof-stars img {
  width: 14px;
  height: 14px;
}

.ribbon {
  overflow: hidden;
  padding: 18px 0;
  background: var(--green);
  color: var(--white);
}

.ribbon-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: "Forum", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  animation: marquee 10.25s linear infinite;
}

.section {
  padding: 92px 0;
}

.service-page > .section:last-of-type {
  padding-bottom: 48px;
}

.about-page > .section:last-of-type {
  padding-top: 40px;
}

.section-heading {
  max-width: 1100px;
  margin-bottom: 34px;
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  max-width: none;
  margin-inline: auto;
}

.section-heading p,
.section-subtitle {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card,
.testimonial-card,
.effects-text-card,
.promo-shell {
  overflow: hidden;
  border: 1px solid rgba(63, 74, 37, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: min(76vh, 560px);
  box-shadow: 0 8px 20px rgba(40, 53, 18, 0.04);
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(63, 74, 37, 0.08);
  box-shadow: 0 16px 30px rgba(40, 53, 18, 0.08);
}

.service-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.service-card:hover .service-image,
.service-card:focus-within .service-image {
  transform: scale(1.05);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 20px;
  text-align: left;
}

.service-body h3 {
  min-height: 2.2em;
  margin-bottom: 5px;
  font-size: 27px;
  line-height: 1.04;
}

.service-body p {
  display: -webkit-box;
  color: var(--muted);
  overflow: hidden;
  min-height: 4.5em;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 36px;
}

.service-price span,
.review-service {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-price strong {
  font-size: 1.05rem;
}

.service-footer a,
.service-footer button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.service-footer a:hover,
.service-footer a:focus-visible,
.service-footer button:hover,
.service-footer button:focus-visible {
  transform: scale(1.03);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(63, 74, 37, 0.18);
}

.promo-shell {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.promo-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 56px 0;
  width: var(--container);
  margin: 0 auto;
  text-align: left;
}

.promo-shell h2,
.promo-shell p {
  color: inherit;
}

.effects-section {
  background: linear-gradient(180deg, rgba(227, 222, 218, 0.4), rgba(248, 244, 241, 0.96));
}

.effects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 36px;
  align-items: center;
}

.effects-copy {
  text-align: left;
}

.effects-copy .section-subtitle {
  margin: 0 0 24px;
}

.effects-text-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.before-after {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.45);
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare-overlay,
.compare-divider,
.compare-range,
.compare-badges {
  position: absolute;
  inset: 0;
}

.compare-overlay {
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-divider {
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(63, 74, 37, 0.1);
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 24, 8, 0.18);
}

.compare-handle::before,
.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.compare-handle::before {
  left: 14px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-handle::after {
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-badges {
  inset: auto 24px 24px 24px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.compare-badges span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(63, 74, 37, 0.08);
  font-family: "Instrument Sans", sans-serif;
}

.compare-range {
  opacity: 0;
  cursor: ew-resize;
}

.reviews-slider-shell {
  position: relative;
}

.reviews-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}

.reviews-slider-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: "Forum", serif;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.reviews-slider-button:hover,
.reviews-slider-button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
  transform: scale(1.03);
}

.testimonial-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  padding: 26px;
  scroll-snap-align: start;
  transition: none;
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-top > div:last-child {
  display: grid;
  gap: 8px;
  align-content: center;
}

.review-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green);
  color: var(--white);
  font-family: "Forum", serif;
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.review-top strong {
  display: block;
  margin-bottom: 0;
  font-family: "Forum", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.review-top p,
.review-source {
  margin: 0;
}

.review-top p {
  line-height: 1;
}

.review-stars {
  margin-bottom: 16px;
}

.review-stars img {
  width: 16px;
  height: 16px;
}

.testimonial-card > p:last-child {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--muted);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.reviews-section {
  background: var(--green);
  color: var(--white);
}

.reviews-section .section-heading h2 {
  color: var(--white);
}

.reviews-section .section-heading p,
.reviews-section .review-service,
.reviews-section .review-top p,
.reviews-section .testimonial-card p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.reviews-section .testimonial-card {
  background: var(--white);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.reviews-section .review-service,
.reviews-section .review-top p,
.reviews-section .testimonial-card p:last-child {
  color: var(--muted);
}

.reviews-section .button-primary:hover,
.reviews-section .button-primary:focus-visible {
  background: var(--white);
  color: var(--green);
}

.reviews-section .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.reviews-section .button-secondary:hover,
.reviews-section .button-secondary:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.faq-section {
  background: linear-gradient(180deg, rgba(227, 222, 218, 0.32), rgba(248, 244, 241, 0.92));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.faq-card {
  grid-column: 2 / span 10;
  padding: 0 28px;
  border-radius: 16px;
  background: var(--green);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-trigger::marker {
  display: none;
}

.faq-trigger span:first-child {
  font-family: "Forum", serif;
  font-size: 32px;
  line-height: 1.02;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(1);
}

.faq-card[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-card[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.45);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition:
    grid-template-rows 640ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.faq-card[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.faq-card[open] .faq-answer p {
  transform: translateY(0);
}

.service-card {
  position: relative;
}

.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.service-footer,
.service-footer button,
.service-footer a {
  position: relative;
  z-index: 2;
}

.service-page {
  padding: 28px 0 0;
}

.service-page .site-header {
  position: sticky;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs a {
  position: relative;
}

.breadcrumbs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.breadcrumbs a:hover::after,
.breadcrumbs a:focus-visible::after {
  transform: scaleX(1);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.service-hero-copy {
  padding: 18px 0 0;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.service-page h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.35vw, 52px);
}

.service-intro {
  max-width: 58ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.service-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.service-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 74, 37, 0.08);
  color: var(--green);
  font-size: 0.9rem;
}

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

.service-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-trust-card,
.service-visual,
.service-panel,
.service-feature-card,
.service-related-card {
  border: 1px solid rgba(63, 74, 37, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.service-trust-card {
  padding: 18px;
}

.service-trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Forum", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.service-trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-hero-side {
  display: grid;
  gap: 18px;
}

.service-visual {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-size: 0.92rem;
}

.service-panel {
  padding: 24px;
}

.service-booking-panel {
  position: sticky;
  top: 110px;
}

.service-hero-side > .service-booking-panel {
  display: none;
}

.service-panel h2,
.service-panel h3 {
  margin-bottom: 14px;
}

.service-panel p,
.service-panel li {
  color: var(--muted);
}

.service-panel ul {
  margin: 0;
  padding-left: 18px;
}

.service-page-grid > aside.service-panel ul a {
  position: relative;
  display: inline-block;
  transition: color 180ms ease;
}

.service-page-grid > aside.service-panel ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-page-grid > aside.service-panel ul a:hover,
.service-page-grid > aside.service-panel ul a:focus-visible {
  color: var(--green);
}

.service-page-grid > aside.service-panel ul a:hover::after,
.service-page-grid > aside.service-panel ul a:focus-visible::after {
  transform: scaleX(1);
}

.service-page-section {
  padding: 92px 0;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.64fr);
  gap: 28px;
  align-items: start;
}

.service-page-grid > aside.service-panel {
  position: sticky;
  top: 110px;
}

.service-content-stack {
  display: grid;
  gap: 24px;
}

.service-rich-copy {
  padding: 34px;
}

.service-rich-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 3.6vw, 52px);
}

.service-rich-copy p:last-child {
  margin-bottom: 0;
}

.service-rich-copy a,
.service-rich-copy a:visited,
.faq-answer a,
.faq-answer a:visited,
.blog-article-page p a,
.blog-article-page p a:visited,
.blog-article-page li a,
.blog-article-page li a:visited {
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease;
}

.service-rich-copy a:hover,
.service-rich-copy a:focus-visible,
.faq-answer a:hover,
.faq-answer a:focus-visible,
.blog-article-page p a:hover,
.blog-article-page p a:focus-visible,
.blog-article-page li a:hover,
.blog-article-page li a:focus-visible {
  color: #e74d10 !important;
  opacity: 1;
}

.service-features-grid,
.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-feature-card,
.service-related-card {
  padding: 24px;
}

.service-feature-card h3,
.service-related-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.service-feature-card p,
.service-related-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-steps {
  display: grid;
  gap: 16px;
}

.service-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(63, 74, 37, 0.12);
}

.service-step:last-child {
  border-bottom: 1px solid rgba(63, 74, 37, 0.12);
}

.service-step-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: "Forum", serif;
  font-size: 1.25rem;
}

.service-step h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.service-step p {
  margin: 0;
  color: var(--muted);
}

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

.service-faq-grid .faq-card {
  grid-column: 2 / span 10;
}

.service-related-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 0;
}

.service-related-card img {
  width: 100%;
  height: 220px;
  margin: 0;
  object-fit: cover;
  flex-shrink: 0;
}

.service-related-card h3,
.service-related-card p,
.service-related-card .button {
  margin-left: 24px;
  margin-right: 24px;
}

.service-related-card h3 {
  margin-top: 24px;
}

.service-related-card p {
  margin-top: 16px;
}

.service-related-card .button {
  margin-top: auto;
  margin-top: 24px;
  margin-bottom: 24px;
  background: var(--orange);
  border-color: transparent;
  color: var(--white);
}

.service-related-card .button:hover,
.service-related-card .button:focus-visible {
  background: var(--green);
  color: var(--white);
}

.service-cta-banner {
  margin-top: 92px;
  padding: 56px;
  border-radius: 36px;
  background: var(--green);
  color: var(--white);
}

.service-cta-banner h2,
.service-cta-banner p {
  color: inherit;
}

.service-cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-page .faq-section {
  background: transparent;
  padding-top: 46px;
  padding-bottom: 46px;
}

.about-page .service-page-section {
  padding-bottom: 52px;
}

.about-page .service-cta-banner {
  margin-top: 0;
}

.about-diploma-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.about-diploma-card h2 {
  margin-bottom: 18px;
}

.about-diploma-card p {
  margin-bottom: 0;
}

.about-diploma-placeholder {
  min-height: 320px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(63, 74, 37, 0.08);
  border-radius: 24px;
  background: var(--white);
}

.about-diploma-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.contact-hero-grid {
  align-items: start;
}

.contact-summary-panel {
  display: grid;
  gap: 22px;
}

.contact-summary-list {
  display: grid;
  gap: 18px;
}

.contact-summary-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Forum", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.contact-summary-list p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}

.contact-page .service-page-section {
  padding-bottom: 40px;
}

.contact-page > .section:last-of-type {
  padding-top: 0;
}

.contact-page .service-cta-banner {
  margin-top: 0;
}

.contact-map-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(63, 74, 37, 0.08);
  background: var(--white);
}

.contact-map {
  width: 100%;
  min-height: 620px;
  border: 0;
}

.cookie-placeholder {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(231, 77, 16, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(248, 244, 241, 0.98), rgba(227, 222, 218, 0.82));
}

.cookie-placeholder-inner {
  max-width: 560px;
}

.cookie-placeholder h3 {
  margin-bottom: 16px;
}

.cookie-placeholder p {
  margin-bottom: 24px;
  color: var(--muted);
}

.cookie-placeholder-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-info-stack {
  display: grid;
  gap: 24px;
}

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

.contact-inline-link {
  position: relative;
}

.contact-inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.contact-inline-link:hover::after,
.contact-inline-link:focus-visible::after {
  transform: scaleX(1);
}

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

.blog-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(63, 74, 37, 0.08);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.blog-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.blog-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.service-page .faq-section .section-heading h2 {
  display: block;
}

.site-footer {
  padding-top: 0;
  background: var(--green);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: clamp(40px, 5vw, 88px);
  padding-bottom: 64px;
}

.footer-logo {
  width: clamp(220px, 18vw, 280px);
  margin: -14px 0 0;
  filter: brightness(0) invert(1);
}

.footer-main p,
.footer-copy,
.footer-phone {
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  gap: 22px;
  align-content: start;
  max-width: 520px;
}

.footer-description {
  max-width: 40ch;
  margin-bottom: 0;
  font-family: "Forum", serif;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.28;
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-contact a {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.footer-contact a,
.footer-contact a:visited,
.footer-links a,
.footer-links a:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-contact a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-contact a:hover::after,
.footer-contact a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-social-wrap {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-section-label {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  transition: transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
}

.footer-socials img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-socials a:hover img,
.footer-socials a:focus-visible img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(2812%) hue-rotate(3deg)
    brightness(96%) contrast(88%);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px clamp(28px, 4vw, 64px);
  align-self: start;
  padding-top: 50px;
  padding-left: 50px;
}

.footer-nav-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links-column {
  justify-items: start;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.footer-bottom .container {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.footer-copy {
  margin: 0;
  font-size: 1rem;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 8, 0.44);
}

.booking-dialog {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 5vh auto 0;
  padding: 32px 36px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(26, 35, 13, 0.22);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-close-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.booking-close-icon::before,
.booking-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.booking-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-close:hover .booking-close-icon::before,
.booking-close:hover .booking-close-icon::after,
.booking-close:focus-visible .booking-close-icon::before,
.booking-close:focus-visible .booking-close-icon::after {
  background: var(--orange);
}


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

.booking-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(63, 74, 37, 0.14);
  border-radius: 18px;
  background: #fcfaf8;
  color: var(--text);
}

.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.booking-form input:focus,
.booking-form input:focus-visible,
.booking-form select:focus,
.booking-form select:focus-visible,
.booking-form textarea:focus,
.booking-form textarea:focus-visible {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(63, 74, 37, 0.16);
}

.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.booking-status {
  min-height: 1.5em;
  margin: 4px 0 0;
  color: var(--green);
  font-size: 0.95rem;
}

.booking-legal {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.booking-legal a {
  position: relative;
}

.booking-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.booking-legal a:hover::after,
.booking-legal a:focus-visible::after {
  transform: scaleX(1);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: min(560px, calc(100% - 32px));
}

.cookie-banner-inner {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(63, 74, 37, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(26, 35, 13, 0.18);
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Forum", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sticky-call {
  display: none;
}

@keyframes sticky-call-pulse {
  0% {
    transform: scale(0.94);
    box-shadow:
      0 16px 36px rgba(26, 35, 13, 0.24),
      0 0 0 0 rgba(63, 74, 37, 0.32);
  }

  70% {
    transform: scale(1);
    box-shadow:
      0 16px 36px rgba(26, 35, 13, 0.24),
      0 0 0 18px rgba(63, 74, 37, 0);
  }

  100% {
    transform: scale(0.94);
    box-shadow:
      0 16px 36px rgba(26, 35, 13, 0.24),
      0 0 0 0 rgba(63, 74, 37, 0);
  }
}


body.js-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

body.modal-open {
  overflow: hidden;
}

body.mobile-nav-open {
  overflow: hidden;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-32%);
  }
}

@media (max-width: 1024px) {
  .effects-layout,
  .footer-layout,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-grid,
  .service-page-grid,
  .service-features-grid,
  .service-related-grid,
  .blog-grid,
  .service-trust-list,
  .service-faq-grid,
  .contact-layout,
  .about-diploma-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    min-height: auto;
    display: grid;
    gap: 32px;
  }

  .promo-shell {
    padding: 0;
  }

  .hero-social-proof {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-visual {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .service-booking-panel {
    position: static;
  }

  .service-page-grid > aside.service-panel {
    position: static;
  }

  .service-visual {
    min-height: 520px;
  }

  .service-faq-grid .faq-card {
    grid-column: auto;
  }

  h1 {
    max-width: none;
    font-size: 52px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-visual {
    order: 2;
    height: 520px;
    pointer-events: auto;
  }

  .hero-image-shell {
    border-radius: 32px;
    box-shadow: var(--shadow);
  }

  .hero-image {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .faq-card {
    grid-column: auto;
    padding: 0 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 36px;
  }

  .footer-main {
    max-width: 100%;
  }

  .footer-nav-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .promo-inner {
    align-items: start;
    flex-direction: column;
    text-align: center;
  }

  .service-cta-banner-inner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header .nav-shell > .button {
    display: none;
  }

  .nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle,
  .mobile-nav-panel {
    display: block;
  }

  .mobile-nav-panel:not([hidden]) {
    display: flex;
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .hero {
    padding: 28px 0 56px;
  }

  .hero-visual {
    display: none;
  }

  .section,
  .promo-banner {
    padding: 64px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .lead,
  .section-heading p,
  .section-subtitle {
    font-size: 16px;
  }

  .hero-social-proof {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .proof-card {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px;
    gap: 12px;
  }

  .proof-card span {
    white-space: normal;
  }

  .reviews-slider-controls {
    justify-content: center;
    margin-bottom: 18px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .service-page {
    padding-top: 12px;
  }

  .service-page .faq-section {
    padding-top: 23px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
  }

  .service-page h1 {
    font-size: clamp(28px, 7.2vw, 38px);
  }

  .service-intro {
    font-size: 1rem;
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-trust-card,
  .service-rich-copy,
  .service-feature-card,
  .service-related-card,
  .service-panel,
  .service-cta-banner {
    border-radius: 22px;
  }

  .service-panel,
  .service-rich-copy,
  .service-feature-card,
  .service-cta-banner {
    padding: 22px;
  }

  .service-related-card {
    padding: 0;
  }

  .service-visual {
    min-height: 360px;
  }

  .contact-map {
    min-height: 420px;
  }

  .cookie-placeholder {
    min-height: 420px;
    padding: 24px;
  }

  .service-feature-card h3,
  .service-related-card h3,
  .service-step h3,
  .blog-card h3 {
    font-size: 24px;
  }

  .service-cta-banner {
    margin-top: 64px;
  }

  .about-page > .section:last-of-type {
    padding-top: 28px;
  }

  .about-page .service-page-section {
    padding-bottom: 36px;
  }

  .service-cta-banner,
  .service-cta-banner-inner {
    text-align: center;
  }

  .service-cta-banner-inner {
    align-items: center;
  }

  .service-cta-banner-inner .button {
    margin-inline: auto;
  }

  .service-related-card img {
    width: 100%;
    margin: 0;
  }

  .service-related-card h3,
  .service-related-card p,
  .service-related-card .button {
    margin-left: 22px;
    margin-right: 22px;
  }

  .service-related-card h3 {
    margin-top: 22px;
  }

  .service-related-card .button {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .faq-trigger {
    padding: 20px 0;
  }

  .faq-trigger span:first-child {
    font-size: 24px;
  }

  .faq-answer {
    padding: 0 0 20px;
  }

  .service-card {
    min-height: auto;
  }

  .service-body h3 {
    min-height: auto;
    margin-bottom: 16px;
  }

  .service-footer {
    padding-top: 32px;
  }

  .service-image {
    height: 220px;
  }

  .site-footer {
    padding-top: 32px;
  }

  .footer-logo {
    width: min(86vw, 360px);
    margin-bottom: 22px;
  }

  .footer-description {
    margin-bottom: 34px;
    font-size: 0.975rem;
  }

  .footer-socials {
    gap: 14px;
    justify-content: flex-start;
  }

  .footer-socials a {
    width: 72px;
    height: 72px;
  }

  .footer-socials a img {
    width: 44px;
    height: 44px;
  }

  .footer-main,
  .footer-bottom .container {
    text-align: center;
    justify-items: center;
    justify-content: center;
    margin-inline: auto;
  }

  .footer-description,
  .footer-contact,
  .footer-social-wrap {
    text-align: center;
    justify-items: center;
    justify-content: center;
    margin-inline: auto;
  }

  .footer-nav-grid {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 14px;
    padding-left: 0;
  }

  .footer-nav-column,
  .footer-links,
  .footer-links-column {
    text-align: center;
    justify-items: center;
  }

  .promo-inner {
    align-items: center;
    text-align: center;
  }

  .promo-inner .button {
    margin-inline: auto;
  }

  .before-after {
    min-height: 420px;
  }

  .effects-copy,
  .effects-copy .section-subtitle,
  .effects-text-card,
  .effects-text-card p {
    text-align: left;
  }

  .sticky-call {
    position: fixed;
    left: auto;
    right: 16px;
    bottom: 18px;
    z-index: 40;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--sand);
    background: var(--green);
    box-shadow: 0 16px 36px rgba(26, 35, 13, 0.24);
    animation: sticky-call-pulse 1.9s ease-out infinite;
  }

  .sticky-call:hover,
  .sticky-call:focus-visible {
    animation-play-state: paused;
  }

  .sticky-call-icon {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
  }

  .service-body,
  .testimonial-card,
  .faq-card,
  .effects-text-card,
  .promo-shell,
  .booking-dialog {
    padding: 22px;
  }

  .footer-logo {
    margin-bottom: 6px;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner-inner {
    padding: 18px;
  }

  .cookie-banner-copy strong {
    font-size: 1.45rem;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .button {
    width: 100%;
  }
}
