@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&display=swap");

:root {
  --linen-dream: #fcfcfa;
  --cloud-mist: #f4f4f0;
  --silk-stone: #e8e4e8;
  --carbon-night: #0a0a0a;
  --ink-dream: #161816;
  --lavender-bloom: #7d5f95;
  --deep-plum: #5d3f6d;
  --mesh-lavender: rgba(185, 145, 195, 0.06);
  --mesh-pink: rgba(225, 195, 215, 0.04);
  --mesh-light: rgba(245, 235, 245, 0.03);
  --sidebar-width: 240px;
  --sidebar-collapsed: 72px;
}

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

strong,
p {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.96;
  color: var(--ink-dream);
  background: var(--linen-dream);
  min-height: 100vh;
  overflow-x: hidden;
}

.brutal-bold {
  font-weight: 700;
  letter-spacing: -0.002em;
  line-height: 0.54;
  baseline-shift: 0.014em;
}

.brutal-medium {
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
}

@keyframes meshDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 50px) scale(0.95);
  }
  75% {
    transform: translate(30px, 20px) scale(1.02);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes elasticBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes staggerReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(125, 95, 145, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(125, 95, 145, 0.35);
  }
}

@keyframes magneticPull {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
  }
}

@keyframes meshPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: var(--linen-dream);
}

.mesh-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  animation: meshPulse 52s ease-in-out infinite;
}

.mesh-spot:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: var(--mesh-lavender);
  animation-duration: 52s;
  animation-delay: 0s;
}

.mesh-spot:nth-child(2) {
  width: 500px;
  height: 500px;
  top: 30%;
  right: -100px;
  background: var(--mesh-pink);
  animation-duration: 65s;
  animation-delay: 10s;
}

.mesh-spot:nth-child(3) {
  width: 700px;
  height: 700px;
  bottom: -200px;
  left: 20%;
  background: var(--mesh-light);
  animation-duration: 78s;
  animation-delay: 20s;
}

.mesh-spot:nth-child(4) {
  width: 450px;
  height: 450px;
  top: 50%;
  left: 40%;
  background: var(--mesh-lavender);
  animation-duration: 60s;
  animation-delay: 5s;
}

.mesh-spot:nth-child(5) {
  width: 550px;
  height: 550px;
  top: 20%;
  right: 20%;
  background: var(--mesh-pink);
  animation-duration: 55s;
  animation-delay: 15s;
}

.mesh-spot:nth-child(6) {
  width: 480px;
  height: 480px;
  bottom: 10%;
  left: 10%;
  background: var(--mesh-light);
  animation-duration: 70s;
  animation-delay: 25s;
}

.marquee-container {
  overflow: hidden;
  padding: 24px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(125, 95, 145, 0.08);
  white-space: nowrap;
}

.marquee-item-icon {
  width: 20px;
  height: 20px;
  color: var(--lavender-bloom);
}

.floating-dock {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: rgba(252, 252, 250, 0.97);
  border-right: 1px solid rgba(125, 95, 145, 0.06);
  transition: all 0.34s ease-out;
  backdrop-filter: blur(12px);
}

.dock-brand {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(125, 95, 145, 0.06);
}

.dock-logo {
  width: 26px;
  height: 26px;
  color: var(--lavender-bloom);
}

.dock-domain {
  font-weight: 700;
  font-size: 9px;
  color: var(--carbon-night);
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-align: center;
}

.dock-company {
  font-weight: 500;
  font-size: 10px;
  color: var(--lavender-bloom);
  letter-spacing: 0.08em;
}

