:root {
  --bg: #141210;
  --bg-alt: #1B1815;
  --bg-card: #221E19;
  --amber: #E0973F;
  --amber-light: #F4BD72;
  --amber-deep: #8A5A22;
  --slate: #9099A1;
  --cream: #F1EBE2;
  --grey: #A39C92;
  --line: rgba(144, 153, 161, .16);
  --r-sm: 4px;
  --r-md: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: scroll;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.photo {
  filter: grayscale(18%) sepia(7%) contrast(1.12) brightness(0.82) saturate(1.05);
}

.photo-light {
  filter: contrast(1.05) brightness(0.97) saturate(1.03);
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

h1, h2, h3 {
  margin: 0;
}

.display {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.04;
}

.label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12.5px;
}

.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  color: var(--amber-light);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(224, 151, 63, 0.7);
}

/* ===== footer ===== */
footer {
  padding: 54px 0 100px;
  border-top: 1px solid var(--line);
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.foot-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--grey);
}

.foot-social {
  display: flex;
  gap: 12px;
}

.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.foot-social a:hover {
  border-color: var(--amber);
}

.foot-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--grey);
  font-size: 12.5px;
}

.foot-langs {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
}

.foot-langs span {
  color: var(--amber-light);
}

/* ===== mobile sticky bar ===== */
#mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  background: rgba(20, 18, 16, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
}

@media (max-width: 760px) {
  #mobile-bar {
    display: flex;
  }
}
#mobile-bar a {
  flex: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}
/* ===== header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(20, 18, 16, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}

header.scrolled {
  background: rgba(20, 18, 16, 0.95);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  padding: 10px 24px;
}

.logo-mark {
  display: flex;
  align-items: center;
  height: 30px;
}

.logo-mark img {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(224, 151, 63, 0.45));
}

.logo-fallback {
  display: none;
  font-family: "Anton", sans-serif;
  font-size: 23px;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 0 14px rgba(224, 151, 63, 0.4);
}

.logo-fallback span {
  color: var(--amber-light);
}

nav.main-nav {
  display: flex;
  gap: 26px;
}

nav.main-nav a {
  font-family: "Oswald", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}

nav.main-nav a:hover {
  opacity: 1;
  color: var(--amber-light);
}

@media (max-width: 880px) {
  nav.main-nav {
    display: none;
  }
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-box {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Oswald", sans-serif !important;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream);
  cursor: pointer;
  border: 1px solid var(--line) !important;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: transparent;
}

.lang-btn svg {
  transition: transform 0.2s;
}

.lang-box.open .lang-btn svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  min-width: 150px;
  padding: 6px;
  display: none;
}

.lang-box.open .lang-menu {
  display: block;
}

.lang-menu a {
  display: flex;
  justify-content: space-between;
  padding: 9px 10px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 4px;
}

.lang-menu a:hover {
  background: rgba(224, 151, 63, 0.1);
  color: var(--amber-light);
}

.lang-menu .active {
  color: var(--amber-light);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Oswald", sans-serif;
  font-size: 14.5px;
}

.phone-link svg {
  stroke: var(--amber-light);
}

.header-address {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.header-address:hover {
  opacity: 1;
  color: var(--amber-light);
}

.header-address svg {
  flex: 0 0 auto;
  stroke: var(--amber-light);
}

.header-address__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.header-address__main {
  overflow: hidden;
  font-family: "Oswald", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-address__sub {
  margin-top: 3px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .phone-link span {
    display: none;
  }
  header,
  header.scrolled {
    padding-left: 14px;
    padding-right: 14px;
  }
  .header-right {
    gap: 10px;
  }
  .header-address {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    justify-content: center;
    max-width: none;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    opacity: 1;
  }
  .header-address__text {
    display: none;
  }
  .header-address svg {
    width: 17px;
    height: 17px;
  }
  .phone-link {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
  }
  .phone-link span {
    display: none;
  }
  .header-right .btn {
    padding-left: 14px;
    padding-right: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 576px) {
  .lang-btn {
    padding: 8px 9px;
  }
  .header-right {
    gap: 8px;
  }
  .header-right .btn {
    padding: 10px 12px;
    font-size: 12px;
  }
}
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 80px 0;
}

.section-head {
  margin-bottom: 38px;
  max-width: 700px;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-top: 12px;
}

.section-head p {
  color: var(--grey);
  margin-top: 14px;
  font-size: 15.5px;
  max-width: 600px;
}

.glow-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(224, 151, 63, 0.5), transparent);
  box-shadow: 0 0 12px rgba(224, 151, 63, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, opacity 0.2s;
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  color: #1A1410;
  box-shadow: 0 0 22px rgba(224, 151, 63, 0.28);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(224, 151, 63, 0.5);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(241, 235, 226, 0.3);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 18px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 22px rgba(224, 151, 63, 0.28);
  }
  50% {
    box-shadow: 0 0 40px rgba(224, 151, 63, 0.55);
  }
}
/* ===== team carousel ===== */
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 18px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.hours-pill svg {
  stroke: var(--amber-light);
}

