/* ГрумСіті — повітряний лендинг */
:root {
  --bg: #fffbf9;
  --bg-muted: #fceef4;
  --lavender: #f0e8f7;
  --accent: #d46d8e;
  --accent-hover: #bf5a7c;
  --accent-light: #ebb4c9;
  --accent-deep: #a8557f;
  --accent-soft: rgba(212, 109, 142, 0.18);
  --accent-glow: rgba(235, 180, 205, 0.55);
  --promo-bg: #fde8f1;
  --text: #3a3538;
  --text-muted: #6b6469;
  --white: #ffffff;
  --radius-lg: clamp(20px, 3vw, 32px);
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 48px rgba(42, 38, 36, 0.08);
  --font: "Manrope", system-ui, sans-serif;
  --container: min(1160px, calc(100% - clamp(1.5rem, 6vw, 4rem)));
  --section-y: clamp(3.5rem, 10vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.bg-decor {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 12% 18%, rgba(235, 180, 205, 0.2) 0%, transparent 46%),
    radial-gradient(circle at 86% 68%, rgba(196, 176, 228, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 48% 92%, rgba(142, 201, 193, 0.12) 0%, transparent 38%);
  opacity: 1;
}

.bg-decor::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23d46d8e' fill-opacity='0.045' d='M20 15c3 0 5.5 2.5 5.5 5.5S23 26 20 26s-5.5-2.5-5.5-5.5S17 15 20 15zm40 0c3 0 5.5 2.5 5.5 5.5S63 26 60 26s-5.5-2.5-5.5-5.5S57 15 60 15zM12 48c3 0 5.5 2.5 5.5 5.5S15 59 12 59s-5.5-2.5-5.5-5.5S9 48 12 48zm56 0c3 0 5.5 2.5 5.5 5.5S59 59 56 59s-5.5-2.5-5.5-5.5S65 48 68 48z'/%3E%3C/svg%3E");
  opacity: 0.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 38, 36, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 2rem);
  padding-block: clamp(0.65rem, 2vw, 1.35rem);
  flex-wrap: nowrap;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo__mark {
  color: var(--accent);
  display: flex;
  flex-shrink: 0;
}

.logo__mark svg {
  width: clamp(36px, 9vw, 60px);
  height: auto;
  display: block;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
}

.header__phone svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.header__phone:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 2vw, 1.25rem);
  justify-content: center;
}

.nav__list a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  text-decoration: none;
}

.nav__list a:hover {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}

.nav__toggle {
  display: none;
  border: none;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 -6px 0 var(--accent), 0 6px 0 var(--accent);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .logo {
    order: 1;
    flex: 1 1 auto;
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .header__phone {
    order: 2;
    font-size: clamp(0.72rem, 2.8vw, 0.9rem);
    max-width: min(52vw, 13.5rem);
  }

  .header__phone-num {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  .nav {
    order: 3;
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    position: static;
  }

  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    width: auto;
    padding: 0.75rem 1rem 1rem;
    gap: 0.25rem;
    margin: 0;
    background: rgba(255, 251, 249, 0.98);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(42, 38, 36, 0.06);
    z-index: 60;
  }

  .nav__list.is-open {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 42%, var(--accent-deep) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 24px rgba(212, 109, 142, 0.28);
}

.btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(212, 109, 142, 0.36);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(212, 109, 142, 0.45);
}

.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent-soft);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
}

