/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  background: #ebebee;
  color: #111;
}

/* --- Typography --- */

p {
  font-size: 1.125rem;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 300;
}

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

::placeholder {
  color: #999;
}

/* --- Form elements --- */

input,
textarea,
select,
button {
  font-family: inherit;
  appearance: none;
}

/* --- UI transitions --- */

a,
button {
  transition: all 0.2s ease;
}

/* --- Layout container --- */

.inner {
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

/* --- Dark mode --- 

@media (prefers-color-scheme: dark) {
   body {
      background: #1f1f1f;
      color: #ddd;
   }
}
*/
/* --- Tablet adjustments --- */

@media (max-width: 1000px) {
  p {
    font-size: 1rem;
  }

  .contact > .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero .text {
    max-width: 70%;
  }

  .hero .text h1 {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
  }

  .hero .text .buttons {
    flex-wrap: wrap;
  }
}

/* --- CSS Variables --- */
:root {
  --accent: #41ad49;
  --accent-hover: #256429;
  --accent-text: #fff;
  --background: #ebebee;
  --text: #111;
}

/* --- Main CSS --- */
.contact {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 8px 0;
  background-color: var(--accent);
}

.contact > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact .tagline {
  color: var(--accent-text);
}

.contact > .inner > .contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-left: auto;
}