.team-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
}

.team-card:hover {
  border-color: rgba(224, 151, 63, 0.5);
  box-shadow: 0 0 26px rgba(224, 151, 63, 0.18);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 15%;
  object-position: center 15%;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 18, 16, 0.95) 100%);
}

.team-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}

.team-info .role {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.team-info h3 {
  font-size: 20px;
  margin-top: 6px;
  font-family: "Anton", sans-serif;
}

.team-langs {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.team-langs span {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  border: 1px solid var(--slate);
  color: var(--slate);
  padding: 3px 8px;
  border-radius: 3px;
}

.team-info .btn {
  margin-top: 14px;
}

.team-note {
  color: var(--grey);
  font-size: 13px;
  margin-top: 20px;
}

/* ===== shared carousel mechanics ===== */
.carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
}

.car-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.car-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, opacity 0.2s;
  background: transparent;
  color: var(--cream);
}

.car-arrow:hover {
  border-color: var(--amber);
  background: rgba(224, 151, 63, 0.1);
  box-shadow: 0 0 16px rgba(224, 151, 63, 0.25);
}

.car-arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.car-track,
.rev-track {
  overflow: hidden;
  padding-bottom: 6px;
}

.team-swiper .swiper-wrapper,
.works-swiper .swiper-wrapper,
.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.team-swiper .swiper-slide,
.works-swiper .swiper-slide,
.reviews-swiper .swiper-slide {
  height: auto;
}

.team-swiper .swiper-slide {
  width: 270px;
}

.works-swiper .swiper-slide {
  width: 240px;
}

.reviews-swiper .swiper-slide {
  width: 280px;
}

@media (max-width: 480px) {
  .team-swiper .swiper-slide,
  .works-swiper .swiper-slide,
  .reviews-swiper .swiper-slide {
    width: 82vw;
  }
}
.work-card {
  width: 100%;
  height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.work-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.work-card:hover {
  border-color: rgba(224, 151, 63, 0.5);
  box-shadow: 0 0 22px rgba(224, 151, 63, 0.15);
}

.work-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s;
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-card .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  background: rgba(20, 18, 16, 0.75);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ===== reviews carousel ===== */
.rev-card {
  width: 100%;
  min-height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color 0.25s;
}

.rev-card:hover {
  border-color: rgba(224, 151, 63, 0.4);
}

.rev-stars {
  color: var(--amber-light);
  letter-spacing: 2px;
  font-size: 14px;
}

.rev-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 12px;
  font-style: italic;
}

.rev-who {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 16px;
  color: var(--cream);
}

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: static;
  text-align: center;
}

.rev-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  margin: 0 !important;
}

.rev-dots .swiper-pagination-bullet-active {
  background: var(--amber);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(224, 151, 63, 0.6);
}

/* ===== faq ===== */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-q h3 {
  font-size: 16.5px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  stroke: var(--amber-light);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  color: var(--grey);
  font-size: 14.5px;
  padding-top: 12px;
  max-width: 680px;
}

/* Shared form styles are kept near the sections that use them to preserve the source order. */
.yzee-male-club .form-card .wpcf7 p {
  margin: 0;
}

.yzee-male-club .form-card .wpcf7-form-control-wrap {
  display: block;
}

.yzee-male-club .form-card .field {
  margin-bottom: 14px;
}

.yzee-male-club .form-card .field input,
.yzee-male-club .form-card .field select,
.yzee-male-club .form-card .field textarea {
  width: 100%;
}

.yzee-male-club .form-card .check-row {
  margin: 4px 0 14px;
}

.yzee-male-club .form-card .check-row p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
}

.yzee-male-club .form-card .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.yzee-male-club .form-card .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.yzee-male-club .form-card .wpcf7-acceptance input {
  width: auto;
  height: auto;
  margin-top: 3px;
}

.yzee-male-club .form-card .wpcf7-submit {
  margin-top: 6px;
}

