
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #1a1a1a;
  --border:  #2a2a2a;
  --white:   #f0ede8;
  --muted:   #888880;
  --gold:    #c9a84c;
  --gold2:   #e8c86a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 72px;
  --section-gap: clamp(80px, 10vw, 140px);
  --container: 1180px;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

.placeholder {
  background: #1c1c1c;
  border: 1.5px dashed #3a3a3a;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #555;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.placeholder::after {
  content: attr(data-label);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(240,237,232,.35);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(240,237,232,.06);
}
.btn--full { width: 100%; justify-content: center; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section { padding-block: var(--section-gap); }

.section-header { margin-bottom: clamp(40px, 6vw, 72px); text-align: center; }
.section-header--left { text-align: left; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.section-sub {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: clamp(20px, 5vw, 60px);
  transition: background .35s, backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-right: auto;
}
.nav__logo {
  color: var(--gold);
  font-size: 18px;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: clamp(20px, 3vw, 44px);
  margin-right: 36px;
}
.nav__links a {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid rgba(201,168,76,.5);
  border-radius: var(--radius);
  color: var(--gold);
  transition: all .2s;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: .04em;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-inline: clamp(20px, 5vw, 60px);
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__img.placeholder {
  border: none;
  border-radius: 0;
  font-size: 14px;
}
.hero__img.placeholder::after { content: attr(data-label); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.55) 50%,
    rgba(10,10,10,.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(70px, 14vw, 160px);
  line-height: .88;
  letter-spacing: .01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hero__title span {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s var(--ease-out) forwards;
}
.hero__title span:nth-child(1) { animation-delay: .35s; }
.hero__title span:nth-child(2) { animation-delay: .5s; }
.hero__title span:nth-child(3) { animation-delay: .65s; }

.hero__sub {
  font-family: var(--font-cond);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,237,232,.6);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .85s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 5vw, 60px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2s ease-in-out infinite 1.5s;
}

.services {
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--card);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color .3s;
  position: relative;
}
.service-card:hover { border-color: rgba(201,168,76,.4); }

.service-card--featured {
  background: #161616;
  border-color: rgba(201,168,76,.25);
}

.service-card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__name {
  font-family: var(--font-cond);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: .02em;
  color: var(--white);
  margin-top: 8px;
}

.service-card__arrow {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .25s;
  margin-top: 4px;
}
.service-card__arrow svg { width: 16px; height: 16px; }
.service-card:hover .service-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateX(4px);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about__img-col {
  position: relative;
  overflow: hidden;
}
.about__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.about__img.placeholder { border-radius: 0; border: none; }

.about__content {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.about__text {
  color: rgba(240,237,232,.65);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 480px;
}

.about__stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: .02em;
  color: var(--gold);
}

.stat__label {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.team { background: var(--black); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}
.team-card--center { transform: translateY(-20px); }

.team-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.team-card__img.placeholder { border: none; border-radius: 0; }
.team-card:hover .team-card__img { transform: scale(1.05); }

.team-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, transparent 100%);
  text-align: center;
}

.team-card__name {
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.team__cta { text-align: center; }

.gallery { background: var(--dark); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
  margin-bottom: 56px;
}

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  object-fit: cover;
  cursor: pointer;
  transition: opacity .3s;
}
.gallery__item.placeholder { border: none; min-height: 200px; }
.gallery__item--tall { aspect-ratio: 3/4; grid-row: span 2; }

.gallery__grid:hover .gallery__item { opacity: .6; }
.gallery__grid:hover .gallery__item:hover { opacity: 1; }

.gallery__cta { text-align: center; }

.reviews { background: var(--black); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color .3s;
}
.review-card:hover { border-color: rgba(201,168,76,.3); }

.review-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  overflow: hidden;
}
.review-card__avatar.placeholder {
  border-radius: 50%;
  border-style: solid;
  font-size: 9px;
  flex-shrink: 0;
}
.review-card__avatar.placeholder::after { content: "FOTO"; }

.review-card__name {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
}

.review-card__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }

.review-card__text {
  font-size: 13px;
  color: rgba(240,237,232,.6);
  line-height: 1.8;
}

.contact { background: var(--dark); }

.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(240,237,232,.7);
}
.contact__list svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__map {
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact__map.placeholder { border-style: solid; }
.contact__map iframe { width: 100%; height: 100%; border: 0; }

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group input::placeholder { color: var(--muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,.5);
}

.form-group--select,
.form-group--date { position: relative; }

.select-arrow,
.date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.form-group--date input { padding-right: 44px; }
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 44px;
  height: 100%;
  cursor: pointer;
}

.form-feedback {
  font-size: 13px;
  text-align: center;
  min-height: 20px;
  color: var(--gold);
}

.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  color: var(--muted);
  transition: color .2s;
}
.footer__social a:hover { color: var(--gold); }
.footer__social svg { width: 20px; height: 20px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.5); opacity: .4; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__img-col { height: 50vw; min-height: 300px; position: relative; }
  .team__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .team-card--center { transform: none; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contact__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .team__grid { grid-template-columns: 1fr 1fr; }
  .team__grid .team-card:last-child { display: none; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall { aspect-ratio: 1; grid-row: span 1; }

  .contact__wrap { grid-template-columns: 1fr; }
  .about__stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .team__grid { grid-template-columns: 1fr; }
  .team__grid .team-card:last-child { display: block; }
  .team-card { aspect-ratio: 4/3; }
  .gallery__grid { grid-template-columns: 1fr; }
}