/* =============================================================================
   ARYA OFFICES — Em Breve
   Hero único: logo grande + tagline + CTAs.
   Type: Jost (tipografia oficial da marca)
   ============================================================================= */

/* --------------------------------------------------------------------------- *
 *  RESET & TOKENS
 * --------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 4px; }

:root {
  /* ── Palette ──────────────────────────────────── */
  --c-black:        #0E0606;
  --c-ink:          #1A0A07;
  --c-bordo-deep:   #2A0A07;
  --c-bordo:        #50150F;

  --c-gold:         #E7A930;
  --c-gold-deep:    #A87617;
  --c-gold-soft:    #F2C66B;

  --c-cream:        #F2EBDC;
  --c-ivory:        #FAF7EE;
  --c-stone:        #C9BFA8;
  --c-stone-dim:    #9B9381;

  /* ── Type ──────────────────────────────────────── */
  --f-display: 'Jost', 'Futura', 'Helvetica Neue', system-ui, sans-serif;
  --f-body:    'Jost', 'Helvetica Neue', system-ui, sans-serif;

  /* ── Motion ────────────────────────────────────── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 0.85rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--c-cream);
  background: var(--c-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga';
  text-rendering: optimizeLegibility;
}

/* Grain texture overlay sutil (atmosfera editorial) */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* --------------------------------------------------------------------------- *
 *  HERO
 * --------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('/assets/fotos/FachadaAryaNoite.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.88) contrast(1.04);
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(80, 21, 15, 0.30), transparent 70%),
    linear-gradient(180deg,
      rgba(14, 6, 6, 0.62) 0%,
      rgba(14, 6, 6, 0.48) 40%,
      rgba(14, 6, 6, 0.72) 100%
    );
}

.hero__content {
  width: 100%;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4.5vh, 3.5rem);
}

/* ─── Logo grande ──────────────────────────────── */
.hero__logo {
  width: auto;
  height: clamp(150px, 19vw, 260px);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
  animation: heroFade 1.2s var(--ease-out) 0.05s both;
}

/* Controle de quebra de linha condicional (default: desktop) */
.br-mobile { display: none; }

/* ─── Kicker ───────────────────────────────────── */
.kicker {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(0.7rem, 0.65rem + 0.15vw, 0.82rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.82;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
  animation: heroFade 1.2s var(--ease-out) 0.25s both;
}
.kicker__dot {
  color: var(--c-gold);
  opacity: 0.95;
  font-size: 1rem;
  line-height: 0;
}

/* ─── Title (h1) ───────────────────────────────── */
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.8vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-cream);
  margin: 0 auto;
  max-width: 38ch;
  animation: heroFade 1.3s var(--ease-out) 0.4s both;
}

.hero__title strong {
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: -0.005em;
}

/* ─── CTA Buttons ─────────────────────────────── */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
  animation: heroFade 1.2s var(--ease-out) 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 1.75rem;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.4s var(--ease-out);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  z-index: -1;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }

.btn--primary {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
}
.btn--primary::before { background: var(--c-cream); }
.btn--primary:hover { color: var(--c-ink); }

.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream);
}
.btn--ghost::before { background: var(--c-cream); }
.btn--ghost:hover { color: var(--c-ink); }

/* ─── Animação base ────────────────────────────── */
@keyframes heroFade {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------- *
 *  RESPONSIVE
 * --------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .hero__content { gap: 1.75rem; }
  .hero__logo { height: clamp(110px, 32vw, 180px); }
  .hero__title {
    font-size: clamp(1.55rem, 6.5vw, 2.25rem);
    line-height: 1.28;
    max-width: 32ch;
    letter-spacing: -0.015em;
  }
  .br-mobile { display: inline; }
  .kicker { font-size: 0.72rem; letter-spacing: 0.28em; }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .hero__cta .btn { width: 100%; }
  .btn { padding: 0.95rem 1.25rem; }
}

@media (max-width: 380px) {
  .kicker__dot { display: none; }
  .kicker { gap: 0.45rem; }
}
