/* ==========================================================================
   ADAM'S — Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: clamp(70px, 9vh, 120px);
  padding-bottom: clamp(70px, 10vh, 140px);
  background: #060606;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0908;
}

.hero__media-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center top;
  will-change: transform;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* üstte kalsın diye tepeden hizala — tabela burada kesiliyorsa kırpma bottom'dan olur, top'tan olmaz */
}

/* Crafted "interior" composition — vertical light pillars suggesting
   mirror-lit barber stations, built entirely in CSS gradients/layers */
.hero__scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 38%, rgba(201,160,99,0.10), transparent 70%),
    linear-gradient(180deg, #050505 0%, #0a0908 55%, #14110b 100%);
}

.hero__pillars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(36px, 6vw, 90px);
  padding-bottom: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.hero__pillar {
  width: 3px;
  height: 58%;
  align-self: center;
  background: linear-gradient(180deg, transparent, var(--color-gold-bright) 18%, var(--color-gold) 55%, transparent);
  filter: blur(1.5px);
  box-shadow: 0 0 30px 6px rgba(var(--color-gold-rgb), 0.45);
}

.hero__pillar:nth-child(2) { height: 68%; }
.hero__pillar:nth-child(3) { height: 74%; }
.hero__pillar:nth-child(4) { height: 64%; }

.hero__floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(40, 30, 18, 0.55));
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 75% at 50% 45%, transparent 45%, rgba(0,0,0,0.55) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__scrim-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.55) 38%, transparent 68%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__inner {
  max-width: 720px;
}

.hero__eyebrow {
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(56px, 9.5vw, 122px);
  line-height: 0.96;
  color: #fff;
}

.hero__title .reveal-text {
  display: block;
}

.hero__lede {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.7;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.hero__scroll-cue svg {
  width: 14px;
  height: 14px;
  animation: bob 2s var(--ease-luxury) infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero__social {
  display: flex;
  gap: 14px;
}

.hero__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  color: var(--color-text-dim);
  transition: border-color var(--dur-fast) var(--ease-luxury), color var(--dur-fast) var(--ease-luxury);
}

.hero__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hero__social svg {
  width: 16px;
  height: 16px;
}

.hero__wordmark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  opacity: 0.85;
}

.hero__wordmark .brand__name {
  font-size: 30px;
  color: rgba(255,255,255,0.92);
}

.hero__wordmark .brand__sub {
  color: rgba(255,255,255,0.45);
}

@media (max-width: 991px) {
  .hero__wordmark { display: none; }
  .hero__scrim-left { background: linear-gradient(180deg, rgba(6,6,6,0.85), rgba(6,6,6,0.5) 50%, rgba(6,6,6,0.85)); }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 18px; bottom: 28px; }
}

@media (max-width: 575px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
