@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Lora:wght@400;500&family=Noto+Sans+JP:wght@400;500&family=Shippori+Mincho:wght@400;500;600&display=swap');

:root {
  --bg-primary: #FEFCF9;
  --bg-secondary: #F5EDE4;
  --bg-tertiary: #F0E8E0;
  --text-primary: #3D3530;
  --text-secondary: #8A8078;
  --accent-primary: #A85751;
  --accent-secondary: #7B9E87;
  --accent-tertiary: #C4A777;
  --accent-fourth: #E8D5C4;
  --font-heading-jp: 'Shippori Mincho', serif;
  --font-heading-en: 'Cormorant Garamond', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-body-alt: 'Lora', serif;
  --transition-snap: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

strong, b, p {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.22s ease-out;
}

ul {
  list-style: none;
}

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

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

.animated-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: blobFloat 35s ease-in-out infinite;
}

.blob-1 {
  width: 180px;
  height: 180px;
  background: #F5E6E8;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.blob-2 {
  width: 140px;
  height: 140px;
  background: #FAF3E8;
  top: 50%;
  right: 20%;
  animation-delay: -10s;
}

.blob-3 {
  width: 160px;
  height: 160px;
  background: #E8F0F5;
  bottom: 20%;
  left: 30%;
  animation-delay: -20s;
}

.blob-4 {
  width: 120px;
  height: 120px;
  background: #F0E8E0;
  top: 30%;
  right: 10%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(6px, -6px) scale(1.05); }
  50% { transform: translate(-4px, 4px) scale(0.95); }
  75% { transform: translate(4px, 6px) scale(1.02); }
}

.paper-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--accent-primary);
  z-index: 1000;
  transition: all 0.22s ease-out;
}

header.scrolled {
  height: 52px;
  border-bottom-width: 2px;
}

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

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.domain-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.company-name-jp {
  font-family: var(--font-heading-jp);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 32px;
}

.nav-link {
  font-family: var(--font-heading-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease-out;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 12px;
  right: 24px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.22s ease-out;
}

.hamburger-line:nth-child(1) { top: 14px; }
.hamburger-line:nth-child(2) { top: 21px; }
.hamburger-line:nth-child(3) { top: 28px; }

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 21px;
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: 21px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--bg-primary);
  transform: translateX(100%);
  transition: transform 340ms var(--transition-snap);
  z-index: 999;
  padding: 80px 32px 32px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  opacity: 0.98;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.mobile-domain {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading-en);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.mobile-cta {
  margin-top: auto;
  background: linear-gradient(135deg, var(--accent-primary), #8B4A43);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: block;
}

.hero-section {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 52% 48%;
  width: 100%;
  min-height: calc(100vh - 68px);
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px 60px 0;
}

.hero-headline-main {
  font-family: var(--font-heading-jp), var(--font-heading-en);
  font-size: 92px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.hero-headline-main .highlight {
  color: var(--accent-primary);
  display: block;
}

.hero-subheadline {
  font-family: var(--font-heading-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-top: 24px;
  text-transform: uppercase;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: 2px solid var(--accent-primary);
  border-radius: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-primary);
  background: transparent;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.22s ease-out;
  white-space: nowrap;
}

.hero-cta-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-4px) scale(1.02);
}

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

.paper-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
}

.paper-layer {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(61, 53, 48, 0.08);
}

.paper-layer-1 {
  inset: 0;
  background: var(--bg-secondary);
  transform: rotate(-2deg);
}

.paper-layer-2 {
  inset: 8px;
  background: var(--bg-primary);
  transform: rotate(1deg);
}

.paper-layer-3 {
  inset: 16px;
  background: var(--accent-fourth);
  overflow: hidden;
}

.paper-layer-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corner-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, var(--bg-primary) 50%);
}

.elastic-trigger {
  position: relative;
  transition: transform 220ms ease-out;
}

.elastic-trigger:hover {
  z-index: 100 !important;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 28px rgba(168, 87, 81, 0.2);
}

.neighbor-compress {
  transition: transform 220ms ease-out;
}

.elastic-trigger:hover ~ .neighbor-compress,
.neighbor-compress:hover {
  transform: scale(0.97);
}

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

.section-title {
  font-family: var(--font-heading-jp), var(--font-heading-en);
  font-size: 48px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.service-card {
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(61, 53, 48, 0.06);
  transition: all 0.22s ease-out;
  cursor: pointer;
}

.service-card:hover {
  border: 1px solid var(--accent-primary);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 28px rgba(168, 87, 81, 0.2);
}

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

.about-section {
  background: var(--bg-primary);
}

.about-layout {
  display: grid;
  grid-template-columns: 32% 68%;
  gap: 48px;
}

.gallery-sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.gallery-item {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(61, 53, 48, 0.1);
}

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

.about-content {
  padding: 24px 0;
}

.drop-cap::first-letter {
  font-family: var(--font-heading-en);
  font-size: 52px;
  font-weight: 500;
  color: var(--accent-primary);
  float: left;
  line-height: 1;
  margin-right: 12px;
}

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

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

.stat-number {
  font-family: var(--font-heading-en);
  font-size: 50px;
  font-weight: 500;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.process-section {
  background: var(--bg-tertiary);
}

.timeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 0;
  overflow-x: auto;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 140px;
}

.node-marker {
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
}

.node-label {
  font-size: 13px;
  color: var(--text-primary);
  text-align: center;
}

.benefits-section {
  background: var(--bg-primary);
}

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

.benefit-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.22s ease-out;
  cursor: pointer;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, transparent 50%, var(--bg-primary) 50%);
}

