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

:root {
  --color-warm-ivory: #FFF7ED;
  --color-soft-amber: #FFEDD5;
  --color-light-sand: #FEF3C7;
  --color-deep-umber: #1F2937;
  --color-warm-stone: #6B7280;
  --color-muted-sienna: #92400E;
  --color-craftsman-amber: #D97706;
  --color-burnished-sienna: #B45309;
  
  --font-inter: 'Inter', sans-serif;
  --font-dm-sans: 'DM Sans', sans-serif;
  --font-jetbrains: 'JetBrains Mono', monospace;
  
  --sidebar-width: 80px;
  --sidebar-expanded: 320px;
  --content-padding: 120px;
}

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

strong, p {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-dm-sans);
  background-color: var(--color-warm-ivory);
  color: var(--color-deep-umber);
  line-height: 1.72;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-inter);
  line-height: 0.9;
}

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

img {
  max-width: 100%;
  height: auto;
}

.vertical-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(255,251,247,0.97) 0%, rgba(255,249,243,0.97) 100%);
  backdrop-filter: blur(56px);
  border-right: 2.5px solid rgba(217,119,6,0.28);
  box-shadow: 14px 0 56px rgba(217,119,6,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  transition: width 0.45s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}

.vertical-nav:hover {
  width: var(--sidebar-expanded);
}

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

.nav-logo svg {
  width: 100%;
  height: 100%;
}

.nav-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  flex-grow: 1;
  align-items: center;
  overflow-y: auto;
}

.nav-item {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item:hover {
  color: var(--color-craftsman-amber);
  transform: scale(1.1);
  filter: drop-shadow(0 0 24px rgba(217,119,6,0.5));
}

.nav-item svg {
  width: 100%;
  height: 100%;
}

.nav-item-text {
  display: none;
  white-space: nowrap;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-deep-umber);
  margin-left: 12px;
}

.vertical-nav:hover .nav-item-text {
  display: block;
  animation: slideRight 0.35s ease forwards;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 12px;
  background: linear-gradient(135deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  color: white;
  font-family: var(--font-jetbrains);
  font-weight: 700;
  font-size: 11px;
  border-radius: 20px;
  margin: 12px;
  box-shadow: 0 8px 32px rgba(217,119,6,0.45);
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nav-cta:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 40px rgba(217,119,6,0.55);
}

.nav-cta.hidden {
  transform: translateX(6px);
  opacity: 0.95;
  box-shadow: 0 4px 16px rgba(217,119,6,0.35);
}

.main-content {
  padding-left: var(--content-padding);
  min-height: 100vh;
}

.hero-section {
  min-height: 100vh;
  background: var(--color-warm-ivory);
  position: relative;
  overflow: hidden;
  padding: 120px 80px 180px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 64px;
}

.hero-abstract-objects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.abstract-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  animation: craftDrift 45s ease-in-out infinite alternate;
}

.abstract-blob:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--color-craftsman-amber);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.abstract-blob:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--color-craftsman-amber);
  top: 50%;
  right: 10%;
  animation-delay: -9s;
}

.abstract-blob:nth-child(3) {
  width: 350px;
  height: 350px;
  background: var(--color-burnished-sienna);
  bottom: 20%;
  left: 40%;
  animation-delay: -18s;
}

@keyframes craftDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -40px) scale(1.05);
  }
  100% {
    transform: translate(-60px, 60px) scale(0.95);
  }
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(217,119,6,0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  grid-column: span 6;
  z-index: 4;
  position: relative;
}

.hero-title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  color: var(--color-deep-umber);
  letter-spacing: -0.005em;
  max-width: 520px;
  line-height: 0.9;
}

