@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --color-canvas: #FEF9F3;
  --color-sand: #FEF3C7;
  --color-ochre: #FDE68A;
  --color-earth: #78350F;
  --color-umber: #92400E;
  --color-copper: #B45309;
  --color-deep-copper: #92400E;
  --color-muted: rgba(180, 83, 9, 0.12);
  --grid-size: 72px;
  --transition-smooth: 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: var(--color-umber);
  background: var(--color-canvas);
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--color-earth);
  line-height: 0.88;
  letter-spacing: -0.005em;
}

h1 {
  font-weight: 700;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
}

h2 {
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--color-umber);
}

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

.floating-nav {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 24px;
  gap: 20px;
  background: linear-gradient(135deg, rgba(254,249,243,0.97), rgba(254,243,232,0.97));
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.28);
  border-radius: 24px;
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.16);
  transition: all 0.38s ease-out;
  max-width: calc(100vw - 48px);
  overflow-x: hidden;
}

.floating-nav.scrolled {
  transform: translateY(8px);
  opacity: 0.95;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
}

.nav-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-earth);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--color-umber);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-copper);
  transform: scale(1.06);
  z-index: 80;
}

.nav-cta {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(180, 83, 9, 0.45);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 56px rgba(180, 83, 9, 0.55);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(180, 83, 9, 0.1);
  border-radius: 16px;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.hamburger svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(254, 243, 232, 0.99);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  z-index: 10001;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  gap: 28px;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-earth);
  padding-left: 48px;
  text-align: left;
  opacity: 0;
  transform: translateX(28px);
  transition: all 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu .menu-line {
  height: 1.5px;
  width: 48px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-deep-copper));
  margin: 0 auto;
  opacity: 0;
}

.mobile-menu.active .menu-line {
  opacity: 1;
  transition-delay: 0.3s;
}

.mobile-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-close svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
}

.mobile-menu-cta {
  margin-top: auto;
  margin-bottom: 48px;
  margin-left: 48px;
  margin-right: 48px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 16px;
  text-align: center;
}

.main-content {
  padding-top: 120px;
}

.hero {
  min-height: 100vh;
  position: relative;
  background: var(--color-canvas);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid line {
  stroke: rgba(180, 83, 9, 0.12);
  stroke-width: 0.5;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(180, 83, 9, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px;
  padding: 140px 80px 200px;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-text {
  grid-column: span 6;
  z-index: 0;
}

.hero-title {
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  color: var(--color-earth);
  max-width: 520px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 48px);
  color: var(--color-copper);
  letter-spacing: 0.01em;
  margin-top: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(120, 53, 15, 0.5);
  margin-top: 12px;
}

.hero-description {
  font-size: 18px;
  color: var(--color-umber);
  line-height: 1.78;
  max-width: 480px;
  margin-top: 24px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.btn-primary {
  padding: 24px 52px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 0;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.5);
}

.btn-secondary {
  padding: 22px 44px;
  background: transparent;
  border: 2px solid var(--color-earth);
  color: var(--color-earth);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--color-copper);
  color: var(--color-copper);
  box-shadow: 0 12px 48px rgba(180, 83, 9, 0.2);
}

.hero-visual {
  grid-column: span 6;
  position: relative;
  height: 560px;
}

.hero-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
  perspective: 1200px;
}

.bento-item {
  border: 2px solid rgba(180, 83, 9, 0.2);
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.14);
  position: relative;
  overflow: hidden;
}

.bento-item.large {
  grid-row: span 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.12);
}

.bento-item.pattern {
  background: rgba(180, 83, 9, 0.06);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.bento-item.pattern svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
}

.hero-markers {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}

.hero-markers .line {
  width: 40px;
  height: 2px;
  background: rgba(180, 83, 9, 0.3);
}

.hero-markers svg {
  fill: var(--color-copper);
  stroke: white;
  stroke-width: 2px;
}

.hero-card {
  position: absolute;
  background: rgba(254, 249, 243, 0.98);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.2);
  padding: 14px 18px;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.12);
  z-index: 5;
}

.hero-card.top-right {
  top: 44px;
  right: 24px;
}

.hero-card.bottom-right {
  bottom: 44px;
  right: 24px;
  z-index: 4;
}

