@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&family=Fira+Code:wght@400;500&display=swap');

:root {
  --color-parchment: #FEF3C7;
  --color-cream: #FDF4F3;
  --color-text-dark: #92400E;
  --color-terracotta: #B45309;
  --color-orange: #F97316;
  --color-beige: #FCD34D;
  --color-amber: #D97706;
  --color-glow: rgba(249, 168, 37, 0.4);
  --color-glow-strong: rgba(180, 83, 9, 0.55);
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'IBM Plex Mono', monospace;
  --font-tech: 'Fira Code', monospace;
  --radius-blob: 48px;
  --radius-crystal: 64px;
  --radius-fluid: 9999px;
  --shadow-organic: 0 32px 128px rgba(199, 120, 65, 0.12), 0 16px 64px rgba(249, 168, 37, 0.08);
  --shadow-glow: 0 16px 64px rgba(199, 120, 65, 0.12);
  --shadow-glow-strong: 0 56px 224px rgba(180, 83, 9, 0.55);
  --shadow-card: 0 48px 192px rgba(249, 168, 37, 0.14), 0 24px 96px rgba(180, 83, 9, 0.1);
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-morph: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-parchment);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(40px) saturate(160%);
  border: 1px solid rgba(199, 120, 65, 0.15);
}

.glass-dark {
  background: rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(199, 120, 65, 0.2);
}

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

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

.blob-wrapper {
  position: relative;
  overflow: visible;
}

.blob-card {
  border-radius: var(--radius-blob);
  box-shadow: var(--shadow-card);
  transition: transform 0.85s var(--transition-morph), box-shadow 0.85s var(--transition-morph);
}

.blob-card:hover {
  transform: scale(1.08);
  box-shadow: 0 144px 576px rgba(249, 168, 37, 0.5);
}

.blob-btn {
  border-radius: var(--radius-fluid);
  transition: transform 0.6s var(--transition-spring), box-shadow 0.6s var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.blob-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(255, 255, 255, 0.3) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blob-btn:hover::before {
  opacity: 1;
}

.blob-btn:hover {
  transform: translateY(-8px) scale(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-orange));
  color: white;
  padding: 20px 48px;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow-strong);
}

.btn-primary:hover {
  box-shadow: 0 0 96px rgba(180, 83, 9, 0.85), inset 0 0 24px rgba(249, 168, 37, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-dark);
  padding: 18px 44px;
  border: 3px solid var(--color-text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-beige), var(--color-orange));
  color: white;
  border-color: transparent;
  box-shadow: 0 40px 160px rgba(249, 168, 37, 0.45);
  transform: translateY(-6px) scale(1.03);
}

.menu-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(199, 120, 65, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--transition-morph), box-shadow 0.4s ease;
}

.menu-toggle:hover {
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 0 64px rgba(249, 168, 37, 0.55), inset 0 0 16px var(--color-glow);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-terracotta);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}

.menu-modal {
  position: fixed;
  inset: 0;
  background: rgba(249, 247, 232, 0.98);
  backdrop-filter: blur(48px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  padding: 120px 80px;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-content: start;
}

.menu-modal.active {
  display: grid;
  opacity: 1;
  animation: fadeScale 0.45s var(--transition-morph) forwards;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-modal a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-dark);
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--transition-spring);
}

.menu-modal a:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
  transform: scale(1.05);
  text-shadow: 0 0 24px rgba(180, 83, 9, 0.3);
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--color-cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-terracotta);
  transition: transform 0.3s var(--transition-spring);
}

.menu-close:hover {
  transform: rotate(90deg) scale(1.1);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled {
  background: rgba(254, 243, 199, 0.9);
  backdrop-filter: blur(32px);
}

.header-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
}

.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    gap: 32px;
  }
  
  .header-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
    position: relative;
  }
  
  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width 0.3s var(--transition-spring);
  }
  
  .header-nav a:hover::after {
    width: 100%;
  }
  
  .header-nav a:hover {
    color: var(--color-terracotta);
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-parchment);
  z-index: 9998;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 24px 140px;
}

.mobile-menu.active {
  display: flex;
  animation: slideUp 0.4s var(--transition-spring) forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-dark);
  padding: 16px 32px;
  transition: color 0.3s ease, transform 0.3s var(--transition-spring);
}