.hero-title-accent {
  color: var(--color-craftsman-amber);
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.hero-subtitle {
  font-family: var(--font-jetbrains);
  font-size: 12px;
  color: rgba(31,41,55,0.5);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.hero-description {
  font-family: var(--font-dm-sans);
  font-size: 17px;
  color: var(--color-warm-stone);
  line-height: 1.72;
  max-width: 480px;
  margin-top: 22px;
}

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

.btn-primary {
  padding: 22px 48px;
  background: linear-gradient(135deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  color: white;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 24px;
  box-shadow: 0 14px 56px rgba(217,119,6,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 18px 72px rgba(217,119,6,0.5);
  transform: translateY(-3px) scale(1.04);
}

.btn-secondary {
  padding: 20px 40px;
  background: transparent;
  border: 2px solid var(--color-deep-umber);
  color: var(--color-deep-umber);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 15px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--color-craftsman-amber);
  color: var(--color-craftsman-amber);
  box-shadow: 0 10px 40px rgba(217,119,6,0.2);
}

.hero-bento {
  grid-column: span 6;
  position: relative;
  height: 540px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  z-index: 4;
}

.bento-card {
  border-radius: 12px 18px 14px 22px;
  border: 2px solid rgba(217,119,6,0.18);
  box-shadow: 0 28px 112px rgba(217,119,6,0.12);
  overflow: hidden;
  position: relative;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.bento-card:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 40px 160px rgba(217,119,6,0.16);
}

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

.bento-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.1);
}

.bento-card-pattern {
  background: rgba(217,119,6,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.bento-icon {
  width: 44px;
  height: 44px;
  color: var(--color-craftsman-amber);
}

.bento-card-icons {
  background: rgba(217,119,6,0.06);
}

.hero-stat-cards {
  position: absolute;
  z-index: 5;
}

.hero-stat-card {
  position: absolute;
  background: rgba(255,251,247,0.98);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.18);
  border-radius: 10px 16px 12px 20px;
  padding: 14px 18px;
  box-shadow: 0 28px 112px rgba(217,119,6,0.1);
}

.hero-stat-card-1 {
  top: 40px;
  right: -20px;
}

.hero-stat-card-2 {
  bottom: 40px;
  right: -20px;
}

.stat-label {
  font-family: var(--font-dm-sans);
  font-weight: 500;
  font-size: 11px;
  color: var(--color-deep-umber);
}

.stat-value {
  font-family: var(--font-jetbrains);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-burnished-sienna);
}

.amber-dot {
  width: 7px;
  height: 7px;
  background: var(--color-craftsman-amber);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}

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

.diagonal-line {
  height: 2px;
  background: linear-gradient(90deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  transform: skewX(-5deg);
  margin-top: 16px;
}

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

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

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

.section-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-deep-umber);
  margin-bottom: 48px;
}

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, var(--color-craftsman-amber), var(--color-burnished-sienna), var(--color-craftsman-amber));
  transform: translateX(-50%) skewX(-5deg);
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  width: calc(50% - 80px);
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border-radius: 12px;
  clip-path: polygon(0 5%,104% 0,100% 98%,0 100%);
  padding: 22px 24px;
  border: 2px solid rgba(217,119,6,0.15);
  box-shadow: 0 28px 112px rgba(217,119,6,0.15);
  position: relative;
  margin-bottom: -80px;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.timeline-item:hover {
  z-index: 82;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 56px 224px rgba(217,119,6,0.25);
}

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

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

.timeline-number {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 28px;
  color: rgba(217,119,6,0.16);
  position: absolute;
  top: 12px;
  right: 18px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--color-craftsman-amber);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-craftsman-amber);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  color: var(--color-craftsman-amber);
  margin-bottom: 10px;
}

.service-card-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-deep-umber);
}

.service-card-text {
  font-family: var(--font-dm-sans);
  font-size: 12px;
  color: var(--color-warm-stone);
  margin-top: 5px;
  line-height: 1.45;
}

.service-card-image {
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  clip-path: polygon(0 5%,104% 0,100% 98%,0 100%);
  margin-top: 12px;
  width: 100%;
}

.split-screen-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border-right: 2.5px solid rgba(217,119,6,0.32);
  box-shadow: 24px 0 96px rgba(217,119,6,0.18);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-scroll {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 52px 36px;
}