.hero-card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--color-earth);
}

.hero-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--color-umber);
  margin-top: 4px;
}

.geometric-underline {
  height: 6px;
  width: 200px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-deep-copper));
  margin-top: 20px;
}

.page-hero {
  height: 320px;
  position: relative;
  background: var(--color-canvas);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #D97706;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.page-hero h1 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero h1 svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
  width: 24px;
  height: 24px;
}

.precision-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.precision-markers svg {
  fill: var(--color-copper);
  stroke: white;
  stroke-width: 2px;
}

.section {
  padding: 96px 80px;
  position: relative;
}

.section-sand {
  background: var(--color-sand);
}

.section-ochre {
  background: var(--color-ochre);
}

.parallax-wipe {
  position: relative;
}

.parallax-wipe::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: inherit;
  transform: skewY(-2deg);
  z-index: 10;
}

.services-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.sticky-left {
  position: sticky;
  top: 0;
  height: 100vh;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border-right: 3px solid rgba(180, 83, 9, 0.32);
  box-shadow: 24px 0 96px rgba(180, 83, 9, 0.15);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-left h2 {
  font-size: 44px;
  color: var(--color-earth);
}

.sticky-left p {
  font-size: 15px;
  color: var(--color-umber);
  line-height: 1.7;
  max-width: 360px;
  margin-top: 20px;
}

.sticky-left .geometric-line {
  width: 56px;
  height: 2px;
  background: rgba(180, 83, 9, 0.2);
  margin-top: 20px;
}

.sticky-left .cta {
  margin-top: 28px;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 0;
  box-shadow: 0 12px 48px rgba(180, 83, 9, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.sticky-left .cta:hover {
  transform: translateY(-2px) scale(1.06);
}

.scroll-right {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 56px 40px;
  scroll-snap-y: mandatory;
}

.service-card {
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.15);
  padding: 20px;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.1);
  transition: all 0.35s ease;
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 32px 128px rgba(180, 83, 9, 0.18);
  opacity: 1;
}

.service-card-3d {
  height: 160px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-3d svg {
  stroke: white;
  stroke-width: 1.5px;
  fill: none;
  width: 64px;
  height: 64px;
}

.service-card h3 {
  font-size: 14px;
  color: var(--color-earth);
}

.service-card p {
  font-size: 13px;
  color: var(--color-umber);
  margin-top: 5px;
  line-height: 1.5;
}

.copper-accent {
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-deep-copper));
  margin-bottom: 12px;
}

.about-panels {
  display: flex;
  flex-direction: column;
}

.about-panel {
  width: 100%;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.18);
  padding: 0;
  margin-bottom: -68px;
  position: relative;
  transition: all 0.35s ease;
  z-index: 1;
}

.about-panel:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 32px 128px rgba(180, 83, 9, 0.18);
  opacity: 1;
}

.panel-copper-top {
  height: 4px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-deep-copper));
}

.panel-content {
  display: flex;
  padding: 28px;
  gap: 24px;
}

.panel-icon {
  flex-shrink: 0;
}

.panel-icon svg {
  stroke: var(--color-copper);
  stroke-width: 3px;
  fill: none;
  width: 48px;
  height: 48px;
}

.panel-text h3 {
  font-size: 17px;
  color: var(--color-earth);
}

.panel-text p {
  font-size: 14px;
  color: var(--color-umber);
  margin-top: 10px;
  line-height: 1.65;
}

.panel-text .geometric-line {
  width: 40px;
  height: 2px;
  background: rgba(180, 83, 9, 0.15);
  margin-top: 12px;
}

.panel-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 52px;
  color: var(--color-copper);
  margin-top: 12px;
}

.panel-image {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(180deg, var(--color-copper), var(--color-deep-copper), var(--color-copper));
  transform: translateX(-50%);
}

.timeline-item {
  width: calc(50% - 80px);
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.15);
  padding: 24px 28px;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.15);
  position: relative;
  margin-bottom: -68px;
  transition: all 0.35s ease;
}

.timeline-item:nth-child(odd) {
  align-self: start;
  margin-right: auto;
}

.timeline-item:nth-child(even) {
  align-self: end;
  margin-left: auto;
  margin-top: 68px;
}

