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

:root {
  --bg-primary: #FAFAFA;
  --bg-secondary: #F5F5F0;
  --bg-tertiary: #FFFFFF;
  --text-primary: #2D2D2D;
  --text-secondary: #6B6B6B;
  --accent-primary: #C9A87C;
  --accent-secondary: #7D9B76;
  --accent-tertiary: #B85C38;
  --border-color: #E8E4DF;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-primary);
}

h1 { font-size: 56px; font-weight: 300; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

p {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

.section {
  padding: 120px 0;
}

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

.bg-dark {
  background-color: var(--text-primary);
  color: var(--bg-tertiary);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark p {
  color: var(--bg-tertiary);
}

.text-accent {
  color: var(--accent-primary);
}

.text-muted {
  color: var(--text-secondary);
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: saturate(180%);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  background: var(--bg-tertiary);
  box-shadow: var(--shadow-soft);
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  color: var(--text-primary);
  letter-spacing: 2px;
}

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

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-link:hover::after {
  width: 20px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent-primary);
  color: var(--bg-tertiary);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #b8956a;
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.btn-outline-light {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--bg-tertiary);
  border: 1px solid var(--bg-tertiary);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-outline-dark {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-tertiary);
}

.btn-service {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: var(--accent-primary);
  color: var(--bg-tertiary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-tertiary);
  max-width: 800px;
  padding: 0 48px;
}

.hero-content h1 {
  color: var(--bg-tertiary);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.4s;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScale 0.6s ease forwards;
  animation-delay: 0.8s;
}

.hero-decorative {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Serif JP', serif;
  font-size: 120px;
  color: var(--bg-tertiary);
  opacity: 0.08;
  writing-mode: vertical-rl;
  animation: rotateText 20s linear infinite;
}

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

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

@keyframes rotateText {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201, 168, 124, 0.15) 0%, transparent 60%);
  filter: blur(30px);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
  color: var(--accent-primary);
}

.breadcrumb-nav span {
  margin: 0 8px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero .lead {
  max-width: 600px;
  color: var(--text-secondary);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.about-block:nth-child(even) {
  direction: rtl;
}

.about-block:nth-child(even) > * {
  direction: ltr;
}

.about-content {
  padding: 40px;
}

.about-content h3 {
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}

.about-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-primary);
}

.about-image {
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

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

.service-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease-out;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-primary);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent-secondary);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: var(--accent-primary);
}

.service-card h4 {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.process-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.process-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.process-item:nth-child(odd) .process-content {
  padding-right: 60px;
  padding-left: 0;
}

.process-item:nth-child(even) .process-content {
  padding-left: 60px;
}

.process-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  z-index: 2;
}

.process-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -4px;
  font-size: 12px;
  color: var(--accent-primary);
  font-weight: 500;
}

.process-content h4 {
  margin-bottom: 12px;
}

.process-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

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

.advantage-item {
  text-align: center;
  padding: 24px;
  transition: all 0.3s ease;
}

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

.advantage-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--accent-secondary);
  transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  color: var(--accent-primary);
}

.advantage-item h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.advantage-item p {
  color: var(--text-secondary);
  font-size: 14px;
}

.stats-section {
  padding: 100px 0;
}

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

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--text-secondary);
}

.stat-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--bg-tertiary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: var(--accent-primary);
}

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

.team-card {
  text-align: center;
}

.team-photo {
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.team-card:hover .team-photo img {
  filter: grayscale(20%);
  transform: scale(1.05);
}

.team-card::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  margin: 16px auto 0;
  transition: width 0.3s ease;
}

.team-card:hover::after {
  width: 40px;
}

.team-card h4 {
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.team-specialty {
  font-size: 13px;
  color: var(--accent-secondary);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}

.faq-icon {
  font-size: 24px;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: var(--text-secondary);
}

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

.reviews-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.review-slide {
  display: none;
  text-align: center;
  padding: 40px;
  animation: fadeIn 0.4s ease;
}

.review-slide.active {
  display: block;
}

.review-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.review-author {
  font-weight: 500;
  margin-bottom: 8px;
}

.review-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.review-stars {
  color: var(--accent-primary);
  font-size: 20px;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-dot.active {
  background: var(--accent-primary);
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  background: none;
  border: none;
  font-size: 24px;
}

.review-arrow:hover {
  color: var(--accent-primary);
}

.review-arrow.prev {
  left: 0;
}

.review-arrow.next {
  right: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.contact-form h3 {
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid var(--border-color);
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-control::placeholder {
  color: #9B9B9B;
  font-style: italic;
}

.form-control option {
  color: var(--text-primary);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent-primary);
  color: var(--bg-tertiary);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #b8956a;
}

.contact-info h3 {
  margin-bottom: 32px;
}

.contact-details {
  margin-bottom: 40px;
}

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

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-item p {
  color: var(--text-secondary);
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) brightness(1.1);
}

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

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

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

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

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

.blog-card {
  background: var(--bg-tertiary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.blog-card h4 {
  margin-bottom: 16px;
  font-size: 20px;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--accent-primary);
  font-weight: 500;
  font-size: 14px;
}

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

.footer {
  background: var(--text-primary);
  color: var(--bg-tertiary);
  padding: 80px 0 40px;
}

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

.footer h5 {
  color: var(--bg-tertiary);
  font-size: 16px;
  margin-bottom: 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

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

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

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

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 8px;
}

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

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 2000;
  display: block;
}

.cookie-banner h6 {
  font-size: 16px;
  margin-bottom: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}

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

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

.btn-cookie {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-cookie-accept {
  background: var(--accent-primary);
  color: var(--bg-tertiary);
  border: none;
}

.btn-cookie-accept:hover {
  background: #b8956a;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg-tertiary);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 24px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  top: 100px;
  right: 24px;
  background: var(--accent-secondary);
  color: var(--bg-tertiary);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  z-index: 3000;
  display: none;
}

.toast.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  h1 { font-size: 44px; }
  h2 { font-size: 32px; }

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

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

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

  .stat-item::after {
    display: none;
  }

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

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

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

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

@media (max-width: 768px) {
  .navbar-custom {
    height: 64px;
  }

  .btn-cta {
    display: none;
  }

  .logo {
    font-size: 22px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-decorative {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  .about-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-block:nth-child(even) {
    direction: ltr;
  }

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

  .process-timeline::before {
    left: 8px;
  }

  .process-item,
  .process-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 40px;
  }

  .process-item .process-content,
  .process-item:nth-child(odd) .process-content {
    padding: 0;
  }

  .process-dot,
  .process-number {
    left: 0;
  }

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

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

  .stat-number {
    font-size: 48px;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

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

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

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

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta,
  .btn-outline-light {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

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

  .team-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1;
  }

  .stat-number {
    font-size: 40px;
  }
}