/* ============================================================
   REKLAM:İZİ — DESIGN SYSTEM v2
   Premium Light / Bej / Gold
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS TOKENS ───────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:      #FAF8F4;
  --bej:        #F2EDE4;
  --bej-deep:   #E8E0D4;
  --dark:       #0C0B09;
  --dark-2:     #1A1916;
  --dark-3:     #2C2A27;
  --gold:       #C9A227;
  --gold-b:     #F2B705;
  --gold-pale:  rgba(201,162,39,0.12);
  --text:       #1A1916;
  --text-2:     #4A4740;
  --text-3:     #8C8680;
  --white:      #FFFFFF;
  --border:     rgba(26,25,22,0.08);
  --border-d:   rgba(255,255,255,0.08);

  /* Typography */
  --font:       'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Spacing */
  --nav-h:      105px;
  --section-v:  120px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;

  /* Easing */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Transitions */
  --t-fast:     0.2s var(--ease);
  --t-med:      0.5s var(--ease);
  --t-slow:     0.9s var(--ease);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── SELECTION ────────────────────────────────────────────── */
::selection {
  background: var(--gold-b);
  color: var(--dark);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-v) 0;
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold-b);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 44px;
  height: 44px;
  background: rgba(242,183,5,0.3);
  mix-blend-mode: normal;
  border: 1.5px solid var(--gold-b);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201,162,39,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s linear, width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* Gradient so always readable over dark hero */
  background: linear-gradient(to bottom, rgba(12,11,9,0.75) 0%, rgba(12,11,9,0) 100%);
  transition: background 0.5s var(--ease), box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(12, 11, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-d);
}

/* Over light sections — white nav */
#navbar.light {
  background: rgba(250, 248, 244, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

#navbar.light .nav-link,
#navbar.light .nav-logo-text {
  color: var(--text);
}

#navbar.light .nav-hamburger span {
  background: var(--text);
}

.nav-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 85px;
  max-height: 85px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-logo:hover .logo-img {
  transform: scale(1.04);
}

.logo-img-dark {
  display: none;
}

#navbar.light .logo-img-light {
  display: none;
}

#navbar.light .logo-img-dark {
  display: block;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.nav-logo-text em {
  color: var(--gold-b);
  font-style: normal;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark-2);
  border: 1px solid var(--border-d);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold-b);
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242,183,5,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}

#mobile-nav.open {
  transform: translateX(0);
}

#mobile-nav a {
  font-family: var(--font);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
  transition: color var(--t-fast);
  padding: 4px 0;
}

#mobile-nav a:hover {
  color: var(--white);
}

#mobile-nav .mob-cta {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-b) !important;
  margin-top: 32px;
  border: 1px solid var(--gold-b);
  padding: 12px 28px;
  border-radius: 50px;
}

#mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-d);
  background: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}

#mobile-nav-close:hover { background: rgba(255,255,255,0.08); }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active img { transform: scale(1); }

/* Gradient overlays */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,11,9,0.88) 0%,
    rgba(12,11,9,0.5) 60%,
    rgba(12,11,9,0.3) 100%
  );
}

.hero-grad-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(12,11,9,0.9), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Hero Content */
.hero-body {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 0 80px;
}

.hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-b);
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-b);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
  overflow: hidden;
}

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

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}

.hero-title .line-inner.revealed {
  transform: translateY(0);
}

.hero-title .accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.hero-title .gold {
  color: var(--gold-b);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold-b);
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,162,39,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all var(--t-fast);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  border-top: 1px solid var(--border-d);
  border-left: 1px solid var(--border-d);
}

.hero-stat {
  padding: 20px 36px;
  border-right: 1px solid var(--border-d);
}

.hero-stat-num {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Slider nav dots */
.hero-dots {
  position: absolute;
  left: 48px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--ease);
}

.hero-dot.active {
  background: var(--gold-b);
  width: 24px;
}

/* Slide progress line */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold-b);
  z-index: 7;
  transition: width 0.1s linear;
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold-b);
  overflow: hidden;
  padding: 14px 0;
  display: flex;
  user-select: none;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track + .marquee-track {
  animation-delay: -14s;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
}

.marquee-sep {
  width: 4px;
  height: 4px;
  background: var(--dark-3);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── SERVICES ─────────────────────────────────────────────── */
#services {
  background: var(--cream);
  padding: var(--section-v) 0;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-text {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-3);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.services-header-right {
  max-width: 320px;
}

.services-header-right p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: gap var(--t-fast);
}

