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

:root {
  --color-porcelain: #FAFAFA;
  --color-linen: #F5F5F3;
  --color-warm-putty: #EEEDE8;
  --color-jade-mist: #8FBCAB;
  --color-jade-dark: #7DAD9B;
  --color-stone: #3D3D3D;
  --color-pebble: #8A8A8A;
  --color-border: #E3E1DB;
  --color-border-light: #E8E6E1;
  
  --font-heading: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.025), 0 12px 40px rgba(0,0,0,0.01);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.06);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.04);
  
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 10px;
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.45s ease;
  --transition-reveal: 0.8s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-stone);
  background-color: var(--color-porcelain);
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

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

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

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

.section {
  padding: 120px 0;
}

.bg-porcelain {
  background-color: var(--color-porcelain);
}

.bg-linen {
  background-color: var(--color-linen);
}

.bg-warm-putty {
  background-color: var(--color-warm-putty);
}

.text-stone {
  color: var(--color-stone);
}

.text-pebble {
  color: var(--color-pebble);
}

.text-jade {
  color: var(--color-jade-mist);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--color-stone);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-pebble);
  line-height: 1.85;
  max-width: 600px;
}

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

.section-header .section-title {
  margin-bottom: 20px;
}

.divider-line {
  width: 56px;
  height: 2px;
  background-color: var(--color-jade-mist);
  margin: 0 auto 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background-color: var(--color-jade-mist);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-jade-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(143,188,171,0.3);
  color: white;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--color-stone);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--color-jade-mist);
  color: var(--color-jade-mist);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: white;
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition-fast);
  display: flex;
  align-items: center;
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-stone);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  color: var(--color-pebble);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-jade-mist);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-menu a:hover {
  color: var(--color-jade-mist);
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-stone);
  transition: all var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-porcelain);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu.active {
  display: flex;
  opacity: 0.98;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 32px;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-stone);
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--transition-fast);
}

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

.mobile-menu.active a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.30s; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-stone);
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(143,188,171,0.04) 0%, rgba(255,255,255,0) 100%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.035em;
  color: var(--color-stone);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 0.8s ease forwards;
}

.hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.hero-decoration span {
  display: block;
  height: 2px;
  background-color: var(--color-jade-mist);
}

.hero-decoration span:first-child {
  width: 48px;
  opacity: 0;
  transform: scaleX(0);
  animation: heroLineGrow 0.5s ease forwards;
  animation-delay: 0.5s;
}

.hero-decoration span:last-child {
  width: 28px;
  opacity: 0;
  transform: scaleX(0);
  animation: heroLineGrow 0.5s ease forwards;
  animation-delay: 0.6s;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-pebble);
  max-width: 620px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.7s;
}

.hero-cta {
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineGrow {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero-small {
  min-height: 320px;
  display: flex;
  align-items: center;
  background-color: var(--color-linen);
  position: relative;
}

.hero-small .hero-content {
  text-align: left;
  max-width: none;
  padding-left: 5%;
}

.hero-small .hero-title {
  font-size: 40px;
  margin-bottom: 12px;
}

.hero-small .divider-line {
  margin: 0 0 0 0;
  justify-content: flex-start;
}

.breadcrumb {
  font-size: 12px;
  color: #A0A0A0;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--color-stone);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text p {
  font-size: 17px;
  color: #5D5D5D;
  line-height: 1.85;
  margin-bottom: 1.5em;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

.about-images img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-images img:first-child {
  margin-top: 24px;
}

.about-images img:last-child {
  margin-left: -20px;
}

.services-section {
  background-color: var(--color-warm-putty);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover .service-icon {
  stroke: var(--color-jade-mist);
  fill: rgba(143,188,171,0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  stroke: var(--color-pebble);
  stroke-width: 1.5;
  fill: none;
  transition: all var(--transition-fast);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-stone);
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-pebble);
  line-height: 1.7;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-pebble);
  margin-top: 16px;
}

.process-section {
  background-color: var(--color-warm-putty);
  position: relative;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 80px;
  right: 80px;
  height: 2px;
  background-color: #E0DDD6;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--color-jade-mist);
  color: var(--color-jade-mist);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.process-content {
  background-color: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 200px;
  transition: all var(--transition-fast);
}

.process-content:hover {
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--color-jade-mist);
}

.process-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 14px;
  color: var(--color-pebble);
  line-height: 1.6;
}

.advantages-section {
  background-color: var(--color-porcelain);
  position: relative;
  overflow: hidden;
}

.wave-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  fill: var(--color-warm-putty);
  width: 100%;
}

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