.link-more {
  font: inherit;
  font-weight: 700;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-more:hover {
  color: var(--accent-hover);
}

/* Hero */
.hero {
  padding-block: clamp(2.5rem, 7vw, 4.5rem) var(--section-y);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.hero__eyebrow {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: var(--accent);
}

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 38ch;
  margin: 0 0 2rem;
}

.promo {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: var(--promo-bg);
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero__tags li {
  background: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 109, 142, 0.14);
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: min(520px, 100%);
}

.hero__visual::before {
  content: "";
  position: absolute;
  bottom: -6%;
  right: -4%;
  width: 55%;
  height: 42%;
  background: linear-gradient(155deg, var(--accent-glow), rgba(212, 186, 236, 0.5), rgba(170, 216, 208, 0.45));
  border-radius: 45% 55% 48% 52%;
  opacity: 0.75;
  z-index: 0;
}

.hero__photo {
  margin: 0;
}

.hero__photo--single {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  background: var(--lavender);
}

.hero__photo--single img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

@media (max-width: 960px) {
  .hero__visual {
    justify-self: center;
    max-width: 420px;
  }
}

.features-bar {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 4rem) 0 0;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.features-bar__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.features-bar__icon {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.92;
}

@media (max-width: 768px) {
  .features-bar {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding-block: var(--section-y);
}

.section--muted {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
}

.section--advantages {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.section__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 0 auto 1rem;
  max-width: 22ch;
}

.section__title--left {
  text-align: left;
  margin-left: 0;
  max-width: none;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.section--salon .section__subtitle {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

/* Advantages grid */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  min-height: 520px;
}

.adv-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lavender);
  position: relative;
}

.adv-card--text {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.advantages-grid > .adv-card--text:nth-child(2) {
  grid-row: 2;
}

.adv-card--tall {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.adv-card--tall img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.adv-card__body {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.adv-card__title {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.adv-card--text p,
.adv-card__body p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: unset;
  }

  .adv-card--text,
  .adv-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .adv-card--tall img {
    min-height: 220px;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-muted);
  min-height: 220px;
}

.service-card--featured {
  grid-column: span 3;
  grid-row: span 2;
}

.service-card:not(.service-card--featured):not(.service-card--wide) {
  grid-column: span 3;
}

.service-card--wide {
  grid-column: span 6;
  min-height: 280px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(42, 38, 36, 0.82));
  color: var(--white);
}

.service-card__body--solid {
  position: relative;
  z-index: 1;
  inset: auto;
  height: 100%;
  background: var(--lavender);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.75rem;
}

.service-card--has-bg .service-card__body--solid {
  background: linear-gradient(180deg, rgba(255, 251, 249, 0.2) 0%, rgba(240, 232, 247, 0.88) 42%, rgba(240, 232, 247, 0.97) 100%);
}

.service-card__body--solid p {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}

.service-card__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

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

  .service-card--featured,
  .service-card:not(.service-card--featured):not(.service-card--wide),
  .service-card--wide {
    grid-column: span 1;
    min-height: 260px;
  }

  .service-card--featured {
    grid-row: span 1;
    min-height: 320px;
  }
}

/* Gallery */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

@media (max-width: 768px) {
  .gallery-row {
    grid-template-columns: 1fr;
  }
}

/* Masters */
.masters-soon-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.masters-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 251, 249, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(212, 109, 142, 0.1);
}

.masters-soon-card {
  max-width: 26rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 109, 142, 0.18);
  text-align: center;
}

.masters-soon-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.35;
}

.masters-soon-card__text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.masters-soon-wrap .slider-nav {
  display: none;
}

.masters-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.master-feature__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.master-feature__photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.master-feature__name {
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  font-weight: 800;
}

.master-feature__role {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.masters-slider-wrap {
  position: relative;
}

.masters-slider {
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-soft);
}

.masters-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 900px) {
  .masters-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .masters-list {
    flex-direction: row;
    gap: 1.25rem;
  }

  .masters-list__item {
    flex: 0 0 min(100%, 340px);
    min-width: min(100%, 340px);
    scroll-snap-align: start;
    padding: 1rem 1.15rem;
    background: var(--bg-muted);
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }
}

@media (min-width: 901px) {
  .masters-slider-wrap .slider-nav {
    display: none;
  }
}

.masters-list__item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.masters-list__item img {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.masters-list__item strong {
  display: block;
  font-size: 1.05rem;
}

.masters-list__item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--white);
}

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