.mobile-menu a:hover {
  color: var(--color-terracotta);
  transform: scale(1.08);
}

.mobile-menu-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(199, 120, 65, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-terracotta);
  stroke-width: 4;
  stroke-linecap: round;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(252, 211, 77, 0.4) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(249, 168, 37, 0.3) 0%, transparent 50%),
              var(--color-parchment);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 0 80px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(80px, 20vw, 280px);
  line-height: 0.92;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  text-shadow: 0 32px 128px rgba(146, 64, 14, 0.45);
}

.hero-title-accent {
  color: var(--color-terracotta);
  text-shadow: 0 0 72px rgba(180, 83, 9, 0.65);
  display: block;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 72px rgba(180, 83, 9, 0.65);
  }
  50% {
    text-shadow: 0 0 120px rgba(180, 83, 9, 0.9), 0 0 180px rgba(249, 168, 37, 0.5);
  }
}

.hero-subtitle {
  font-family: var(--font-tech);
  font-size: 18px;
  color: var(--color-amber);
  margin-top: 24px;
  opacity: 0.9;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  color: var(--color-text-dark);
  max-width: 560px;
  margin-top: 32px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  aspect-ratio: 1;
}

.hero-blob {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--color-beige), var(--color-orange), var(--color-terracotta));
  box-shadow: var(--shadow-card);
  animation: blobMorph 8s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-blob::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44 0 Q88 44 44 88 Q0 44 44 0' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3C/svg%3E");
  animation: patternMove 20s linear infinite;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  }
  25% {
    border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 40% 50% 60% 50% / 50% 40% 50% 60%;
  }
  75% {
    border-radius: 50% 40% 50% 60% / 60% 50% 40% 50%;
  }
}

@keyframes patternMove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-blob-icon {
  font-size: 120px;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(146, 64, 14, 0.3));
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-terracotta);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-dark);
  opacity: 0.8;
  max-width: 680px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.info-grid-reverse {
  direction: rtl;
}

.info-grid-reverse > * {
  direction: ltr;
}

.info-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.info-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-image {
  border-radius: var(--radius-crystal);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.info-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.85s var(--transition-morph);
}

.info-image:hover img {
  transform: scale(1.08);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-crystal);
  padding: 40px 32px;
  box-shadow: var(--shadow-organic);
  border-left: 6px solid var(--color-terracotta);
  transition: all 0.6s var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(249, 168, 37, 0.15) 0%, transparent 70%);
  transform: translate(40px, -40px);
  transition: transform 0.6s var(--transition-spring);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: translate(20px, -20px) scale(1.5);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-beige), var(--color-orange));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 16px 64px rgba(249, 168, 37, 0.3);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-dark);
  opacity: 0.85;
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-terracotta);
  margin-bottom: 20px;
}

.service-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-dark);
  opacity: 0.7;
}

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

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.bento-item {
  border-radius: var(--radius-blob);
  overflow: hidden;
  position: relative;
  transition: all 0.7s var(--transition-spring);
}

.bento-item:hover {
  z-index: 54;
  transform: scale(1.3);
  box-shadow: 0 144px 576px rgba(249, 168, 37, 0.5);
}

.bento-item:nth-child(1) {
  grid-row: span 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(146, 64, 14, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.bento-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

.advantage-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-crystal);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-organic);
  transition: all 0.7s var(--transition-spring);
  flex-grow: 1;
}

.advantage-card:hover {
  flex-grow: 2.8;
  z-index: 62;
  transform: scale(1.5);
  box-shadow: var(--shadow-card);
}

@media (max-width: 767px) {
  .advantage-card:hover {
    flex-grow: 1;
    transform: scale(1.05);
  }
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-beige), var(--color-orange));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: 0 24px 96px rgba(249, 168, 37, 0.35);
  transition: transform 0.5s var(--transition-spring);
}

.advantage-card:hover .advantage-icon {
  transform: rotate(8deg) scale(1.1);
}

.advantage-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dark);
  opacity: 0.8;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-orange), var(--color-terracotta));
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(249, 168, 37, 0.6);
}

