@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700&family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900&family=DM+Mono:ital,wght@0,400;0,500&display=swap');

:root {
  --bg: #0b0b0d;
  --fg: #f2eee8;
  --muted: rgba(242, 238, 232, 0.55);
  --muted-strong: rgba(242, 238, 232, 0.7);
  --gold: #c4a86b;
  --gold-soft: rgba(196, 168, 107, 0.14);
  --line: rgba(255, 255, 255, 0.07);
  --panel: #141418;
  --panel-soft: rgba(20, 20, 24, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Barlow", sans-serif;
}

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

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

input,
textarea,
button {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.44em;
  margin: 0 0 18px;
}

.eyebrow--small {
  font-size: 0.66rem;
  letter-spacing: 0.35em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.button--gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.button--small {
  min-height: 46px;
}

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

.workshop-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.workshop-topbar__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.workshop-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  color: rgba(242, 238, 232, 0.92);
  transition: color 200ms ease;
}

.workshop-brand:hover {
  color: var(--gold);
}

.workshop-brand__back {
  width: 18px;
  height: 18px;
  color: inherit;
  flex: none;
}

.workshop-brand img {
  width: 86px;
  height: auto;
}

.workshop-brand__label {
  color: #fff;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.workshop-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.workshop-nav a {
  color: rgba(242, 238, 232, 0.78);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  font-family: "DM Mono", monospace;
}

.workshop-nav a:hover {
  color: #fff;
}

.workshop-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.workshop-phone__icon {
  font-size: 1rem;
  color: var(--gold);
}

.workshop-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.workshop-hero__bg,
.workshop-hero__overlay {
  position: absolute;
  inset: 0;
}

.workshop-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) saturate(1.02) sepia(0.1) contrast(1.02);
}

.workshop-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.workshop-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 240px;
  gap: 30px;
  align-items: end;
  padding: 84px 0 56px;
}

.workshop-hero__copy {
  max-width: 560px;
}

.workshop-hero__copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workshop-hero__copy h1 span {
  color: var(--gold);
}

.workshop-hero__copy p {
  max-width: 420px;
  color: var(--muted-strong);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 24px 0 0;
}

.workshop-hero__copy .button {
  margin-top: 34px;
}

.workshop-hero__stats {
  align-self: end;
  display: grid;
  gap: 22px;
  justify-items: end;
}

.hero-stat {
  text-align: right;
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(242, 238, 232, 0.38);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: 40px 0 0;
}

.section--about,
.section--services,
.section--contact {
  padding-top: 54px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.about-grid__image {
  position: relative;
}

.about-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--gold);
  color: #111;
  padding: 18px 22px;
  min-width: 156px;
}

.about-badge strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-badge span {
  display: block;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  margin-top: 4px;
}

.about-grid__copy h2,
.services-head h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.about-grid__copy p,
.services-head p {
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chips span {
  padding: 10px 14px;
  border: 1px solid rgba(196, 168, 107, 0.24);
  color: rgba(242, 238, 232, 0.82);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  margin-bottom: 26px;
}

.services-head h2 {
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.service-card {
  min-height: 250px;
  background: #16161b;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: #1d1d24;
  border-color: rgba(196, 168, 107, 0.16);
  transform: translateY(-2px);
}

.service-card__icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.service-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1;
}

.service-card p {
  margin: 14px 0 0;
  color: rgba(242, 238, 232, 0.6);
  line-height: 1.7;
}

.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px 38px;
  border: 1px solid rgba(196, 168, 107, 0.22);
  background: #1d1a19;
}

.promo-banner > div {
  width: 100%;
  max-width: none;
}

.promo-banner__content {
  display: grid;
  gap: 8px;
  min-width: 0;
  flex: 1;
  width: 100%;
}

.promo-banner__list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.promo-banner__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196, 168, 107, 0.12);
}

.promo-banner__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.promo-banner__title,
.promo-banner__price {
  min-width: 0;
}

.promo-banner__title {
  color: var(--fg);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-banner__price {
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-self: end;
  text-align: right;
}

.promo-banner__action {
  align-self: center;
  flex: none;
  justify-self: center;
  width: fit-content;
  padding-inline: 22px;
  margin-top: 8px;
}

.promo-banner h2 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy {
  padding-right: 24px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 22px;
}

.contact-list li {
  display: grid;
  gap: 6px;
}

.contact-list span,
.reasons .eyebrow--small,
.booking-form__label {
  color: rgba(242, 238, 232, 0.42);
  text-transform: uppercase;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.contact-list strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.reasons {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reasons ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(242, 238, 232, 0.78);
  display: grid;
  gap: 10px;
  line-height: 1.5;
}

.booking-form {
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
}

.booking-form__label {
  margin-bottom: 18px;
}

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

.booking-form input,
.booking-form textarea {
  width: 100%;
  margin-bottom: 16px;
  background: #17171c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 16px 14px;
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(242, 238, 232, 0.34);
}

.booking-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.contact-form-status {
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-form-status--success {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.09);
  color: #b7f7cb;
}

.contact-form-status--error {
  border-color: rgba(248, 113, 113, 0.42);
  background: rgba(248, 113, 113, 0.09);
  color: #fecaca;
}

.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 18px;
  color: rgba(242, 238, 232, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.booking-form .contact-form-consent input {
  width: 17px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.workshop-footer {
  border-top: 1px solid var(--line);
  background: #0d0d10;
  margin-top: 54px;
}

.workshop-footer__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(242, 238, 232, 0.56);
  text-transform: uppercase;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.workshop-footer__copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.workshop-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.workshop-footer__brand img {
  width: 86px;
}

.workshop-footer__brand span {
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

@media (max-width: 1100px) {
  .workshop-topbar__inner,
  .services-head,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .workshop-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .workshop-phone {
    justify-self: start;
  }

  .workshop-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workshop-hero__stats {
    justify-items: start;
    margin-top: 16px;
  }

  .hero-stat {
    text-align: left;
  }

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

  .service-card {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, 1240px);
  }

  .workshop-topbar__inner {
    min-height: 92px;
    gap: 12px;
  }

  .workshop-brand {
    gap: 8px;
  }

  .workshop-brand img,
  .workshop-footer__brand img {
    width: 70px;
  }

  .workshop-nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .workshop-nav a {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .workshop-hero {
    min-height: auto;
  }

  .workshop-hero__inner {
    padding: 60px 0 34px;
  }

  .workshop-hero__copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .workshop-hero__copy p {
    font-size: 0.96rem;
  }

  .section,
  .section--about,
  .section--services,
  .section--contact {
    padding-top: 42px;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
  }

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

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .booking-form {
    padding: 24px;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .workshop-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 120px;
    padding: 18px 0;
  }
}