.contact .item {
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.contact .item a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.contact .item i {
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

header {
  background-color: white;
  padding: 35px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

body.admin-bar header {
  top: 32px;
}

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

header .logo a {
  font-size: 24px;
  font-weight: bold;
}

header .logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

header .logo .custom-logo {
  display: block;
  width: auto;
  max-width: min(280px, 40vw);
  max-height: 72px;
  height: auto;
}

header .menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

header .menu-toggle i {
  font-size: 1.35rem;
  line-height: 1;
}

header .site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

header .site-nav ul a {
  border-bottom: solid 2px transparent;
  padding-bottom: 5px;
}

header .site-nav ul a.active,
header .site-nav ul li.current-menu-item > a,
header .site-nav ul li.current-menu-ancestor > a,
header .site-nav ul li.current_page_parent > a {
  border-bottom: solid 2px var(--accent);
}

header .site-nav ul a.header-cta {
  background-color: var(--accent);
  padding: 15px 30px;
  border-radius: 50px;
  color: var(--accent-text);
  font-weight: bold;
}

.hero {
  background-image: url("assets/services/graffiti-angled@0.5x.png");
  background-image: image-set(
    url("assets/services/graffiti-angled@0.5x.webp") type("image/webp"),
    url("assets/services/graffiti-angled@0.5x.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  height: auto;
}

.hero .cover {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  min-height: inherit;
  padding: clamp(80px, 10vw, 132px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .text {
  max-width: 50%;
}

.hero .text h1 {
  font-size: 5rem;
  line-height: 1;
}

.hero .text p {
  text-wrap: balance;
  margin-top: 20px;
}

.hero .text .buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.hero .text .buttons a {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
}

.hero .text .buttons .cta-primary {
  background-color: var(--accent);
  cursor: pointer;
}

.hero .text .buttons .cta-primary:hover {
  background-color: var(--accent-hover);
}

.hero .text .buttons .cta-secondary {
  cursor: pointer;
}

.hero .text .buttons .cta-secondary:hover {
  text-decoration: underline;
}

.hero.hero-treatments {
  background-image: url("assets/services/free-consultation@0.5x.png");
  background-image: image-set(
    url("assets/services/free-consultation@0.5x.webp") type("image/webp"),
    url("assets/services/free-consultation@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-consultation {
  background-image: url("assets/services/free-consultation@0.5x.png");
  background-image: image-set(
    url("assets/services/free-consultation@0.5x.webp") type("image/webp"),
    url("assets/services/free-consultation@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-contact {
  background-image: url("assets/services/view-from-gym@0.5x.png");
  background-image: image-set(
    url("assets/services/view-from-gym@0.5x.webp") type("image/webp"),
    url("assets/services/view-from-gym@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-pricing {
  background-image: url("assets/services/graffiti@0.5x.png");
  background-image: image-set(
    url("assets/services/graffiti@0.5x.webp") type("image/webp"),
    url("assets/services/graffiti@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-gallery {
  background-image: url("assets/services/graffiti-angled@0.5x.png");
  background-image: image-set(
    url("assets/services/graffiti-angled@0.5x.webp") type("image/webp"),
    url("assets/services/graffiti-angled@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-hbot {
  background-image: url("assets/services/HBOT-two@0.5x.png");
  background-image: image-set(
    url("assets/services/HBOT-two@0.5x.webp") type("image/webp"),
    url("assets/services/HBOT-two@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-red-light {
  background-image: url("assets/services/RLT-open-on@0.5x.png");
  background-image: image-set(
    url("assets/services/RLT-open-on@0.5x.webp") type("image/webp"),
    url("assets/services/RLT-open-on@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-sauna {
  background-image: url("assets/services/sauna@0.5x.png");
  background-image: image-set(
    url("assets/services/sauna@0.5x-1.webp") type("image/webp"),
    url("assets/services/sauna@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-ice-bath {
  background-image: url("assets/services/ice-bath-in-stafford-elements-gym@0.5x.png");
  background-image: image-set(
    url("assets/services/ice-bath-in-stafford-elements-gym@0.5x.webp")
      type("image/webp"),
    url("assets/services/ice-bath-in-stafford-elements-gym@0.5x.png")
      type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-blood-tests {
  background-image: url("assets/services/consultation@0.5x.png");
  background-image: image-set(
    url("assets/services/consultation@0.5x.webp") type("image/webp"),
    url("assets/services/consultation@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-dna {
  background-image: url("assets/services/view@0.5x.png");
  background-image: image-set(
    url("assets/services/view@0.5x.webp") type("image/webp"),
    url("assets/services/view@0.5x.png") type("image/png")
  );
  min-height: 52vh;
}

.hero.hero-treatments .cover {
  justify-content: flex-start;
}

.hero.hero-consultation .cover {
  justify-content: flex-start;
}

.hero.hero-contact .cover {
  justify-content: flex-start;
}

.hero.hero-pricing .cover {
  justify-content: flex-start;
}

.hero.hero-gallery .cover {
  justify-content: flex-start;
}

.hero.hero-hbot .cover,
.hero.hero-red-light .cover,
.hero.hero-sauna .cover,
.hero.hero-ice-bath .cover,
.hero.hero-blood-tests .cover,
.hero.hero-dna .cover {
  justify-content: flex-start;
}

.hero.hero-treatments .text {
  max-width: 760px;
}

.hero.hero-consultation .text {
  max-width: 760px;
}

.hero.hero-contact .text {
  max-width: 760px;
}

.hero.hero-pricing .text {
  max-width: 760px;
}

.hero.hero-gallery .text {
  max-width: 760px;
}

.hero.hero-hbot .text,
.hero.hero-red-light .text,
.hero.hero-sauna .text,
.hero.hero-ice-bath .text,
.hero.hero-blood-tests .text,
.hero.hero-dna .text {
  max-width: 760px;
}

.hero.hero-treatments .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-consultation .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-contact .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-pricing .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-gallery .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-hbot .smaller,
.hero.hero-red-light .smaller,
.hero.hero-sauna .smaller,
.hero.hero-ice-bath .smaller,
.hero.hero-blood-tests .smaller,
.hero.hero-dna .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-treatments h1 {
  text-wrap: balance;
}

.hero.hero-consultation h1 {
  text-wrap: balance;
}

.hero.hero-contact h1 {
  text-wrap: balance;
}

.hero.hero-pricing h1 {
  text-wrap: balance;
}

.hero.hero-gallery h1 {
  text-wrap: balance;
}

.hero.hero-hbot h1,
.hero.hero-red-light h1,
.hero.hero-sauna h1,
.hero.hero-ice-bath h1,
.hero.hero-blood-tests h1,
.hero.hero-dna h1 {
  text-wrap: balance;
}

.hero.hero-treatments p {
  max-width: 42ch;
}

.hero.hero-consultation p {
  max-width: 42ch;
}

.hero.hero-contact p {
  max-width: 42ch;
}

.hero.hero-pricing p {
  max-width: 42ch;
}

.hero.hero-gallery p {
  max-width: 42ch;
}

.hero.hero-hbot p,
.hero.hero-red-light p,
.hero.hero-sauna p,
.hero.hero-ice-bath p,
.hero.hero-blood-tests p,
.hero.hero-dna p {
  max-width: 42ch;
}

.services {
  padding: 150px 0;
}

.services .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.services h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 10ch;
}

.services .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.services .card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.services .card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 173, 73, 0.25);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

.services .card-image {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  background: rgba(17, 17, 17, 0.06);
}

.services .card-image picture,
.services .card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.services .card-image img {
  object-fit: cover;
}

.services .card .eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.services .card h3 {
  font-size: 2rem;
  line-height: 1;
  margin-top: 22px;
}

.services .card p {
  margin-top: 16px;
  color: rgba(17, 17, 17, 0.78);
}

.booking {
  padding: 0 0 150px;
}

.booking .section-intro {
  margin-bottom: 40px;
}

.booking .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.booking h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 11ch;
}

.booking p {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  text-wrap: balance;
}

.booking .booking-frame {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.booking iframe {
  display: block;
  border-radius: 20px;
  background: #fff;
}

.booking.booking-cta .booking-frame {
  padding: 36px;
}

.booking.booking-cta .booking-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking.booking-cta .cta-primary,
.booking.booking-cta .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}

.booking.booking-cta .cta-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.booking.booking-cta .cta-primary:hover {
  background-color: var(--accent-hover);
}

.booking.booking-cta .cta-secondary:hover {
  text-decoration: underline;
}

.consultation-booking iframe {
  min-height: 900px;
}

.booking.consultation-booking {
  padding-top: 72px;
}

.contact-page {
  padding: 150px 0;
}

.contact-page .section-intro {
  margin-bottom: 40px;
  max-width: 760px;
}

.contact-page .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.contact-page h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 11ch;
}

.contact-page p {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  text-wrap: balance;
}

.contact-page .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-page .card a {
  color: var(--accent);
  font-weight: 600;
}

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

.contact-form-wrap {
  margin-top: 48px;
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.contact-form {
  margin-top: 32px;
}

.contact-form .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form .field + .field {
  margin-top: 20px;
}

.contact-form .field-grid .field + .field {
  margin-top: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(65, 173, 73, 0.2);
  border-color: var(--accent);
}

.contact-form .cf-turnstile {
  margin-top: 24px;
}

.contact-form .form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.contact-form button {
  border: 0;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent-hover);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-form .form-status {
  margin-top: 0;
  min-height: 1.5em;
}

.contact-form .form-status.is-error {
  color: #b42318;
}

.contact-form .form-status.is-success {
  color: #1d7a32;
}

.pricing-page,
.individual-pricing {
  padding: 150px 0;
}

.pricing-page .section-intro,
.individual-pricing .section-intro {
  margin-bottom: 40px;
  max-width: 760px;
}

.pricing-page .smaller,
.individual-pricing .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pricing-page h2,
.individual-pricing h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 11ch;
}

.pricing-page p,
.individual-pricing p {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  text-wrap: balance;
}

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

.pricing-page .pricing-card {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.pricing-page .pricing-card.featured {
  border-color: rgba(65, 173, 73, 0.28);
  box-shadow: 0 24px 48px rgba(65, 173, 73, 0.08);
}

.pricing-page .pricing-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.pricing-page .price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--accent);
  white-space: nowrap;
}

.pricing-page .pricing-summary {
  margin-top: 20px;
}

.pricing-page .pricing-block {
  margin-top: 28px;
}

.pricing-page .pricing-block h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.pricing-page .pricing-block ul {
  list-style: none;
}

.pricing-page .pricing-block li + li {
  margin-top: 10px;
}

.pricing-page .pricing-block li::before {
  content: "›";
  color: var(--accent);
  margin-right: 10px;
}

.pricing-page .pricing-meta {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.pricing-page .pricing-meta p {
  margin-top: 0;
}

.individual-pricing .cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.individual-pricing .service-price {
  margin-top: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.75rem;
  line-height: 0.95;
  color: var(--accent);
}

.individual-pricing .service-note {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.64);
}

.gallery-page {
  padding: 150px 0;
}

.gallery-page .section-intro {
  margin-bottom: 40px;
  max-width: 760px;
}

.gallery-page .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.gallery-page h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 12ch;
}

.gallery-page p {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  text-wrap: balance;
}

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

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.treatment-detail {
  padding: 150px 0;
}

.treatment-detail .section-intro {
  margin-bottom: 40px;
  max-width: 760px;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.62);
}

.breadcrumbs a {
  color: rgba(17, 17, 17, 0.72);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .separator {
  color: rgba(17, 17, 17, 0.28);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
}

.treatment-detail .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.treatment-detail h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 10ch;
}

.treatment-detail .lead {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  text-wrap: balance;
}

.treatment-detail .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.treatment-detail .detail-main,
.treatment-detail .detail-side {
  display: grid;
  gap: 24px;
}

.treatment-detail .panel {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.treatment-detail .panel h3 {
  font-size: 2rem;
  line-height: 1;
}

.treatment-detail .panel p {
  margin-top: 16px;
  color: rgba(17, 17, 17, 0.78);
}

.treatment-detail .feature-list,
.treatment-detail .side-list {
  list-style: none;
  margin-top: 18px;
}

.treatment-detail .feature-list li + li,
.treatment-detail .side-list li + li {
  margin-top: 10px;
}

.treatment-detail .feature-list li::before {
  content: "›";
  color: var(--accent);
  margin-right: 10px;
}

.treatment-detail .note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(65, 173, 73, 0.08);
  border: 1px solid rgba(65, 173, 73, 0.14);
}

.treatment-detail .note p {
  margin-top: 0;
}

.treatment-detail .stat {
  margin-top: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 0.95;
  color: var(--accent);
}

.treatment-detail .side-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.treatment-detail .cta-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.treatment-detail .cta-primary,
.treatment-detail .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
}

.treatment-detail .cta-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.treatment-detail .cta-primary:hover {
  background: var(--accent-hover);
}

.treatment-detail .cta-secondary:hover {
  text-decoration: underline;
}

.hero.hero-blog {
  background-image: url("assets/services/view@0.5x.png");
  background-image: image-set(
    url("assets/services/view@0.5x.webp") type("image/webp"),
    url("assets/services/view@0.5x.png") type("image/png")
  );
  min-height: 50vh;
}

.hero.hero-blog-single {
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.28), rgba(17, 17, 17, 0.62)),
    url("assets/services/graffiti@0.5x.png");
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.28), rgba(17, 17, 17, 0.62)),
    image-set(
      url("assets/services/graffiti@0.5x.webp") type("image/webp"),
      url("assets/services/graffiti@0.5x.png") type("image/png")
    );
  min-height: 54vh;
}

.hero.hero-blog .cover,
.hero.hero-blog-single .cover {
  justify-content: flex-start;
}

.hero.hero-blog .text,
.hero.hero-blog-single .text {
  max-width: 820px;
}

.hero.hero-blog .smaller,
.hero.hero-blog-single .smaller {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero.hero-blog h1,
.hero.hero-blog-single h1 {
  text-wrap: balance;
}

.hero.hero-blog p,
.hero.hero-blog-single p {
  max-width: 50ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.92rem;
}

.blog-index,
.article-shell {
  padding: 150px 0;
}

.blog-index .section-intro {
  margin-bottom: 40px;
  max-width: 760px;
}

.blog-index .smaller {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.blog-index h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.95;
  max-width: 12ch;
}

.blog-index p {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  text-wrap: balance;
}

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

.post-card {
  min-width: 0;
}

.post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 249, 0.98));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.post-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 173, 73, 0.22);
  box-shadow: 0 28px 56px rgba(17, 17, 17, 0.09);
}

.post-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

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

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(65, 173, 73, 0.09);
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.85rem;
  font-weight: 600;
}

.post-card h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 2.45rem);
  line-height: 0.95;
  text-wrap: balance;
}

.post-card p {
  margin-top: 16px;
  color: rgba(17, 17, 17, 0.74);
}

.post-card-cta {
  margin-top: auto;
  padding-top: 26px;
  color: var(--accent);
  font-weight: 700;
}

.pagination-wrap {
  margin-top: 48px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  font-weight: 600;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-text);
}

.content-surface,
.article-card {
  padding: 38px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.content-surface-empty {
  text-align: center;
}

.editor-entry h1,
.editor-entry h2,
.editor-entry h3,
.editor-entry h4,
.editor-entry h5,
.editor-entry h6 {
  color: var(--text);
}

.article-featured-image {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 28px;
}

.article-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
}

.entry-content {
  --content-width: 760px;
  --wide-width: 1120px;
  margin: 0 auto;
  max-width: var(--content-width);
  color: rgba(17, 17, 17, 0.84);
}

.article-card .entry-content {
  margin-top: 36px;
}

.entry-content > * + * {
  margin-top: 1.5rem;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content :where(p, ul, ol, blockquote, pre, table, figure, .wp-block-group, .wp-block-columns, .wp-block-media-text, .wp-block-cover, .wp-block-details) {
  font-size: 1.1rem;
  line-height: 1.9;
}

.entry-content :where(h1, h2, h3, h4, h5, h6) {
  color: var(--text);
  line-height: 0.98;
  text-wrap: balance;
}

.entry-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
}

.entry-content h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-top: 3.5rem;
}

.entry-content h3 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-top: 2.75rem;
}

.entry-content h4 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2.25rem;
}

.entry-content :where(h5, h6) {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.64);
}

.entry-content a:not(.wp-block-button__link) {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(65, 173, 73, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.entry-content a:not(.wp-block-button__link):hover {
  color: var(--accent-hover);
  text-decoration-color: currentColor;
}

.entry-content strong {
  font-weight: 700;
  color: var(--text);
}

.entry-content em {
  font-style: italic;
}

.entry-content mark {
  background: rgba(65, 173, 73, 0.14);
  color: inherit;
  padding: 0.1em 0.28em;
  border-radius: 0.25em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4rem;
}

.entry-content li + li {
  margin-top: 0.55rem;
}

.entry-content li::marker {
  color: var(--accent);
}

.entry-content blockquote,
.entry-content .wp-block-quote,
.entry-content .wp-block-pullquote {
  position: relative;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(65, 173, 73, 0.08), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(65, 173, 73, 0.14);
}

.entry-content blockquote {
  border-left: 0;
}

.entry-content blockquote p,
.entry-content .wp-block-quote p,
.entry-content .wp-block-pullquote p {
  font-size: 1.28rem;
  line-height: 1.75;
}

.entry-content cite,
.entry-content .wp-block-quote cite,
.entry-content .wp-block-pullquote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.9rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.58);
}

.entry-content pre,
.entry-content code,
.entry-content kbd,
.entry-content samp {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.entry-content code,
.entry-content kbd,
.entry-content samp {
  padding: 0.18em 0.42em;
  border-radius: 0.5em;
  background: rgba(17, 17, 17, 0.06);
  font-size: 0.9em;
}

.entry-content pre,
.entry-content .wp-block-code {
  overflow-x: auto;
  padding: 24px;
  border-radius: 24px;
  background: #111;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.entry-content pre code,
.entry-content .wp-block-code code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.entry-content .wp-block-preformatted {
  white-space: pre-wrap;
  padding: 24px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.04);
}

.entry-content hr,
.entry-content .wp-block-separator {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0));
}

.entry-content .wp-block-separator.is-style-wide {
  width: 100%;
}

.entry-content .wp-block-separator.is-style-dots {
  background: none;
  height: auto;
  text-align: center;
}

.entry-content .wp-block-separator.is-style-dots::before {
  color: rgba(17, 17, 17, 0.34);
  font-size: 1.5rem;
  letter-spacing: 0.7em;
}

.entry-content figure {
  margin-inline: auto;
}

.entry-content img,
.entry-content video,
.entry-content iframe {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

.entry-content figcaption,
.entry-content .wp-caption-text,
.entry-content .blocks-gallery-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.58);
  text-align: center;
}

.entry-content .wp-block-image,
.entry-content .wp-block-gallery,
.entry-content .wp-block-embed,
.entry-content .wp-block-video,
.entry-content .wp-block-audio,
.entry-content .wp-block-cover,
.entry-content .wp-block-media-text,
.entry-content .wp-block-table,
.entry-content .wp-block-file,
.entry-content .wp-block-buttons {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.entry-content .wp-block-image img {
  display: block;
  width: 100%;
}

.entry-content > .alignwide,
.entry-content > .alignfull {
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content > .alignwide {
  width: min(var(--wide-width), calc(100vw - 80px));
}

.entry-content > .alignfull {
  width: min(1360px, calc(100vw - 40px));
}

.entry-content .wp-block-cover {
  overflow: hidden;
  border-radius: 32px;
}

.entry-content .wp-block-cover,
.entry-content .wp-block-cover-image {
  min-height: 420px;
}

.entry-content .wp-block-cover__inner-container {
  max-width: 760px;
}

.entry-content .wp-block-cover :where(p, h1, h2, h3, h4, h5, h6) {
  color: #fff;
}

.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image {
  overflow: hidden;
  border-radius: 22px;
}

.entry-content .wp-block-media-text {
  gap: 32px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 241, 0.98));
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.entry-content .wp-block-group {
  padding: 28px;
  border-radius: 28px;
}

.entry-content .wp-block-columns {
  gap: 28px;
}

.entry-content .wp-block-column > :first-child {
  margin-top: 0;
}

.entry-content .wp-block-buttons {
  gap: 14px;
}

.entry-content .wp-block-button__link,
.entry-content .wp-element-button {
  border-radius: 999px;
  padding: 15px 28px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
}

.entry-content .wp-block-button__link:hover,
.entry-content .wp-element-button:hover {
  background: var(--accent-hover);
  color: var(--accent-text);
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--text);
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.entry-content .wp-block-file {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.04);
}

.entry-content .wp-block-file a:first-child {
  font-weight: 700;
}

.entry-content .wp-block-file .wp-block-file__button {
  margin-left: auto;
}

.entry-content .wp-block-table {
  overflow-x: auto;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.entry-content th,
.entry-content td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.entry-content th {
  background: rgba(65, 173, 73, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.entry-content tr:last-child td {
  border-bottom: 0;
}

.entry-content .wp-block-embed :where(iframe, object, video) {
  width: 100%;
  min-height: 420px;
  background: #111;
}

.entry-content .wp-block-audio audio {
  width: 100%;
}

.entry-content .wp-block-details {
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.entry-content .wp-block-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.entry-content .wp-block-latest-posts,
.entry-content .wp-block-categories,
.entry-content .wp-block-archives,
.entry-content .wp-block-rss {
  padding-left: 0;
  list-style: none;
}

.entry-content .wp-block-latest-posts li,
.entry-content .wp-block-categories li,
.entry-content .wp-block-archives li,
.entry-content .wp-block-rss li {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.entry-content .wp-block-latest-posts li + li,
.entry-content .wp-block-categories li + li,
.entry-content .wp-block-archives li + li,
.entry-content .wp-block-rss li + li {
  margin-top: 12px;
}

.entry-content .wp-block-tag-cloud,
.tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entry-content .wp-block-tag-cloud a,
.tag-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(65, 173, 73, 0.08);
  color: var(--accent);
  font-size: 0.9rem !important;
  font-weight: 700;
  text-decoration: none;
}

.entry-content .wp-block-calendar table caption {
  margin-bottom: 12px;
  font-weight: 700;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.page-links-title {
  font-weight: 700;
  color: rgba(17, 17, 17, 0.62);
}

.page-links > span:not(.page-links-title),
.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
  text-decoration: none;
}

.article-taxonomy {
  margin: 36px auto 0;
  max-width: 760px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.article-taxonomy-label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.58);
  text-transform: uppercase;
}

.post-nav-wrap {
  margin-top: 28px;
}

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

.post-navigation .nav-previous,
.post-navigation .nav-next {
  min-width: 0;
}

.post-navigation a {
  display: block;
  min-height: 100%;
  padding: 24px 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
  font-weight: 700;
}

.post-navigation a:hover {
  border-color: rgba(65, 173, 73, 0.22);
  transform: translateY(-2px);
}

.site-footer {
  padding: 80px 0 36px;
  background: #111;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer .footer-brand h2,
.site-footer .footer-column h3 {
  color: #fff;
}

.site-footer .footer-brand h2 {
  font-size: 2.5rem;
  line-height: 0.95;
}

.site-footer .footer-brand p {
  margin-top: 18px;
  max-width: 34ch;
}

.site-footer .footer-column h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.site-footer .footer-column + .footer-column h3:nth-of-type(2) {
  margin-top: 28px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer address,
.site-footer p {
  font-style: normal;
}

.site-footer .footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.site-footer .footer-legal p:last-child {
  text-align: right;
}

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

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

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer .footer-legal {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-legal p:last-child {
    text-align: left;
  }

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

@media (max-width: 700px) {
  .contact {
    padding: 10px 0;
  }

  .contact > .inner {
    gap: 10px;
  }

  .contact .tagline {
    display: none;
  }

  .contact > .inner > .contact {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .contact .item {
    width: 100%;
  }

  .contact .item a {
    font-size: 0.95rem;
  }

  header {
    padding: 24px 0;
  }

  body.admin-bar header {
    top: 46px;
  }

  header .inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    position: relative;
  }

  header .logo a {
    font-size: 22px;
  }

  header .logo .custom-logo {
    max-width: min(220px, 56vw);
    max-height: 56px;
  }

  header .menu-toggle {
    display: inline-flex;
  }

  header .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
    z-index: 1100;
  }

  header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  header .site-nav ul {
    flex-direction: column;
    gap: 18px;
  }

  header .site-nav ul a {
    display: inline-flex;
    width: 100%;
    align-items: center;
    min-height: 48px;
    padding: 8px 0;
    border-bottom: 0;
  }

  header .site-nav ul a.header-cta {
    justify-content: center;
    min-height: 56px;
    padding: 16px 20px;
  }

  .hero .cover {
    min-height: inherit;
    padding: 72px 0;
  }

  .hero .text {
    max-width: 100%;
  }

  .hero .text h1 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .hero .text .buttons {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
  }

  .hero .text .buttons a,
  .booking.booking-cta .cta-primary,
  .booking.booking-cta .cta-secondary,
  .treatment-detail .cta-primary,
  .treatment-detail .cta-secondary {
    width: 100%;
  }

  .services {
    padding: 72px 0;
  }

  .booking {
    padding: 0 0 72px;
  }

  .booking.consultation-booking {
    padding-top: 48px;
  }

  .hero.hero-treatments {
    min-height: 46vh;
  }

  .hero.hero-consultation {
    min-height: 46vh;
  }

  .hero.hero-contact {
    min-height: 46vh;
  }

  .hero.hero-pricing {
    min-height: 46vh;
  }

  .hero.hero-gallery {
    min-height: 46vh;
  }

  .hero.hero-blog,
  .hero.hero-blog-single {
    min-height: 46vh;
  }

  .hero.hero-hbot,
  .hero.hero-red-light,
  .hero.hero-sauna,
  .hero.hero-ice-bath,
  .hero.hero-blood-tests,
  .hero.hero-dna {
    min-height: 46vh;
  }

  .booking.booking-cta .booking-frame {
    padding: 24px;
  }

  .pricing-page .pricing-grid,
  .individual-pricing .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .post-grid,
  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .treatment-detail .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-page {
    padding: 72px 0;
  }

  .pricing-page,
  .individual-pricing {
    padding: 72px 0;
  }

  .gallery-page {
    padding: 72px 0;
  }

  .blog-index,
  .article-shell {
    padding: 72px 0;
  }

  .treatment-detail {
    padding: 72px 0;
  }

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

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

  .contact-form-wrap {
    padding: 24px;
  }

  .content-surface,
  .article-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-form .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-page .pricing-grid,
  .individual-pricing .cards {
    grid-template-columns: 1fr;
  }

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

  .pricing-page .pricing-card {
    padding: 24px;
  }

  .pricing-page .pricing-top {
    flex-direction: column;
  }

  .treatment-detail .panel {
    padding: 24px;
  }

  .breadcrumbs {
    width: 100%;
    border-radius: 20px;
    font-size: 0.85rem;
  }

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

  .post-card-body {
    padding: 22px;
  }

  .entry-content :where(p, ul, ol, blockquote, pre, table, figure, .wp-block-group, .wp-block-columns, .wp-block-media-text, .wp-block-cover, .wp-block-details) {
    font-size: 1rem;
    line-height: 1.8;
  }

  .entry-content > .alignwide {
    width: calc(100vw - 40px);
  }

  .entry-content > .alignfull {
    width: calc(100vw - 24px);
  }

  .entry-content .wp-block-cover,
  .entry-content .wp-block-cover-image,
  .entry-content .wp-block-embed :where(iframe, object, video) {
    min-height: 280px;
  }

  .entry-content .wp-block-media-text {
    padding: 18px;
    gap: 20px;
  }

  .entry-content .wp-block-group,
  .entry-content .wp-block-details,
  .entry-content .wp-block-file,
  .entry-content .wp-block-quote,
  .entry-content .wp-block-pullquote,
  .entry-content pre,
  .entry-content .wp-block-code {
    padding: 20px;
    border-radius: 22px;
  }

  .site-footer {
    padding: 64px 0 28px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-legal {
    gap: 12px;
  }

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