:root {
  --ink: #18212f;
  --muted: #5c6575;
  --paper: #fffdf8;
  --white: #ffffff;
  --sun: #ffcb3d;
  --coral: #ff5f63;
  --teal: #1fb7a6;
  --blue: #2956d9;
  --grape: #7b3ff2;
  --shadow: 0 22px 60px rgba(24, 33, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(90deg, #f56aa6 0%, #fff8fb 50%, #58a9f7 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(24, 33, 47, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a,
.header-call,
.button,
.booking-phone {
  text-decoration: none;
}

.nav a:hover,
.header-call:hover,
.footer a:hover {
  color: var(--blue);
}

.header-call {
  padding: 10px 14px;
  border-radius: 8px;
  background: #e84f92;
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 203, 61, 0.24) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(150deg, rgba(31, 183, 166, 0.16) 0%, rgba(255, 255, 255, 0) 44%),
    transparent;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(24px, 4vw, 52px);
  align-self: start;
  margin-top: clamp(-64px, -4vw, -24px);
  border: 8px solid transparent;
  color: var(--ink);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 660px;
  font-size: clamp(1.85rem, 3.35vw, 2.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.22rem;
}

.intro {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--sun);
  color: var(--ink);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(24, 33, 47, 0.14);
  box-shadow: 0 10px 22px rgba(24, 33, 47, 0.08);
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  align-self: start;
  width: 90%;
  aspect-ratio: 1;
  min-height: 0;
  padding: clamp(10px, 2vw, 20px);
  margin-top: clamp(-64px, -4vw, -24px);
  justify-self: center;
  border-radius: 8px;
  border: 8px solid #2f8fe8;
  background:
    linear-gradient(135deg, rgba(255, 95, 99, 0.16), rgba(31, 183, 166, 0.16)),
    var(--white);
  box-shadow: var(--shadow);
}

.hero-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid rgba(24, 33, 47, 0.1);
}

.quick-services span {
  padding: 9px 12px;
  border-radius: 8px;
  background: #edf8f7;
  color: #0f6f65;
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-services span:nth-child(2n) {
  background: #fff1c4;
  color: #775500;
}

.quick-services span:nth-child(3n) {
  background: #ffe8ea;
  color: #a73339;
}

.section,
.area-band,
.seo-section,
.faq-section,
.booking-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  white-space: nowrap;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

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

.service-card {
  min-height: 218px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(24, 33, 47, 0.1);
  box-shadow: 0 12px 28px rgba(24, 33, 47, 0.08);
  text-align: center;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 0;
  background: var(--white);
  border: 0;
}

.service-card .icon img {
  display: block;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.service-card .logo-icon {
  width: 236px;
  height: 172px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
}

.service-card .logo-icon img {
  max-width: 96%;
  max-height: 96%;
}

.service-card .text-logo-button {
  transition: transform 160ms ease, filter 160ms ease;
}

.service-card .text-logo-button:hover {
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.service-card:nth-child(2) .icon,
.service-card:nth-child(5) .icon {
  background: var(--white);
}

.service-card:nth-child(3) .icon {
  background: var(--white);
}

.service-card:nth-child(4) .icon {
  background: var(--white);
}

.service-card.featured .icon {
  background: var(--white);
}

.service-card.featured {
  background: var(--white);
  color: var(--ink);
}

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

.service-card.featured a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
}

.area-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #f0f8ff;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(41, 86, 217, 0.08);
}

.area-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.seo-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.seo-copy p {
  margin: 0;
}

.faq-section {
  background: rgba(255, 255, 255, 0.86);
}

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

.faq-grid article {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(24, 33, 47, 0.1);
  box-shadow: 0 10px 22px rgba(24, 33, 47, 0.08);
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--coral);
  color: var(--white);
}

.booking-copy {
  max-width: 760px;
}

.booking-copy .eyebrow {
  color: var(--sun);
}

.booking-copy p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.booking-phone {
  display: grid;
  gap: 4px;
  min-width: min(100%, 290px);
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-phone span {
  color: var(--muted);
  font-weight: 800;
}

.booking-phone strong {
  font-size: 1.55rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    margin-top: 0;
    border: 0;
  }

  .hero-logo-panel {
    order: -1;
    width: min(100%, 420px);
    justify-self: center;
    margin-top: 0;
  }

  .intro,
  .area-copy,
  .booking-copy,
  .seo-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

  .service-grid,
  .area-band,
  .seo-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-section,
  .footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .area-list li,
  .faq-grid article {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .section-heading h2 {
    white-space: normal;
  }

  .site-header {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

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

  .area-list {
    grid-template-columns: 1fr;
  }

  .booking-phone strong {
    font-size: 1.35rem;
  }
}