.yzee-male-club .form-card .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.yzee-male-club .form-card .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
}

/* ===== marquee ===== */
.marquee {
  background: var(--bg-alt);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(224, 151, 63, 0.35);
  border-bottom: 1px solid rgba(224, 151, 63, 0.35);
  box-shadow: 0 0 18px rgba(224, 151, 63, 0.12) inset;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: "Oswald", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: inline-flex;
  align-items: center;
  gap: 40px;
  text-shadow: 0 0 10px rgba(224, 151, 63, 0.4);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
/* ===== video block ===== */
#video-section {
  padding-top: 30px;
}

.video-player {
  position: relative;
  aspect-ratio: 16/7.2;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.video-player:hover {
  border-color: rgba(224, 151, 63, 0.5);
  box-shadow: 0 0 30px rgba(224, 151, 63, 0.15);
}

.video-player img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 55%);
}

.vp-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent);
}

.vp-top .vp-title {
  font-family: "Oswald", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

.vp-top .vp-tag {
  background: var(--amber);
  color: #1A1410;
  font-family: "Oswald", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
}

.vp-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.vp-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(241, 235, 226, 0.14);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(241, 235, 226, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.video-player:hover .vp-play {
  background: var(--amber);
  transform: scale(1.06);
  border-color: var(--amber);
  box-shadow: 0 0 26px rgba(224, 151, 63, 0.5);
}

.vp-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 16px 22px;
}

.vp-progress {
  height: 3px;
  background: rgba(241, 235, 226, 0.25);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 9px;
}

.vp-progress-fill {
  height: 100%;
  width: 8%;
  background: var(--amber);
  transition: width 0.2s linear;
}

.vp-meta {
  display: flex;
  justify-content: space-between;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  color: #ddd;
}

.video-note {
  color: var(--grey);
  font-size: 13px;
  margin-top: 14px;
}

.quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 46px;
  align-items: start;
}

@media (max-width: 880px) {
  .quick-row {
    grid-template-columns: 1fr;
  }
}
.quick-text p {
  color: var(--grey);
  font-size: 16px;
}

.mini-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-form .full {
  grid-column: 1/-1;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: #0F0D0B;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
}

.field input, .field select {
  height: 50px;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23A39C92' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.field select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23E0973F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

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

.field label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 7px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--grey);
  margin: 4px 0 6px;
}

.check-row input {
  margin-top: 3px;
}

/* ===== hero ===== */
#hero {
  padding: 0;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 35%), rgba(224, 151, 63, 0.16), transparent 45%);
  mix-blend-mode: overlay;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(224, 151, 63, 0.1) 0%, rgba(20, 18, 16, 0.55) 45%, rgba(20, 18, 16, 0.97) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 24px 60px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  color: #1A1410;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(224, 151, 63, 0.35);
  opacity: 0;
  animation: heroIn 0.7s ease forwards;
  animation-delay: 0.05s;
}

#hero h1 {
  font-size: clamp(34px, 6.2vw, 68px);
  max-width: 880px;
  color: var(--cream);
  opacity: 0;
  animation: heroIn 0.8s ease forwards;
  animation-delay: 0.18s;
}

#hero h1 .accent {
  color: var(--amber-light);
  text-shadow: 0 0 22px rgba(224, 151, 63, 0.55), 0 0 50px rgba(224, 151, 63, 0.25);
}

.hero-sub {
  color: #D9D2C6;
  font-size: 17px;
  max-width: 560px;
  margin-top: 18px;
  opacity: 0;
  animation: heroIn 0.8s ease forwards;
  animation-delay: 0.32s;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  animation: heroIn 0.8s ease forwards;
  animation-delay: 0.46s;
}

.hero-cta .btn-amber {
  animation: pulseGlow 2.8s ease-in-out 1.4s infinite;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge, #hero h1, .hero-sub, .hero-cta {
    animation: none;
    opacity: 1;
  }
  .hero-cta .btn-amber {
    animation: none;
  }
}
/* ===== stats ===== */
#stats {
  padding: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

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

.stat-cell {
  padding: 38px 26px;
  border-right: 1px solid var(--line);
}

.stat-cell:last-child {
  border-right: none;
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell:nth-child(2) {
    border-right: none;
  }
  .stat-cell {
    border-bottom: 1px solid var(--line);
  }
}
.stat-num {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 3.6vw, 44px);
  color: var(--cream);
}