.dock-nav {
  flex: 1;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: block;
  padding: 12px 16px;
  color: var(--ink-dream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-item:hover {
  background: rgba(125, 95, 145, 0.06);
  color: var(--lavender-bloom);
}

.nav-item.active {
  background: rgba(125, 95, 145, 0.08);
  color: var(--deep-plum);
  font-weight: 600;
}

.dock-cta {
  display: block;
  margin: 16px;
  padding: 14px 20px;
  background: var(--lavender-bloom);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dock-cta:hover {
  background: var(--deep-plum);
  transform: translateY(-1px);
}

.mobile-strip {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(252, 252, 250, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125, 95, 145, 0.06);
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-brand-icon {
  width: 22px;
  height: 22px;
  color: var(--lavender-bloom);
}

.mobile-brand-text {
  font-weight: 700;
  font-size: 11px;
  color: var(--carbon-night);
  letter-spacing: 0.08em;
}

.mobile-brand-company {
  font-weight: 500;
  font-size: 10px;
  color: var(--lavender-bloom);
  letter-spacing: 0.05em;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-dream);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-content {
  position: relative;
  z-index: 1;
  margin-left: var(--sidebar-width);
  transition: margin-left 0.34s ease-out;
}

.section-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  min-height: 100vh;
  padding: 80px 64px;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--carbon-night);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  animation: staggerReveal 0.5s ease forwards;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-dream);
  margin-bottom: 32px;
  opacity: 0;
  animation: staggerReveal 0.5s ease forwards;
  animation-delay: 0.3s;
}

.hero-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--lavender-bloom);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: staggerReveal 0.5s ease forwards;
  animation-delay: 0.6s;
}

.hero-cta:hover {
  background: var(--deep-plum);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 95, 145, 0.25);
}

.hero-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-dream);
  opacity: 0;
  animation: staggerReveal 0.5s ease forwards;
  animation-delay: 0.9s;
}

.hero-secondary svg {
  width: 18px;
  height: 18px;
  color: var(--lavender-bloom);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(10, 10, 10, 0.08);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  animation: floatUpDown 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dream);
}

.section {
  padding: 80px 64px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--carbon-night);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--ink-dream);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 600px;
}

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

.organic-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(125, 95, 145, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.organic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(125, 95, 145, 0.1);
  border-color: rgba(125, 95, 145, 0.15);
}

.organic-card.large {
  grid-column: span 2;
}

.organic-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.organic-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.organic-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dream);
  margin-bottom: 16px;
}

.organic-card-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--lavender-bloom);
  letter-spacing: 0.02em;
}

.magnetic-element {
  transition: transform 0.15s ease-out;
}

.advantages-section {
  background: var(--cloud-mist);
  border-radius: 32px;
  padding: 64px;
  margin: 0 64px;
}

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

.advantage-card {
  text-align: center;
  padding: 24px 16px;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--lavender-bloom);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
}

.advantage-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.advantage-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dream);
}

.philosophy-section {
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.philosophy-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--carbon-night);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.philosophy-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-dream);
  margin-bottom: 16px;
}

.philosophy-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.philosophy-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.process-section {
  padding: 80px 64px;
  background: var(--cloud-mist);
}

.process-timeline {
  max-width: 800px;
  margin: 48px auto 0;
}

.node-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(125, 95, 145, 0.08);
}

.node-item:last-child {
  border-bottom: none;
}

.node-marker {
  width: 12px;
  height: 12px;
  background: var(--lavender-bloom);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.node-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.node-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dream);
}

.gallery-section {
  padding: 80px 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.team-section {
  padding: 80px 64px;
  background: var(--cloud-mist);
}

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

.team-member {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(125, 95, 145, 0.08);
  transition: all 0.3s ease;
  cursor: grab;
}

.team-member:active {
  cursor: grabbing;
}

.team-member:hover {
  box-shadow: 0 16px 48px rgba(125, 95, 145, 0.1);
}

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

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--lavender-bloom);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-dream);
}

.reviews-section {
  padding: 80px 64px;
}

.carousel-container {
  position: relative;
  max-width: 600px;
  margin: 48px auto 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  width: 100%;
  max-width: 600px;
  flex-shrink: 0;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(125, 95, 145, 0.08);
  text-align: center;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-dream);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

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

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--carbon-night);
}

