* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f2ec;
  color: #171717;
}

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

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

.topbar {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: #d6a354;
}

.nav nav {
  display: flex;
  gap: 18px;
}

.nav nav a {
  color: #ddd;
  font-size: 14px;
}

.nav nav a:hover {
  color: #d6a354;
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.nav-btn,
.btn.primary {
  background: #d6a354;
  color: #111;
}

.btn.secondary {
  background: #111;
  color: #fff;
}

.hero {
  padding: 42px 0;
  background:
    linear-gradient(120deg, rgba(17,17,17,.92), rgba(17,17,17,.55)),
    url('/assets/barber-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(214,163,84,.15);
  color: #d6a354;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.badge.light {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -1px;
}

.hero p,
.page-hero p {
  font-size: 17px;
  line-height: 1.55;
  color: #e8e8e8;
  max-width: 680px;
  margin-top: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.small-note {
  font-size: 13px !important;
  color: #cfcfcf !important;
  margin-bottom: 0;
}

.hero-card {
  position: relative;
}
.hero-card {
  max-width: 400px;
  margin: 0 auto;
}

.hero-image {
  height: 450px;

  background-image: url('/assets/trainer.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero-awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.award-box {
  background: #fff;
  color: #111;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}

.award-box.dark {
  background: #111;
  color: #fff;
}

.award-box strong {
  display: block;
  font-size: 22px;
  color: #d6a354;
}

.award-box span {
  font-size: 14px;
  line-height: 1.4;
}
.section {
  padding: 42px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.section h2,
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 10px;
  letter-spacing: -1px;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}

.card h3 {
  font-size: 21px;
  margin: 0 0 10px;
}

.card p,
.content p {
  line-height: 1.6;
  color: #555;
  font-size: 16px;
  margin-top: 0;
}

.dark-section {
  background: #111;
  color: #fff;
}

.dark-section p {
  color: #ddd;
}

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

.center {
  text-align: center;
  margin-top: 22px;
}

.page-hero {
  background: #111;
  color: #fff;
  padding: 42px 0;
}

.content {
  max-width: 850px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.contact-box,
.form-box {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}

.contact-box h2,
.form-box h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-box p {
  line-height: 1.55;
  margin-top: 0;
}

.contact-line {
  margin-bottom: 8px;
}

.form-box {
  display: grid;
  gap: 10px;
}

.form-box label {
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 13px;
  border-radius: 13px;
  font-size: 15px;
}

textarea {
  min-height: 115px;
  resize: vertical;
}

.success {
  background: #d9f5df;
  padding: 11px;
  border-radius: 12px;
  font-size: 14px;
}

.error {
  background: #ffe0e0;
  padding: 11px;
  border-radius: 12px;
  font-size: 14px;
}

.footer {
  background: #080808;
  color: #fff;
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.footer p,
.footer a {
  color: #ccc;
  font-size: 14px;
}

/* HOME GALLERY PREVIEW */

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

.gallery-preview img {
  width: 100%;
  height: 260px;
  object-fit: cover;
object-position: center 30%;
  border-radius: 20px;
  display: block;
}

/* GALLERY PAGE */

.gallery-section {
  padding-top: 34px;
  padding-bottom: 38px;
}

.gallery-section-alt {
  background: #eee7dc;
}

.gallery-section .section-head {
  margin-bottom: 18px;
}

.gallery-showcase {
  max-width: 980px;
  margin: 0 auto;
}

.gallery-main-wrap {
  position: relative;
  width: 100%;
  background: #0f0f0f;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.gallery-main-image {
  width: 100%;
  height: 540px;
  object-fit: contain;
  display: block;
  background: #0f0f0f;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.gallery-arrow:hover {
  background: #d6a354;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.72);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-thumbs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.gallery-thumb {
  width: 44px;
  height: 36px;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: .45;
}

.gallery-thumb:hover {
  opacity: .85;
}

.gallery-thumb.active {
  border-color: #d6a354;
  opacity: 1;
  transform: scale(1.06);
}

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

/* FULLSCREEN IMAGE */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.94);
  padding: 24px 72px;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox-inner {
  max-width: 100%;
  text-align: center;
}

.image-lightbox-inner img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
}

.image-lightbox-counter {
  color: #fff;
  font-weight: 800;
  margin-top: 10px;
  font-size: 14px;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-arrow:hover,
.image-lightbox-close:hover {
  background: #d6a354;
}

.image-lightbox-prev {
  left: 18px;
}

.image-lightbox-next {
  right: 18px;
}

.no-scroll {
  overflow: hidden;
}

/* TABLET */

@media (max-width: 850px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    font-size: 21px;
  }

  .nav nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 2px;
  }

  .nav nav a {
    white-space: nowrap;
    font-size: 13px;
  }

  .nav-btn {
    padding: 9px 13px;
    font-size: 13px;
  }

  .hero {
    padding: 32px 0;
  }

  .hero-grid,
  .cards,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 30px;
    line-height: 1.13;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
  }

  .hero p,
  .page-hero p {
    font-size: 15.5px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

.hero-card {
  max-width: 390px;
  margin: 0 auto;
}

.hero-image {
  height: 420px;
  border-radius: 22px;

  background-image: url('/assets/trainer.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
  .section,
  .page-hero {
    padding: 32px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section h2,
  .section-head h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .card,
  .contact-box,
  .form-box {
    padding: 20px;
    border-radius: 20px;
  }

  .split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-preview img {
    height: 170px;
    border-radius: 16px;
  }

  .gallery-section {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .gallery-main-image {
    height: 420px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .gallery-thumb {
    width: 38px;
    height: 32px;
  }

  .image-lightbox {
    padding: 20px 52px;
  }

  .image-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .footer {
    padding: 30px 0;
  }
}

/* MOBILE */

@media (max-width: 520px) {
  .container {
    width: min(100% - 18px, 1180px);
  }

  .topbar {
    position: sticky;
    top: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    padding: 8px 0;
    align-items: center;
  }

  .logo {
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-btn {
    width: auto;
    padding: 8px 11px;
    font-size: 12px;
    line-height: 1;
  }

  .nav nav {
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 3px;
    scrollbar-width: none;
  }

  .nav nav::-webkit-scrollbar {
    display: none;
  }

  .nav nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #eee;
  }

  .hero {
    padding: 22px 0;
  }

  .page-hero {
    padding: 22px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
  }

  .hero p,
  .page-hero p {
    font-size: 14px;
    line-height: 1.45;
  }

  .badge {
    padding: 5px 9px;
    font-size: 11px;
    margin-bottom: 7px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
  }

  .small-note {
    font-size: 12.5px !important;
  }

.hero-card {
  max-width: 300px;
  margin: 0 auto;
}

.hero-image {
  height: 400px;
  border-radius: 18px;

  background-image: url('/assets/trainer.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

  .award-box {
    padding: 11px;
    border-radius: 15px;
  }

  .award-box strong {
    font-size: 18px;
  }

  .award-box span {
    font-size: 12.5px;
  }

  .section {
    padding: 24px 0;
  }

  .section-head {
    margin-bottom: 14px;
  }

  .section h2,
  .section-head h2 {
    font-size: 23px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .cards {
    gap: 12px;
  }

  .card {
    padding: 16px;
    border-radius: 17px;
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .card p,
  .content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-box,
  .form-box {
    padding: 16px;
    border-radius: 17px;
  }

  .contact-box h2,
  .form-box h2 {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .form-box {
    gap: 8px;
  }

  input,
  textarea {
    padding: 10px 11px;
    border-radius: 11px;
    font-size: 14px;
  }

  textarea {
    min-height: 95px;
  }

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

.gallery-preview img {
  height: 150px;
  object-fit: contain;
  background: #111;
  border-radius: 14px;
  padding: 3px;
}
  .gallery-section {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .gallery-section .section-head {
    margin-bottom: 12px;
  }

  .gallery-main-wrap {
    border-radius: 16px;
  }

  .gallery-main-image {
    height: 285px;
  }

  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .gallery-prev {
    left: 7px;
  }

  .gallery-next {
    right: 7px;
  }

  .gallery-counter {
    right: 8px;
    bottom: 8px;
    font-size: 12px;
    padding: 6px 10px;
  }

  .gallery-thumbs {
    margin-top: 9px;
    gap: 5px;
  }

  .gallery-thumb {
    width: 32px;
    height: 28px;
    border-radius: 6px;
  }

  .image-lightbox {
    padding: 18px 12px;
  }

  .image-lightbox-inner img {
    max-height: 82vh;
  }

  .image-lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .image-lightbox-arrow {
    width: 36px;
    height: 36px;
    font-size: 21px;
    background: rgba(255,255,255,.9);
  }

  .image-lightbox-prev {
    left: 8px;
  }

  .image-lightbox-next {
    right: 8px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer-grid {
    gap: 16px;
  }
}

.trainer-section {
  padding-top: 36px;
}

.trainer-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 34px;
  align-items: center;
}

.trainer-text h2 {
  margin-top: 0;
}

.trainer-photo-box {
  background: #fff;
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.trainer-main-photo {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.trainer-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.trainer-mini-gallery img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.trainer-gallery-section {
  padding-top: 20px;
}

.trainer-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trainer-work-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

@media (max-width: 850px) {
  .trainer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trainer-main-photo {
    height: 360px;
  }

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

  .trainer-work-grid img {
    height: 170px;
  }
}

@media (max-width: 520px) {
  .trainer-section {
    padding-top: 24px;
  }

  .trainer-grid {
    gap: 16px;
  }

  .trainer-photo-box {
    padding: 8px;
    border-radius: 18px;
  }

  .trainer-main-photo {
    height: 260px;
    border-radius: 14px;
  }

  .trainer-mini-gallery {
    gap: 6px;
  }

  .trainer-mini-gallery img {
    height: 58px;
    border-radius: 9px;
  }

  .trainer-work-grid {
    gap: 8px;
  }

  .trainer-work-grid img {
    height: 125px;
    border-radius: 12px;
  }
}

.trainer-clickable-img {
  cursor: zoom-in;
}

@media (max-width: 520px) {
  .hero-awards {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .award-box {
    padding: 11px;
    border-radius: 15px;
  }
}

.trainer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 520px) {
  .trainer-actions {
    gap: 8px;
  }
}

.seminar-cards {
  align-items: stretch;
}

.seminar-card {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.seminar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
}

.seminar-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  object-position: center 30%;

  display: block;
  background: #111;
  filter: contrast(1.05) saturate(1.05);
}

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

@media (max-width: 850px) {
  .seminar-card img {
    height: 260px;
  }

  .seminar-card-body {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .seminar-card img {
    height: 275px;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(0.93);
  }

  .seminar-card-body {
    padding: 16px;
  }

.hero-info-box {
  margin-top: 14px;
  padding: 13px;
  border-radius: 15px;
}

.hero-info-box strong {
  font-size: 15px;
}

.hero-info-box span {
  font-size: 13.5px;
}

.hero-info-box a {
  width: 100%;
  justify-content: center;
}

.nav nav a[href="/"] {
  display: none;
}
}

.hero-info-box {
  margin-top: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 14px 16px;
  max-width: 520px;
}

.hero-info-box strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-info-box span {
  display: block;
  color: #ddd;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.hero-info-box a {
  display: inline-flex;
  background: #d6a354;
  color: #111;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.cards > a.card {
  display: block;
  position: relative;
  transition: all .25s ease;
  cursor: pointer;
}

.cards > a.card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 20px;
  font-size: 22px;
  color: #d6a354;
  opacity: .7;
  transition: all .25s ease;
}

.cards > a.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
}

.cards > a.card:hover::after {
  right: 16px;
  opacity: 1;
}
html {
  scroll-behavior: smooth;
}

.legal-page {
  max-width: 900px;
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 24px;
}

.legal-page p {
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}

.legal-page a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.site-footer {
  padding: 34px 0;
  background: #111;
  color: #fff;
}

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

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-page h2 {
    font-size: 21px;
  }
}