.split-card {
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.15);
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(217,119,6,0.1);
  padding: 18px;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.split-card:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 40px 160px rgba(217,119,6,0.2);
}

.split-card-image {
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 12px;
}

.split-card-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-deep-umber);
}

.split-card-text {
  font-family: var(--font-dm-sans);
  font-size: 12px;
  color: var(--color-warm-stone);
  margin-top: 4px;
  line-height: 1.45;
}

.amber-accent-bar {
  height: 3px;
  width: 36px;
  background: linear-gradient(90deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  margin-bottom: 10px;
}

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

.node-center {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(217,119,6,0.05);
  border: 2px solid var(--color-craftsman-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 28px 112px rgba(217,119,6,0.16);
  position: relative;
  z-index: 5;
}

.node-center-inner {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 2px solid rgba(180,83,9,0.18);
  position: absolute;
}

.node-center-outer {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 2px solid rgba(217,119,6,0.08);
  position: absolute;
}

.node-icon {
  width: 52px;
  height: 52px;
  color: white;
}

.node-card {
  position: absolute;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.15);
  border-radius: 12px;
  clip-path: polygon(0 4%,104% 0,100% 98%,0 100%);
  padding: 14px 18px;
  box-shadow: 0 28px 112px rgba(217,119,6,0.1);
  width: 140px;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.node-card:hover {
  z-index: 82;
  transform: scale(1.1);
  box-shadow: 0 56px 224px rgba(217,119,6,0.25);
}

.node-card-icon {
  width: 36px;
  height: 36px;
  color: var(--color-craftsman-amber);
  margin-bottom: 8px;
}

.node-card-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-deep-umber);
}

.node-card-text {
  font-family: var(--font-dm-sans);
  font-size: 11px;
  color: var(--color-warm-stone);
  margin-top: 3px;
  line-height: 1.4;
}

.node-card-value {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-craftsman-amber);
  margin-top: 8px;
}

.carousel-section {
  position: relative;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1300px;
  padding: 96px 80px;
  overflow: visible;
}

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

.carousel-card {
  position: absolute;
  width: 260px;
  min-height: 280px;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.18);
  border-radius: 12px;
  box-shadow: 0 28px 112px rgba(217,119,6,0.12);
  overflow: hidden;
  transition: all 0.5s ease;
}

.carousel-card:hover {
  z-index: 100;
  transform: scale(1.14) !important;
}

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

.carousel-card-content {
  padding: 12px 16px;
}

.carousel-card-icon {
  position: absolute;
  top: 76px;
  right: 14px;
  width: 30px;
  height: 30px;
  color: var(--color-craftsman-amber);
}

.carousel-card-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-deep-amber);
}

.carousel-card-text {
  font-family: var(--font-dm-sans);
  font-size: 11px;
  color: var(--color-warm-stone);
  margin-top: 4px;
  line-height: 1.45;
}

.carousel-card-accent {
  height: 3px;
  width: 38px;
  background: linear-gradient(90deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  margin: 8px 16px;
}

.carousel-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(217,119,6,0.18);
  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 44px rgba(217,119,6,0.45);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  color: var(--color-craftsman-amber);
}

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

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  min-height: 520px;
}

.bento-grid-item {
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.15);
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(217,119,6,0.1);
  padding: 18px;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.bento-grid-item:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 40px 160px rgba(217,119,6,0.2);
}

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

.bento-grid-photo {
  grid-column: span 4;
}

.bento-grid-3d {
  grid-column: span 6;
}

.bento-grid-pattern {
  grid-column: span 6;
}

.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 96px 80px;
}

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

.team-item {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.12);
  clip-path: polygon(0 5%,104% 0,100% 100%,0 100%);
  cursor: pointer;
  transition: all 0.35s ease;
}

.team-item:hover {
  background: white;
  border-color: rgba(217,119,6,0.25);
  box-shadow: 0 24px 96px rgba(217,119,6,0.12);
  z-index: 82;
  transform: scale(1.06);
}

