@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #686868;
  --color-accent: #38548f;
  --color-accent-hover: #2c4272;
  --max-width: 1100px;
  --header-height: 5.5rem;
  --font: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  display: block;
  flex-shrink: 0;
}

.logo img {
  height: 3.25rem;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--color-bg);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  visibility: hidden;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
}

.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.75rem;
}

.lead {
  font-size: 1.1rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-photo {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-text p {
  margin: 0 0 0.65rem;
}

.hero-text .invite {
  margin-top: 1.25rem;
  font-weight: 600;
}

.prose p {
  margin: 0 0 1.15rem;
}

.prose .quotes {
  margin: 2rem 0 0;
}

.prose .quotes p {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.about-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-photo {
  max-width: 22rem;
  margin: 0 auto;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 2.5rem;
}

.offer-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.25rem;
  background: var(--color-accent);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.offer-btn:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
}

.areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.areas h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.areas ul {
  margin: 0;
  padding-left: 1.2rem;
}

.areas li {
  margin-bottom: 0.35rem;
}

.service {
  padding: 2rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.service h2 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--color-accent);
}

.service .price {
  margin-top: 1rem;
  font-weight: 600;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-list a {
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.map-wrap {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 10;
  max-height: 28rem;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    transform: none;
    visibility: visible;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 1.75rem;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }

  .hero-photo {
    flex: 0 0 42%;
    max-width: none;
    margin: 0;
  }

  .hero-text {
    flex: 1;
  }

  .about-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .about-text {
    flex: 1;
  }

  .about-photo {
    flex: 0 0 36%;
    max-width: none;
    margin: 0;
    order: 2;
  }

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

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

@media (min-width: 960px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-grid .offer-btn:nth-child(4),
  .offer-grid .offer-btn:nth-child(5) {
    grid-column: span 1;
  }
}
