:root {
  --bg: #070a0d;
  --panel: #10161a;
  --panel-2: #161c20;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #aeb7bd;
  --text: #f7fafb;
  --red: #e21e2b;
  --red-dark: #b91520;
  --green: #27c764;
  --blue: #2aa8e8;
  --steel: #c8d0d5;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 30, 43, 0.14), transparent 24rem),
    linear-gradient(180deg, #050709 0%, #0c1114 36%, #070a0d 100%);
  font-family: "Onest", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 85%);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button:disabled {
  cursor: not-allowed;
}

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

svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem clamp(1rem, 3vw, 3.5rem);
  background: linear-gradient(180deg, rgba(5, 7, 9, 0.95), rgba(5, 7, 9, 0.75));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-block;
  color: #fff;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 0.86;
}

.brand span {
  color: var(--red);
}

.brand small {
  display: block;
  margin-top: 0.34rem;
  color: var(--steel);
  font-family: "Onest", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.9rem);
  color: #f2f4f5;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 0.6rem 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.55rem;
  align-items: center;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.phone svg {
  color: var(--red);
  grid-row: span 2;
}

.phone span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.round-link {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.round-link.telegram {
  background: var(--blue);
}

.round-link:hover,
.round-link:focus-visible,
.button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.45rem;
  color: #fff;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.button-red {
  background: linear-gradient(180deg, #f22936, var(--red-dark));
  box-shadow: 0 14px 38px rgba(226, 30, 43, 0.28);
}

.button-ghost {
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 43rem;
  padding-top: 5.1rem;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.96) 0%, rgba(5, 7, 9, 0.72) 34%, rgba(5, 7, 9, 0.18) 71%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.28), rgba(5, 7, 9, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(62rem, calc(100% - 2rem));
  padding: clamp(1.8rem, 4.3vw, 4.2rem) 0 10.2rem clamp(1rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 1.13rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
}

h1 {
  max-width: 58rem;
  margin-bottom: 1.1rem;
  font-size: clamp(3.1rem, 5.3vw, 5.25rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 43rem;
  color: #eef2f4;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.service-strip {
  position: absolute;
  left: clamp(1rem, 3vw, 3.4rem);
  right: clamp(1rem, 3vw, 3.4rem);
  bottom: 1.4rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background: rgba(12, 17, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-strip article {
  display: grid;
  min-height: 8.2rem;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.service-strip article:first-child {
  border-left: 0;
}

.service-strip svg {
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.7rem;
  color: var(--red);
  stroke-width: 1.45;
}

.service-strip h2 {
  max-width: 11rem;
  margin-bottom: 0.08rem;
  font-size: 1rem;
  line-height: 1.15;
}

.service-strip p {
  margin: 0;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.08;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 1.25rem clamp(1rem, 3vw, 3.4rem);
  background: linear-gradient(90deg, #11181c, #182025, #11181c);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-band div {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-band div:first-child {
  border-left: 0;
}

.trust-band svg {
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  color: var(--red);
}

.trust-band span {
  max-width: 17rem;
  color: #eef2f4;
  line-height: 1.35;
}

.section {
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 3vw, 3.4rem);
}

section,
form,
footer {
  scroll-margin-top: 6rem;
}

.prices {
  padding-top: clamp(1.45rem, 3.2vw, 2.5rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-heading.compact {
  margin-bottom: 0.8rem;
}

.section-heading h2,
.faq h2,
.booking h2,
.promo h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.heading-icon {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--red);
}

.section-heading a,
.section-heading span {
  color: var(--steel);
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.price-card {
  position: relative;
  display: grid;
  min-height: 10.7rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 18%, rgba(226, 30, 43, 0.24), transparent 7.4rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    #11171b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(226, 30, 43, 0.72), transparent 42%) top left / 100% 2px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
}

.price-card div {
  position: relative;
  z-index: 2;
  display: grid;
  width: auto;
  align-content: start;
  padding: 1rem 5.9rem 1rem 1rem;
}

.price-card h3 {
  min-height: 2.7rem;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.15;
}

.price-card strong {
  color: var(--red);
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 1;
  white-space: nowrap;
}

.price-card p {
  margin: 0.9rem 0 0;
  color: var(--steel);
  font-size: 0.93rem;
  line-height: 1.35;
}

.price-visual {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  display: grid;
  width: 4.7rem;
  height: 4.7rem;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.22), transparent 2.1rem),
    linear-gradient(145deg, rgba(226, 30, 43, 0.95), rgba(96, 12, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(226, 30, 43, 0.24);
  transform: translateY(-50%);
}

.price-visual svg {
  width: 2.65rem;
  height: 2.65rem;
  stroke-width: 1.55;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "workshop"
    "reviews";
  align-items: start;
  gap: 1rem;
  padding-bottom: clamp(1.6rem, 3vw, 2.3rem);
  background: rgba(255, 255, 255, 0.025);
}

.workshop,
.review-card,
.team-grid article,
.process-grid article,
.promo,
.booking,
.faq-item,
.team-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workshop,
.review-card,
.team-panel {
  padding: 1rem;
}

.workshop {
  grid-area: workshop;
}

.review-card {
  grid-area: reviews;
}

.workshop h2,
.review-card h2 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.reviews-track {
  display: grid;
  gap: 0.85rem;
  overflow: visible;
}

.gallery img,
.master-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
}

.gallery img:nth-child(3) {
  object-position: center 42%;
}

.reviews-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.review-item {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 11.6rem;
  padding: 0.95rem 3.35rem 0.95rem 0.95rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.review-next {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: #fff;
  background: rgba(226, 30, 43, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.review-next:hover,
.review-next:focus-visible {
  filter: brightness(1.08);
  transform: translateX(2px);
}

.review-next svg {
  width: 1.1rem;
  height: 1.1rem;
}

.review {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.avatar,
.master-badge {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, #30383d, #11161a);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.review h3 {
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
}

.stars {
  color: var(--red);
}

.review-item p {
  margin-bottom: 0.45rem;
  color: #d7dde0;
  font-size: 0.9rem;
  line-height: 1.38;
}

.review-item small {
  color: var(--muted);
  font-size: 0.78rem;
}

.team-work {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.85fr);
  gap: 1.4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.team-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 19rem;
  align-content: start;
  padding: 1rem;
}

.master-photo {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center 28%;
  margin-bottom: 0.95rem;
}

.team-grid h3,
.team-grid p {
  margin-bottom: 0.35rem;
}

.team-grid p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.42;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.process-grid article {
  position: relative;
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1rem 1rem 4.1rem;
}

.process-grid b {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: var(--red);
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.process-grid svg {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: 0;
  color: #fff;
}

.process-grid span {
  color: #edf1f3;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.faq-booking {
  display: grid;
  grid-template-columns: minmax(33rem, 1.05fr) minmax(31rem, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.faq {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  gap: 0.85rem;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 100%;
}

.faq h2 {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  min-height: 4.45rem;
  padding: 0.9rem 0.95rem;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  align-self: center;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.faq-item b {
  color: var(--steel);
  font-size: 1.15rem;
}

.faq-item em {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: var(--steel);
  font-style: normal;
  line-height: 1.45;
  transition: max-height 220ms ease, margin-top 220ms ease;
}

.faq-item.active em {
  max-height: 8rem;
  margin-top: 0.8rem;
}

.promo {
  position: relative;
  align-self: end;
  min-height: 11.7rem;
  overflow: hidden;
  padding: 0.9rem;
}

.promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
}

.promo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 7, 9, 0.95), rgba(5, 7, 9, 0.48));
}

.promo div {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 25rem;
  height: 100%;
  align-content: center;
}

.promo h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.05;
}

.promo p {
  margin-bottom: 0.75rem;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.25;
}

.promo .button {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
}

.booking {
  position: relative;
  display: grid;
  gap: 0.82rem;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(226, 30, 43, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0b1013;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.booking::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(226, 30, 43, 0.78), transparent 48%) top left / 100% 2px no-repeat,
    radial-gradient(circle at 90% 12%, rgba(226, 30, 43, 0.18), transparent 10rem);
}

.booking h2 {
  position: relative;
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.34rem;
}

label span {
  color: #546068;
  font-size: 0.78rem;
  font-weight: 700;
}

.booking label,
.booking .schedule-picker,
.booking .button,
.booking .form-note {
  position: relative;
}

.booking label span,
.booking .time-label {
  color: #aeb7bd;
}

.booking input,
.booking textarea,
.booking .date-toggle {
  color: #f7fafb;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.14);
}

.booking input::placeholder,
.booking textarea::placeholder {
  color: rgba(200, 208, 213, 0.62);
}

.booking input:focus,
.booking textarea:focus,
.booking .date-toggle:focus-visible {
  border-color: rgba(226, 30, 43, 0.82);
  box-shadow:
    0 0 0 3px rgba(226, 30, 43, 0.16),
    0 12px 34px rgba(0, 0, 0, 0.22);
}

input,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  color: #11161a;
  background: #fff;
  border: 1px solid #d9dfe3;
  border-radius: 5px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 30, 43, 0.12);
}

.schedule-picker {
  position: relative;
  display: grid;
  gap: 0.55rem;
}

.date-toggle {
  display: flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  color: #11161a;
  font-weight: 800;
  text-align: left;
  background: #fff;
  border: 1px solid #d9dfe3;
  border-radius: 5px;
  cursor: pointer;
}

.date-toggle svg {
  color: var(--red);
}

.booking .date-toggle:hover,
.booking input:hover,
.booking textarea:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.calendar-popover {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #d9dfe3;
  border-radius: 6px;
  box-shadow: 0 16px 45px rgba(13, 18, 21, 0.14);
}

.booking .calendar-popover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035)),
    #10161a;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.48);
}

.calendar-popover.hidden {
  display: none;
}

.time-label {
  color: #546068;
  font-size: 0.78rem;
  font-weight: 700;
}

.month-tabs,
.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.month-tab,
.calendar-grid button,
.time-grid button {
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  color: #182025;
  background: #fff;
  border: 1px solid #d5dce0;
  border-radius: 5px;
  cursor: pointer;
}

.booking .month-tab,
.booking .calendar-grid button,
.booking .time-grid button {
  color: #e8edf0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.booking .month-tab:hover,
.booking .calendar-grid button:not(:disabled):hover,
.booking .time-grid button:not(:disabled):hover {
  color: #fff;
  border-color: rgba(226, 30, 43, 0.48);
  background: rgba(226, 30, 43, 0.12);
}

.month-tab.active,
.calendar-grid button.active,
.time-grid button.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.calendar-grid button:disabled,
.time-grid button:disabled {
  color: #8a949b;
  background: #edf0f2;
  text-decoration: line-through;
}

.booking .calendar-grid button:disabled,
.booking .time-grid button:disabled {
  color: rgba(174, 183, 189, 0.46);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.38rem;
  margin-block: 0.55rem;
}

.calendar-grid.hidden {
  display: none;
}

.time-grid {
  margin-top: 0.4rem;
}

.booking .button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: #8a949b;
  font-size: 0.72rem;
  text-align: center;
}

.booking .form-note {
  color: rgba(200, 208, 213, 0.72);
}

.footer {
  background: #0a0e11;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(17rem, 1.1fr) minmax(12rem, 0.75fr) minmax(18rem, 1fr) minmax(14rem, 0.85fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 3.4rem);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column h2 {
  margin: 0 0 0.35rem;
  color: var(--red);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column p,
.footer-column span,
.footer-column a {
  margin: 0;
  color: #d7dde0;
  line-height: 1.42;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-brand p {
  max-width: 21rem;
  margin-top: 0.25rem;
}

.permalink {
  color: var(--muted) !important;
  font-size: 0.88rem;
}

.footer-address strong {
  color: #fff;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.1;
}

.footer-address p {
  color: var(--steel);
}

.footer-address .button {
  width: fit-content;
  min-height: 2.65rem;
  margin-top: 0.2rem;
  padding: 0.62rem 0.95rem;
  font-size: 0.85rem;
}

.legal-links {
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem clamp(1rem, 3vw, 3.4rem);
  color: #89939a;
  background: #050709;
  font-size: 0.86rem;
}

.cookie-banner {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: 0.85rem;
  background: rgba(12, 17, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner p {
  margin: 0;
  color: #e7ecef;
}

.cookie-banner .button {
  width: auto;
  min-height: 2.55rem;
}

.cookie-banner.accepted {
  display: none;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .service-strip,
  .trust-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -7.2rem 1rem 1rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    padding-bottom: 9.5rem;
  }

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

  .media-row,
  .team-work,
  .faq-booking,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-areas:
      "workshop"
      "reviews";
  }

}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, auto) auto;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
  }

  .header-actions {
    justify-content: end;
  }

  .site-header .button {
    width: auto;
    min-height: 2.75rem;
    padding: 0.7rem 0.95rem;
  }

  .phone,
  .round-link {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 3.2rem 1rem 8.2rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 9, 0.94), rgba(5, 7, 9, 0.68)),
      linear-gradient(180deg, rgba(5, 7, 9, 0.1), rgba(5, 7, 9, 0.96));
  }

  .eyebrow {
    font-size: 1rem;
  }

  h1 {
    max-width: 100%;
    font-size: 2.18rem;
    line-height: 1.05;
  }

  .hero-buttons,
  .section-heading,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-strip,
  .trust-band,
  .price-grid,
  .gallery,
  .team-grid,
  .reviews-track,
  .process-grid,
  .form-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .footer-address .button {
    width: 100%;
  }

  .service-strip article,
  .trust-band div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-strip article:first-child,
  .trust-band div:first-child {
    border-top: 0;
  }

  .price-card {
    min-height: 11.5rem;
  }

  .price-card div {
    padding-right: 5.4rem;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid article {
    min-height: auto;
  }

  .master-photo {
    aspect-ratio: 1.2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 350px) {
  h1 {
    font-size: 1.96rem;
  }
}
