* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #ffffff;
  --surface: #f7f6f3;
  --text: #151515;
  --muted: #928c83;
  --border: #dad7d1;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

/* Header */

.site-header {
  position: sticky;
top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 18px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.logo {
  justify-self: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.header-spacer {
  justify-self: end;
  width: 44px;
}

/* Burger */

.menu-button {
  justify-self: start;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  width: 23px;
  height: 2px;
  background: var(--text);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main expandable menu */

.mobile-menu {
  position: sticky;
  top: 88px;
  z-index: 19;

  display: grid;
  grid-template-rows: 0fr;
  width: 100%;

  background: #ffffff;
  overflow: hidden;

  transition: grid-template-rows 0.4s ease;
}


.mobile-menu.is-open {
  grid-template-rows: 1fr;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-inner {
  min-height: 0;
  width: 100%;
  overflow: hidden;
  padding: 0 32px;
  transition: padding 0.4s ease;
}

.mobile-menu.is-open .mobile-menu-inner {
  padding-top: 12px;
  padding-bottom: 20px;
}

.mobile-menu-inner > a,
.services-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
  cursor: pointer;
}







/* Services submenu */

.services-menu {
  width: 100%;
}

.services-button {
  justify-content: space-between;
}

.services-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.services-button.is-open .services-icon {
  transform: rotate(45deg);
}

.services-submenu {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.services-submenu.is-open {
  grid-template-rows: 1fr;
}

.services-submenu-inner {
  min-height: 0;
  overflow: hidden;
}

.services-submenu a {
  display: block;
  padding: 0 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 0;
  opacity: 0;
  transition:
    padding 0.3s ease,
    line-height 0.3s ease,
    opacity 0.3s ease;
}

.services-submenu.is-open a {
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 1.5;
  opacity: 1;
}

/* Locations */

.location-page {
  padding: 90px 24px 110px;
  background: #ffffff;
}

.location-container {
  width: min(100%, 980px);
  margin: 0 auto;
}

.location-heading {
  max-width: 680px;
  margin-bottom: 56px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.location-heading h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.location-intro {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}

.location-list {
  border-top: 1px solid var(--text);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 125px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition:
    background-color 0.25s ease,
    padding 0.25s ease;
}

.location-card:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--surface);
}

.location-number {
  align-self: start;
  padding-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.location-information h2 {
  margin-bottom: 5px;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.location-information p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.location-action {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.arrow {
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.location-card:hover .arrow {
  transform: translateX(7px);
}

.location-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* Content below locations */

.simple-about {
  padding: 110px 24px;
  background: var(--surface);
}

.about-container {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  max-width: 780px;
  margin: 0 auto 24px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-container > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* Mobile */

@media (max-width: 700px) {
  .site-header {
    min-height: 78px;
    padding: 14px 18px;
  }

  .mobile-menu {
    top: 78px;
  }

  .logo {
    font-size: 14px;
  }

  .mobile-menu-inner {
    padding-right: 22px;
    padding-left: 22px;
  }

  .location-page {
    padding: 64px 22px 80px;
  }

  .location-heading {
    margin-bottom: 40px;
  }

.location-card {
  grid-template-columns: minmax(0, 1fr);
  gap: 11px;
  min-height: 0;
  padding: 18px 0;
}

.location-action {
  grid-column: 1;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 9px;
  gap: 12px;
}

.location-information h2 {
  margin-bottom: 4px;
  font-size: 27px;
}

.location-information p {
  font-size: 13px;
  line-height: 1.4;
}

.location-number {
  padding-top: 3px;
  font-size: 10px;
}

.location-note {
  margin-top: 15px;
  font-size: 11px;
  line-height: 1.45;
}

  .location-number {
    padding-top: 4px;
  }

  .location-card:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .simple-about {
    padding: 80px 22px;
  }
}



/* =========================================
   Additional content sections
   ========================================= */

.section-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

/* Services */

.services-section {
  padding: 120px 24px;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--text);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 330px;
  padding: 38px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-number {
  display: block;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 460px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 15px;
}

.service-card a,
.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Large image and text sections */

.editorial-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
  background: var(--surface);
}

.editorial-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.editorial-reverse .editorial-image {
  order: 2;
}

.editorial-image {
  min-height: 650px;
  overflow: hidden;
  background: #e9e7e2;
}

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

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 7vw, 110px);
}

.editorial-content h2 {
  margin-bottom: 30px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.editorial-content p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
}

.editorial-content .text-link {
  align-self: flex-start;
  margin-top: 18px;
}

/* Gallery */

.gallery-section {
  padding: 120px 24px;
  background: #ffffff;
}

.gallery-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 60px;
}

.gallery-heading > p {
  padding-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}

.gallery-item-large {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.gallery-item-wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

/* Benefits */

.benefits-section {
  padding: 120px 24px;
  background: #151515;
  color: #ffffff;
}

.benefits-section .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.benefits-grid article {
  padding: 32px 30px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.benefits-grid article + article {
  padding-left: 30px;
}

.benefits-grid article:last-child {
  border-right: 0;
}

.benefits-grid span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.benefits-grid h3 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.05;
}

.benefits-grid p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* FAQ */

.faq-section {
  padding: 120px 24px;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.faq-list {
  border-top: 1px solid var(--text);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 50px 28px 0;
  color: var(--muted);
  font-size: 15px;
}

/* Final booking */

.final-booking {
  padding: 140px 24px;
  background: #ffffff;
  text-align: center;
}

.final-booking-content {
  width: min(100%, 900px);
  margin: 0 auto;
}

.final-booking h1,
.final-booking h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.final-booking p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin-top: 38px;
  padding: 17px 28px;
  background: var(--text);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.final-button:hover {
  background: #383838;
  transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .editorial-section,
  .editorial-reverse {
    grid-template-columns: 1fr;
  }

  .editorial-reverse .editorial-image {
    order: 0;
  }

  .editorial-image {
    min-height: 540px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .benefits-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefits-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .services-section,
  .gallery-section,
  .benefits-section,
  .faq-section {
    padding: 80px 22px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .service-card {
    min-height: 0;
    padding: 30px 4px;
  }

  .service-number {
    margin-bottom: 28px;
  }

  .editorial-image {
    min-height: 430px;
  }

  .editorial-content {
    padding: 70px 22px;
  }

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

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

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

  .benefits-grid article,
  .benefits-grid article + article {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

  .benefits-grid article:first-child {
    border-top: 0;
  }

  .benefits-grid span {
    margin-bottom: 25px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .final-booking {
    padding: 100px 22px;
  }
}

/* =========================================
   Square-inspired service menu
   ========================================= */

.service-menu-section {
  padding: 110px 24px;
  background: #ffffff;
}

.service-menu-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.service-menu-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.service-menu-heading h2 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.service-menu-heading > p {
  max-width: 420px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
}

.service-category + .service-category {
  margin-top: 80px;
}

.service-category-heading {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--text);
}



.service-category-heading h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.035em;
}

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

/* Основная карточка услуги */

.square-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  min-height: 205px;
  padding: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.square-service-card:hover {
  background: var(--surface);
  border-color: var(--text);
  transform: translateY(-2px);
}

.square-service-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.square-service-label {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.square-service-card h4 {
  margin-bottom: 11px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.square-service-description {
  max-width: 440px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.square-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.square-service-card img {
  display: block;
  width: 112px;
  height: 112px;
  align-self: start;
  object-fit: cover;
  background: var(--surface);
}

.service-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid var(--text);
}

.service-menu-footer p {
  max-width: 570px;
  color: var(--muted);
  font-size: 15px;
}

.service-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 240px;
  padding: 17px 22px;
  background: var(--text);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background-color 0.25s ease;
}

.service-menu-button:hover {
  background: #393939;
}

/* Tablet */

@media (max-width: 900px) {
  .service-menu-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-menu-heading > p {
    max-width: 650px;
  }

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

/* Mobile */

@media (max-width: 700px) {
  .service-menu-section {
    padding: 64px 16px;
  }

  .service-menu-heading {
    gap: 18px;
    margin-bottom: 42px;
  }

  .service-menu-heading h2 {
    font-size: 42px;
  }

  .service-menu-heading > p {
    padding-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-category + .service-category {
    margin-top: 52px;
  }

  .service-category-heading {

    margin-bottom: 18px;
    padding-bottom: 13px;
  }

  .service-category-heading h3 {
    font-size: 34px;
  }

  .square-services-grid {
    gap: 10px;
  }

  .square-service-card {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 13px;
    min-height: 0;
    padding: 16px;
  }

  .square-service-label {
    margin-bottom: 8px;
    font-size: 8px;
    letter-spacing: 0.15em;
  }

  .square-service-card h4 {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 1.06;
  }

  .square-service-description {
    margin-bottom: 11px;
    font-size: 12px;
    line-height: 1.45;
  }

  .square-service-meta {
    gap: 7px 15px;
    padding-top: 11px;
    font-size: 9px;
  }

  .square-service-card img {
    width: 82px;
    height: 82px;
  }

  .square-service-card:hover {
    background: #ffffff;
    border-color: var(--border);
    transform: none;
  }

  .service-menu-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    margin-top: 42px;
  }

  .service-menu-button {
    width: 100%;
  }
}

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

.add-on-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--border);
  background: #ffffff;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.add-on-card:hover {
  background: var(--surface);
  border-color: var(--text);
  transform: translateY(-3px);
}

.add-on-card h4 {
  margin-bottom: 14px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.add-on-card p {
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.add-on-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

@media (max-width: 900px) {
  .add-ons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .add-on-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .add-on-card h4 {
    font-size: 21px;
  }
}


/* Service category navigation below locations */

.services-navigation {
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid var(--text);
}

.services-navigation-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.services-navigation-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.services-navigation-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.services-navigation-links a:hover {
  background: var(--text);
  color: #ffffff;
}

.services-navigation-links span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.services-navigation-links a:hover span {
  color: rgba(255, 255, 255, 0.6);
}

/* Prevent headings from hiding beneath the top of the page */

#manicure-services,
#pedicure-services,
#add-on-services {
  scroll-margin-top: 30px;
}

@media (max-width: 700px) {
  .services-navigation {
    margin-top: 30px;
    padding-top: 18px;
  }

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

  .services-navigation-links a {
    justify-content: space-between;
    min-height: 52px;
    padding: 13px 15px;
    font-size: 12px;
  }

  .services-navigation-links span {
    order: 2;
  }
}


/* Service menu title */

.service-menu-title {
  max-width: 760px;
  margin-bottom: 52px;
}

.service-menu-title h1,
.service-menu-title h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-menu-title > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .service-menu-title {
    margin-bottom: 38px;
  }

.service-menu-title h1,
.service-menu-title h2 {
  font-size: 38px;
}

  .service-menu-title > p:last-child {
    font-size: 14px;
  }
}

/* =========================================
   Booking location modal
   ========================================= */

body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.booking-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(18, 18, 18, 0.58);
  cursor: pointer;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;

  width: min(100%, 640px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  padding: 44px;
  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2);

  transform: translateY(24px) scale(0.985);

  transition:
    transform 0.28s ease;
}

.booking-modal.is-open .booking-modal-panel {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  background: transparent;

  color: var(--text);
  font-size: 33px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

.booking-modal-eyebrow {
  margin-bottom: 13px;
  color: var(--muted);

  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.booking-modal-panel h2 {
  margin-bottom: 17px;
  padding-right: 45px;

  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.booking-modal-text {
  max-width: 520px;
  margin-bottom: 30px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.booking-modal-text strong {
  color: var(--text);
  font-weight: 600;
}

.booking-location-list {
  border-top: 1px solid var(--text);
}

.booking-location-option {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;

  min-height: 108px;
  padding: 20px 4px;

  border-bottom: 1px solid var(--border);

  transition:
    padding 0.25s ease,
    background-color 0.25s ease;
}

.booking-location-option:hover {
  padding-right: 15px;
  padding-left: 15px;
  background: var(--surface);
}

.booking-location-number {
  align-self: start;
  padding-top: 5px;

  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.booking-location-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.booking-location-details strong {
  margin-bottom: 6px;

  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.booking-location-details small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.booking-location-arrow {
  font-size: 25px;
  font-weight: 300;

  transition:
    transform 0.25s ease;
}

.booking-location-option:hover .booking-location-arrow {
  transform: translateX(6px);
}

.booking-modal-note {
  margin-top: 21px;

  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Mobile modal */

@media (max-width: 700px) {
  .booking-modal {
    align-items: flex-end;
    padding: 0;
  }

  .booking-modal-panel {
    width: 100%;
    max-height: 88vh;

    padding: 31px 20px 25px;

    border-radius: 22px 22px 0 0;
    box-shadow:
      0 -20px 60px rgba(0, 0, 0, 0.18);

    transform: translateY(100%);
  }

  .booking-modal.is-open .booking-modal-panel {
    transform: translateY(0);
  }

  .booking-modal-close {
    top: 11px;
    right: 12px;
  }

  .booking-modal-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .booking-modal-panel h2 {
    margin-bottom: 14px;
    padding-right: 42px;
    font-size: 35px;
  }

  .booking-modal-text {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .booking-location-option {
    grid-template-columns: 27px minmax(0, 1fr) auto;
    gap: 12px;

    min-height: 91px;
    padding: 16px 0;
  }

  .booking-location-number {
    padding-top: 4px;
    font-size: 9px;
  }

  .booking-location-details strong {
    font-size: 21px;
  }

  .booking-location-details small {
    font-size: 11px;
  }

  .booking-location-arrow {
    font-size: 22px;
  }

  .booking-location-option:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .booking-modal-note {
    margin-top: 17px;
    font-size: 10px;
  }
}

/* =========================================
   Add-on cards with service images
   ========================================= */

.add-on-card.has-service-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-rows: 1fr auto;
  column-gap: 18px;
  align-items: start;
}

.add-on-card.has-service-image > div:first-child {
  grid-column: 1;
  grid-row: 1;
}

.add-on-card.has-service-image .add-on-meta {
  grid-column: 1 / -1;
  grid-row: 2;
}

.add-on-image {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
  background: var(--surface);
}

@media (max-width: 700px) {
  .add-on-card.has-service-image {
    grid-template-columns: minmax(0, 1fr) 82px;
    column-gap: 13px;
  }

  .add-on-image {
    width: 82px;
    height: 82px;
  }
}



/* =========================================
   Square-style compact service cards
   ========================================= */

/* Small category label is no longer shown */

.square-service-label {
  display: none;
}

/* Main manicure and pedicure cards */

.square-service-card {
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 18px;
  min-height: 0;
  padding: 22px 20px;
  align-items: start;
}

.square-service-content {
  min-width: 0;
}

.square-service-card h4 {
  margin: 0 0 10px;
  max-width: 100%;

  font-size: 23px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;

  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

.square-service-description {
  display: -webkit-box;
  max-width: none;
  margin: 0 0 13px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;

  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.square-service-meta {
  gap: 9px 16px;
  margin-top: auto;
  padding-top: 12px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: none;
}

.square-service-card img {
  width: 96px;
  height: 90px;
  margin-top: 2px;
  border-radius: 8px;
  object-fit: cover;
}

/* Add-on cards */

.add-on-card {
  min-height: 0;
  padding: 22px 20px;
}

.add-on-card.has-service-image {
  grid-template-columns: minmax(0, 1fr) 96px;
  grid-template-rows: auto auto;
  column-gap: 18px;
}

.add-on-card h4 {
  margin: 0 0 9px;

  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;

  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

.add-on-card p {
  display: -webkit-box;
  max-width: none;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;

  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.add-on-meta {
  gap: 9px 16px;
  margin-top: 14px;
  padding-top: 12px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: none;
}

.add-on-image {
  width: 96px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

/* Mobile */

@media (max-width: 700px) {
  .square-service-card {
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 12px;
    padding: 17px 14px;
  }

  .square-service-card h4 {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.22;
  }

  .square-service-description {
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .square-service-meta {
    gap: 7px 12px;
    padding-top: 9px;
    font-size: 12px;
  }

  .square-service-card img {
    width: 76px;
    height: 72px;
    border-radius: 7px;
  }

  .add-on-card {
    padding: 17px 14px;
  }

  .add-on-card.has-service-image {
    grid-template-columns: minmax(0, 1fr) 76px;
    column-gap: 12px;
  }

  .add-on-card h4 {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.22;
  }

  .add-on-card p {
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .add-on-meta {
    margin-top: 10px;
    padding-top: 9px;
    font-size: 12px;
  }

  .add-on-image {
    width: 76px;
    height: 72px;
    border-radius: 7px;
  }
}

.square-service-meta,
.add-on-meta {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 700px) {
  .square-service-meta,
  .add-on-meta {
    font-size: 13px;
  }
}

#service-menu,
#gallery,
#about,
#our-team,
#faq {
  scroll-margin-top: 108px;
}

@media (max-width: 700px) {
  #service-menu,
  #gallery,
  #about,
  #our-team,
  #faq {
    scroll-margin-top: 98px;
  }
}




.location-card {
  display: block;
  min-height: 0;
  padding: 25px 4px 22px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.location-card:hover {
  padding-right: 4px;
  padding-left: 4px;
  background: #ffffff;
}

.location-booking-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.location-information {
  margin: 0;
}

.location-information h2 {
  margin-bottom: 4px;
  transition: opacity 0.2s ease;
}

.location-information p {
  margin: 0;
}

.location-arrow {
  align-self: center;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}

.location-booking-link:hover .location-information h2 {
  opacity: 0.65;
}

.location-booking-link:hover .location-arrow {
  transform: translateX(5px);
}

.location-phone-link {
  display: inline-block;
  margin-top: 11px;
  padding-bottom: 2px;

  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;

  border-bottom: 1px solid transparent;

  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.location-phone-link:hover {
  opacity: 0.65;
  border-bottom-color: currentColor;
}

@media (max-width: 700px) {
  .location-card {
    display: block;
    padding: 21px 0 20px;
  }

  .location-card:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .location-booking-link {
    gap: 14px;
  }

  .location-information h2 {
    margin-bottom: 3px;
    font-size: 27px;
  }

  .location-information p {
    font-size: 13px;
    line-height: 1.4;
  }

  .location-arrow {
    font-size: 24px;
  }

  .location-phone-link {
    margin-top: 9px;
    font-size: 14px;
  }
}

/* =========================================
   Compact location booking cards
   ========================================= */

.location-card {
  display: block;
  min-height: 0;
  padding: 24px 4px 21px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.location-card:hover {
  padding-right: 4px;
  padding-left: 4px;
  background: #ffffff;
}

.location-booking-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.location-information {
  margin: 0;
}

.location-information h2 {
  margin: 0 0 4px;
  transition: opacity 0.2s ease;
}

.location-information p {
  margin: 0;
}

.location-arrow {
  align-self: center;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}

.location-booking-link:hover .location-information h2 {
  opacity: 0.65;
}

.location-booking-link:hover .location-arrow {
  transform: translateX(5px);
}

.location-phone-link {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 2px;

  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;

  border-bottom: 1px solid transparent;

  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.location-phone-link:hover {
  opacity: 0.65;
  border-bottom-color: currentColor;
}

@media (max-width: 700px) {
  .location-card {
    display: block;
    padding: 19px 0 18px;
  }

  .location-card:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .location-booking-link {
    gap: 14px;
  }

  .location-information h2 {
    margin-bottom: 3px;
    font-size: 27px;
  }

  .location-information p {
    font-size: 13px;
    line-height: 1.4;
  }

  .location-arrow {
    font-size: 23px;
  }

  .location-phone-link {
    margin-top: 8px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .location-page {
    padding-bottom: 20px;
  }

  .service-menu-section {
    padding-top: 28px;
  }
}


/* =========================================
   Extra compact mobile service cards
   ========================================= */

@media (max-width: 700px) {
  .square-services-grid {
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .square-service-card {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 12px;

    min-height: 0;
    padding: 16px 0;

    border: 0;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
  }

  .square-service-card:hover {
    border-color: var(--border);
    background: #ffffff;
    transform: none;
  }

  .square-service-card h4 {
    margin: 0 0 6px;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.018em;
  }

  .square-service-description {
    display: -webkit-box;
    margin: 0 0 8px;

    font-size: 13px;
    line-height: 1.4;

    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .square-service-meta {
    gap: 6px 12px;
    margin-top: 0;
    padding-top: 8px;

    font-size: 12px;
    line-height: 1.25;
  }

  .square-service-card img {
    width: 78px;
    height: 78px;
    margin-top: 1px;

    border-radius: 8px;
    object-fit: cover;
  }
}

@media (max-width: 700px) {
  .location-page {
    padding-bottom: 80px;
  }

  .service-menu-section {
    padding-top: 64px;
  }
}

/* Service Menu is now the first page section */

.service-menu-section {
  padding-top: 64px;
}

@media (max-width: 700px) {
  .service-menu-section {
    padding-top: 24px;
  }
}


/* =========================================
   Expanded Tampa FAQ content
   ========================================= */

.faq-intro {
  max-width: 440px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 50px 16px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-list details p:last-child {
  padding-bottom: 32px;
}

.faq-list summary {
  line-height: 1.35;
}

@media (max-width: 700px) {
  .faq-intro {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-list summary {
    min-height: 0;
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-list details p {
    padding-right: 28px;
    padding-bottom: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .faq-list details p:last-child {
    padding-bottom: 26px;
  }
}


/* =========================================
   Expandable FAQ list
   ========================================= */
.faq-list details.faq-hidden {
  display: none;
}
.faq-list.is-expanded details.faq-hidden {
  display: block;
}
.faq-toggle-button {
  grid-column: 2;
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 0 4px;
  border: 0;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: left;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    padding 0.2s ease;
}
.faq-toggle-button:hover {
  padding-right: 12px;
  padding-left: 12px;
  opacity: 0.65;
}
.faq-toggle-icon {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-toggle-button[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(180deg);
}
/* Mobile */
@media (max-width: 900px) {
  .faq-toggle-button {
    grid-column: 1;
  }
}
@media (max-width: 700px) {
  .faq-toggle-button {
    min-height: 54px;
    margin-top: 16px;
    padding-right: 0;
    padding-left: 0;
    font-size: 10px;
  }
  .faq-toggle-button:hover {
    padding-right: 0;
    padding-left: 0;
    opacity: 1;
  }
}


/* =========================================
   Expandable FAQ list
   ========================================= */

.faq-content {
  min-width: 0;
}

.faq-list > details[hidden] {
  display: none;
}

.faq-toggle-button {
  width: 100%;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 18px;
  padding: 0 4px;

  border: 0;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--border);
  background: transparent;

  color: var(--text);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.14em;

  cursor: pointer;

  transition:
    padding 0.2s ease,
    opacity 0.2s ease;
}

.faq-toggle-button:hover {
  padding-right: 12px;
  padding-left: 12px;
  opacity: 0.65;
}

.faq-toggle-icon {
  flex: 0 0 auto;

  font-size: 19px;
  font-weight: 300;
  line-height: 1;

  transition: transform 0.3s ease;
}

.faq-toggle-button[aria-expanded="true"]
.faq-toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 700px) {
  .faq-toggle-button {
    min-height: 58px;
    margin-top: 14px;
    padding-right: 0;
    padding-left: 0;
    font-size: 10px;
  }

  .faq-toggle-button:hover {
    padding-right: 0;
    padding-left: 0;
    opacity: 1;
  }
}

/* =========================================
   SEO About section
   ========================================= */

.about-container {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  max-width: 900px;
  margin: 0 auto 38px;
}

.about-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.about-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-copy p:first-child {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

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

.about-services-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  margin-top: 42px;
  padding: 16px 24px;

  border: 1px solid var(--text);
  background: transparent;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.about-services-link:hover {
  background: var(--text);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .about-container {
    text-align: left;
  }

  .about-container h2 {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1.02;
  }

  .about-copy p {
    margin-bottom: 19px;
    font-size: 14px;
    line-height: 1.7;
  }

  .about-copy p:first-child {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-services-link {
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
    padding: 15px 17px;
  }
}

#our-team {
  scroll-margin-top: 108px;
}

@media (max-width: 700px) {
  #our-team {
    scroll-margin-top: 98px;
  }
}

/* =========================================
   COMPACT EDITORIAL SECTIONS
   Same visual width as the Service Menu
   ========================================= */

@media (min-width: 901px) {

  .team-section,
  .care-section {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(45px, 5vw, 80px);

    width: min(calc(100% - 48px), 1180px);
    min-height: 0;

    margin: 0 auto;
    padding: 80px 0;

    background: var(--surface);
  }

  /* Background across the entire screen */

  .team-section::before,
  .care-section::before {
    content: "";
    position: absolute;
    z-index: -1;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 100vw;

    transform: translateX(-50%);
    background: var(--surface);
  }

  .team-section,
  .care-section {
    position: relative;
    isolation: isolate;
  }


  /* =========================================
     TEXT
     ========================================= */

  .team-section .editorial-content,
  .care-section .editorial-content {
    grid-column: 1;
    grid-row: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    max-width: 470px;

    padding: 0;
  }

  .team-section .editorial-content h2,
  .care-section .editorial-content h2 {
    margin-bottom: 24px;

    font-size: clamp(40px, 3.8vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .team-section .editorial-content p:not(.eyebrow),
  .care-section .editorial-content p:not(.eyebrow) {
    max-width: 440px;
    margin-bottom: 16px;

    font-size: 15px;
    line-height: 1.65;
  }

  .team-section .editorial-content .text-link,
  .care-section .editorial-content .text-link {
    margin-top: 14px;
  }


  /* =========================================
     IMAGE COLUMN
     ========================================= */

  .team-section .editorial-image,
  .care-section .editorial-image {
    grid-column: 2;
    grid-row: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 580px;
    min-height: 0;

    padding: 0;

    overflow: hidden;
    background: transparent;
  }

  .team-section .editorial-image img,
  .care-section .editorial-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
  }


  /* Team portrait should remain full height */

  .team-section .editorial-image img {
    width: auto;
    max-width: 100%;
    height: 100%;

    object-fit: contain;
  }


  /* Hands and feet image can use more horizontal space */

  .care-section .editorial-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
  }
}


/* =========================================
   Large desktop
   ========================================= */

@media (min-width: 1400px) {

  .team-section,
  .care-section {
    gap: 70px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .team-section .editorial-image,
  .care-section .editorial-image {
    height: 620px;
  }
}


/* =========================================
   Tablet and mobile
   ========================================= */

@media (max-width: 900px) {

  .team-section,
  .care-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;

    width: 100%;
    min-height: 0;

    margin: 0;
    padding: 0;

    background: var(--surface);
  }

  .team-section .editorial-image,
  .care-section .editorial-image {
    grid-column: 1;
    grid-row: 1;

    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .team-section .editorial-content,
  .care-section .editorial-content {
    grid-column: 1;
    grid-row: 2;

    width: 100%;
    max-width: none;

    padding: 70px 22px;
  }

  .team-section .editorial-image img,
  .care-section .editorial-image img {
    display: block;
    width: 100%;
  }
}


/* =========================================
   Mobile image sizes
   ========================================= */

@media (max-width: 700px) {

  .team-section .editorial-image {
    height: 560px;
    overflow: hidden;
  }

  .team-section .editorial-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 25%;
  }

  .care-section .editorial-image {
    height: auto;
  }

  .care-section .editorial-image img {
    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;
  }
}


/* =========================================
   Expandable Why Nail Boss Studio section
   ========================================= */

.benefits-heading {
  max-width: 900px;
}

.benefits-heading h2 {
  max-width: 850px;
}

.benefits-intro {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

/*
  На компьютере показываем четыре карточки в одной строке.
*/

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.benefit-item {
  min-width: 0;
  padding: 32px 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item:nth-child(4n) {
  border-right: 0;
}

.benefit-item[hidden] {
  display: none;
}

.benefit-number {
  display: block;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}

.benefit-item h3 {
  max-width: 240px;
  margin-bottom: 17px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.benefit-item p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.6;
}

/* Первый пункт немного важнее остальных */

.benefit-item:first-child h3 {
  font-size: 24px;
}

.benefit-item:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

/* Кнопка открытия остальных преимуществ */

.benefits-toggle-button {
  width: 100%;
  min-height: 66px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 24px;
  padding: 0 4px;

  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.15em;

  cursor: pointer;

  transition:
    padding 0.25s ease,
    opacity 0.25s ease;
}

.benefits-toggle-button:hover {
  padding-right: 14px;
  padding-left: 14px;
  opacity: 0.7;
}

.benefits-toggle-icon {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.benefits-toggle-button[aria-expanded="true"]
.benefits-toggle-icon {
  transform: rotate(180deg);
}

/* Tablet */

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

  .benefit-item:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .benefit-item:nth-child(2n) {
    border-right: 0;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .benefits-heading {
    margin-bottom: 46px;
  }

  .benefits-intro {
    font-size: 14px;
    line-height: 1.6;
  }

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

  .benefit-item,
  .benefit-item:nth-child(2n),
  .benefit-item:nth-child(4n) {
    padding: 28px 0;
    border-right: 0;
  }

  .benefit-number {
    margin-bottom: 24px;
  }

  .benefit-item h3,
  .benefit-item:first-child h3 {
    max-width: 330px;
    font-size: 23px;
  }

  .benefit-item p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.6;
  }

  .benefits-toggle-button {
    min-height: 58px;
    margin-top: 14px;
    padding-right: 0;
    padding-left: 0;
    font-size: 10px;
  }

  .benefits-toggle-button:hover {
    padding-right: 0;
    padding-left: 0;
    opacity: 1;
  }
}

/* =========================================
   Why Nail Boss Studio — light version
   ========================================= */

.benefits-section {
  background: var(--surface);
  color: var(--text);
}

.benefits-section .eyebrow {
  color: var(--muted);
}

.benefits-heading h2 {
  color: var(--text);
}

.benefits-intro {
  color: var(--muted);
}

.benefits-grid {
  border-top-color: var(--text);
}

.benefit-item {
  border-right-color: var(--border);
  border-bottom-color: var(--border);
}

.benefit-number {
  color: var(--muted);
}

.benefit-item h3 {
  color: var(--text);
}

.benefit-item p,
.benefit-item:first-child p {
  color: var(--muted);
}

.benefits-toggle-button {
  color: var(--text);

  border-top-color: var(--text);
  border-bottom-color: var(--border);
}

@media (max-width: 900px) {
  .benefit-item:nth-child(4n) {
    border-right-color: var(--border);
  }
}

@media (max-width: 700px) {
  .benefit-item,
  .benefit-item:nth-child(2n),
  .benefit-item:nth-child(4n) {
    border-top-color: var(--border);
  }
}



/* =========================================
   Nail Boss Studio Tampa locations
   ========================================= */

.locations-section {
  padding: 120px 24px;
  background: #ffffff;
}

.locations-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.locations-heading {
  max-width: 850px;
  margin-bottom: 64px;
}

.locations-heading h2 {
  max-width: 820px;
  margin-bottom: 24px;

  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.locations-heading > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.studio-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid var(--text);
  border-left: 1px solid var(--border);
}

.studio-location-card {
  min-width: 0;
  padding: 38px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.studio-location-number {
  display: block;
  margin-bottom: 48px;

  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.studio-location-area {
  margin-bottom: 12px;

  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.studio-location-card h3 {
  max-width: 470px;
  margin-bottom: 24px;

  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.studio-location-card address {
  margin-bottom: 15px;

  color: var(--text);
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
}

.studio-location-phone {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 2px;

  border-bottom: 1px solid currentColor;

  font-size: 16px;
  font-weight: 700;
}

.studio-location-description {
  max-width: 480px;
  margin-bottom: 30px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.studio-location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.studio-location-primary,
.studio-location-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
  padding: 16px 18px;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.studio-location-primary {
  background: var(--text);
  color: #ffffff;
}

.studio-location-secondary {
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
}

.studio-location-primary:hover,
.studio-location-secondary:hover {
  transform: translateY(-2px);
}

.studio-location-primary:hover {
  background: #363636;
}

.studio-location-secondary:hover {
  background: var(--text);
  color: #ffffff;
}

.locations-note {
  max-width: 720px;
  margin-top: 25px;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Tablet */

@media (max-width: 900px) {
  .studio-locations-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .locations-section {
    padding: 82px 22px;
  }

  .locations-heading {
    margin-bottom: 44px;
  }

  .locations-heading h1 {
    font-size: 42px;
    line-height: 1;
  }

  .locations-heading > p:last-child {
    font-size: 15px;
    line-height: 1.65;
  }

  .studio-locations-grid {
    border-left: 0;
  }

  .studio-location-card {
    padding: 30px 0;
    border-right: 0;
  }

  .studio-location-number {
    margin-bottom: 28px;
  }

  .studio-location-card h3 {
    font-size: 30px;
    line-height: 1.04;
  }

  .studio-location-card address,
  .studio-location-phone {
    font-size: 15px;
  }

  .studio-location-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .studio-location-primary,
  .studio-location-secondary {
    padding: 15px 16px;
    font-size: 9px;
  }
}


/* =========================================
   Call Us modal
   ========================================= */

.call-us-menu-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0;

  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;

  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;

  cursor: pointer;
}

.call-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.call-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.call-modal-backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  padding: 0;
  border: 0;

  background: rgba(18, 18, 18, 0.58);

  cursor: pointer;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.call-modal-panel {
  position: relative;
  z-index: 1;

  width: min(100%, 680px);
  max-height: calc(100vh - 48px);

  overflow-y: auto;

  padding: 44px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2);

  transform: translateY(24px) scale(0.985);

  transition: transform 0.28s ease;
}

.call-modal.is-open .call-modal-panel {
  transform: translateY(0) scale(1);
}

.call-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  background: transparent;

  color: var(--text);
  font-size: 33px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

.call-modal-eyebrow {
  margin-bottom: 13px;

  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.call-modal-panel h2 {
  margin-bottom: 17px;
  padding-right: 45px;

  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.call-modal-text {
  max-width: 520px;
  margin-bottom: 30px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.call-location-list {
  border-top: 1px solid var(--text);
}

.call-location-option {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;

  min-height: 145px;
  padding: 22px 4px;

  border-bottom: 1px solid var(--border);

  transition:
    padding 0.25s ease,
    background-color 0.25s ease;
}

.call-location-option:hover {
  padding-right: 15px;
  padding-left: 15px;
  background: var(--surface);
}

.call-location-number {
  align-self: start;
  padding-top: 5px;

  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.call-location-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.call-location-details strong {
  margin-bottom: 8px;

  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.call-location-details small {
  margin-bottom: 9px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.call-location-status {
  margin-bottom: 4px;

  color: var(--muted);
  font-size: 11px;
}

.call-location-phone {
  font-size: 15px;
  font-weight: 700;
}

.call-location-arrow {
  font-size: 25px;
  font-weight: 300;

  transition: transform 0.25s ease;
}

.call-location-option:hover .call-location-arrow {
  transform: translateX(6px);
}

.call-modal-note {
  margin-top: 21px;

  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Mobile Call Us modal */

@media (max-width: 700px) {
  .call-modal {
    align-items: flex-end;
    padding: 0;
  }

  .call-modal-panel {
    width: 100%;
    max-height: 88vh;

    padding: 31px 20px 25px;

    border-radius: 22px 22px 0 0;

    box-shadow:
      0 -20px 60px rgba(0, 0, 0, 0.18);

    transform: translateY(100%);
  }

  .call-modal.is-open .call-modal-panel {
    transform: translateY(0);
  }

  .call-modal-close {
    top: 11px;
    right: 12px;
  }

  .call-modal-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .call-modal-panel h2 {
    margin-bottom: 14px;
    padding-right: 42px;
    font-size: 35px;
  }

  .call-modal-text {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .call-location-option {
    grid-template-columns: 27px minmax(0, 1fr) auto;
    gap: 12px;

    min-height: 135px;
    padding: 18px 0;
  }

  .call-location-number {
    padding-top: 4px;
    font-size: 9px;
  }

  .call-location-details strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .call-location-details small {
    font-size: 11px;
  }

  .call-location-phone {
    font-size: 14px;
  }

  .call-location-arrow {
    font-size: 22px;
  }

  .call-location-option:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .call-modal-note {
    margin-top: 17px;
    font-size: 10px;
  }
}

/* =========================================
   FINAL SERVICE MENU MOBILE FIX
   ========================================= */

.service-menu-section {
  width: 100%;
  padding: 64px 24px !important;
}

.service-menu-container {
  width: min(100%, 1180px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.service-menu-title {
  width: 100%;
  max-width: 760px;
  margin-bottom: 52px;
}

.service-menu-seo-title {
  max-width: 680px;
  margin: 0 0 22px;

  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.service-menu-description {
  max-width: 680px;
  margin: 0 0 38px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-menu-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
}

.service-menu-heading-row h2 {
  margin: 0;

  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-menu-call-button {
  flex: 0 0 auto;

  width: auto !important;
  min-width: 118px !important;
  min-height: 40px !important;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  margin: 0 !important;
  padding: 0 13px !important;

  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);

  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.13em;

  cursor: pointer;
}

.service-menu-call-button:hover {
  background: var(--text);
  color: #ffffff;
}

/* Mobile */

@media (max-width: 700px) {
  .service-menu-section {
    padding: 28px 22px 72px !important;
  }

  .service-menu-container {
    width: 100% !important;
  }

  .service-menu-title {
    width: 100%;
    max-width: none;
    margin-bottom: 46px;
  }

  .service-menu-title .eyebrow {
    margin-bottom: 20px;
  }

  .service-menu-seo-title {
    max-width: 100%;
    margin-bottom: 20px;

    font-size: 17px !important;
    line-height: 1.35;
  }

  .service-menu-description {
    max-width: 100%;
    margin-bottom: 32px;

    font-size: 14px;
    line-height: 1.65;
  }

  .service-menu-heading-row {
    align-items: center;
    gap: 14px;
  }

  .service-menu-heading-row h2 {
    min-width: 0;

    font-size: clamp(36px, 10vw, 45px) !important;
    line-height: 1;
  }

  .service-menu-call-button {
    min-width: 92px !important;
    min-height: 36px !important;
    gap: 8px;

    padding: 0 10px !important;

    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .service-category-heading {
    margin-top: 0;
  }
}


/* =========================================
   Call Us modal — match booking modal layout
   ========================================= */

.call-location-option {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 17px;

  min-height: 108px;
  padding: 20px 4px;
}

.call-location-number {
  padding-top: 5px;
}

.call-location-details strong {
  margin-bottom: 6px;

  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.call-location-details small {
  margin-bottom: 8px;

  font-size: 12px;
  line-height: 1.45;
}

.call-location-phone {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* Mobile */

@media (max-width: 700px) {
  .call-location-option {
    grid-template-columns: 27px minmax(0, 1fr) auto;
    gap: 12px;

    min-height: 104px;
    padding: 16px 0;
  }

  .call-location-number {
    padding-top: 4px;
    font-size: 9px;
  }

  .call-location-details strong {
    margin-bottom: 6px;

    font-size: 21px;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .call-location-details small {
    margin-bottom: 7px;

    font-size: 11px;
    line-height: 1.45;
  }

  .call-location-phone {
    font-size: 14px;
    line-height: 1.3;
  }

  .call-location-arrow {
    font-size: 22px;
  }
}


/* =========================================
   Compact Service Menu introduction
   ========================================= */

@media (max-width: 700px) {
  .service-menu-section {
    padding: 22px 22px 64px !important;
  }

  .service-menu-title {
    width: 100%;
    max-width: none;
    margin-bottom: 30px !important;
  }

  .service-menu-title .eyebrow {
    margin-bottom: 12px;

    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.2em;
  }

  /* Главный SEO-заголовок остаётся H1 */

  .service-menu-seo-title {
    max-width: 100%;
    margin: 0 0 12px !important;

    font-size: 15px !important;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  /* SEO-текст остаётся видимым, но становится компактнее */

  .service-menu-description {
    max-width: 100%;
    margin: 0 0 22px !important;

    color: var(--muted);
    font-size: 12px !important;
    line-height: 1.5;
  }

  .service-menu-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;

    width: 100%;
  }

  .service-menu-heading-row h2 {
    margin: 0 !important;

    font-size: 34px !important;
    line-height: 0.95;
    letter-spacing: -0.04em;
  }

  .service-menu-call-button {
    width: auto !important;
    min-width: 88px !important;
    min-height: 34px !important;

    gap: 7px;
    padding: 0 9px !important;

    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .service-category {
    margin-top: 0;
  }

  .service-category-heading {
    margin-top: 0 !important;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .service-category-heading h3 {
    font-size: 30px;
  }
}


/* =========================================
   Compact Service Menu intro — mobile
   ========================================= */

@media (max-width: 700px) {
  .service-menu-section {
    padding-top: 18px !important;
  }

  .service-menu-title {
    margin-bottom: 26px;
  }

  .service-menu-title .eyebrow {
    margin-bottom: 8px;

    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 0.2em;
  }

  .service-menu-seo-title {
    margin-bottom: 9px;

    font-size: 15px !important;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .service-menu-description {
    display: -webkit-box;

    margin-bottom: 20px;

    font-size: 12px;
    line-height: 1.45;

    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .service-menu-heading-row {
    align-items: center;
    gap: 12px;
  }

  .service-menu-heading-row h2 {
    font-size: 34px !important;
    line-height: 0.95;
    letter-spacing: -0.045em;
  }

  .service-menu-call-button {
    min-width: 86px !important;
    min-height: 34px !important;

    padding: 0 9px !important;

    font-size: 7px;
    letter-spacing: 0.11em;
  }

  .service-category-heading {
    margin-bottom: 14px;
    padding-bottom: 11px;
  }

  .service-category-heading h3 {
    font-size: 30px;
  }
}

/* =========================================
   Service Menu mobile typography adjustment
   ========================================= */

@media (max-width: 700px) {
  /* Больше расстояние после NAIL BOSS STUDIO */

  .service-menu-title .eyebrow {
    margin-bottom: 13px;
  }

  /* Чуть больше расстояние после SEO-заголовка */

  .service-menu-seo-title {
    margin-bottom: 12px;
  }

  /* Service Menu немного меньше */

  .service-menu-heading-row h2 {
    font-size: 30px !important;
    line-height: 1;
  }

  /* Текст CALL US крупнее */

  .service-menu-call-button {
    min-width: 96px !important;
    min-height: 38px !important;
    padding: 0 11px !important;

    font-size: 9px !important;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  /* Немного больше воздуха перед Manicure */

  .service-menu-title {
    margin-bottom: 30px;
  }
}

/* =========================================
   Temporarily unavailable booking location
   ========================================= */

.booking-location-unavailable {
  display: block;
  margin-top: 8px;

  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.booking-location-option.is-unavailable {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
}

.booking-location-option.is-unavailable:hover {
  padding-right: 4px;
  padding-left: 4px;
  background: transparent;
}

.booking-location-option.is-unavailable
.booking-location-arrow {
  display: none;
}

@media (max-width: 700px) {
  .booking-location-unavailable {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.4;
  }

  .booking-location-option.is-unavailable:hover {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Цена и время в карточках услуг */

.square-service-meta,
.add-on-meta {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.3;
}

.square-service-meta span:first-child,
.add-on-meta span:first-child {
  font-weight: 800;
}

.square-service-meta span:not(:first-child),
.add-on-meta span:not(:first-child) {
  font-weight: 400;
}

/* =========================================
   FINAL MOBILE SERVICE CARD BORDERS
   ========================================= */

@media (max-width: 700px) {
  .service-menu-section {
    overflow-x: hidden;
  }

  .service-menu-container,
  .service-category,
  .square-services-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .square-services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px !important;

    border: 0 !important;
  }

  .square-service-card {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      clamp(74px, 21vw, 82px);

    gap: 12px;

    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;

    padding: 15px !important;

    border: 1px solid #c8c5bf !important;
    border-radius: 0;

    background: #ffffff;
    overflow: hidden;
  }

  .square-service-content {
    width: 100%;
    min-width: 0;
  }

  .square-service-card img {
    display: block;

    width: 100% !important;
    max-width: 82px;
    height: auto !important;
    aspect-ratio: 1 / 1;

    margin: 0;
    justify-self: end;

    border-radius: 8px;
    object-fit: cover;
  }

  .square-service-card:hover {
    padding: 15px !important;
    border: 1px solid #c8c5bf !important;
    background: #ffffff;
    transform: none;
  }
}


/* =========================================
   Service Menu Call Us and Book Now buttons
   ========================================= */

.service-menu-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.service-menu-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-menu-action-button {
  width: auto;
  min-width: 128px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 0 14px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.service-menu-action-button:hover {
  background: var(--text);
  color: #ffffff;
}

@media (max-width: 700px) {
  .service-menu-heading-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .service-menu-heading-row h2 {
    font-size: 27px !important;
    line-height: 1;
  }

  .service-menu-actions {
    gap: 8px;
  }

  .service-menu-action-button {
    min-width: 88px;
    min-height: 40px;
    gap: 8px;
    padding: 0 9px;

    font-size: 8px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 390px) {
  .service-menu-heading-row h2 {
    font-size: 25px !important;
  }

  .service-menu-actions {
    gap: 6px;
  }

  .service-menu-action-button {
    min-width: 82px;
    padding: 0 7px;
    font-size: 7px;
  }
}

.service-menu-description strong {
  color: var(--text);
  font-weight: 600;
}


.menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 999px;
  transform-origin: center;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   FINAL BURGER FIX — draw icon from zero
   ========================================= */

.menu-button {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
}

/* Полностью скрываем старые линии */
.menu-button span {
  display: none !important;
}

/* Рисуем бургер заново */
.menu-button::before,
.menu-button::after {
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  width: 28px !important;
  height: 2px !important;
  background: var(--text) !important;
  border-radius: 999px !important;
  transform-origin: center !important;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    box-shadow 0.25s ease !important;
}

.menu-button::before {
  top: 13px !important;
  box-shadow: 0 8px 0 var(--text) !important;
}

.menu-button::after {
  top: 29px !important;
}

/* Когда меню открыто — чистый крестик без точек */
.menu-button.is-open::before {
  top: 21px !important;
  transform: rotate(45deg) !important;
  box-shadow: none !important;
}

.menu-button.is-open::after {
  top: 21px !important;
  transform: rotate(-45deg) !important;
}

/* No animation for burger / close icon */

.menu-button::before,
.menu-button::after {
  transition: none !important;
}




/* =========================================
   Header quick actions on policy page
   ========================================= */

@media (max-width: 700px) {
  body.policy-page .site-header {
    grid-template-columns: 44px 1fr 44px;
    column-gap: 12px;
  }

  body.policy-page .header-quick-actions {
    display: none;
  }

  body.policy-page .site-header.show-quick-actions {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    column-gap: 7px;
  }

  body.policy-page .site-header.show-quick-actions .logo {
    grid-column: 2;
    justify-self: start;
    font-size: 10px;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  body.policy-page .site-header.show-quick-actions .header-quick-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 5px;
  }

  body.policy-page .header-quick-button {
    min-height: 31px;
    padding: 0 7px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--text);
    background: #ffffff;
    color: var(--text);

    font-size: 7.5px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    white-space: nowrap;
    cursor: pointer;
  }

  body.policy-page .header-quick-button-primary {
    background: var(--text);
    color: #ffffff;
  }
}

/* =========================================
   Policy page top actions
   ========================================= */

.policy-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.policy-top-row .eyebrow {
  margin-bottom: 0;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-action-button {
  min-width: 128px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 0 14px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.policy-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

@media (max-width: 700px) {
  .policy-top-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-bottom: 30px;
  }

  .policy-actions {
    gap: 8px;
  }

  .policy-action-button {
    min-width: 88px;
    min-height: 40px;
    gap: 8px;
    padding: 0 9px;

    font-size: 8px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 390px) {
  .policy-actions {
    gap: 6px;
  }

  .policy-action-button {
    min-width: 82px;
    padding: 0 7px;
    font-size: 7px;
  }
}

/* =========================================
   Policy page top actions — final mobile fix
   ========================================= */

.policy-page .about-container {
  text-align: left;
}

.policy-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;

  width: 100%;
  margin-bottom: 30px;
}

.policy-top-row .eyebrow {
  margin: 0;
  max-width: 260px;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-action-button {
  min-width: 128px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 0 14px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.policy-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

.policy-page h1 {
  margin-bottom: 26px;

  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

/* Mobile */

@media (max-width: 700px) {
  .policy-top-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-bottom: 26px;
  }

  .policy-top-row .eyebrow {
    max-width: 118px;

    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 0.18em;
  }

  .policy-actions {
    gap: 6px;
  }

  .policy-action-button {
    min-width: 82px;
    min-height: 38px;

    gap: 6px;
    padding: 0 8px;

    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .policy-page h1 {
    margin-bottom: 24px;

    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.045em;
  }
}

@media (max-width: 390px) {
  .policy-top-row .eyebrow {
    max-width: 105px;
    font-size: 8px;
  }

  .policy-action-button {
    min-width: 78px;
    padding: 0 7px;
    font-size: 6.8px;
  }
}

/* Make Book Now button black */

.service-menu-action-button-primary,
.policy-action-button-primary,
.header-quick-button-primary {
  background: var(--text) !important;
  color: #ffffff !important;
}

.service-menu-action-button-primary:hover,
.policy-action-button-primary:hover,
.header-quick-button-primary:hover {
  background: #393939 !important;
  color: #ffffff !important;
}

/* Book Now button black */

.service-menu-action-button-primary,
.header-quick-button-primary,
.policy-action-button-primary {
  background: var(--text) !important;
  color: #ffffff !important;
}

.service-menu-action-button-primary:hover,
.header-quick-button-primary:hover,
.policy-action-button-primary:hover {
  background: #393939 !important;
  color: #ffffff !important;
}

/* Final Service Menu buttons fix */

.service-menu-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.service-menu-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-menu-action-button {
  min-width: 128px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 0 14px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.service-menu-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

@media (max-width: 700px) {
  .service-menu-heading-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .service-menu-heading-row h2 {
    margin: 0;
    font-size: 27px !important;
    line-height: 1;
  }

  .service-menu-actions {
    gap: 8px;
  }

  .service-menu-action-button {
    min-width: 88px;
    min-height: 40px;
    gap: 8px;
    padding: 0 9px;

    font-size: 8px;
    letter-spacing: 0.08em;
  }
}


/* =========================================
   Policy page title and buttons
   ========================================= */

body.policy-page .about-container {
  width: min(100%, 1180px);
  text-align: left;
}

.policy-title-block {
  margin-bottom: 42px;
}

.policy-title-block .eyebrow {
  margin-bottom: 18px;
}

.policy-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 34px;
}

body.policy-page .policy-heading-row h1 {
  max-width: 700px;
  margin: 0;

  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.policy-action-button {
  min-width: 128px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 0 14px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
}

.policy-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

body.policy-page .about-copy {
  max-width: 820px;
  margin: 0;
}

body.policy-page .about-copy h2 {
  max-width: 820px;
  margin: 54px 0 22px;

  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.045em;
}

/* Mobile */

@media (max-width: 700px) {
  body.policy-page .simple-about {
    padding: 70px 22px;
  }

  .policy-title-block {
    margin-bottom: 34px;
  }

  .policy-title-block .eyebrow {
    margin-bottom: 18px;
    white-space: nowrap;
  }

  .policy-heading-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
  }

  body.policy-page .policy-heading-row h1 {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .policy-actions {
    gap: 8px;
    padding-top: 2px;
  }

  .policy-action-button {
    min-width: 82px;
    min-height: 40px;
    gap: 7px;
    padding: 0 8px;

    font-size: 7.5px;
    letter-spacing: 0.07em;
  }

  body.policy-page .about-copy h2 {
    margin-top: 46px;
    margin-bottom: 18px;

    font-size: 36px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  body.policy-page .policy-heading-row h1 {
    font-size: 33px;
  }

  .policy-action-button {
    min-width: 76px;
    padding: 0 7px;
    font-size: 7px;
  }
}


/* =========================================
   Policy page — clean mobile layout
   ========================================= */

body.policy-page .about-container {
  width: min(100%, 1180px);
  text-align: left;
}

.policy-title-block {
  margin-bottom: 48px;
}

.policy-title-block .eyebrow {
  margin-bottom: 22px;
}

.policy-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 40px;
}

body.policy-page .policy-heading-row h1 {
  max-width: 760px;
  margin: 0;

  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 7px;
}

.policy-action-button {
  min-width: 128px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 0 14px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
}

.policy-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

body.policy-page .about-copy {
  max-width: 820px;
  margin: 0;
}

body.policy-page .about-copy h2 {
  max-width: 820px;
  margin: 58px 0 22px;

  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.045em;
}

/* Mobile */

@media (max-width: 700px) {
  body.policy-page .simple-about {
    padding: 70px 22px;
  }

  .policy-title-block {
    margin-bottom: 42px;
  }

  .policy-title-block .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.22em;
  }

  .policy-heading-row {
    display: block;
  }

  body.policy-page .policy-heading-row h1 {
    max-width: 100%;
    margin-bottom: 28px;

    font-size: 42px;
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .policy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    width: 100%;
    max-width: 330px;

    padding-top: 0;
  }

  .policy-action-button {
    min-width: 0;
    min-height: 48px;

    width: 100%;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  body.policy-page .about-copy p:first-child {
    font-size: 17px;
    line-height: 1.75;
  }

  body.policy-page .about-copy h2 {
    margin-top: 56px;
    margin-bottom: 18px;

    font-size: 38px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  body.policy-page .policy-heading-row h1 {
    font-size: 39px;
  }

  .policy-action-button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 8.5px;
  }
}

/* =========================================
   Policy page heading layout
   ========================================= */

body.policy-page .simple-about {
  padding-top: 110px;
}

body.policy-page .about-container {
  width: min(100%, 980px);
  text-align: left;
}

.policy-title-block {
  margin-bottom: 42px;
}

.policy-title-block .eyebrow {
  margin-bottom: 22px;
}

.policy-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 34px;
}

.policy-heading-row h1 {
  max-width: 620px;
  margin: 0;

  font-size: clamp(46px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.policy-action-button {
  min-width: 132px;
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 16px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
}

.policy-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

body.policy-page .about-copy {
  max-width: 820px;
  margin: 0;
}

body.policy-page .about-copy h2 {
  margin: 62px 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

/* Mobile */

@media (max-width: 700px) {
  body.policy-page .simple-about {
    padding: 82px 22px 80px;
  }

  .policy-title-block {
    margin-bottom: 34px;
  }

  .policy-title-block .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
    line-height: 1.3;
  }

  .policy-heading-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .policy-heading-row h1 {
    max-width: 100%;

    font-size: 43px;
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .policy-actions {
    width: 100%;
    padding-top: 0;
    gap: 10px;
  }

  .policy-action-button {
    flex: 1;
    min-width: 0;
    min-height: 46px;

    padding: 0 13px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  body.policy-page .about-copy h2 {
    margin-top: 54px;
    margin-bottom: 20px;

    font-size: 40px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  .policy-heading-row h1 {
    font-size: 39px;
  }

  .policy-action-button {
    min-height: 44px;
    padding: 0 11px;
    font-size: 8px;
  }
}

/* =========================================
   FINAL POLICY PAGE FIX
   ========================================= */

body.policy-page .simple-about {
  padding: 90px 22px 90px;
  background: var(--surface);
}

body.policy-page .about-container {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: left;
}

.policy-title-block {
  margin-bottom: 48px;
}

.policy-title-block .eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.policy-heading-row {
  display: block;
}

.policy-heading-row h1 {
  max-width: 820px;
  margin: 0 0 34px;

  font-size: clamp(44px, 7vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 430px;

  padding-top: 0;
}

.policy-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 18px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
}

.policy-action-button-primary {
  background: var(--text) !important;
  color: #ffffff !important;
}

body.policy-page .about-copy {
  max-width: 820px;
  margin: 0;
}

body.policy-page .about-copy p:first-child {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

body.policy-page .about-copy h2 {
  max-width: 820px;
  margin: 58px 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

/* Mobile */

@media (max-width: 700px) {
  body.policy-page .simple-about {
    padding: 82px 22px 80px;
  }

  .policy-title-block {
    margin-bottom: 44px;
  }

  .policy-title-block .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }

  .policy-heading-row h1 {
    margin-bottom: 30px;

    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .policy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 100%;
  }

  .policy-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  body.policy-page .about-copy p:first-child {
    font-size: 17px;
    line-height: 1.75;
  }

  body.policy-page .about-copy h2 {
    margin-top: 56px;
    margin-bottom: 18px;

    font-size: 38px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  .policy-heading-row h1 {
    font-size: 37px;
  }

  .policy-action-button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 8.5px;
  }
}

/* =========================================
   FINAL POLICY PAGE — BUTTONS ABOVE TITLE
   ========================================= */

body.policy-page .simple-about {
  padding: 90px 22px 90px;
  background: var(--surface);
}

body.policy-page .about-container {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: left;
}

.policy-title-block {
  margin-bottom: 52px;
}

.policy-title-block .eyebrow {
  margin-bottom: 26px;

  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 430px;

  margin-bottom: 38px;
  padding-top: 0;
}

.policy-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 18px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
}

.policy-action-button-primary {
  background: var(--text) !important;
  color: #ffffff !important;
}

.policy-title-block h1 {
  max-width: 820px;
  margin: 0;

  font-size: clamp(44px, 7vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.policy-page .about-copy {
  max-width: 820px;
  margin: 0;
}

body.policy-page .about-copy p:first-child {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

body.policy-page .about-copy h2 {
  max-width: 820px;
  margin: 58px 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

@media (max-width: 700px) {
  body.policy-page .simple-about {
    padding: 82px 22px 80px;
  }

  .policy-title-block {
    margin-bottom: 46px;
  }

  .policy-title-block .eyebrow {
    margin-bottom: 24px;

    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }

  .policy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 100%;
    margin-bottom: 34px;
  }

  .policy-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .policy-title-block h1 {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  body.policy-page .about-copy p:first-child {
    font-size: 17px;
    line-height: 1.75;
  }

  body.policy-page .about-copy h2 {
    margin-top: 56px;
    margin-bottom: 18px;

    font-size: 38px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  .policy-title-block h1 {
    font-size: 37px;
  }

  .policy-action-button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 8.5px;
  }
}

/* =========================================
   Policy page — Variant 5 layout
   ========================================= */

body.policy-page .simple-about {
  padding-top: 110px;
}

body.policy-page .about-container {
  width: min(100%, 980px);
  text-align: left;
}

body.policy-page .policy-title-block {
  margin-bottom: 34px;
}

body.policy-page .policy-title-block .eyebrow {
  margin-bottom: 22px;
}

body.policy-page .policy-title-block h1 {
  max-width: 760px;
  margin: 0;

  font-size: clamp(46px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.policy-page .about-copy {
  max-width: 820px;
  margin: 0;
}

body.policy-page .about-copy p:first-child {
  max-width: 760px;
  margin-bottom: 34px;

  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

body.policy-page .policy-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  width: 100%;
  max-width: 620px;

  margin: 0 0 54px;
  padding: 0;
}

body.policy-page .policy-action-button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 28px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.11em;

  white-space: nowrap;
}

body.policy-page .policy-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

body.policy-page .about-copy h2 {
  max-width: 820px;
  margin: 58px 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

body.policy-page .about-copy .policy-actions + h2 {
  margin-top: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Mobile */

@media (max-width: 700px) {
  body.policy-page .simple-about {
    padding: 82px 22px 80px;
  }

  body.policy-page .policy-title-block {
    margin-bottom: 28px;
  }

  body.policy-page .policy-title-block .eyebrow {
    margin-bottom: 18px;

    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.2em;
  }

  body.policy-page .policy-title-block h1 {
    max-width: 100%;

    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  body.policy-page .about-copy p:first-child {
    margin-bottom: 32px;

    font-size: 16px;
    line-height: 1.7;
  }

  body.policy-page .policy-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: none;
    margin-bottom: 46px;
  }

  body.policy-page .policy-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  body.policy-page .about-copy .policy-actions + h2 {
    padding-top: 28px;
  }

  body.policy-page .about-copy h2 {
    margin-top: 52px;
    margin-bottom: 18px;

    font-size: 38px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  body.policy-page .policy-title-block h1 {
    font-size: 37px;
  }

  body.policy-page .policy-action-button {
    min-height: 46px;
    padding: 0 12px;

    font-size: 8px;
    letter-spacing: 0.08em;
  }
}

/* =========================================
   About page
   ========================================= */

body.about-page .about-container {
  width: min(100%, 980px);
  text-align: left;
}

body.about-page .about-page-section {
  padding-top: 110px;
}

body.about-page h1 {
  max-width: 900px;
  margin: 0 0 38px;

  font-size: clamp(46px, 7vw, 78px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.about-page .about-copy {
  max-width: 820px;
  margin: 0;
}

@media (max-width: 700px) {
  body.about-page .about-page-section {
    padding: 82px 22px 80px;
  }

  body.about-page h1 {
    margin-bottom: 30px;

    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
  }
}

/* =========================================
   Gallery page
   ========================================= */

body.gallery-page .gallery-page-section {
  padding-top: 110px;
}

body.gallery-page .gallery-heading h1 {
  margin-bottom: 22px;

  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body.gallery-page .about-services-link {
  margin-top: 48px;
}

@media (max-width: 700px) {
  body.gallery-page .gallery-page-section {
    padding: 82px 22px 80px;
  }

  body.gallery-page .gallery-heading h1 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  body.gallery-page .about-services-link {
    margin-top: 34px;
  }
}

/* =========================================
   Team page
   ========================================= */

body.team-page .team-page-section {
  padding-top: 110px;
}

body.team-page .team-page-section h1 {
  max-width: 760px;

  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

@media (max-width: 700px) {
  body.team-page .team-page-section {
    padding: 82px 22px 80px;
  }

  body.team-page .team-page-section h1 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
  }
}

/* =========================================
   Fixed quick buttons — no background bar
   ========================================= */





.quick-action-call {
  background: #ffffff;
  color: #111111;
  border: 1px solid #d8d4cf;
}

.quick-action-book {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

body {
  padding-bottom: 76px;
}

@media (max-width: 700px) {
  .quick-actions-fixed {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .quick-action-button {
    min-height: 44px;
    padding: 0 18px;

    font-size: 12px;
  }

  .quick-action-book {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 390px) {
  .quick-actions-fixed {
    right: 10px;
    bottom: 82px;
    gap: 7px;
  }

  .quick-action-button {
    min-height: 42px;
    padding: 0 15px;

    font-size: 11px;
  }

  .quick-action-book {
    padding-right: 19px;
    padding-left: 19px;
  }
}

/* =========================================
   Fixed quick buttons — same size, no bar
   ========================================= */






body {
  padding-bottom: 76px;
}

@media (max-width: 700px) {
  .quick-actions-fixed {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .quick-action-button {
    width: 132px;
    min-height: 44px;
    padding: 0 16px;

    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .quick-actions-fixed {
    right: 10px;
    bottom: 12px;
    gap: 7px;
  }

  .quick-action-button {
    width: 124px;
    min-height: 42px;
    padding: 0 15px;

    font-size: 11px;
  }
}

/* =========================================
   FINAL floating quick actions
   ========================================= */

.quick-actions-fixed {
  position: fixed !important;

  right: max(
    12px,
    calc((100vw - 1180px) / 2 + 12px)
  ) !important;

  bottom: 31px !important;
  z-index: 999999 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transform: translateY(22px) scale(0.96) !important;

  transition:
    opacity 0.28s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s ease !important;
}

.quick-actions-fixed.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.quick-actions-fixed .quick-action-button {
  width: 112px !important;
  height: 44px !important;
  min-width: 112px !important;
  min-height: 44px !important;
  max-width: 112px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;

  padding: 0 15px !important;
  border-radius: 999px !important;

  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  cursor: pointer !important;
}

.quick-actions-fixed .quick-action-call {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #d8d4cf !important;
}

.quick-actions-fixed .quick-action-book {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
}

body.modal-open .quick-actions-fixed {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body {
  padding-bottom: 120px;
}

@media (min-width: 701px) {
  .quick-actions-fixed {
    right: max(
      24px,
      calc((100vw - 1180px) / 2 + 24px)
    ) !important;

    bottom: 62px !important;
    gap: 14px !important;
  }

  .quick-actions-fixed .quick-action-button {
    width: 168px !important;
    height: 62px !important;
    min-width: 168px !important;
    min-height: 62px !important;
    max-width: 168px !important;

    padding: 0 24px !important;
    font-size: 15px !important;
    gap: 16px !important;
  }
}

@media (max-width: 390px) {
  .quick-actions-fixed {
    right: 10px !important;
    bottom: 78px !important;
    gap: 7px !important;
  }

  .quick-actions-fixed .quick-action-button {
    width: 105px !important;
    height: 42px !important;
    min-width: 105px !important;
    min-height: 42px !important;
    max-width: 105px !important;

    padding: 0 14px !important;
    font-size: 11px !important;
  }
}


/* =========================================
   Gallery page action buttons
   ========================================= */

.gallery-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 430px;

  margin-top: 34px;
}

.gallery-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 18px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.gallery-action-button-primary {
  background: var(--text) !important;
  color: #ffffff !important;
}

.gallery-action-button-primary:hover {
  background: #393939 !important;
  color: #ffffff !important;
}

@media (max-width: 700px) {
  .gallery-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 100%;
    margin-top: 28px;
  }

  .gallery-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 390px) {
  .gallery-action-button {
    min-height: 46px;
    padding: 0 12px;

    font-size: 8.5px;
  }
}

/* =========================================
   About page action buttons
   ========================================= */

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 430px;

  margin-top: 34px;
  margin-bottom: 42px;
}

.about-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 18px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.about-action-button-primary {
  background: var(--text) !important;
  color: #ffffff !important;
}

.about-action-button-primary:hover {
  background: #393939 !important;
  color: #ffffff !important;
}

@media (max-width: 700px) {
  .about-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 100%;
    margin-top: 28px;
    margin-bottom: 36px;
  }

  .about-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 390px) {
  .about-action-button {
    min-height: 46px;
    padding: 0 12px;

    font-size: 8.5px;
  }
}


/* Locations page main buttons */

.locations-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 430px;

  margin-top: 32px;
  margin-bottom: 30px;
}

.locations-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 18px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.locations-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

.locations-action-button:hover {
  background: var(--text);
  color: #ffffff;
}

.locations-action-button-primary:hover {
  background: #393939;
  color: #ffffff;
}

@media (max-width: 700px) {
  .locations-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 100%;

    margin-top: 26px;
    margin-bottom: 26px;
  }

  .locations-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
  }
}


/* =========================================
   FAQ page Call Us and Book Now buttons
   ========================================= */

.faq-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 430px;

  margin-top: 30px;
  margin-bottom: 30px;
}

.faq-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 0 18px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.faq-action-button:hover {
  background: var(--text);
  color: #ffffff;
  transform: translateY(-2px);
}

.faq-action-button-primary {
  background: var(--text);
  color: #ffffff;
}

.faq-action-button-primary:hover {
  background: #393939;
  color: #ffffff;
}

@media (max-width: 700px) {
  .faq-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    max-width: 100%;
    margin-top: 25px;
    margin-bottom: 28px;
  }

  .faq-action-button {
    min-height: 48px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 390px) {
  .faq-action-button {
    min-height: 46px;
    padding: 0 12px;

    font-size: 8.5px;
  }
}


/* Policy page top buttons spacing */

body.policy-page .policy-title-block h1 {
  margin-bottom: 34px !important;
}

body.policy-page .policy-title-block .policy-actions {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 700px) {
  body.policy-page .policy-title-block h1 {
    margin-bottom: 26px !important;
  }
}

/* =========================================
   Gallery SEO content
   ========================================= */

.gallery-seo,
.gallery-faq,
.gallery-cta {
  width: min(100% - 40px, 960px);
  margin-right: auto;
  margin-left: auto;
}

.gallery-seo {
  padding: 96px 0 40px;
  text-align: left;
}

.gallery-seo__intro {
  padding-bottom: 42px;
}

.gallery-seo__section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.gallery-seo h2,
.gallery-faq h2,
.gallery-cta h2 {
  max-width: 820px;
  margin-bottom: 20px;

  color: var(--text);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.gallery-seo p,
.gallery-faq p,
.gallery-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.gallery-seo p + p {
  margin-top: 16px;
}

.gallery-seo a,
.gallery-faq a,
.gallery-cta a {
  color: var(--text);
  border-bottom: 1px solid currentColor;
}

.gallery-seo ul {
  max-width: 760px;
  margin-top: 24px;
  padding-left: 20px;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.gallery-seo li + li {
  margin-top: 10px;
}

.gallery-seo__actions,
.gallery-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.gallery-text-button {
  min-width: 190px;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 0 20px;

  border: 1px solid var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;
}

.gallery-text-button-outline {
  background: #ffffff;
  color: var(--text);
}

.gallery-text-button-dark {
  background: var(--text);
  color: #ffffff;
}

.gallery-text-button-outline:hover {
  background: var(--text);
  color: #ffffff;
}

.gallery-text-button-dark:hover {
  background: #393939;
  color: #ffffff;
}

.gallery-faq {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  text-align: left;
}

.gallery-faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.gallery-faq-item h3 {
  max-width: 760px;
  margin-bottom: 12px;

  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.gallery-cta {
  padding: 72px 0 112px;
  text-align: center;
}

.gallery-cta h2,
.gallery-cta p {
  margin-right: auto;
  margin-left: auto;
}

.gallery-cta__buttons {
  justify-content: center;
}

@media (max-width: 700px) {
  .gallery-seo,
  .gallery-faq,
  .gallery-cta {
    width: min(100% - 32px, 960px);
  }

  .gallery-seo {
    padding-top: 64px;
    padding-bottom: 28px;
  }

  .gallery-seo__intro {
    padding-bottom: 34px;
  }

  .gallery-seo__section {
    padding: 32px 0;
  }

  .gallery-seo h2,
  .gallery-faq h2,
  .gallery-cta h2 {
    margin-bottom: 18px;

    font-size: 34px;
    line-height: 1.05;
  }

  .gallery-seo p,
  .gallery-faq p,
  .gallery-cta p,
  .gallery-seo ul {
    font-size: 14px;
    line-height: 1.7;
  }

  .gallery-seo__actions,
  .gallery-cta__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-text-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;

    padding: 0 16px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .gallery-faq {
    padding: 46px 0;
  }

  .gallery-faq-item {
    padding: 24px 0;
  }

  .gallery-faq-item h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .gallery-cta {
    padding: 56px 0 88px;
  }
}

/* Fix Gallery SEO button borders */

.gallery-text-button {
  border-bottom: 1px solid var(--text) !important;
  text-decoration: none;
}

.gallery-text-button-dark {
  border-color: var(--text) !important;
}

.gallery-text-button-outline {
  border-color: var(--text) !important;
}

/* =========================================
   FINAL remove empty bottom space
   ========================================= */

body {
  padding-bottom: 0 !important;
}

@media (max-width: 700px) {
  .service-menu-section {
    padding-bottom: 18px !important;
  }
}

/* =========================================
   FINAL homepage bottom cleanup
   ========================================= */

html,
body,
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.service-menu-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.service-menu-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.service-category:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.add-ons-grid {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================================
   FAQ page SEO content
   ========================================= */

body.faq-page .faq-heading h1 {
  max-width: 760px;
  margin: 0;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.faq-hero__description {
  max-width: 520px;
  margin-top: 26px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-seo-content,
.faq-final-cta {
  width: min(100% - 40px, 960px);
  margin-right: auto;
  margin-left: auto;
}

.faq-seo-content {
  padding: 96px 0 48px;
  background: #ffffff;
}

.faq-seo-content__intro {
  padding-bottom: 44px;
}

.faq-seo-content__section {
  padding: 42px 0;
  border-top: 1px solid var(--border);
}

.faq-seo-content h2,
.faq-final-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;

  color: var(--text);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-seo-content p,
.faq-final-cta p {
  max-width: 760px;
  margin: 0;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.faq-seo-content p + p {
  margin-top: 16px;
}

.faq-seo-content__actions,
.faq-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.faq-text-button {
  min-width: 190px;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 0 20px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.faq-text-button:hover {
  transform: translateY(-2px);
}

.faq-text-button-outline {
  background: #ffffff;
  color: var(--text);
}

.faq-text-button-outline:hover {
  background: var(--text);
  color: #ffffff;
}

.faq-text-button-dark {
  background: var(--text);
  color: #ffffff;
}

.faq-text-button-dark:hover {
  background: #393939;
  color: #ffffff;
}

.faq-final-cta {
  padding: 64px 0 112px;
  border-top: 1px solid var(--border);
}

.faq-final-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 28px;
}

.faq-final-cta__links a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  border-bottom: 1px solid currentColor;
}

.faq-final-cta__links a:hover {
  color: var(--text);
}

@media (max-width: 700px) {
  body.faq-page .faq-heading h1 {
    font-size: 38px;
    line-height: 1;
  }

  .faq-hero__description {
    max-width: 100%;
    margin-top: 20px;

    font-size: 14px;
    line-height: 1.65;
  }

  .faq-seo-content,
  .faq-final-cta {
    width: min(100% - 32px, 960px);
  }

  .faq-seo-content {
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .faq-seo-content__intro {
    padding-bottom: 34px;
  }

  .faq-seo-content__section {
    padding: 32px 0;
  }

  .faq-seo-content h2,
  .faq-final-cta h2 {
    margin-bottom: 18px;

    font-size: 34px;
    line-height: 1.05;
  }

  .faq-seo-content p,
  .faq-final-cta p {
    font-size: 14px;
    line-height: 1.7;
  }

  .faq-seo-content__actions,
  .faq-final-cta__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-text-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;

    padding: 0 16px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .faq-final-cta {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .faq-final-cta__links {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================
   Locations page SEO content
   ========================================= */

.locations-hero__description {
  max-width: 690px;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.location-detail,
.locations-seo,
.locations-faq,
.locations-final-cta {
  width: min(100% - 40px, 960px);
  margin-right: auto;
  margin-left: auto;
}

.location-detail {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.location-detail h2,
.locations-seo h2,
.locations-faq h2,
.locations-final-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;

  color: var(--text);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.location-detail p,
.locations-seo p,
.locations-faq p,
.locations-final-cta p {
  max-width: 760px;
  margin: 0;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.location-detail p + p,
.locations-seo p + p {
  margin-top: 16px;
}

.locations-seo {
  padding: 96px 0 48px;
}

.locations-seo__intro {
  padding-bottom: 44px;
}

.locations-seo__section {
  padding: 42px 0;
  border-top: 1px solid var(--border);
}

.locations-seo a {
  color: var(--text);
  border-bottom: 1px solid currentColor;
}

.locations-seo__actions,
.locations-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.locations-text-button {
  min-width: 190px;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 0 20px;

  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  white-space: nowrap;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.locations-text-button:hover {
  transform: translateY(-2px);
}

.locations-text-button-outline {
  background: #ffffff;
  color: var(--text);
}

.locations-text-button-outline:hover {
  background: var(--text);
  color: #ffffff;
}

.locations-text-button-dark {
  background: var(--text);
  color: #ffffff;
}

.locations-text-button-dark:hover {
  background: #393939;
  color: #ffffff;
}

.locations-faq {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.location-faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.location-faq-item h3 {
  max-width: 760px;
  margin: 0 0 12px;

  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.locations-final-cta {
  padding: 64px 0 112px;
  border-top: 1px solid var(--border);
}

@media (max-width: 700px) {
  .locations-hero__description {
    font-size: 15px;
    line-height: 1.65;
  }

  .location-detail,
  .locations-seo,
  .locations-faq,
  .locations-final-cta {
    width: min(100% - 32px, 960px);
  }

  .location-detail {
    margin-top: 30px;
    padding-top: 30px;
  }

  .locations-seo {
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .locations-seo__intro {
    padding-bottom: 34px;
  }

  .locations-seo__section {
    padding: 32px 0;
  }

  .location-detail h2,
  .locations-seo h2,
  .locations-faq h2,
  .locations-final-cta h2 {
    margin-bottom: 18px;

    font-size: 34px;
    line-height: 1.05;
  }

  .location-detail p,
  .locations-seo p,
  .locations-faq p,
  .locations-final-cta p {
    font-size: 14px;
    line-height: 1.7;
  }

  .locations-seo__actions,
  .locations-final-cta__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .locations-text-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;

    padding: 0 16px;

    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .locations-faq {
    padding: 46px 0;
  }

  .location-faq-item {
    padding: 24px 0;
  }

  .location-faq-item h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .locations-final-cta {
    padding-top: 56px;
    padding-bottom: 96px;
  }
}

/* =========================================
   FINAL Locations page heading/card fixes
   ========================================= */

body.locations-page .locations-heading h1 {
  max-width: 820px;
  margin-bottom: 24px;

  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

body.locations-page .studio-location-card h2 {
  max-width: 470px;
  margin-bottom: 24px;

  font-size: clamp(29px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

@media (max-width: 700px) {
  body.locations-page .locations-heading h1 {
    font-size: 42px;
    line-height: 1;
  }

  body.locations-page .studio-location-card h2 {
    font-size: 30px;
    line-height: 1.04;
  }
}


/* =========================================
   About page editorial redesign
   ========================================= */

.about-editorial-hero,
.about-chapter,
.about-process,
.about-services-editorial,
.about-principles-section,
.about-people,
.about-locations-editorial,
.about-faq,
.about-closing,
.about-final {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
}

.about-editorial-hero {
  padding: 120px 0 100px;
}

.about-editorial-hero__inner {
  max-width: 1080px;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-editorial-hero h1 {
  max-width: 720px;
  margin: 0 0 36px;

  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.about-hero-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  max-width: 660px;
  margin-bottom: 0;
}

.about-hero-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-hero-content .about-actions {
  margin-bottom: 0;
}

.about-hero-visual {
  margin: 0;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
}

.about-hero-visual figcaption {
  margin-top: 14px;

  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.about-chapter {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  justify-content: space-between;
  gap: 64px;

  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-chapter__label span,
.about-closing__label span {
  display: block;
  margin-bottom: 18px;

  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.about-chapter__label p,
.about-closing__label p,
.about-process .eyebrow,
.about-people .eyebrow,
.about-locations-editorial .eyebrow,
.about-final .eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.about-chapter__body h2,
.about-closing__body h2 {
  max-width: 700px;
  margin: 0 0 30px;

  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-lead {
  max-width: 700px;

  color: var(--text) !important;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.38;
}

.about-chapter__body p:not(.about-lead),
.about-closing__body p:not(.about-lead) {
  max-width: 660px;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-chapter__body p + p,
.about-closing__body p + p {
  margin-top: 20px;
}

.about-quote {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;

  padding: 120px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-quote p {
  max-width: 1030px;
  margin: 0;

  color: var(--text);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-quote footer {
  margin-top: 36px;

  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.about-process {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;

  padding: 120px 0;
}

.about-process--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.about-process--reverse .about-process__image {
  order: 2;
}

.about-process__image {
  overflow: hidden;
  background: var(--surface);
}

.about-process__image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-process__copy h2,
.about-services-editorial h2,
.about-people h2,
.about-locations-editorial h2,
.about-faq h2,
.about-principles-heading h2,
.about-final h2 {
  max-width: 760px;
  margin: 18px 0 28px;

  color: var(--text);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-process__copy p,
.about-services-editorial__heading p,
.about-people__columns p,
.about-locations-editorial p,
.about-faq__heading p,
.about-faq-item p,
.about-principles-heading p,
.about-final p {
  max-width: 660px;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-process__copy p + p {
  margin-top: 18px;
}

.about-process__copy .text-link {
  margin-top: 30px;
}

.about-services-editorial {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-services-editorial__heading {
  max-width: 780px;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 56px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.about-service-card {
  min-height: 330px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-service-card > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-service-card h3 {
  max-width: 410px;
  margin: 34px 0 18px;

  color: var(--text);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-service-card p {
  max-width: 470px;
  margin-bottom: 28px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-service-card .text-link {
  margin-top: auto;
}

.about-principles-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-principles-heading {
  max-width: 760px;
}

.about-principles {
  margin-top: 56px;
  border-top: 1px solid var(--border);
}

.about-principle {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;

  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.about-principle span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-principle h3 {
  margin: 0;

  color: var(--text);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.about-principle p {
  max-width: 560px;
  margin: 0;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-people {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-people__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;

  margin-top: 40px;
  margin-bottom: 34px;
}

.about-locations-editorial {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-locations-editorial__heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.about-location-lines {
  margin-bottom: 38px;
  border-top: 1px solid var(--border);
}

.about-location-line {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;

  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.about-location-line__area {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.about-location-line h3 {
  margin: 0 0 10px;

  color: var(--text);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-location-line address {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
}

.about-location-line address a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-location-line__summary {
  max-width: 560px !important;
  margin-top: 14px;

  font-size: 14px !important;
  line-height: 1.65 !important;
}

.about-location-line__actions {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.about-location-line__actions a,
.about-closing__links a,
.text-link {
  display: inline-flex;
  align-items: center;

  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;

  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-closing {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  justify-content: space-between;
  gap: 64px;

  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-faq__heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.about-faq-list {
  border-top: 1px solid var(--border);
}

.about-faq-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;

  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.about-faq-item h3 {
  margin: 0;

  color: var(--text);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.about-faq-item p {
  margin: 0;
}

.about-chapter__body p a,
.about-people__columns p a,
.about-faq-item p a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-closing__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;

  margin-top: 40px;
}

.about-final {
  padding: 100px 0 140px;

  text-align: center;
  border-top: 1px solid var(--border);
}

.about-final h2,
.about-final p {
  margin-right: auto;
  margin-left: auto;
}

.about-final p {
  max-width: 620px;
}

.about-final__actions {
  display: flex;
  justify-content: center;
  gap: 12px;

  margin-top: 34px;
}

.button {
  min-width: 210px;
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  padding: 0 22px;

  border: 1px solid var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.button--outline {
  background: #ffffff;
  color: var(--text);
}

.button--dark {
  background: var(--text);
  color: #ffffff;
}

.button--outline:hover {
  background: var(--text);
  color: #ffffff;
}

.button--dark:hover {
  background: #393939;
  color: #ffffff;
}

/* Mobile */

@media (max-width: 760px) {
  .about-editorial-hero,
  .about-chapter,
  .about-process,
  .about-services-editorial,
  .about-principles-section,
  .about-people,
  .about-locations-editorial,
  .about-faq,
  .about-closing,
  .about-final,
  .about-quote {
    width: min(100% - 32px, 1080px);
  }

  .about-editorial-hero {
    padding: 82px 0 72px;
  }

  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-editorial-hero h1 {
    margin-bottom: 28px;

    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .about-hero-copy {
    grid-template-columns: 1fr;
    gap: 18px;

    margin-bottom: 34px;
  }

  .about-hero-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-hero-visual {
    width: min(100%, 520px);
  }

  .about-chapter,
  .about-closing {
    grid-template-columns: 1fr;
    gap: 36px;

    padding: 72px 0;
  }

  .about-chapter__body h2,
  .about-closing__body h2,
  .about-process__copy h2,
  .about-services-editorial h2,
  .about-people h2,
  .about-locations-editorial h2,
  .about-faq h2,
  .about-principles-heading h2,
  .about-final h2 {
    font-size: 38px;
    line-height: 1;
  }

  .about-lead {
    font-size: 19px;
    line-height: 1.45;
  }

  .about-chapter__body p:not(.about-lead),
  .about-closing__body p:not(.about-lead),
  .about-process__copy p,
  .about-services-editorial__heading p,
  .about-people__columns p,
  .about-locations-editorial p,
  .about-faq__heading p,
  .about-faq-item p,
  .about-principles-heading p,
  .about-final p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-quote {
    padding: 72px 0;
  }

  .about-quote p {
    font-size: 41px;
    line-height: 1;
  }

  .about-process,
  .about-process--reverse {
    display: flex;
    flex-direction: column;

    gap: 36px;
    padding: 72px 0;
  }

  .about-process--reverse .about-process__image {
    order: 0;
  }

  .about-services-editorial,
  .about-principles-section,
  .about-people,
  .about-locations-editorial,
  .about-faq {
    padding: 72px 0;
  }

  .about-service-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .about-service-card {
    min-height: 280px;
    padding: 28px;
  }

  .about-service-card h3 {
    margin-top: 28px;
    font-size: 30px;
  }

  .about-service-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-principle {
    grid-template-columns: 54px 1fr;
    gap: 18px;

    padding: 28px 0;
  }

  .about-principle p {
    grid-column: 2;

    font-size: 14px;
    line-height: 1.7;
  }

  .about-people__columns {
    grid-template-columns: 1fr;
    gap: 20px;

    margin-top: 30px;
  }

  .about-location-line {
    grid-template-columns: 1fr;
    gap: 14px;

    padding: 30px 0;
  }

  .about-location-line__actions {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .about-faq__heading {
    margin-bottom: 36px;
  }

  .about-faq-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .about-faq-item h3 {
    font-size: 24px;
    line-height: 1.16;
  }

  .about-closing__links {
    gap: 16px 24px;
  }

  .about-final {
    padding: 72px 0 110px;
  }

  .about-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================
   Service menu bottom scroll space for fixed buttons
   ========================================= */

body:not(.about-page):not(.gallery-page):not(.policy-page):not(.locations-page):not(.faq-page) .service-menu-section {
  padding-bottom: 140px !important;
}

@media (max-width: 700px) {
  body:not(.about-page):not(.gallery-page):not(.policy-page):not(.locations-page):not(.faq-page) .service-menu-section {
    padding-bottom: 130px !important;
  }
}


/* =========================================
   Current page in mobile menu
   ========================================= */

.mobile-menu-inner a {
  color: var(--muted);
  font-weight: 400;
}

.mobile-menu-inner a.is-current-page,
.mobile-menu-inner a[aria-current="page"] {
  color: var(--text) !important;
  font-weight: 800 !important;
}

/* =========================================
   Carrollwood NEW label
   ========================================= */

/* .location-new-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: 9px;
  padding: 4px 7px;

  border: 1px solid #b7ada2;
  border-radius: 999px;

  color: #8a7767;
  background: #f7f3ef;

  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .location-new-label {
    margin-left: 7px;
    padding: 3px 6px;
    font-size: 7px;
  }
} */

/* =========================================
   Carrollwood NEW label — slightly larger
   ========================================= */

.location-new-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: 10px;
  padding: 5px 10px;

  border: 1px solid #b7ada2;
  border-radius: 999px;

  color: #8a7767;
  background: #f7f3ef;

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .location-new-label {
    margin-left: 8px;
    padding: 4px 8px;

    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

/* =========================================
   FINAL floating buttons vertical position
   ========================================= */

/* Large desktop */

@media (min-width: 1201px) {
  .quick-actions-fixed {
    bottom: 82px !important;
  }
}

/* Laptop and regular desktop */

@media (min-width: 901px) and (max-width: 1200px) {
  .quick-actions-fixed {
    bottom: 74px !important;
  }
}

/* Tablet */

@media (min-width: 701px) and (max-width: 900px) {
  .quick-actions-fixed {
    bottom: 68px !important;
  }
}

/* Regular phones */

@media (min-width: 391px) and (max-width: 700px) {
  .quick-actions-fixed {
    bottom: 58px !important;
  }
}

/* Small phones */

@media (max-width: 390px) {
  .quick-actions-fixed {
    bottom: 92px !important;
  }
}


/* =========================================
   Extra space below Service Menu on desktop
   ========================================= */

@media (min-width: 701px) {
  body:not(.about-page):not(.gallery-page):not(.policy-page):not(.locations-page):not(.faq-page)
  .service-menu-section {
    padding-bottom: 165px !important;
  }
}

/* =========================================
   Blog and editorial article pages
   ========================================= */

.blog-shell,
.article-shell {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.blog-hero {
  padding: clamp(84px, 12vw, 160px) 0 76px;
  color: #f7f6f3;
  background:
    radial-gradient(circle at 78% 18%, rgba(176, 153, 132, 0.24), transparent 30%),
    #151515;
}

.blog-hero .eyebrow {
  color: #bcb5ab;
}

.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 8.6vw, 118px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.blog-hero__intro {
  max-width: 650px;
  margin: 38px 0 30px auto;
  color: #c9c4bd;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 430px;
  margin-top: 32px;
}

.blog-hero .blog-actions,
.article-header .blog-actions {
  margin-left: auto;
}

.blog-hero .blog-actions {
  margin-bottom: 46px;
}

.blog-action-button {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--text);
  background: #ffffff;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.blog-action-button:hover {
  color: #ffffff;
  background: var(--text);
  transform: translateY(-2px);
}

.blog-action-button--primary {
  color: #ffffff;
  background: var(--text);
}

.blog-action-button--primary:hover {
  color: #ffffff;
  background: #393939;
}

.blog-actions--dark .blog-action-button {
  color: #f7f6f3;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.blog-actions--dark .blog-action-button:hover,
.blog-actions--dark .blog-action-button--primary {
  color: #151515;
  background: #f7f6f3;
  border-color: #f7f6f3;
}

.blog-actions--dark .blog-action-button--primary:hover {
  color: #151515;
  background: #ded9d2;
  border-color: #ded9d2;
}

.blog-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-hero__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #e7e3de;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-index {
  padding: 96px 0 124px;
}

.blog-index__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--text);
}

.blog-index__heading .eyebrow {
  margin: 0;
}

.blog-index__heading > p:last-child {
  max-width: 440px;
  color: var(--muted);
  font-size: 15px;
  text-align: right;
}

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

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

.blog-card--featured {
  grid-column: span 2;
}

.blog-card__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}

.blog-card--featured .blog-card__image-link {
  aspect-ratio: 16 / 10;
}

.blog-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image-link img {
  transform: scale(1.025);
}

.blog-card__body {
  padding-top: 22px;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.blog-card h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 41px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.blog-card:not(.blog-card--featured) h2 {
  font-size: clamp(23px, 2.4vw, 31px);
}

.blog-card h2 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.blog-card h2 a:hover {
  text-decoration-line: underline;
}

.blog-card__body > p {
  max-width: 640px;
  margin-bottom: 20px;
  color: #68635c;
  font-size: 14px;
  line-height: 1.6;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-card__read span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.blog-card__read:hover span {
  transform: translateX(5px);
}

.blog-booking-strip {
  padding: 82px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.blog-booking-strip__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.blog-booking-strip h2 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 236px;
  min-height: 54px;
  padding: 12px 18px;
  color: #fff;
  background: var(--text);
  border: 1px solid var(--text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.blog-button:hover {
  color: var(--text);
  background: transparent;
}

.blog-button span {
  font-size: 20px;
  font-weight: 400;
}

.blog-footer {
  padding: 78px 24px 34px;
  color: #ede9e3;
  background: #151515;
}

.blog-footer__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.blog-footer .eyebrow {
  color: #a9a29a;
}

.blog-footer__title {
  max-width: 760px;
  margin: 22px 0 48px;
  font-size: clamp(34px, 5.8vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  padding: 22px 0;
  border-top: 1px solid #45413d;
  border-bottom: 1px solid #45413d;
}

.blog-footer__links a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-footer__links a:hover {
  color: #bdb5aa;
}

.blog-footer__legal {
  margin-top: 30px;
  color: #8f8981;
  font-size: 11px;
}

/* Article */

.article-header {
  padding: 72px 0 68px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 66px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.article-header h1 {
  max-width: 1020px;
  margin-bottom: 28px;
  font-size: clamp(50px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.article-deck {
  max-width: 720px;
  margin-left: auto;
  color: #615c55;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.48;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  justify-content: space-between;
  gap: 72px;
  padding-top: 82px;
  padding-bottom: 118px;
}

.article-aside {
  position: sticky;
  top: 122px;
  align-self: start;
  padding-top: 18px;
  border-top: 1px solid var(--text);
}

.article-aside ul {
  margin: 0 0 28px;
  list-style: none;
}

.article-aside li {
  padding: 10px 0;
  color: #6b665f;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.45;
}

.article-aside > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.article-hero-image {
  margin-bottom: 42px;
}

.article-hero-image img {
  display: block;
  width: 100%;
  max-height: 900px;
  object-fit: cover;
  background: var(--surface);
}

.article-hero-image figcaption,
.article-video figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.article-lede {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.article-content a:not(.blog-button):not(.blog-text-link) {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content a:not(.blog-button):not(.blog-text-link):hover {
  color: #777066;
}

.article-section {
  margin-bottom: 52px;
}

.article-section h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.article-section p {
  margin-bottom: 21px;
  color: #35322e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.78;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-video {
  margin: 0 0 54px;
  padding: 18px;
  background: var(--surface);
}

.article-video video {
  display: block;
  width: 100%;
  max-height: 780px;
  background: #0d0d0d;
}

.article-note {
  margin: 64px 0;
  padding: 32px;
  background: #ece9e4;
  border-left: 3px solid var(--text);
}

.article-note p:last-child {
  color: #504b45;
  font-size: 15px;
  line-height: 1.65;
}

.article-cta {
  padding: clamp(34px, 6vw, 64px);
  color: #f3f0ec;
  background: #171717;
}

.article-cta .eyebrow {
  color: #aca59c;
}

.article-cta h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(37px, 5vw, 60px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.article-cta > p:not(.eyebrow) {
  max-width: 600px;
  color: #bfb8b0;
  font-size: 15px;
  line-height: 1.65;
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
}

.article-cta .blog-button {
  color: var(--text);
  background: #f4f1ec;
  border-color: #f4f1ec;
}

.article-cta .blog-button:hover {
  color: #f4f1ec;
  background: transparent;
}

.blog-text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid #77716a;
  color: #e1dcd6;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.related-posts {
  padding: 96px 0 120px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.related-posts__heading {
  margin-bottom: 48px;
}

.related-posts__heading h2 {
  max-width: 760px;
  font-size: clamp(39px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

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

.related-posts .blog-card__image-link {
  aspect-ratio: 4 / 5;
}

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

  .blog-card--featured {
    grid-column: span 2;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .article-aside {
    position: static;
    display: none;
  }

  .article-content {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .blog-shell,
  .article-shell {
    width: min(calc(100% - 36px), 1180px);
  }

  .blog-hero {
    padding-top: 72px;
    padding-bottom: 50px;
  }

  .blog-hero h1 {
    font-size: clamp(48px, 15.5vw, 72px);
  }

  .blog-hero__intro {
    margin-top: 30px;
    font-size: 17px;
  }

  .blog-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
    margin-top: 26px;
  }

  .blog-hero .blog-actions,
  .article-header .blog-actions {
    margin-left: 0;
  }

  .blog-hero .blog-actions {
    margin-bottom: 36px;
  }

  .blog-action-button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .blog-index {
    padding: 64px 0 80px;
  }

  .blog-index__heading {
    display: block;
    margin-bottom: 34px;
  }

  .blog-index__heading > p:last-child {
    margin-top: 14px;
    text-align: left;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-card--featured {
    grid-column: auto;
  }

  .blog-card--featured .blog-card__image-link,
  .blog-card__image-link {
    aspect-ratio: 4 / 5;
  }

  .blog-card h2,
  .blog-card:not(.blog-card--featured) h2 {
    font-size: 29px;
  }

  .blog-booking-strip {
    padding: 58px 0;
  }

  .blog-booking-strip__inner {
    display: block;
  }

  .blog-booking-strip .blog-button {
    width: 100%;
    margin-top: 30px;
  }

  .article-header {
    padding: 50px 0 44px;
  }

  .article-breadcrumbs {
    margin-bottom: 46px;
  }

  .article-header h1 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .article-deck {
    margin-left: 0;
    font-size: 17px;
  }

  .article-layout {
    padding-top: 36px;
    padding-bottom: 76px;
  }

  .article-hero-image {
    margin-right: -18px;
    margin-left: -18px;
  }

  .article-hero-image figcaption {
    padding: 0 18px;
  }

  .article-lede {
    font-size: 21px;
  }

  .article-section {
    margin-bottom: 44px;
  }

  .article-section h2 {
    font-size: 34px;
  }

  .article-section p {
    font-size: 17px;
    line-height: 1.72;
  }

  .article-note {
    padding: 24px;
  }

  .article-cta {
    margin-right: -18px;
    margin-left: -18px;
    padding: 34px 24px;
  }

  .article-cta .blog-button {
    width: 100%;
  }

  .related-posts {
    padding: 72px 0 86px;
  }

  .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .blog-footer {
    padding-top: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card__image-link img,
  .blog-card__read span {
    transition: none;
  }
}

/* =========================================
   Editorial refresh — Gallery, Locations, FAQ
   ========================================= */

body.gallery-page .gallery-heading,
body.locations-page .locations-heading,
body.faq-page .faq-heading {
  text-align: left;
}

body.gallery-page .gallery-heading > p,
body.locations-page .locations-heading > p {
  max-width: 720px;
  margin: 30px 0 0;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.gallery-category-nav,
.locations-jump-nav,
.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 42px;
  padding: 22px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-category-nav a,
.locations-jump-nav a,
.faq-topic-nav a {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 15px;

  border: 1px solid #d8d2ca;
  background: #ffffff;
  color: var(--text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.gallery-category-nav a:hover,
.locations-jump-nav a:hover,
.faq-topic-nav a:hover {
  background: var(--text);
  color: #ffffff;
  transform: translateY(-2px);
}

body.gallery-page .gallery-collection {
  padding: 92px 0 4px;
  scroll-margin-top: 30px;
}

.gallery-collection__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  column-gap: 64px;
  align-items: end;

  margin-bottom: 34px;
}

.gallery-collection__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 15px;
}

.gallery-collection__heading h2 {
  max-width: 720px;

  color: var(--text);
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.gallery-collection__heading > p:last-child {
  max-width: 490px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.gallery-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

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

.gallery-card {
  min-width: 0;
  margin: 0;
}

.gallery-card--feature {
  grid-column: span 2;
}

.gallery-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;

  background: #eeeae5;
}

.gallery-card--feature .gallery-card__media {
  aspect-ratio: 8 / 5;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  padding: 16px 2px 2px;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gallery-card figcaption span {
  display: block;
  margin-bottom: 7px;

  color: var(--text);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

body.locations-page .studio-location-card {
  scroll-margin-top: 30px;
}

.studio-location-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin: 25px 0 0;
  padding: 0;

  list-style: none;
}

.studio-location-services li {
  padding: 8px 11px;

  border: 1px solid #ded9d3;
  background: #f8f6f3;
  color: #55514c;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.locations-choice-guide {
  margin-top: 84px;
  padding-top: 72px;

  border-top: 1px solid var(--border);
}

.locations-choice-guide__heading {
  max-width: 800px;
}

.locations-choice-guide__heading h2 {
  margin: 12px 0 20px;

  color: var(--text);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.locations-choice-guide__heading > p:last-child {
  max-width: 660px;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.locations-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: 42px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.locations-choice-grid article {
  min-height: 300px;
  padding: 32px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.locations-choice-grid article > span {
  display: inline-block;
  margin-bottom: 54px;

  color: #9b9288;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.locations-choice-grid h3 {
  margin-bottom: 16px;

  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.locations-choice-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

body.faq-page .faq-section {
  padding-top: 104px;
  padding-bottom: 92px;
}

body.faq-page .faq-layout {
  align-items: start;
  gap: 68px;
}

body.faq-page .faq-heading {
  position: sticky;
  top: 34px;
}

.faq-topic-nav {
  gap: 8px;
  margin-top: 34px;
  padding: 18px 0;
}

.faq-topic-nav a {
  min-height: 34px;
  padding: 0 11px;
  font-size: 9px;
}

body.faq-page .faq-list details {
  scroll-margin-top: 30px;
  border-color: #d9d4ce;
}

body.faq-page .faq-list summary {
  padding-top: 28px;
  padding-bottom: 28px;

  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body.faq-page .faq-list details p {
  max-width: 700px;
}

body.faq-page .faq-list details p a {
  color: var(--text);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 900px) {
  .gallery-collection__heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .gallery-card--feature {
    grid-column: span 2;
  }

  .locations-choice-grid {
    grid-template-columns: 1fr;
  }

  .locations-choice-grid article {
    min-height: 0;
  }

  .locations-choice-grid article > span {
    margin-bottom: 34px;
  }

  body.faq-page .faq-heading {
    position: static;
  }
}

@media (max-width: 700px) {
  body.gallery-page .gallery-heading > p,
  body.locations-page .locations-heading > p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .gallery-category-nav,
  .locations-jump-nav,
  .faq-topic-nav {
    gap: 7px;
    margin-top: 30px;
    padding: 16px 0;
  }

  .gallery-category-nav a,
  .locations-jump-nav a,
  .faq-topic-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 8.5px;
  }

  body.gallery-page .gallery-collection {
    padding-top: 64px;
  }

  .gallery-collection__heading {
    margin-bottom: 26px;
  }

  .gallery-collection__heading h2 {
    font-size: 36px;
  }

  .gallery-collection__heading > p:last-child {
    font-size: 14px;
  }

  .gallery-collection-grid,
  .gallery-collection-grid--pedicure {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-card--feature {
    grid-column: span 1;
  }

  .gallery-card--feature .gallery-card__media,
  .gallery-card__media {
    aspect-ratio: 4 / 5;
  }

  .gallery-card figcaption {
    padding-top: 13px;
  }

  .locations-choice-guide {
    margin-top: 62px;
    padding-top: 54px;
  }

  .locations-choice-guide__heading h2 {
    font-size: 36px;
  }

  .locations-choice-guide__heading > p:last-child {
    font-size: 14px;
  }

  .locations-choice-grid {
    margin-top: 30px;
  }

  .locations-choice-grid article {
    padding: 26px;
  }

  .locations-choice-grid article > span {
    margin-bottom: 28px;
  }

  .locations-choice-grid h3 {
    font-size: 22px;
  }

  body.faq-page .faq-section {
    padding-top: 82px;
    padding-bottom: 64px;
  }

  body.faq-page .faq-layout {
    gap: 38px;
  }

  body.faq-page .faq-list summary {
    padding-top: 23px;
    padding-bottom: 23px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card img,
  .gallery-category-nav a,
  .locations-jump-nav a,
  .faq-topic-nav a {
    transition: none;
  }
}