.stat-num span {
  color: var(--amber-light);
  text-shadow: 0 0 18px rgba(224, 151, 63, 0.4);
}

.stat-label {
  color: var(--grey);
  font-size: 13px;
  margin-top: 6px;
  max-width: 180px;
}

/* ===== intro paragraph under stats ===== */
#intro {
  padding: 60px 0 20px;
}

#intro p {
  color: var(--grey);
  font-size: 17px;
  max-width: 760px;
}

/* ===== services ===== */
#services {
  background: var(--bg-alt);
}

.svc-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

@media (max-width: 880px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc-photos {
  display: grid;
  gap: 16px;
}

.svc-photos img {
  border-radius: var(--r-md);
  aspect-ratio: 4/5;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid var(--line);
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-row {
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 6px;
}

.price-row:hover {
  background: rgba(224, 151, 63, 0.05);
}

.price-row .pr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.price-row h3 {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pr-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pr-price {
  font-family: "Anton", sans-serif;
  font-size: 19px;
  color: var(--amber-light);
}

.pr-chevron {
  transition: transform 0.25s;
  stroke: var(--grey);
}

.price-row.open .pr-chevron {
  transform: rotate(180deg);
  stroke: var(--amber-light);
}

.pr-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pr-body p {
  color: var(--grey);
  font-size: 14px;
  padding-top: 10px;
  max-width: 480px;
}

.pr-badge {
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--amber);
  color: #1A1410;
  padding: 3px 8px;
  border-radius: 3px;
}

.svc-foot {
  margin-top: 30px;
}

/* ===== final cta + booking ===== */
#book {
  background: var(--bg-alt);
}

.book-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 993px) {
  .price-row h3 {
    max-width: 200px;
  }
}
@media (max-width: 880px) {
  .book-grid {
    grid-template-columns: 1fr;
  }
}
.book-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
}

.book-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

#success-msg {
  display: none;
  text-align: center;
  padding: 26px 6px;
}

#success-msg svg {
  margin: 0 auto 12px;
}

.location {
  padding: 110px 24px;
  background: radial-gradient(circle at 15% 20%, rgba(224, 151, 63, 0.08), transparent 34%), var(--bg);
}

.location__container {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.location__content {
  max-width: 520px;
}

.location__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.location__text {
  max-width: 490px;
  margin: 24px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.location__address {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 18px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.location__address:hover {
  color: var(--cream);
  background: rgba(224, 151, 63, 0.07);
  border-color: rgba(224, 151, 63, 0.45);
  transform: translateY(-2px);
}

.location__address-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--amber-light);
  background: rgba(224, 151, 63, 0.12);
  border: 1px solid rgba(224, 151, 63, 0.25);
  border-radius: 50%;
}

.location__address-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.location__address-main {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.location__address-sub {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.location__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.location__button {
  white-space: nowrap;
}

.location__map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream);
  opacity: 0.72;
  transition: color 0.2s, opacity 0.2s;
}

.location__map-link:hover {
  color: var(--amber-light);
  opacity: 1;
}

.location__map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.location__iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
  transition: filter 0.35s;
}

.location__map:hover .location__iframe {
  filter: grayscale(0.35) invert(0.05) contrast(1);
}

.location__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(20, 18, 16, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.location__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber-light);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(224, 151, 63, 0.8);
}

@media (max-width: 1200px) {
  .location__container {
    gap: 40px;
  }
  .location__map,
  .location__iframe {
    min-height: 500px;
    height: 500px;
  }
}
@media (max-width: 993px) {
  .location {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .location__container {
    grid-template-columns: 1fr;
  }
  .location__content {
    max-width: 680px;
  }
  .location__map,
  .location__iframe {
    min-height: 480px;
    height: 480px;
  }
}
@media (max-width: 768px) {
  .location {
    padding: 72px 20px;
  }
  .location__text {
    font-size: 15px;
  }
  .location__map,
  .location__iframe {
    min-height: 420px;
    height: 420px;
  }
}
@media (max-width: 576px) {
  .location {
    padding: 64px 14px;
  }
  .location__address {
    align-items: flex-start;
    padding: 15px;
  }
  .location__address-main {
    font-size: 15px;
  }
  .location__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .location__button {
    width: 100%;
    text-align: center;
  }
  .location__map-link {
    justify-content: center;
  }
  .location__map,
  .location__iframe {
    min-height: 360px;
    height: 360px;
  }
  .location__badge {
    left: 14px;
    bottom: 14px;
  }
}
/*# sourceMappingURL=style.css.map */
