/* ═══════════════════════════════════════════════
   YUVIK REFORMAS — Global CSS
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Barlow:wght@200;300;400;500;600;700&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --black:   #000000;
  --black2:  #0a0a0a;
  --black3:  #111111;
  --black4:  #1a1a1a;
  --black5:  #222222;
  --white:   #ffffff;
  --white2:  #f5f5f3;
  --white3:  #e8e8e5;
  --g1: rgba(255,255,255,0.65);
  --g2: rgba(255,255,255,0.40);
  --g3: rgba(255,255,255,0.18);
  --g4: rgba(255,255,255,0.08);
  --border:  rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --header-h: 72px;
  --max-w: 1320px;
  --radius: 0px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  width: 100%;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease-out), height .2s var(--ease-out), background .2s, opacity .3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .25s;
}
.cursor.hover   { width: 14px; height: 14px; }
.cursor-ring.hover { width: 56px; height: 56px; border-color: rgba(255,255,255,.6); }
@media (hover: none) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: background .4s;
}
.site-header.scrolled { background: rgba(0,0,0,0.98); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text .tag {
  font-size: .54rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--g2);
  font-weight: 400;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  font-size: .68rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--g1);
  font-weight: 400;
  transition: color .25s;
  white-space: nowrap;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease-out);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a.active { color: var(--white); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--g1);
  transition: all .25s;
  white-space: nowrap;
}
.btn-tel svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }
.btn-tel:hover { border-color: var(--white); color: var(--white); }
.btn-cta-header {
  padding: 9px 22px;
  background: var(--white);
  color: var(--black);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.btn-cta-header:hover { background: var(--white2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 850;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  transition: color .25s;
}
.mobile-nav a:hover { color: var(--g2); }
.mobile-nav .mob-cta {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 13px 36px;
  margin-top: 8px;
}

/* ── FLOAT WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 18px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  box-shadow: 0 4px 22px rgba(37,211,102,.3);
  transition: transform .25s, box-shadow .25s;
}
.float-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.45); }
.float-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black2);
  border-top: 1px solid var(--border2);
  padding: 72px 48px 0;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border2);
}
.footer-brand-logo img { height: 56px; width: 56px; object-fit: contain; margin-bottom: 10px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-brand-sub {
  font-size: .54rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: .74rem;
  line-height: 1.9;
  color: var(--g1);
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .66rem; color: var(--g1);
  transition: all .25s;
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }
.footer-col-title {
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  font-size: .76rem;
  color: var(--g1);
  transition: color .25s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}
.fci-icon { color: var(--g2); font-size: .76rem; margin-top: 1px; flex-shrink: 0; }
.fci-text { font-size: .74rem; line-height: 1.6; color: var(--g1); }
.fci-text a { color: var(--g1); transition: color .25s; }
.fci-text a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .6rem; color: rgba(255,255,255,.2); letter-spacing: .06em; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .25s; }
.footer-bottom a:hover { color: var(--white); }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; }
.section { padding: 112px 48px; }
.section-dark { background: var(--black2); }
.section-tag {
  display: block;
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
}
.section-title em { font-style: italic; }
.section-title strong { font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .25s;
  cursor: none;
}
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--white2); }
.btn-outline {
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn-sm { padding: 10px 24px; font-size: .64rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-28px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-scale { transform: scale(.96); }
.reveal-scale.visible { transform: scale(1); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.grid-bg { background: var(--black4); }

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 1px solid var(--border2); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .header-inner { padding: 0 24px; }
  .site-nav, .btn-tel, .btn-cta-header { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 0; }
  .site-footer { padding: 56px 24px 0; }
  .float-wa { bottom: 16px; right: 16px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .btn { padding: 13px 28px; font-size: .65rem; }
  .header-inner { padding: 0 16px; }
  .float-wa { bottom: 12px; right: 12px; padding: 9px 14px; font-size: .62rem; }
  .site-footer { padding: 48px 16px 0; }
  .footer-bottom { padding: 14px 0; }
  .section { padding: 64px 20px; }
}