.timeline-item:hover {
  z-index: 82;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 32px 128px rgba(180, 83, 9, 0.2);
}

.timeline-item .icon {
  margin-bottom: 12px;
}

.timeline-item .icon svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
  width: 48px;
  height: 48px;
}

.timeline-item h3 {
  font-size: 18px;
  color: var(--color-earth);
}

.timeline-item p {
  font-size: 13px;
  color: var(--color-umber);
  margin-top: 6px;
  line-height: 1.5;
}

.timeline-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  margin-top: 14px;
}

.timeline-item .geometric-line {
  width: 48px;
  height: 2px;
  background: rgba(180, 83, 9, 0.2);
  margin-top: 12px;
}

.timeline-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: rgba(180, 83, 9, 0.18);
  position: absolute;
  top: 14px;
  right: 20px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--color-copper);
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--color-copper);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.carousel-container {
  position: relative;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  margin-top: 48px;
  margin-bottom: 80px;
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 280px;
  height: 300px;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  width: 280px;
  min-height: 300px;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.18);
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.12);
  transition: all 0.4s ease;
}

.carousel-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.carousel-card .star-icon {
  position: absolute;
  top: 82px;
  right: 20px;
}

.carousel-card .star-icon svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
  width: 36px;
  height: 36px;
}

.carousel-card h3 {
  font-size: 14px;
  color: var(--color-earth);
  padding: 14px 18px 4px;
}

.carousel-card p {
  font-size: 12px;
  color: var(--color-umber);
  padding: 0 18px;
  line-height: 1.5;
}

.carousel-card .copper-accent {
  margin: 10px 18px;
  width: 44px;
}

.carousel-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(180, 83, 9, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.carousel-nav:hover {
  box-shadow: 0 0 0 8px rgba(180, 83, 9, 0.1);
}

.carousel-nav svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
}

.carousel-nav.prev {
  left: -80px;
}

.carousel-nav.next {
  right: -80px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
  min-height: 520px;
}

.bento-item-achievement {
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.18);
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.12);
  padding: 24px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.bento-item-achievement:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 32px 128px rgba(180, 83, 9, 0.18);
  opacity: 1;
}

.bento-item-achievement.span-8 {
  grid-column: span 8;
}

.bento-item-achievement.span-4 {
  grid-column: span 4;
}

.bento-item-achievement.span-6 {
  grid-column: span 6;
}

.bento-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bento-icons-grid svg {
  stroke: var(--color-copper);
  stroke-width: 3px;
  fill: none;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 48px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.12);
  cursor: pointer;
  transition: all 0.35s ease;
}

.team-card:hover {
  background: white;
  border-color: rgba(180, 83, 9, 0.25);
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.12);
  z-index: 82;
  transform: scale(1.08);
}

.team-card svg {
  stroke: rgba(180, 83, 9, 0.4);
  stroke-width: 2px;
  fill: none;
  width: 18px;
  height: 18px;
  margin-right: 16px;
  flex-shrink: 0;
}

.team-card h4 {
  font-size: 15px;
  color: var(--color-earth);
  flex: 1;
}

.team-card .arrow {
  stroke: rgba(120, 53, 15, 0.3);
  transition: all 0.2s ease;
}

.team-card:hover .arrow {
  stroke: var(--color-copper);
  transform: translateX(4px);
}

.team-reveal {
  position: relative;
  min-height: 380px;
}

.reveal-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(28px);
  transition: all 0.4s ease;
}

.reveal-card.active {
  opacity: 1;
  transform: translateX(0) scale(1.08);
}

.reveal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 80px rgba(180, 83, 9, 0.15);
}

.reveal-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 18px;
  background: rgba(180, 83, 9, 0.92);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.reveal-info {
  padding-top: 16px;
}

.reveal-info p {
  font-size: 14px;
  color: var(--color-umber);
  line-height: 1.6;
}