.timeline-year {
  font-family: var(--font-tech);
  font-size: 14px;
  color: var(--color-terracotta);
  margin-bottom: 8px;
}

.timeline-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-dark);
  opacity: 0.85;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-crystal);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-organic);
  position: relative;
  transition: all 0.6s var(--transition-spring);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dark);
  opacity: 0.85;
}

.reviews-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 400px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-crystal);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 300px;
  }
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--color-beige);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-stars {
  color: var(--color-orange);
  font-size: 18px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-terracotta);
}

.review-role {
  font-size: 13px;
  color: var(--color-text-dark);
  opacity: 0.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.team-member {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-crystal);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-organic);
  transition: all 0.7s var(--transition-spring);
}

.team-member:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: var(--shadow-card);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--color-beige);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-spring);
}

.team-member:hover .team-photo img {
  transform: scale(1.15);
}

.team-member h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.team-member p {
  font-size: 13px;
  color: var(--color-terracotta);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-blob);
  overflow: hidden;
  box-shadow: var(--shadow-organic);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(249, 168, 37, 0.1);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.4s var(--transition-spring);
  color: var(--color-terracotta);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition-spring), padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-dark);
  opacity: 0.9;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact-info {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-crystal);
  padding: 48px 40px;
  box-shadow: var(--shadow-organic);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-beige), var(--color-orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--color-text-dark);
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-crystal);
  padding: 48px 40px;
  box-shadow: var(--shadow-organic);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--color-cream);
  border: 2px solid rgba(199, 120, 65, 0.2);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.form-submit {
  width: 100%;
  padding: 18px 32px;
  margin-top: 8px;
}

.map-container {
  border-radius: var(--radius-crystal);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 48px;
}

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

footer {
  background: var(--color-text-dark);
  color: white;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s var(--transition-spring);
}

.footer-social a:hover {
  background: var(--color-orange);
  transform: translateY(-4px);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--color-orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.7;
}

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

.footer-bottom-links a {
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(32px);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 24px 96px rgba(146, 64, 14, 0.25);
  z-index: 9999;
  display: block;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dark);
  opacity: 0.85;
  margin-bottom: 20px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--transition-spring);
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-orange));
  color: white;
}

.cookie-decline {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid rgba(199, 120, 65, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-link {
  font-size: 12px;
  color: var(--color-terracotta);
  margin-top: 12px;
  display: inline-block;
}

.cookie-link:hover {
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-beige), var(--color-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 16px;
  color: var(--color-text-dark);
  opacity: 0.85;
}

.page-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 30%, rgba(252, 211, 77, 0.4) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 70%, rgba(249, 168, 37, 0.3) 0%, transparent 50%),
              var(--color-parchment);
  padding: 120px 0 60px;
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.breadcrumbs {
  font-family: var(--font-tech);
  font-size: 14px;
  color: var(--color-amber);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--color-amber);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--color-terracotta);
}

.breadcrumbs span {
  opacity: 0.5;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-dark);
  opacity: 0.85;
  max-width: 600px;
}

.hero-icons {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-icon-item span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-dark);
}

.hero-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 32px rgba(180, 83, 9, 0.15);
}

.detail-service-section {
  padding: 80px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.detail-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.detail-features {
  list-style: none;
  margin: 32px 0;
}

.detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--color-text-dark);
}

.detail-features li::before {
  content: '✓';
  color: var(--color-terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.detail-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-blob);
  box-shadow: var(--shadow-organic);
  transition: transform 0.6s var(--transition-spring);
}

.detail-gallery img:hover {
  transform: scale(1.05);
}

.detail-gallery img:first-child {
  grid-column: span 2;
  height: 280px;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-crystal);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-organic);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-dark);
  opacity: 0.85;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  border-radius: var(--radius-crystal);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.7s var(--transition-spring);
}

.portfolio-item:hover {
  transform: translateY(-12px) scale(1.03);
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(146, 64, 14, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(64px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.85s var(--transition-spring) forwards;
}

.animate-delay-1 { animation-delay: 0.12s; }
.animate-delay-2 { animation-delay: 0.24s; }
.animate-delay-3 { animation-delay: 0.36s; }
.animate-delay-4 { animation-delay: 0.48s; }
.animate-delay-5 { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