.advantage-item {
  text-align: center;
}

.advantage-icon {
  width: 52px;
  height: 52px;
  background-color: #F2F6F4;
  border: 1px solid #D4E0DB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-fast);
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-pebble);
  stroke-width: 1.5;
  fill: none;
  transition: all var(--transition-fast);
}

.advantage-item:hover .advantage-icon {
  transform: rotate(90deg);
  border-color: var(--color-jade-mist);
  background-color: rgba(143,188,171,0.08);
}

.advantage-item:hover .advantage-icon svg {
  stroke: var(--color-jade-mist);
}

.advantage-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-stone);
  margin-bottom: 8px;
}

.advantage-item p {
  font-size: 14px;
  color: var(--color-pebble);
  line-height: 1.6;
}

.stats-section {
  background-color: var(--color-porcelain);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 32px,
    #F3F3F1 32px,
    #F3F3F1 33px
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 700;
  color: var(--color-jade-mist);
  line-height: 1;
  transition: all var(--transition-fast);
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(143,188,171,0.3);
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-pebble);
  margin-top: 12px;
}

.stat-divider {
  width: 36px;
  height: 1px;
  background-color: #E0DDD6;
  margin: 16px auto 0;
}

.team-section {
  background-color: var(--color-warm-putty);
}

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

.team-card {
  background-color: white;
  padding: 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: var(--shadow-sm);
  margin: 0 auto 20px;
  transition: all var(--transition-fast);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 4px;
}

.team-position {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-pebble);
  margin-bottom: 8px;
}

.team-exp {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #A0A0A0;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #F0EEE9;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-jade-mist);
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-stone);
}

.faq-icon {
  font-size: 20px;
  color: var(--color-pebble);
  transition: all var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer-content {
  padding-bottom: 26px;
}

.faq-answer p {
  font-size: 15px;
  color: #5D5D5D;
  line-height: 1.7;
}

.testimonials-section {
  background-color: var(--color-warm-putty);
}

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

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 56px;
  color: var(--color-border);
  position: absolute;
  top: 0;
  left: 12px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  color: #5D5D5D;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-stone);
}

.testimonial-info span {
  font-size: 14px;
  color: #A0A0A0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}

.contact-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--color-border);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-stone);
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-pebble);
}

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

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 32px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-jade-mist);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-block p {
  font-size: 16px;
  color: #5D5D5D;
  line-height: 1.6;
}

.contact-map {
  margin-top: 32px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  border: none;
  filter: grayscale(80%);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

footer {
  background-color: var(--color-linen);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border-light);
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--color-pebble);
  line-height: 1.8;
  margin-top: 16px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-stone);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--color-pebble);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-jade-mist);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-pebble);
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--color-pebble);
  transition: color var(--transition-fast);
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: white;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  z-index: 10000;
  display: block;
}

.cookie-banner h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--color-pebble);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn-accept {
  background-color: var(--color-jade-mist);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  background-color: var(--color-jade-dark);
}

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

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-porcelain);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

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

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-jade-mist);
  stroke-width: 2;
  fill: none;
}

.thank-you-content h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 17px;
  color: var(--color-pebble);
  line-height: 1.8;
  margin-bottom: 32px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-reveal);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: all var(--transition-reveal);
}

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

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-images {
    order: -1;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid::before {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
  
  .hero-small .hero-content {
    padding-left: 24px;
  }
  
  .hero-small .hero-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-primary {
    width: 100%;
    padding: 16px 24px;
  }
  
  .about-text h2 {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .contact-form h3,
  .contact-info h3 {
    font-size: 22px;
  }
}