.node-graph {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.node-center {
  width: 140px;
  height: 140px;
  background: rgba(180, 83, 9, 0.06);
  border: 2.5px solid var(--color-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.16);
}

.node-center .inner-circle {
  width: 100px;
  height: 100px;
  border: 2.5px solid rgba(146, 64, 14, 0.2);
  border-radius: 50%;
  position: absolute;
}

.node-center .outer-circle {
  width: 180px;
  height: 180px;
  border: 2.5px solid rgba(180, 83, 9, 0.1);
  border-radius: 50%;
  position: absolute;
}

.node-center svg {
  stroke: white;
  stroke-width: 2.5px;
  fill: none;
  width: 56px;
  height: 56px;
}

.node-peripheral {
  position: absolute;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.15);
  padding: 14px 18px;
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.1);
  margin-bottom: -68px;
  transition: all 0.35s ease;
  width: 180px;
}

.node-peripheral:hover {
  z-index: 82;
  transform: scale(1.1);
  box-shadow: 0 32px 128px rgba(180, 83, 9, 0.18);
  opacity: 1;
}

.node-peripheral svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.node-peripheral h4 {
  font-size: 13px;
  color: var(--color-earth);
}

.node-peripheral p {
  font-size: 11px;
  color: var(--color-umber);
  margin-top: 3px;
  line-height: 1.4;
}

.node-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-copper);
  margin-top: 8px;
}

.masonry-grid {
  columns: 4;
  column-gap: 56px;
}

.masonry-item {
  break-inside: avoid;
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.18);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.2);
  padding: 40px;
  margin-bottom: -68px;
  transition: all 0.35s ease;
}

.masonry-item:hover {
  z-index: 84;
  transform: scale(1.14);
  box-shadow: 0 32px 128px rgba(180, 83, 9, 0.25);
}

.masonry-item .icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.masonry-item .icons-grid svg {
  stroke: var(--color-copper);
  stroke-width: 3px;
  fill: none;
}

.masonry-item h3 {
  font-size: 20px;
  color: var(--color-earth);
}

.masonry-item p {
  font-size: 17px;
  color: var(--color-umber);
  line-height: 1.8;
  margin-top: 16px;
}

.masonry-item .copper-top {
  height: 8px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-deep-copper));
  margin: -40px -40px 24px;
  width: calc(100% + 80px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: rgba(254, 249, 243, 0.97);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.15);
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  flex-grow: 2.6;
  background: white;
  border-color: rgba(180, 83, 9, 0.28);
  z-index: 82;
  transform: scale(1.08);
}

.contact-card svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 15px;
  color: var(--color-earth);
}

.contact-card p {
  font-size: 13px;
  color: rgba(146, 64, 14, 0.7);
  margin-top: 6px;
  line-height: 1.5;
}

.contact-card .geometric-line {
  width: 48px;
  height: 2px;
  background: rgba(180, 83, 9, 0.15);
  margin-top: 12px;
}

.contact-card .value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 52px;
  color: var(--color-copper);
  margin-top: 10px;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-earth);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(180, 83, 9, 0.2);
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--color-earth);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.1);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(180, 83, 9, 0.35);
}

.map-container {
  width: 100%;
  height: 400px;
  border: 2px solid rgba(180, 83, 9, 0.2);
  margin-top: 48px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.site-footer {
  background: var(--color-earth);
  color: var(--color-canvas);
  padding: 64px 80px 32px;
  overflow-x: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 100%;
}

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

.footer-brand .logo svg {
  stroke: var(--color-copper);
  stroke-width: 2.5px;
  fill: none;
  width: 32px;
  height: 32px;
}

.footer-brand .logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-canvas);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(254, 249, 243, 0.7);
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 14px;
  color: var(--color-canvas);
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  font-size: 13px;
  color: rgba(254, 249, 243, 0.7);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-copper);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 249, 243, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(254, 249, 243, 0.5);
}

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

.footer-legal a {
  font-size: 12px;
  color: rgba(254, 249, 243, 0.5);
}

.footer-legal a:hover {
  color: var(--color-copper);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(254, 249, 243, 0.98);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(180, 83, 9, 0.2);
  padding: 24px 28px;
  max-width: 420px;
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.2);
  z-index: 9999;
}

.cookie-banner h4 {
  font-size: 15px;
  color: var(--color-earth);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--color-umber);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 12px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--color-copper), var(--color-deep-copper));
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  border: 2px solid var(--color-umber);
  color: var(--color-umber);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: all 0.7s ease-out;
}

.reveal-scale {
  transform: scale(0.96);
  transition: transform 0.7s ease-out;
}