/* Salon row */
.salon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.salon-row figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.salon-row img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

@media (max-width: 768px) {
  .salon-row {
    grid-template-columns: 1fr;
  }
}

/* Reviews */
.reviews-wrap {
  position: relative;
}

.reviews-slider {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
  height: 6px;
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: rgba(212, 109, 142, 0.38);
  border-radius: 999px;
}

.review-card {
  flex: 0 0 calc((100% - 1.5rem) / 2);
  min-width: calc((100% - 1.5rem) / 2);
  scroll-snap-align: start;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
}

.review-card__avatar {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.review-card__text {
  margin: 0;
  font-size: 1.05rem;
  flex: 1;
}

.review-card footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-nav--reviews {
  margin-top: 1.25rem;
}

@media (max-width: 700px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* FAQ + Contact */
.faq-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-block .section__title {
  margin-bottom: 1.5rem;
}

.faq-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  max-width: 420px;
  box-shadow: var(--shadow-soft);
}

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

.accordion__item {
  border-bottom: 1px solid rgba(42, 38, 36, 0.1);
  padding-block: 1rem;
}

.accordion__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.accordion__item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__item[open] summary::after {
  content: "−";
}

.accordion__item p {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.mobile-form-cta {
  display: none;
  margin-top: 2rem;
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.contact-card {
  background: var(--bg-muted);
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 6.5rem;
}

.contact-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.contact-card__lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.field span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 38, 36, 0.12);
  background: var(--white);
  color: var(--text);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}

.form-hint--error {
  color: #b33a5c;
}

.field--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

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

  .contact-card {
    position: static;
  }

  .mobile-form-cta {
    display: block;
  }
}

/* Location */
.section--location {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.location-address {
  font-style: normal;
  font-size: 1.15rem;
  margin: 1rem 0;
  line-height: 1.7;
}

.hours {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-fallback {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

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

/* Footer */
.site-footer {
  background: linear-gradient(168deg, #b85a82 0%, #8f4d6f 48%, #6b3f58 100%);
  color: var(--white);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
}

.logo--footer {
  color: var(--white);
}

.logo--footer .logo__mark {
  color: var(--white);
}

.footer__brand p {
  margin: 0.5rem 0 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer__phone {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.footer__phone a {
  color: var(--white);
  text-decoration: none;
}

.footer__phone a:hover {
  text-decoration: underline;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a {
  color: var(--white);
  opacity: 0.95;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__social a {
  color: var(--white);
}

.footer__bottom {
  margin-top: clamp(2rem, 4vw, 2.5rem);
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer__bottom p {
  margin: 0;
}

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

/* Modal */
.modal[hidden] {
  display: none !important;
}

.modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 100;
  min-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(0.75rem, 4vmin, 1.75rem) 1rem;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(42, 38, 36, 0.45);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin: auto;
  width: min(520px, calc(100% - 2rem));
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3.5vw, 2rem);
  box-shadow: 0 24px 80px rgba(42, 38, 36, 0.2);
}

.modal__dialog h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.modal__lead {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}

.modal__close:hover {
  background: var(--accent);
  color: var(--white);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.booking-form .field {
  margin-bottom: 0.65rem;
}

.modal__dialog .booking-form textarea {
  min-height: 4.25rem;
  resize: vertical;
}

.modal__dialog .booking-form .btn {
  margin-top: 0.35rem;
}

.booking-modal-success {
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0.25rem clamp(0.25rem, 1vw, 0.5rem);
}

.booking-modal-success__icon {
  color: var(--accent);
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.booking-modal-success__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.booking-modal-success__title:focus {
  outline: none;
}

.booking-modal-success__title:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
  border-radius: 4px;
}

.booking-modal-success__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 32ch;
  margin-inline: auto;
}

.booking-modal-success__hint {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.booking-modal-success__hint a {
  font-weight: 700;
  white-space: nowrap;
}