.team-item-icon {
  width: 18px;
  height: 18px;
  color: rgba(217,119,6,0.4);
  margin-right: 16px;
  flex-shrink: 0;
}

.team-item-name {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-deep-umber);
  flex: 1;
}

.team-item-arrow {
  width: 18px;
  height: 18px;
  color: rgba(107,114,128,0.3);
  transition: all 0.2s ease;
}

.team-item:hover .team-item-arrow {
  color: var(--color-craftsman-amber);
  transform: translateX(4px);
}

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

.team-reveal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 5%,104% 0,100% 100%,0 100%);
  position: absolute;
  inset: 0;
  box-shadow: 0 28px 112px rgba(217,119,6,0.15);
  opacity: 0;
  transform: translateX(28px) scale(0.95);
  transition: all 0.4s ease;
}

.team-item.active .team-reveal-image,
.team-item:hover .team-reveal-image {
  opacity: 1;
  transform: translateX(0) scale(1.06);
}

.team-reveal-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(217,119,6,0.88);
  color: white;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 20px;
}

.team-reveal-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-family: var(--font-dm-sans);
  font-size: 14px;
  line-height: 1.6;
}

.faq-section {
  padding: 96px 80px;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  width: 100%;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.18);
  border-radius: 12px;
  clip-path: polygon(0 4%,104% 0,100% 100%,0 100%);
  box-shadow: 0 28px 112px rgba(217,119,6,0.12);
  overflow: hidden;
  margin-bottom: -80px;
  position: relative;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.faq-item:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 56px 224px rgba(217,119,6,0.25);
}

.faq-header {
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 44px;
  height: 44px;
  color: var(--color-craftsman-amber);
  flex-shrink: 0;
}

.faq-content {
  flex: 1;
}

.faq-question {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-deep-umber);
}

.faq-answer {
  font-family: var(--font-dm-sans);
  font-size: 13px;
  color: var(--color-warm-stone);
  margin-top: 8px;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-value {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-craftsman-amber);
  margin-top: 10px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  color: var(--color-warm-stone);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-3d-object {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  margin-right: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(217,119,6,0.1), rgba(180,83,9,0.15));
  border: 1.5px solid var(--color-craftsman-amber);
}

.testimonials-section {
  padding: 96px 80px;
}

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

.testimonial-card {
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.15);
  border-radius: 12px;
  clip-path: polygon(0 4%,104% 0,100% 100%,0 100%);
  padding: 22px;
  transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
  margin-bottom: 0;
}

.testimonial-card:hover {
  flex-grow: 2.4;
  background: white;
  border-color: rgba(217,119,6,0.28);
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 56px 224px rgba(217,119,6,0.25);
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  color: var(--color-craftsman-amber);
  margin-bottom: 12px;
}

.testimonial-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-deep-umber);
}

.testimonial-text {
  font-family: var(--font-dm-sans);
  font-size: 12px;
  color: rgba(107,114,128,0.7);
  margin-top: 5px;
  line-height: 1.45;
}

.testimonial-value {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-craftsman-amber);
  margin-top: 8px;
}

.contacts-section {
  padding: 96px 80px;
}

.contacts-container {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0 48px;
}

.contact-card {
  width: 100%;
  max-width: 860px;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.18);
  border-radius: 12px;
  box-shadow: 0 28px 112px rgba(217,119,6,0.14);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: -80px;
  transition: all 0.88s cubic-bezier(0.34,1.56,0.64,1);
}

.contact-card:hover {
  z-index: 82;
  transform: scale(1.08);
  box-shadow: 0 56px 224px rgba(217,119,6,0.25);
}

.contact-icon {
  width: 48px;
  height: 48px;
  color: var(--color-craftsman-amber);
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-deep-umber);
}

.contact-text {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  color: var(--color-warm-stone);
  margin-top: 6px;
  line-height: 1.55;
}

.contact-image {
  height: 120px;
  width: 160px;
  object-fit: cover;
  border-radius: 12px;
  clip-path: polygon(0 5%,104% 0,100% 100%,0 100%);
}