.reveal-editorial {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.85s ease-out;
}

.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.02); opacity: 1; }
}

.grid-animated {
  animation: gridPulse 5s ease-in-out infinite alternate;
}

.copper-point {
  width: 8px;
  height: 8px;
  background: var(--color-copper);
  border: 2px solid white;
  border-radius: 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--color-earth);
}

.section-header p {
  font-size: 16px;
  color: var(--color-umber);
  margin-top: 16px;
  line-height: 1.7;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 80px;
}

.thank-you-section h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-earth);
}

.thank-you-section p {
  font-size: 18px;
  color: var(--color-umber);
  max-width: 480px;
  margin-top: 24px;
  line-height: 1.8;
}

.thank-you-section .btn-primary {
  margin-top: 40px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--color-earth);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--color-earth);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  color: var(--color-umber);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 16px;
  color: var(--color-umber);
  line-height: 1.8;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  :root {
    --grid-size: 56px;
  }

  body {
    font-size: 16px;
  }

  .floating-nav {
    top: 16px;
    left: 16px;
    right: 16px;
    height: 64px;
    max-width: calc(100vw - 32px);
    overflow-x: hidden;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 12px 20px;
    font-size: 11px;
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 120px 40px 100px;
  }

  .hero-text {
    grid-column: span 12;
  }

  .hero-visual {
    grid-column: span 12;
    height: 400px;
  }

  .section {
    padding: 64px 40px;
  }

  .services-sticky {
    grid-template-columns: 1fr;
  }

  .sticky-left {
    position: relative;
    height: auto;
    border-right: none;
    border-bottom: 3px solid rgba(180, 83, 9, 0.32);
  }

  .scroll-right {
    overflow: visible;
  }

  .team-layout {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .masonry-grid {
    columns: 2;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --grid-size: 48px;
  }

  body {
    font-size: 16px;
  }

  .hero-content {
    padding: 100px 20px 80px;
    gap: 32px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    height: 320px;
  }

  .hero-bento {
    gap: 12px;
  }

  .hero-card {
    padding: 10px 14px;
  }

  .hero-card.top-right {
    top: 20px;
    right: 10px;
  }

  .hero-card.bottom-right {
    bottom: 20px;
    right: 10px;
  }

  .section {
    padding: 48px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .masonry-grid {
    columns: 1;
  }

  .masonry-item {
    padding: 24px;
    margin-bottom: -40px;
  }

  .masonry-item .copper-top {
    margin: -24px -24px 16px;
    width: calc(100% + 48px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 48px 20px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .thank-you-section {
    padding: 80px 20px;
  }

  .legal-content {
    padding: 32px 20px;
  }

  .floating-nav {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 56px;
    padding: 0 16px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .bento-item-achievement.span-4,
  .bento-item-achievement.span-6,
  .bento-item-achievement.span-8 {
    grid-column: span 1;
  }

  .team-layout {
    padding: 0;
  }

  .timeline-item {
    width: calc(100% - 40px);
    margin-left: 20px !important;
    margin-right: 0 !important;
    margin-bottom: -40px;
  }

  .timeline-item:nth-child(even) {
    margin-top: 0;
  }

  .timeline-line {
    left: 20px;
  }

  .services-sticky {
    min-height: auto;
  }

  .sticky-left {
    padding: 32px 20px;
  }

  .sticky-left h2 {
    font-size: 32px;
  }

  .scroll-right {
    padding: 32px 20px;
  }

  .service-card-3d {
    height: 120px;
  }

  .carousel-container {
    height: auto;
    min-height: 460px;
    overflow: hidden;
  }

  .carousel-nav.prev {
    left: 0px;
  }

  .carousel-nav.next {
    right: 0px;
  }

  .about-panels {
    gap: 16px;
  }

  .panel-content {
    flex-direction: column;
    padding: 20px;
  }

  .panel-image {
    width: 100%;
    height: 160px;
  }

  .node-peripheral {
    width: 140px;
    padding: 10px 14px;
    margin-bottom: -40px;
  }

  .node-value {
    font-size: 18px;
  }

  .contact-card .value {
    font-size: 36px;
  }

  .page-hero {
    height: 240px;
  }
}