.link-arrow:hover { gap: 14px; }

/* Services Grid — hover-reveal cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bej);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/* Image background */
.service-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: brightness(0.65) saturate(0.7);
}

.service-card:hover .service-card-img img {
  transform: scale(1.12);
  filter: brightness(0.45) saturate(0.6);
}

/* Card content */
.service-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.service-card-num {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-b);
  margin-bottom: 8px;
  transition: opacity var(--t-med);
}

.service-card-name {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0;
  transition: margin-bottom var(--t-med);
}

/* Reveal content */
.service-card-reveal {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}

.service-card:hover .service-card-reveal {
  max-height: 140px;
}

.service-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 14px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-b);
  letter-spacing: 0.05em;
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about {
  background: var(--bej);
  padding: var(--section-v) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-big-num {
  font-family: var(--font);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bej-deep);
  margin-bottom: 0;
  user-select: none;
}

.about-text-block {
  padding-top: 20px;
}

.about-text-block h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.about-text-block p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat-item {}

.about-stat-num {
  font-family: var(--font);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-num span {
  color: var(--gold);
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.badge-text strong {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.badge-text span {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
#portfolio {
  background: var(--cream);
  padding: var(--section-v) 0;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bej-deep);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.portfolio-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.7s var(--ease);
}

.portfolio-item:first-child img {
  aspect-ratio: unset;
  height: 100%;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.portfolio-item:hover .portfolio-item-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-item-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-b);
  margin-bottom: 4px;
}

.portfolio-item-name {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ── STATS BAND ───────────────────────────────────────────── */
#stats-band {
  background: var(--dark);
  padding: 80px 0;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-band-item {
  padding: 48px 40px;
  background: var(--dark-2);
  transition: background var(--t-fast);
}

.stat-band-item:hover {
  background: var(--dark-3);
}

.stat-band-num {
  font-family: var(--font);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-band-num .gold-char { color: var(--gold-b); }

.stat-band-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* ── PROCESS ──────────────────────────────────────────────── */
#process {
  background: var(--bej);
  padding: var(--section-v) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}

.process-step {
  padding: 40px 32px;
  background: var(--cream);
  transition: background var(--t-fast);
}

.process-step:hover {
  background: var(--white);
}

.process-step-num {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 20px;
}

.process-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.process-step h4 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
  background: var(--cream);
  padding: var(--section-v) 0;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bej);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow var(--t-med), transform var(--t-med);
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(26,25,22,0.08);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-b), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-company {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
#cta-section {
  background: var(--dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  font-family: var(--font);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.cta-inner h2 em {
  font-style: normal;
  color: var(--gold-b);
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

.cta-or::before, .cta-or::after {
  content: '';
  width: 48px;
  height: 1px;
  background: currentColor;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--dark-2);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-d);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-logo span {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-brand-logo span em {
  color: var(--gold-b);
  font-style: normal;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast);
}

.footer-social:hover {
  border-color: var(--gold-b);
  color: var(--gold-b);
  background: var(--gold-pale);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer-col h4 {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  transition: color var(--t-fast);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.float-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.5);
}

.float-wa svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.back-to-top {
  position: fixed;
  bottom: 94px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12,11,9,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t-fast);
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover { background: var(--gold-b); border-color: var(--gold-b); }
.back-to-top svg { width: 18px; height: 18px; stroke: white; stroke-width: 2; fill: none; }
.back-to-top:hover svg { stroke: var(--dark); }

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.9s;
  transition-timing-function: var(--ease);
}

[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="scale"] { transform: scale(0.94); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-stagger].revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: none; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) saturate(0.8);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(12,11,9,0.75) 0%,
    rgba(12,11,9,0.4) 50%,
    rgba(12,11,9,0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 5;
  padding-bottom: 56px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}

.breadcrumb a:hover { color: var(--gold-b); }

.breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero-content h1 {
  font-family: var(--font);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-v: 90px; }
  .container { padding: 0 32px; }
  .container-wide { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-badge { left: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 2; }
  .services-header { flex-direction: column; gap: 20px; }
  .portfolio-header { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  :root { --section-v: 72px; }
  .container { padding: 0 20px; }
  .container-wide { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-dots { left: 20px; }
  .hero-body { padding-bottom: 60px; }
  .cta-inner h2 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ── UTILITY ──────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