.contact-value {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 56px;
  color: rgba(217,119,6,0.1);
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background: var(--color-deep-umber);
  color: white;
  padding: 64px 80px 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--color-craftsman-amber);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-craftsman-amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(255,251,247,0.98);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.25);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 400px;
  box-shadow: 0 12px 48px rgba(217,119,6,0.2);
  z-index: 10000;
}

.cookie-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-deep-umber);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 12px;
  color: var(--color-warm-stone);
  margin-bottom: 16px;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  box-shadow: 0 8px 24px rgba(217,119,6,0.4);
}

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

.cookie-btn-decline:hover {
  border-color: var(--color-deep-umber);
  color: var(--color-deep-umber);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 64px;
  background: rgba(255,251,247,0.98);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(217,119,6,0.14);
  border: 2px solid rgba(217,119,6,0.25);
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-logo svg {
  width: 36px;
  height: 36px;
}

.mobile-logo-text {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-deep-umber);
}

.mobile-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  color: white;
  font-family: var(--font-jetbrains);
  font-weight: 700;
  font-size: 11px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(217,119,6,0.3);
}

.mobile-hamburger {
  width: 52px;
  height: 52px;
  background: rgba(217,119,6,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-hamburger svg {
  width: 24px;
  height: 24px;
  color: var(--color-craftsman-amber);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,249,243,0.99);
  backdrop-filter: blur(56px);
  z-index: 9998;
  transform: translateX(-100%);
  transition: all 0.55s cubic-bezier(0.34,1.56,0.64,1);
  padding: 120px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-overlay.active {
  transform: translateX(0);
}

.mobile-nav-item {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-deep-umber);
}

.mobile-nav-divider {
  height: 2px;
  width: 48px;
  background: linear-gradient(90deg, var(--color-craftsman-amber), var(--color-burnished-sienna));
  margin: 0;
}

.mobile-contact-info {
  margin-top: auto;
  padding-top: 24px;
}

.mobile-phone {
  font-family: var(--font-jetbrains);
  font-size: 14px;
  color: var(--color-burnished-sienna);
}

.mobile-address {
  font-size: 14px;
  color: var(--color-warm-stone);
  margin-top: 8px;
}

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

.reveal-fade.visible {
  opacity: 1;
}

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

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

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

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .vertical-nav {
    display: none;
  }
  
  .main-content {
    padding-left: 0;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero-section {
    padding: 100px 24px 80px;
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    grid-column: span 1;
  }
  
  .hero-bento {
    display: none;
  }
  
  .section {
    padding: 64px 24px;
  }
  
  .timeline-section {
    padding: 64px 24px;
  }
  
  .timeline-line {
    left: 24px;
  }
  
  .timeline-item {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    margin-bottom: 0;
    margin-top: 0 !important;
  }
  
  .split-screen-section {
    grid-template-columns: 1fr;
  }
  
  .split-sticky {
    position: relative;
    height: auto;
    border-right: none;
    border-bottom: 2px solid rgba(217,119,6,0.32);
  }
  
  .team-section {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }
  
  .team-reveal {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

.policy-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-deep-umber);
  margin-bottom: 16px;
}

.policy-date {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  color: var(--color-warm-stone);
  margin-bottom: 48px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-section {
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(56px);
  border: 2px solid rgba(217,119,6,0.15);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 20px 80px rgba(217,119,6,0.1);
}

.policy-section-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-deep-umber);
  margin-bottom: 16px;
}

.policy-text {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  color: var(--color-warm-stone);
  line-height: 1.72;
}

.policy-list {
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
}

.policy-list li {
  font-family: var(--font-dm-sans);
  font-size: 14px;
  color: var(--color-warm-stone);
  line-height: 1.72;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-craftsman-amber);
  border-radius: 50%;
}

.policy-link {
  color: var(--color-craftsman-amber);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: var(--color-burnished-sienna);
}
  
  .hero-title-accent {
    font-size: 1.5rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-image {
    width: 100%;
    height: 100px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}