* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  background: #FFF6EA;
  color: #0B0B0B;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home,
.team-body,
.about-body,
.work-body {
  background: #FFF6EA;
  min-height: 100vh;
}

.home {
  flex: 1;
}

.menu-wrapper {
  position: fixed;
  top: 12px;
  right: 18px;
  z-index: 30;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 4px;
  background: #0B60F5;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: #FFF6EA;
  z-index: 20;
}

.logo-link {
  display: inline-flex;
}

.logo {
  width: 58px;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 120px 24px 60px;
  gap: 18px;
}

.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin: 0 auto 40px;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.icon {
  width: 140px;
  margin-bottom: 4px;
  animation: float 4s ease-in-out infinite alternate;
}

.launch-text {
  font-size: 22px;
  font-weight: 700;
  color: #0B60F5;
  max-width: 540px;
}

.contact-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.contact-btn {
  color: #fff;
  background: #0B60F5;
}

.contact-btn:hover {
  transform: translateY(-1px);
}

.outline-btn {
  background: transparent;
  color: #0B60F5;
  border-color: #0B60F5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.outline-btn:hover {
  background: #0B60F5;
  color: #fff;
}

.gallery-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.gallery-card {
  background: #FFF6EA;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #FFF6EA;
}

.gallery-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: #0B60F5;
  text-align: center;
}

.detail-section {
  display: grid;
  gap: 28px;
}

.detail-block {
  background: #FFF6EA;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 18px;
  text-align: center;
}

.detail-heading {
  max-width: 220px;
  margin: 0 auto 18px;
  display: block;
}

.detail-heading--text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B60F5;
  letter-spacing: 0.1em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag-row span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B60F5;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 96, 245, 0.35);
  background: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

footer {
  margin-top: auto;
  padding: 28px 0;
  text-align: center;
  width: 100%;
  background: #FFF6EA;
}

.footer-icon {
  width: 26px;
  display: block;
  margin: 0 auto 5px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

.team-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  text-align: center;
}

.team-heading {
  width: 280px;
  margin: 0 auto 16px;
}

.team-intro {
  margin: 0 0 28px;
  color: #444;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  background: #FFF6EA;
  border-radius: 24px;
  padding: 28px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFF6EA;
}

.team-card h3 {
  margin: 0;
  color: #0B60F5;
}

.team-card p {
  margin: 0;
  color: #4f4f4f;
}

.ghost-link {
  display: inline-block;
  margin-top: 36px;
  color: #0B60F5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.ghost-link:hover {
  border-bottom-color: rgba(0, 0, 0, 0.4);
}

.about-page {
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #444;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0B0B0B;
}

.hero-desc {
  margin: 0;
  color: #2f2f2f;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-tag {
  color: #0B60F5;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  object-fit: contain;
  min-height: 280px;
}

.about-services,
.about-values {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-services h2,
.about-values h2 {
  margin: 0 0 24px;
  font-size: 1.6rem;
  color: #0B0B0B;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.service-grid article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(11, 96, 245, 0.2);
  background: rgba(11, 96, 245, 0.05);
  text-align: center;
  font-weight: 600;
  color: #0B60F5;
}

.about-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1f1f1f;
  line-height: 1.5;
}

.about-values li {
  position: relative;
  padding-left: 18px;
}

.about-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0B60F5;
}

.contact-body {
  background: #FFF6EA;
  min-height: 100vh;
}

.contact-page {
  padding: 120px 24px 80px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.contact-hero {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 28px 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.contact-label {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #444;
  margin: 0;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0B60F5;
  text-decoration: none;
}

.contact-card:hover .contact-value {
  text-decoration: underline;
}
.work-body .gallery-page {
  padding: 0;
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.work-gallery {
  width: 100%;
  display: flex;
  justify-content: center;
}

.elfsight-wrapper {
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
}

.elfsight-wrapper .elfsight-app-cad4dc5a-7dff-44e5-a9a0-25766e362581 {
  width: 100%;
  min-height: calc(100vh - 80px);
}

.gallery-frame {
  width: min(1200px, 96vw);
  height: min(85vh, 860px);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
  background: #FFF6EA;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: radial-gradient(circle at top, rgba(11, 96, 245, 0.1), transparent 50%);
}

.gallery-overlay {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(720px, 88vw);
  padding: 18px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}

.gallery-tag {
  font-size: 1rem;
  font-weight: 600;
}

.gallery-dots {
  display: flex;
  gap: 10px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.gallery-dot.active {
  background: #0B60F5;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-arrow--prev {
  left: 18px;
}

.gallery-arrow--next {
  right: 18px;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 25;
}

.nav-overlay[data-state='open'] {
  opacity: 1;
  pointer-events: all;
}

.nav-content {
  width: min(360px, 90vw);
  padding: 34px 30px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #FFF6EA;
  color: #0B60F5;
  text-align: center;
}

.nav-content a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0B60F5;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav-content a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.35);
}

.menu-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  color: #0B60F5;
  cursor: pointer;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (min-width: 920px) {
  .detail-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-frame {
    height: 65vh;
  }

  .gallery-overlay {
    flex-direction: column;
  }

  .tag-row span {
    font-size: 0.75rem;
  }
}

@media (max-width: 520px) {
  .gallery-frame {
    height: 55vh;
  }

  .gallery-header {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