.review-title {
  font-size: 12px;
  color: var(--lavender-bloom);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(125, 95, 145, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 200;
}

.carousel-btn:hover {
  background: var(--lavender-bloom);
  color: white;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.faq-section {
  padding: 80px 64px;
  background: var(--cloud-mist);
}

.faq-container {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(125, 95, 145, 0.08);
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--carbon-night);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(125, 95, 145, 0.04);
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--lavender-bloom);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dream);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  z-index: 99999;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dream);
}

.cookie-text a {
  color: var(--lavender-bloom);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn.accept {
  background: var(--lavender-bloom);
  color: white;
}

.cookie-btn.accept:hover {
  background: var(--deep-plum);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--ink-dream);
  border: 1px solid rgba(125, 95, 145, 0.2);
}

.cookie-btn.decline:hover {
  border-color: var(--lavender-bloom);
  color: var(--lavender-bloom);
}

.contact-section {
  padding: 80px 64px;
}

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

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(125, 95, 145, 0.08);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(125, 95, 145, 0.15);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lavender-bloom);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--lavender-bloom);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit:hover {
  background: var(--deep-plum);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-size: 20px;
  color: var(--carbon-night);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--ink-dream);
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-icon {
  font-size: 20px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lavender-bloom);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--ink-dream);
  line-height: 1.5;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(125, 95, 145, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--lavender-bloom);
}

.contact-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--carbon-night);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 13px;
  color: var(--ink-dream);
}

.contact-map {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  background: var(--cloud-mist);
}

.footer {
  background: var(--carbon-night);
  color: white;
  padding: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  color: var(--lavender-bloom);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

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

.legal-page {
  padding: 80px 64px;
  max-width: 800px;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-top: 32px;
  margin-bottom: 16px;
}

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

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

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

.detail-section {
  padding: 80px 64px;
}

.detail-header {
  margin-bottom: 48px;
}

.detail-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--carbon-night);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.detail-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dream);
}

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

.detail-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(125, 95, 145, 0.08);
}

.detail-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dream);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.showcase-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
  color: white;
}

.showcase-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.showcase-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.thank-you-content {
  max-width: 500px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: rgba(125, 95, 145, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  color: var(--lavender-bloom);
}

.thank-you-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dream);
  margin-bottom: 32px;
}

.thank-you-content a {
  display: inline-block;
  padding: 14px 28px;
  background: var(--lavender-bloom);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.thank-you-content a:hover {
  background: var(--deep-plum);
}

/* Page Hero */
.page-hero {
  padding: 80px 64px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 600px;
}

.page-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--carbon-night);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-dream);
}

/* Card Sizes */
.organic-card.medium {
  grid-column: span 1;
}

.organic-card.small {
  grid-column: span 1;
}

/* Footer Extensions */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-top: 8px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-special-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

/* Cookie Banner */
.cookie-banner-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dream);
}

/* Form Elements */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(125, 95, 145, 0.15);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--lavender-bloom);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237d5f95' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* Form Success */
.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.form-success-subtext {
  font-size: 13px;
  color: var(--ink-dream);
  line-height: 1.6;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Node Graph (workflow) */
.node-graph {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin-top: 48px;
}

.node-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--lavender-bloom);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.node-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--carbon-night);
  margin-bottom: 8px;
}

.node-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dream);
}

@media (max-width: 1024px) {
  .floating-dock {
    transform: translateX(-100%);
  }

  .floating-dock.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .mobile-strip {
    display: flex;
  }

  .hamburger-btn {
    display: flex;
  }

  .section-hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .organic-card.large {
    grid-column: span 1;
  }

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

  .philosophy-section {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

  .process-section,
  .gallery-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .detail-section {
    padding: 48px 32px;
  }

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

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

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

  .footer {
    margin-left: 0;
    padding: 48px 32px;
  }

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

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

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

  .gallery-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

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

  .carousel-btn {
    display: none;
  }

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