/* =====================================================================
   Anel Construtora — Premium Design System v2
   ===================================================================== */

:root {
  --primary: #8b261f;
  --primary-light: #b03028;
  --primary-dark: #5e1a13;
  --primary-glow: rgba(139, 38, 31, 0.25);

  --bg: #ffffff;
  --bg-alt: #f5f4f2;
  --bg-dark: #0e0e0e;
  --bg-dark-2: #161616;

  --text: #111111;
  --text-muted: #666666;
  --text-light: #ffffff;

  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.45s var(--ease-out);

  --radius: 14px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 9rem 0;
  position: relative;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: var(--primary-light);
  background: var(--primary-glow);
}

/* ─── Preloader ──────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  height: 60px;
  opacity: 0;
  animation: preloaderFade 1.2s ease forwards;
}

@keyframes preloaderFade {
  to {
    opacity: 1;
  }
}

.preloader-bar {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 99px;
}

.preloader-text {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  border-radius: inherit;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ─── Section Tags & Titles ─────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-tag.light::before {
  background: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-title em {
  color: var(--primary);
  font-style: italic;
}

.section-title.light {
  color: var(--text-light);
}

.section-title.light em {
  color: rgba(255, 150, 130, 1);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
}

/* ─── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 54px;
  width: auto;
  transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

/* Over dark hero: completely white logo, no glow */
.header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

/* Scrolled with white header: original colors (dark text and red brand) */
.header.scrolled .logo img {
  filter: none !important;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 0.3rem 0;
}

.header.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.portal-btn {
  background: var(--primary) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.portal-btn::after {
  display: none !important;
}

.portal-btn:hover {
  background: var(--primary-light) !important;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 22px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  position: absolute;
  transition: all 0.35s var(--ease-out);
  border-radius: 2px;
}

.header.scrolled .mobile-menu-btn span {
  background: var(--text);
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 10px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 20px;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -8% 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(139, 38, 31, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 4rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--text-light);
  margin-bottom: 1.8rem;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .inner {
  display: inline-block;
  opacity: 0;
}

.hero-title .accent {
  color: var(--primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border-radius: 99px;
}

.scroll-line-inner {
  width: 100%;
  height: 40%;
  background: var(--primary);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(300%);
  }
}

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.stat-number.region-stat {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ─── About ──────────────────────────────────────────────── */
.about {
  background: var(--bg);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--primary);
  color: var(--text-light);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 12px 40px var(--primary-glow);
}

.about-badge strong {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-floater {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-floater div {
  display: flex;
  flex-direction: column;
}

.about-floater strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.about-floater span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
}

.pillar div {
  display: flex;
  flex-direction: column;
}

.pillar strong {
  font-weight: 700;
  font-size: 0.95rem;
}

.pillar span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Region ─────────────────────────────────────────────── */
.region {
  padding: 10rem 0;
}

.region-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.91) 40%, rgba(139, 38, 31, 0.55) 100%);
}

.region-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.region-text {
  position: relative;
}

.region-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.region-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--text-light);
  opacity: 0.85;
}

.feature-card h4 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── Developments ───────────────────────────────────────── */
.developments {
  background: var(--bg-dark);
  padding-bottom: 5rem;
  overflow: hidden;
}

.dev-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139, 38, 31, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  padding-bottom: 1rem;
}

.section-header .section-title {
  color: var(--text-light);
}

.section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 2rem;
}

/* Swiper override for full-bleed look */
.developments-swiper {
  width: 100%;
  padding: 3rem 0 2rem !important;
  overflow: visible !important;
}

.developments-swiper .swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: 420px !important;
  height: 580px;
  flex-shrink: 0;
}

.dev-card {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.dev-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.dev-card:hover .dev-card__img {
  transform: scale(1.06);
}

.dev-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0) 70%);
  transition: opacity 0.4s;
}

.dev-card:hover .dev-card__overlay {
  opacity: 0.9;
}

.dev-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.dev-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.dev-card__title {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}

.dev-card:hover .dev-card__title {
  transform: translateY(0);
}

.dev-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s;
}

.dev-card:hover .dev-card__desc {
  max-height: 80px;
  opacity: 1;
}

.dev-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition);
  transform: translateY(8px);
  opacity: 0;
}

.dev-card:hover .dev-card__btn {
  transform: translateY(0);
  opacity: 1;
}

.dev-card__btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px) !important;
}

/* Controls Row */
.dev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.dev-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.dev-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

.swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  gap: 0.5rem;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  transition: all 0.4s;
  cursor: pointer;
  opacity: 1 !important;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
}

/* Active slide highlight */
.swiper-slide-active .dev-card {
  transform: scale(1.04);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 80px rgba(139, 38, 31, 0.12);
}

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  background: var(--bg-alt);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  background: rgba(139, 38, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-item__text strong {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item__text a,
.contact-item__text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-item__text a:hover {
  color: var(--primary);
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.contact-card__header h3 {
  font-size: 1.6rem;
}

.cub-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(139, 38, 31, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.contact-card>p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cub-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cub-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cub-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cub-value {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.cub-value.accent {
  color: var(--primary);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
}

.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 56px;
  max-width: 330px !important;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  line-height: 1.7;
}

.footer-links h5,
.footer-contact-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-contact-col a,
.footer-contact-col p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover,
.footer-contact-col a:hover {
  color: var(--primary);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── GSAP Reveal helpers ────────────────────────────────── */
[data-reveal],
[data-reveal-up],
[data-reveal-left],
[data-reveal-right] {
  opacity: 0;
  will-change: opacity, transform;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-img-frame {
    aspect-ratio: 16/9;
  }

  .about-badge {
    left: 1rem;
  }

  .about-floater {
    right: 1rem;
  }

  .region-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100dvh;
    background: var(--bg);
    padding: 6rem 2rem 2rem;
    transition: right 0.5s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
  }

  .nav-link {
    color: var(--text) !important;
    font-size: 1.2rem;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  .region-features-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .section {
    padding: 6rem 0;
  }

  .swiper-slide {
    width: 320px !important;
    height: 460px;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}