/* =============================================================
   Uraan — Site Styles (extends colors_and_type.css)
   ============================================================= */
@import url('./colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button, a { font-family: inherit; }
button { background: none; border: 0; cursor: pointer; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red-500); color: #fff; }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
section { padding: clamp(72px, 9vw, 128px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow--light { color: var(--red-300); }
.title-hero {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(40px, 5.8vw, 80px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink-900); text-wrap: balance;
}
.title-section {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05; letter-spacing: -0.022em;
  color: var(--ink-900); text-wrap: balance;
}
.title-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.003em;
  line-height: 0.96;
  color: #fff;
  text-wrap: balance;
}
.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 60ch;
}
.has-underline { position: relative; display: inline-block; }
.has-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8%;
  height: 0.18em;
  background: var(--red-500);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawline 0.9s var(--ease-out) 0.3s forwards;
}
@keyframes drawline { to { transform: scaleX(1); } }
.text-red { color: var(--red-500); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 15px; padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--red-500); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-700); transform: translateY(-1px); box-shadow: 0 18px 40px rgba(197,23,34,.42); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-900); border: 2px solid var(--ink-900); }
.btn-ghost:hover { background: var(--ink-900); color: #fff; }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost--light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn-wa { background: #1da851; color: #fff; box-shadow: 0 12px 32px rgba(29,168,81,0.28); }
.btn-wa:hover { background: #178f44; transform: translateY(-1px); }
.btn-arrow { display: inline-block; transition: transform var(--dur-base); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 800;
  font-size: 15px; color: var(--ink-900);
}
.link-arrow:hover { color: var(--red-600); }
.link-arrow span.arrow { transition: transform var(--dur-base); }
.link-arrow:hover span.arrow { transform: translateX(4px); }
.link-arrow--light { color: #fff; }
.link-arrow--light:hover { color: var(--red-300); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.84);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.site-header.scrolled { border-bottom-color: var(--border-2); background: rgba(255,255,255,0.94); }
.nav {
  max-width: 1280px; margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 48px);
  display: flex; align-items: center; gap: 32px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(229, 35, 46, 0.12));
}
.nav-links { display: flex; gap: 26px; flex: 1; margin-left: 16px; list-style: none; }
.nav-link {
  font-family: var(--font-sans); font-weight: 700; font-size: 14.5px;
  color: var(--ink-900); padding: 6px 0; position: relative;
}
.nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red-500); transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur-base) var(--ease-out);
}
.nav-link:hover { color: var(--red-600); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--red-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; }
@media (max-width: 920px) {
  .brand img { height: 58px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: #fff; padding: 24px clamp(20px,4vw,32px);
  display: none; flex-direction: column;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.25s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mm-close { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-2); display: grid; place-items: center; }
.mm-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mm-list a {
  display: block;
  font-family: var(--font-sans); font-weight: 900;
  font-size: 36px; padding: 14px 0;
  color: var(--ink-900);
  border-bottom: 1px solid var(--border-2);
  letter-spacing: -0.02em;
}
.mm-list a:hover { color: var(--red-600); }
.mm-ctas { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 32px; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red-50);
  color: var(--red-700);
  font-family: var(--font-sans);
  font-weight: 700; font-size: 13px;
  border: 1px solid var(--red-100);
}
.chip--light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}
.chip--dark {
  background: var(--ink-900); color: #fff; border-color: var(--ink-900);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 160ms; }
.reveal[data-d="3"] { transition-delay: 240ms; }
.reveal[data-d="4"] { transition-delay: 320ms; }
.reveal[data-d="5"] { transition-delay: 400ms; }
.reveal[data-d="6"] { transition-delay: 480ms; }

/* ---------- Section heads ---------- */
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.section-head.left { text-align: left; align-items: flex-start; margin-left: 0; }
.section-head .lede { text-align: inherit; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 92px; right: 22px; z-index: 70;
  background: #1da851; color: #fff;
  height: 56px;
  border-radius: 999px;
  padding: 0 20px 0 16px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-weight: 800; font-size: 14.5px;
  box-shadow: 0 14px 32px rgba(29,168,81,0.42), 0 3px 8px rgba(0,0,0,0.08);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(29,168,81,0.55); }
.wa-float svg { width: 26px; height: 26px; }
@media (max-width: 560px) {
  .wa-float { bottom: 84px; }
  .wa-float { padding: 0; width: 56px; justify-content: center; }
  .wa-float .wa-label { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: 96px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,35,46,0.22), transparent 70%);
  filter: blur(40px);
}
.footer-cta {
  max-width: 1280px; margin: 0 auto 64px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end;
  position: relative;
}
@media (max-width: 880px) { .footer-cta { grid-template-columns: 1fr; gap: 32px; } }
.footer-cta-title {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; color: #fff;
}
.footer-cta-sub { font-size: 15.5px; line-height: 1.6; color: var(--ink-300); margin-top: 14px; max-width: 50ch; }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 48px;
  display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 32px;
  border-bottom: 1px solid var(--ink-700);
  position: relative;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } .footer-grid > div:first-child { grid-column: 1 / -1; } }
.footer-brand img {
  height: 66px;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}
.footer-brand p { font-size: 14px; line-height: 1.55; color: var(--ink-300); max-width: 32ch; }
.footer-brand .contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer-brand .contact a { font-size: 14px; color: var(--ink-300); }
.footer-brand .contact a:hover { color: #fff; }
.footer-socials {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-icon-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink-300);
  background: rgba(255,255,255,0.03);
  transition: color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.footer-icon-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.footer-icon-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}
.footer-col h5 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 13px; color: #fff; margin-bottom: 16px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-300); font-size: 14px; transition: color var(--dur-fast); }
.footer-col a:hover { color: #fff; }
.footer-disclaimer {
  max-width: 1280px; margin: 28px auto 0;
  padding: 18px clamp(20px, 4vw, 48px);
  font-size: 12.5px; line-height: 1.65;
  color: var(--ink-400);
  font-style: italic;
  max-width: 1280px;
}
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px) 0;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--ink-400); flex-wrap: wrap;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 13px; color: var(--ink-800);
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-1);
  color: var(--ink-900);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px var(--red-100);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 12.5px; color: var(--fg-3); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--ink-50);
  padding: clamp(72px, 9vw, 128px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
.page-hero .crumbs {
  font-size: 13px; font-weight: 700; color: var(--fg-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero .crumbs span { color: var(--red-600); }
.page-hero h1 { max-width: 16ch; margin-bottom: 18px; }
.page-hero .lede { max-width: 60ch; }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Photo card (reusable) ---------- */
.photo-card {
  position: relative; border-radius: 22px; overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.photo-card__photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease-out); }
.photo-card:hover .photo-card__photo { transform: scale(1.05); }
.photo-card__tint {
  position: absolute; inset: 0;
  background: var(--photo-tint);
  mix-blend-mode: multiply;
}
.photo-card__darken {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0) 30%, rgba(10,10,12,0.55) 100%);
}
.photo-card__body { position: relative; z-index: 2; color: #fff; padding: 28px; }

/* ---------- Stat block ---------- */
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--red-500);
  line-height: 1;
}
.stat-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-3);
  margin-top: 8px;
}

/* Utility */
.text-center { text-align: center; }
body.hide-wa .wa-float { display: none !important; }