.benefit-card:hover {
  border: 1px solid var(--accent-primary);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 28px rgba(168, 87, 81, 0.2);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.benefit-title {
  font-family: var(--font-heading-jp);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.counter-section {
  background: var(--text-primary);
  padding: 60px 0;
}

.counter-marquee {
  display: flex;
  align-items: center;
  animation: marqueeScroll 18s linear infinite;
  gap: 48px;
}

.counter-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--accent-fourth);
  font-size: 14px;
}

.counter-marquee-item .icon {
  color: var(--accent-tertiary);
}

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

.counter-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 48px;
}

.counter-stat-number {
  font-family: var(--font-heading-en);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent-primary);
  text-align: center;
}

.counter-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 8px;
}

.team-section {
  background: #EBE4DC;
}

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

.team-card {
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.22s ease-out;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 28px rgba(168, 87, 81, 0.2);
  z-index: 100;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
}

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

.team-name {
  font-family: var(--font-heading-jp);
  font-size: 16px;
  font-weight: 500;
}

.team-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.faq-section {
  background: var(--bg-primary);
}

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

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

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

.faq-question .plus {
  font-size: 24px;
  color: var(--accent-primary);
  transition: transform 0.22s ease-out;
}

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

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

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

.faq-answer-content {
  padding-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.reviews-section {
  background: #E0D8D0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease-out;
}

.review-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.22s ease-out;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-primary);
  border-radius: 8px 0 0 8px;
}

.review-card.active {
  transform: scale(1);
  box-shadow: 0 10px 28px rgba(168, 87, 81, 0.15);
}

.review-client {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

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

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

.review-name {
  font-weight: 500;
}

.review-rating {
  color: var(--accent-tertiary);
  margin-bottom: 12px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  background: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input {
  padding: 16px 0;
  border: none;
  border-bottom: 2px solid var(--accent-primary);
  background: transparent;
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.22s ease-out;
}

.form-input:focus {
  outline: none;
  border-bottom-width: 3px;
}

.form-input::placeholder {
  color: var(--text-secondary);
}

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

.submit-btn {
  background: linear-gradient(135deg, var(--accent-primary), #8B4A43);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease-out;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(168, 87, 81, 0.3);
}

.contact-info-block {
  padding: 24px 0;
}

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

.info-icon {
  font-size: 24px;
  color: var(--accent-primary);
}

.info-content h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

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

footer {
  background: var(--bg-secondary);
  padding: 60px 0 32px;
  border-top: 1px solid var(--accent-fourth);
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading-jp);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-secondary);
}

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

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

.copyright {
  font-size: 12px;
  color: var(--text-secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-primary);
  border: 1px solid var(--accent-fourth);
  border-radius: 12px;
  padding: 24px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(61, 53, 48, 0.12);
  z-index: 1002;
}

.cookie-title {
  font-family: var(--font-heading-jp);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease-out;
}

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

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

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


@media (max-width: 1024px) {
  .hero-headline-main {
    font-size: 64px;
  }
  
  .hero-split {
    grid-template-columns: 100%;
    }
  
  .hero-text-side {
    padding: 80px 0 40px;
    order: 1;
  }
  
  .hero-visual-side {
    display: none;
  }
  
  .service-grid,
  .benefit-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-layout,
  .contact-layout {
    grid-template-columns: 100%;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-cluster {
    display: none;
  }
  
  .hamburger-btn {
    display: block;
  }
  
  .hero-section {
    min-height: auto;
  }
  
  .hero-headline-main {
    font-size: 48px;
  }
  
  .service-grid,
  .benefit-grid,
  .team-grid {
    grid-template-columns: 100%;
  }
  
  .stats-row {
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .counter-stats {
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .contact-layout {
    grid-template-columns: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 100%;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.48s ease-out;
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger.visible > *:nth-child(1) { animation: staggerIn 0.42s ease-out 0ms forwards; }
.stagger.visible > *:nth-child(2) { animation: staggerIn 0.42s ease-out 42ms forwards; }
.stagger.visible > *:nth-child(3) { animation: staggerIn 0.42s ease-out 84ms forwards; }
.stagger.visible > *:nth-child(4) { animation: staggerIn 0.42s ease-out 126ms forwards; }
.stagger.visible > *:nth-child(5) { animation: staggerIn 0.42s ease-out 168ms forwards; }
.stagger.visible > *:nth-child(6) { animation: staggerIn 0.42s ease-out 210ms forwards; }

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

.letter-reveal span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}

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