:root {
  --bg: #f7f2f6;
  --panel: #ffffff;
  --ink: #3f2e38;
  --muted: #7b6b76;
  --accent: #a993c7;
  --accent-dark: #7f679c;
  --pill: #f3e9f7;
  --soft: #efe6f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf6fa 0%, #ffffff 55%, #f5eef6 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: min(34vw, 520px);
  height: 100vh;
  background: url("/images/hero/hero_2.jpg") center/cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.9);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 96px 20px 80px;
}

[id] {
  scroll-margin-top: 88px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  height: 72px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fbf6fa;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(63, 46, 56, 0.08);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  flex: 1;
  min-width: 0;
}

.logo-text {
  display: block;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-box {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.nav-brand {
  display: none;
}

.nav-toggle-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f2e7f6;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 12;
  flex-direction: column;
  flex: 0 0 auto;
}

.nav-toggle-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  display: block;
}

.hero {
  max-width: 1100px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-text {
  display: grid;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.hero h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  margin: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-quote {
  margin: 0;
  padding: 12px 16px;
  border-left: 3px solid rgba(125, 102, 144, 0.5);
  background: #f7f1f9;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.hero-quote span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

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

.hero-media {
  display: grid;
  place-items: center;
}

.hero-image {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: 0 18px 40px rgba(63, 46, 56, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/hero/hero_3.jpg") center/cover no-repeat;
}

.about {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-text h2,
.offer-head h2,
.story-text h2,
.gallery-head h2,
.panel h2 {
  font-family: "Exo 2", sans-serif;
  font-size: 32px;
  margin: 0 0 12px;
}

.about-text p,
.offer-head p,
.story-text p,
.gallery-head p,
.panel p {
  margin: 0;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pill);
  border: 1px solid rgba(125, 102, 144, 0.3);
}

.about-image {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: 0 18px 40px rgba(63, 46, 56, 0.12);
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/about.svg") center/cover no-repeat;
}

.about-image.logo-hero {
  background: #ffffff;
  display: grid;
  place-items: center;
}

.about-image.logo-hero::after {
  background: url("/images/logo3b.png") center/contain no-repeat;
}

.offer {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.offer-head {
  text-align: center;
  max-width: 520px;
  display: grid;
  gap: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(63, 46, 56, 0.1);
  border: 1px solid rgba(169, 147, 199, 0.2);
  display: grid;
  gap: 10px;
}

.card h3 {
  margin: 0;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: var(--pill);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}

.person-card .card-media {
  aspect-ratio: 2 / 3;
  background: #f5eef8;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-card .card-media img {
  object-fit: contain;
  background: #f5eef8;
}

.services-accordion {
  width: 100%;
  display: grid;
  gap: 24px;
}

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

.service-card {
  text-align: left;
  padding: 14px;
  gap: 12px;
}

.service-label {
  border: none;
  background: #f2e7f6;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.service-label::after {
  content: "+";
  float: right;
  font-weight: 600;
}

.service-card.is-active .service-label::after {
  content: "–";
}

.service-media {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #f5eef8;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5eef8;
}

.service-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.service-expand.is-open {
  margin: 4px 0;
}

.service-expand-inner {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 20px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(169, 147, 199, 0.2);
  box-shadow: 0 12px 30px rgba(63, 46, 56, 0.08);
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: translateY(0);
}

.service-expand.is-switching .service-expand-inner {
  opacity: 0;
  transform: translateY(6px);
}

.service-expand-media {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #f5eef8;
}

.service-expand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5eef8;
}

.service-expand-text h3 {
  margin: 0 0 8px;
}

.service-expand-text p {
  margin: 0;
  color: var(--muted);
  text-align: justify;
}

.service-expand-text p,
.service-modal p {
  white-space: pre-line;
  text-align: justify;
}

.service-collapse {
  margin-top: 12px;
  border: none;
  background: #f2e7f6;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.team-accordion {
  width: 100%;
  display: grid;
  gap: 24px;
}

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

.team-label {
  border: none;
  background: #f2e7f6;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.team-label::after {
  content: "+";
  float: right;
  font-weight: 600;
}

.person-card.is-active .team-label::after {
  content: "–";
}

.team-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.team-expand.is-open {
  margin: 4px 0;
}

.team-expand-inner {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 20px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(169, 147, 199, 0.2);
  box-shadow: 0 12px 30px rgba(63, 46, 56, 0.08);
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: translateY(0);
}

.team-expand.is-switching .team-expand-inner {
  opacity: 0;
  transform: translateY(6px);
}

.team-expand-media {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #f5eef8;
}

.team-expand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5eef8;
}

.team-expand-text p,
.team-modal p {
  white-space: pre-line;
  text-align: justify;
}

.team-collapse {
  margin-top: 12px;
  border: none;
  background: #f2e7f6;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.team-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #fbf6fa;
  z-index: 3000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.team-modal.is-open {
  display: flex;
}

.team-modal-card {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(63, 46, 56, 0.2);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.team-modal-media {
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #f5eef8;
}

.team-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5eef8;
}

.team-modal-close {
  border: none;
  background: #f2e7f6;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  justify-self: start;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #fbf6fa;
  z-index: 3000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-card {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(63, 46, 56, 0.2);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.service-modal-media {
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #f5eef8;
}

.service-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5eef8;
}

.service-modal-close {
  border: none;
  background: #f2e7f6;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  justify-self: start;
  cursor: pointer;
}

.story {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.team {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.team-head {
  text-align: center;
  display: grid;
  gap: 8px;
}

.story-image {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: var(--soft);
  box-shadow: 0 18px 40px rgba(63, 46, 56, 0.12);
  position: relative;
  overflow: hidden;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/story.jpg") center/cover no-repeat;
}

.gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(63, 46, 56, 0.12);
  position: relative;
  overflow: hidden;
}

.gallery-card:nth-child(1)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/gallery-1.svg") center/cover no-repeat;
}

.gallery-card:nth-child(2)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/gallery-2.svg") center/cover no-repeat;
}

.gallery-card:nth-child(3)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/gallery-3.svg") center/cover no-repeat;
}

.panel {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--panel);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 12px 30px rgba(63, 46, 56, 0.08);
  border: 1px solid rgba(169, 147, 199, 0.18);
}

.pricing {
  display: grid;
  gap: 24px;
}

.pricing-head {
  display: grid;
  gap: 8px;
}

.pricing-updated {
  font-size: 13px;
  color: var(--muted);
}

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

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(169, 147, 199, 0.2);
  box-shadow: 0 10px 24px rgba(63, 46, 56, 0.08);
  display: grid;
  gap: 14px;
}

.pricing-card h3 {
  margin: 0;
  font-size: 18px;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-item {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(169, 147, 199, 0.18);
}

.pricing-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.pricing-item-main {
  display: grid;
  gap: 4px;
}

.pricing-item-name {
  font-weight: 600;
  color: var(--ink);
}

.pricing-item-note {
  font-size: 12px;
  color: var(--muted);
}

.pricing-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.pricing-item-price {
  font-weight: 600;
  color: var(--accent-dark);
  background: #f6eef9;
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-notes {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px dashed rgba(169, 147, 199, 0.35);
  display: grid;
  gap: 8px;
}

.pricing-notes h3 {
  margin: 0;
  font-size: 16px;
}

.pricing-notes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.pricing-footer {
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  gap: 4px;
  color: var(--ink);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.contact-details a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-map {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid rgba(169, 147, 199, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-map-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: min(42%, 220px);
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.contact-map-overlay img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-map-overlay-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
}

.contact-map-attrib {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 11px;
  color: #3d3d3d;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 8px;
  border-radius: 999px;
}

.contact-map-attrib--below {
  display: none;
}
.button {
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(125, 102, 144, 0.25);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid rgba(125, 102, 144, 0.3);
}

.button.ghost:hover {
  border-color: rgba(125, 102, 144, 0.6);
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 16px 24px 32px;
  font-size: 12px;
  color: #6a5a66;
  letter-spacing: 0.02em;
}

.site-footer-tagline {
  font-size: 11px;
  color: #8a7b85;
  text-align: center;
}

@media (max-width: 900px) {
  .topbar {
    padding: 12px 20px;
    height: auto;
    position: fixed;
  }

  [id] {
    scroll-margin-top: 96px;
  }
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-expand {
    display: none;
  }

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

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

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

  .team-expand {
    display: none;
  }

  .team-modal {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .team-modal.is-open {
    display: block;
  }

  .team-modal-card {
    max-height: none;
    overflow: visible;
    margin: 0 auto;
    display: block;
  }

  .team-modal-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 150%;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .team-modal-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .team-modal h3 {
    margin-top: 24px;
  }

  .team-modal p {
    margin-top: 18px;
  }

  .service-modal {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .service-modal.is-open {
    display: block;
  }

  .service-modal-card {
    max-height: none;
    overflow: visible;
    margin: 0 auto;
    display: block;
  }

  .service-modal-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 150%;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .service-modal-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

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

  .service-modal p {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .team-modal {
    top: 72px;
    bottom: 0;
    height: calc(100vh - 72px);
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 96px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .team-modal.is-open {
    display: block;
  }

  .team-modal-card {
    padding-top: 18px;
    padding-bottom: 28px;
    max-height: none;
    overflow: visible;
    margin: 0 auto;
  }

  .team-modal-media {
    min-height: 260px;
    aspect-ratio: auto;
    height: 360px;
  }

  .service-modal {
    top: 72px;
    bottom: 0;
    height: calc(100vh - 72px);
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 96px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .service-modal.is-open {
    display: block;
  }

  .service-modal-card {
    padding-top: 18px;
    padding-bottom: 28px;
    max-height: none;
    overflow: visible;
    margin: 0 auto;
  }

  .service-modal-media {
    min-height: 260px;
    aspect-ratio: auto;
    height: 360px;
  }

  body::before {
    width: 100vw;
    height: 45vh;
    left: 0;
    right: 0;
    top: 0;
    background-position: center 20%;
    opacity: 0.12;
  }

  :root {
    --nav-logo-size: min(86vw, 360px);
  }

  .topbar {
    align-items: center;
    gap: 12px;
  }

  .logo {
    font-size: 13px;
    max-width: 220px;
  }

  .logo-text {
    max-width: 200px;
  }

  main {
    gap: 48px;
  }

  .pricing {
    padding: 24px 20px;
  }

  .pricing-item-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map {
    aspect-ratio: 3 / 2;
  }

  .contact-map-overlay-label {
    display: none;
  }

  .contact-map-attrib--inside {
    display: none;
  }

  .contact-map-attrib--below {
    display: block;
    position: static;
    margin-top: 8px;
    background: none;
    padding: 0;
    border-radius: 0;
    text-align: right;
  }

  .hero {
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .about,
  .story {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .about-text,
  .story-text {
    text-align: left;
  }

  .hero-image,
  .about-image,
  .story-image {
    width: 100%;
  }


  .hero-media,
  .about-media,
  .story-media {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

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

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

  .nav-links {
    display: none;
  }

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

  .nav-brand {
    display: none;
  }

  .nav-toggle:checked ~ .nav-links {
    display: grid;
    position: fixed;
    inset: 0;
    padding: calc(var(--nav-logo-size) + 72px) 28px 32px;
    background: #fbf6fa;
    gap: 20px;
    font-size: 18px;
    align-content: start;
    text-align: center;
    z-index: 1500;
    width: 100vw;
    height: 100vh;
    justify-items: center;
  }

  .nav-toggle:checked ~ .nav-links a {
    font-size: 20px;
  }

  .nav-toggle:checked ~ .nav-brand {
    display: grid;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--nav-logo-size);
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 32px;
    place-items: center;
    z-index: 1600;
    box-shadow: 0 10px 26px rgba(63, 46, 56, 0.18);
  }

  .nav-toggle:checked ~ .nav-brand img {
    width: 84%;
    height: 84%;
    object-fit: contain;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .hero,
  .about,
  .story {
    grid-template-columns: 1fr;
    text-align: center;
  }

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