@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --cream-1: #FDFAF4;
  --cream-2: #F7F1E4;
  --cream-3: #EFE6D2;
  --cream-deep: #F4E8D5;
  --indigo-1: #1E3A3A;
  --indigo-2: #0F1F1F;
  --indigo-soft: rgba(30, 58, 58, 0.18);
  --graphite: #5A4A45;
  --moss: #3A4A3A;
  --moss-soft: #8A7A6A;
  --terracotta: #C97A5E;
  --terracotta-pastel: #F0D4C0;
  --mint: #A4C4B8;
  --mint-soft: #E8F0EA;
  --mint-pastel: #C8DDD0;
  --ochre: #D4A574;
  --ochre-pastel: #F0DDB8;
  --ochre-soft: #F5E8D5;
  --lavender: #C5B5D4;
  --lavender-pastel: #DDD0E5;
  --lavender-bg: #EFE8F0;
  --border-soft: rgba(229, 220, 200, 0.5);
  --border-hair: rgba(30, 58, 58, 0.18);
  --shadow-soft: 0 12px 32px rgba(30, 58, 58, 0.10);
  --shadow-strong: 0 20px 48px rgba(30, 58, 58, 0.14);
  --shadow-deep: 0 24px 56px rgba(30, 58, 58, 0.20);
  --shadow-accent: rgba(201, 122, 94, 0.20);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--indigo-1);
  background: linear-gradient(180deg, var(--cream-1) 0%, var(--cream-2) 50%, var(--cream-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong, b, p, span, li, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--indigo-1);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--indigo-1);
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.mono-label {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
}

.mono-tech {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

main {
  display: block;
  padding-top: 88px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: rgba(253, 250, 244, 0.93);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 2px solid rgba(30, 58, 58, 0.12);
  box-shadow: 0 4px 24px rgba(30, 58, 58, 0.05);
  z-index: 10001;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.header-logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1100;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2.5px solid var(--indigo-1);
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--mint) 100%);
  box-shadow: 4px 4px 0 var(--indigo-1), 0 0 18px rgba(201, 122, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gentleSway 7s ease-in-out infinite;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 30px;
  height: 30px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-1);
  box-shadow: 0 0 0 2px var(--indigo-1);
  animation: centerPulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes gentleSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

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

.logo-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-1);
  font-weight: 500;
}

.logo-site-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--indigo-1);
  font-weight: 600;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-list li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--indigo-1);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s var(--spring);
  position: relative;
  display: inline-block;
}

.nav-list li a:hover {
  background: rgba(201, 122, 94, 0.10);
  transform: translateY(-2px);
  color: var(--indigo-1);
}

.nav-list li a.active {
  background: rgba(201, 122, 94, 0.12);
  color: var(--terracotta);
}

.nav-list li a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 1px;
}

.cta-estimate {
  margin-left: 24px;
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  box-shadow: 4px 4px 0 var(--indigo-1);
  transition: all 0.3s var(--spring);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.cta-estimate:hover {
  color: var(--cream-1);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--indigo-1), 0 0 0 4px rgba(201, 122, 94, 0.30);
}

.burger-capsule {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 2px solid var(--indigo-1);
  background: var(--cream-1);
  box-shadow: 4px 4px 0 var(--mint);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  z-index: 1100;
  position: relative;
}

.burger-capsule span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--indigo-1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.burger-capsule.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-capsule.active span:nth-child(2) {
  opacity: 0;
}

.burger-capsule.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream-1);
  z-index: 1050;
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(240, 212, 192, 0.5), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(200, 221, 208, 0.5), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(221, 208, 229, 0.4), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1.5px solid rgba(164, 196, 184, 0.30);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-nav-list li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--indigo-1);
  font-weight: 500;
}

.mobile-nav-list li .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 600;
}

.mobile-cta {
  display: block;
  margin-top: 30px;
  width: 100%;
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  padding: 22px 32px;
  border-radius: 100px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  box-shadow: 6px 6px 0 var(--indigo-1);
}

.hero-floor-stage {
  position: relative;
  min-height: 92vh;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 540px;
  height: 540px;
  background: var(--terracotta-pastel);
  top: -12%;
  left: -8%;
  opacity: 0.42;
  animation: drift1 34s ease-in-out infinite;
}

.hero-blob-2 {
  width: 480px;
  height: 480px;
  background: var(--ochre-pastel);
  bottom: -10%;
  right: -10%;
  opacity: 0.40;
  animation: drift2 38s ease-in-out infinite;
}

.hero-blob-3 {
  width: 420px;
  height: 420px;
  background: var(--mint-pastel);
  top: 30%;
  right: 20%;
  opacity: 0.36;
  animation: drift3 30s ease-in-out infinite;
}

.hero-blob-4 {
  width: 380px;
  height: 380px;
  background: var(--lavender-pastel);
  top: 10%;
  right: 40%;
  opacity: 0.32;
  animation: drift4 36s ease-in-out infinite;
}

.hero-blob-5 {
  width: 460px;
  height: 460px;
  background: var(--cream-deep);
  bottom: 5%;
  left: 30%;
  opacity: 0.34;
  animation: drift5 32s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(0.96); }
  50% { transform: translate(45px, 30px) scale(1.04); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -35px) scale(1.05); }
}

@keyframes drift3 {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.06); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0); border-radius: 50%; }
  33% { transform: translate(30px, -20px); border-radius: 60% 40% 50% 50%; }
  66% { transform: translate(-25px, 25px); border-radius: 40% 60% 50% 50%; }
}

@keyframes drift5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero-glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(253, 250, 244, 0.55);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  z-index: 1;
  pointer-events: none;
}

.hero-marquee-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--indigo-1);
  opacity: 0.04;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
  z-index: 1;
  animation: marqueeBg 90s linear infinite;
}

@keyframes marqueeBg {
  0% { transform: translate(-50%, -50%) rotate(-8deg); }
  100% { transform: translate(0, -50%) rotate(-8deg); }
}

.hero-content-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.hero-stamp-card {
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--indigo-1);
  border-radius: 36px;
  padding: 52px 48px;
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.10), 10px 10px 0 var(--terracotta);
  transform: rotate(-1.2deg);
  position: relative;
}

.hero-vitrine-card {
  background: linear-gradient(135deg, var(--indigo-1) 0%, var(--moss) 100%);
  border: 2px solid var(--indigo-1);
  border-radius: 40px;
  padding: 36px 32px;
  box-shadow: 0 24px 56px rgba(30, 58, 58, 0.20), 10px 10px 0 var(--ochre);
  transform: rotate(1.5deg);
  position: relative;
  color: var(--cream-1);
}

.luxury-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 4px 4px 0 var(--indigo-1);
  transform: rotate(4deg);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-killer-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--indigo-1);
  margin-bottom: 16px;
}

.hero-killer-headline .accent-italic {
  font-style: italic;
  color: var(--terracotta);
  display: block;
}

.mint-rule {
  height: 4px;
  width: 220px;
  background: var(--mint);
  border-radius: 100px;
  margin: 18px 0;
}

.hero-editorial-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.tech-meta-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-1);
  margin-bottom: 14px;
}

.body-subline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
  font-style: italic;
  margin-bottom: 28px;
}

.cta-pair {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  padding: 20px 38px;
  border-radius: 100px;
  box-shadow: 8px 8px 0 var(--indigo-1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  white-space: nowrap;
  transform: skewX(-2deg);
  transition: all 0.3s var(--spring);
}

.btn-primary:hover {
  color: var(--cream-1);
  transform: skewX(-2deg) translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--indigo-1), 0 0 0 4px rgba(201, 122, 94, 0.30);
}

.btn-secondary {
  background: rgba(253, 250, 244, 0.92);
  color: var(--indigo-1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  padding: 16px 32px;
  border-radius: 100px;
  border: 2.5px solid var(--indigo-1);
  box-shadow: 6px 6px 0 var(--mint);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  white-space: nowrap;
  transform: skewX(2deg);
  transition: all 0.3s var(--spring);
}

.btn-secondary:hover {
  background: var(--cream-1);
  color: var(--indigo-1);
  transform: skewX(2deg) translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--mint);
}

.hero-stamp-pill {
  position: absolute;
  top: -30px;
  right: 30px;
  background: linear-gradient(135deg, var(--mint), var(--ochre));
  color: var(--indigo-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 16px 20px;
  border-radius: 100px;
  transform: rotate(-8deg);
  box-shadow: 6px 6px 20px rgba(164, 196, 184, 0.4);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.hero-vitrine-img {
  width: 100%;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  background: var(--moss);
}

.hero-vitrine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vitrine-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-top: 12px;
  text-align: center;
}

.stat-cascade-pill {
  position: absolute;
  background: var(--mint);
  border: 2px solid var(--indigo-1);
  border-radius: 100px;
  padding: 18px 24px;
  box-shadow: 0 16px 40px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--terracotta);
  transform: rotate(2.5deg);
  z-index: 10;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-1);
  font-weight: 600;
}

.stat-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--terracotta);
  margin-top: 4px;
}

.promo-stamp {
  position: absolute;
  background: var(--cream-1);
  border: 2px solid var(--indigo-1);
  border-radius: 100px;
  padding: 14px 18px;
  box-shadow: 6px 6px 18px rgba(30, 58, 58, 0.10), 4px 4px 0 var(--indigo-1);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-2deg);
  z-index: 10;
}

.promo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo-1);
}

.promo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--indigo-1);
}

.promo-percent {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.catalog-stamp {
  position: absolute;
  background: var(--cream-1);
  border: 2px solid var(--indigo-1);
  border-radius: 100px;
  padding: 12px 18px;
  box-shadow: 4px 4px 14px rgba(30, 58, 58, 0.10);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--indigo-1);
  font-weight: 500;
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
  z-index: 10;
}

.vert-stamp {
  position: absolute;
  background: var(--terracotta);
  color: var(--cream-1);
  border-radius: 8px;
  padding: 18px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  box-shadow: 5px 5px 14px rgba(201, 122, 94, 0.4);
  z-index: 10;
}

.round-stamp {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--indigo-1);
  color: var(--cream-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  transform: rotate(-12deg);
  border: 2.5px solid var(--indigo-1);
  box-shadow: 4px 4px 0 var(--mint);
  z-index: 10;
  font-weight: 600;
}

section {
  padding: 100px 24px;
  position: relative;
}

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

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-rule {
  width: 90px;
  height: 4px;
  background: var(--mint);
  border-radius: 100px;
  margin: 0 auto 18px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite);
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.bento-cell {
  position: relative;
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  border: 2px solid var(--indigo-1);
  border-radius: 36px;
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.5s var(--spring);
}

.bento-cell:hover {
  z-index: 30;
  position: relative;
  transform: scale(1.04) rotate(0deg);
  border-radius: 48px;
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.14);
  outline: 2.5px solid var(--mint);
  outline-offset: 6px;
}

.bento-cell .bento-num {
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-weight: 600;
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.bento-featured-a {
  grid-column: span 4;
  grid-row: span 2;
  border-radius: 64px;
  transform: rotate(-0.8deg);
  background: rgba(253, 250, 244, 0.92);
}

.bento-featured-b {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 48px;
  transform: rotate(1.2deg);
  background: var(--mint-soft);
}

.bento-medium {
  grid-column: span 2;
  border-radius: 40px;
}

.bento-medium:nth-of-type(3) { transform: rotate(-0.8deg); }
.bento-medium:nth-of-type(4) { transform: rotate(0.6deg); background: var(--lavender-bg); }
.bento-medium:nth-of-type(5) { transform: rotate(-0.4deg); background: var(--ochre-soft); }

.bento-large-c {
  grid-column: span 6;
  background: var(--indigo-1);
  color: var(--cream-1);
  border-radius: 80px;
  transform: rotate(-0.5deg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.bento-large-c:hover {
  background: var(--indigo-1);
  color: var(--cream-1);
}

.bento-large-c .bento-num {
  color: var(--mint);
  opacity: 0.55;
}

.bento-large-c .bento-title,
.bento-large-c .bento-desc {
  color: var(--cream-1);
}

.bento-num-feature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 600;
  opacity: 0.55;
  line-height: 1;
  color: var(--mint);
}

.bento-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bento-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 18px;
}

.bento-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--indigo-1);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.bento-specs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bento-3d-thumb {
  width: 100%;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--cream-2);
}

.bento-3d-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-strip {
  margin-top: 64px;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  padding: 18px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
  padding-right: 24px;
}

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

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--cream-1);
  border: 2px solid var(--indigo-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--indigo-1);
  flex-shrink: 0;
}

.marquee-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  transform: rotate(45deg);
  border-radius: 1px;
}

.process-section {
  position: relative;
}

.sticky-title {
  position: sticky;
  top: 88px;
  background: linear-gradient(180deg, var(--cream-1) 70%, transparent);
  padding: 24px 0 32px;
  z-index: 10;
  margin-bottom: 40px;
}

.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: var(--terracotta);
  opacity: 0.4;
  transform: translateX(-50%);
  border-radius: 100px;
}

.timeline-step {
  position: relative;
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-soft);
  border-radius: 28px;
  padding: 32px 28px;
  margin-bottom: 32px;
  box-shadow: 0 16px 40px rgba(30, 58, 58, 0.10);
  transition: all 0.5s var(--spring);
}

.timeline-step:hover {
  z-index: 20;
  transform: scale(1.04);
  border-radius: 36px;
  border: 2.5px solid var(--terracotta);
  outline: 2.5px solid var(--mint);
  outline-offset: 6px;
  box-shadow: 0 24px 56px rgba(30, 58, 58, 0.14);
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  transform: translateX(-50%);
  border: 2px solid var(--indigo-1);
  z-index: 2;
}

.step-icon-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  border: 2px solid var(--indigo-1);
}

.step-num-deco {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  opacity: 0.45;
  line-height: 1;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  margin: 18px 0 8px 0;
  padding-left: 70px;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite);
  padding-left: 70px;
  margin-bottom: 10px;
}

.step-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-1);
  padding-left: 70px;
  font-weight: 500;
}

.process-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--indigo-1);
  z-index: 99;
}

.process-progress-fill {
  height: 100%;
  background: var(--terracotta);
  width: 0%;
  transition: width 0.2s ease-out;
}

.split-sticky {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.split-stamp-card {
  background: linear-gradient(135deg, var(--cream-1) 0%, var(--cream-2) 100%);
  border: 2px solid var(--indigo-1);
  border-radius: 48px;
  padding: 36px;
  box-shadow: 0 24px 56px rgba(30, 58, 58, 0.16), 10px 10px 0 var(--mint);
  position: sticky;
  top: 132px;
  transform: rotate(-0.8deg);
}

.split-stamp-img {
  width: 100%;
  height: 380px;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--cream-2);
}

.split-stamp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-stamp-pill {
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-10deg);
  box-shadow: 6px 6px 20px rgba(201, 122, 94, 0.5);
  margin: 0 auto 16px;
  display: inline-block;
}

.split-history-card {
  background: rgba(253, 250, 244, 0.94);
  backdrop-filter: blur(16px);
  border: 2px solid var(--indigo-1);
  border-radius: 36px;
  padding: 64px 56px;
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.16), 8px 8px 0 var(--terracotta);
  transform: rotate(0.6deg);
  color: var(--indigo-1);
}

.split-history-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--indigo-1);
}

.history-rule {
  width: 200px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 100px;
  margin-bottom: 32px;
}

.history-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--indigo-1);
  margin-bottom: 20px;
}

.facts-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.fact-blob {
  border-radius: 64px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 110px;
  min-width: 180px;
  box-shadow: 8px 8px 0 var(--indigo-1);
  transition: all 0.4s var(--spring);
  position: relative;
}

.fact-blob:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 14px 14px 0 var(--indigo-1);
  z-index: 10;
  outline: 2.5px solid var(--mint);
  outline-offset: 6px;
  border-radius: 72px;
}

.fact-blob-1 { background: var(--indigo-1); color: var(--cream-1); }
.fact-blob-2 { background: var(--terracotta); color: var(--cream-1); }
.fact-blob-3 { background: var(--mint); color: var(--indigo-1); }
.fact-blob-4 { background: var(--moss); color: var(--cream-1); }
.fact-blob-5 { background: var(--ochre); color: var(--indigo-1); }

.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.fact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.95;
}

.facts-cluster .fact-blob:nth-child(1) { transform: rotate(-2deg); }
.facts-cluster .fact-blob:nth-child(2) { transform: rotate(1.5deg); }
.facts-cluster .fact-blob:nth-child(3) { transform: rotate(-1deg); }
.facts-cluster .fact-blob:nth-child(4) { transform: rotate(2deg); }
.facts-cluster .fact-blob:nth-child(5) { transform: rotate(-1.5deg); }

.facts-cluster .fact-blob:nth-child(1):hover,
.facts-cluster .fact-blob:nth-child(2):hover,
.facts-cluster .fact-blob:nth-child(3):hover,
.facts-cluster .fact-blob:nth-child(4):hover,
.facts-cluster .fact-blob:nth-child(5):hover {
  transform: translateY(-4px) scale(1.04) rotate(0deg);
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.flex-card {
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-soft);
  border-radius: 48px;
  padding: 32px 26px;
  box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--terracotta);
  position: relative;
  transition: all 0.5s var(--spring);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.flex-card:nth-child(1) { box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--terracotta); transform: rotate(-0.6deg); }
.flex-card:nth-child(2) { box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--mint); transform: rotate(0.5deg); }
.flex-card:nth-child(3) { box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--ochre); transform: rotate(-0.7deg); }
.flex-card:nth-child(4) { box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--indigo-1); transform: rotate(0.4deg); }
.flex-card:nth-child(5) { box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--moss); transform: rotate(-0.5deg); }
.flex-card:nth-child(6) { box-shadow: 0 12px 32px rgba(30, 58, 58, 0.10), 6px 6px 0 var(--terracotta); transform: rotate(0.6deg); }

.flex-card:hover {
  z-index: 30;
  transform: scale(1.04) rotate(0deg);
  border-radius: 56px;
  border: 2.5px solid var(--terracotta);
  outline: 2.5px solid var(--mint);
  outline-offset: 6px;
  box-shadow: 10px 10px 0 var(--terracotta);
}

.flex-card-marker {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-1);
  opacity: 0.6;
  font-weight: 600;
}

.flex-card-num {
  position: absolute;
  bottom: -20px;
  right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 600;
  opacity: 0.18;
  line-height: 1;
  color: var(--terracotta);
}

.flex-card-icon {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  color: var(--terracotta);
}

.flex-card-pill {
  position: absolute;
  top: 78px;
  right: 22px;
  background: var(--terracotta);
  color: var(--cream-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  font-weight: 600;
}

.flex-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  margin: 90px 0 14px 0;
  line-height: 1.2;
}

.flex-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite);
}

.team-reveal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.team-list {
  list-style: none;
  padding: 0;
}

.team-list-item {
  padding: 22px 0;
  border-bottom: 1.5px solid rgba(164, 196, 184, 0.30);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
}

.team-list-item:first-child {
  border-top: 1.5px solid rgba(164, 196, 184, 0.30);
}

.team-list-item:hover {
  padding-left: 16px;
}

.team-list-item .team-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 600;
}

.team-list-item .team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--indigo-1);
  font-weight: 500;
  flex-grow: 1;
}

.team-list-item .team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--graphite);
  font-weight: 500;
}

.team-photo-frame {
  position: sticky;
  top: 132px;
  background: rgba(253, 250, 244, 0.92);
  border: 2px solid var(--indigo-1);
  border-radius: 48px;
  padding: 24px;
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.14), 10px 10px 0 var(--terracotta);
  transform: rotate(-1deg);
}

.team-photo {
  width: 100%;
  height: 440px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 16px;
}

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

.team-photo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--indigo-1);
  text-align: center;
  font-weight: 600;
}

.team-photo-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  text-align: center;
  margin-top: 6px;
  font-weight: 500;
}

.testimonial-fan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 36px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(30, 58, 58, 0.10), 8px 8px 0 var(--mint);
  position: relative;
  transition: all 0.4s var(--spring);
}

.testimonial-card:nth-child(odd) { transform: rotate(-0.8deg); }
.testimonial-card:nth-child(even) { transform: rotate(0.7deg); }
.testimonial-card:nth-child(3n) { transform: rotate(0.4deg); }

.testimonial-card:hover {
  z-index: 20;
  transform: scale(1.04) rotate(0deg);
  border-radius: 44px;
  box-shadow: 0 24px 56px rgba(30, 58, 58, 0.14), 10px 10px 0 var(--mint);
}

.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--indigo-1);
  margin-bottom: 16px;
  background: var(--cream-2);
}

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

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.4;
  position: absolute;
  top: 8px;
  right: 24px;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--indigo-1);
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
}

.testimonial-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--graphite);
  margin-top: 4px;
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--ochre);
}

.gallery-mosaic {
  columns: 3;
  column-gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  background: var(--cream-2);
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid var(--indigo-1);
  box-shadow: 0 12px 28px rgba(30, 58, 58, 0.08);
  transition: all 0.4s var(--spring);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(30, 58, 58, 0.16);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-caption {
  padding: 16px 20px;
  background: var(--cream-1);
}

.gallery-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--indigo-1);
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--indigo-1) 0%, var(--moss) 100%);
  border-radius: 80px;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  border: 2px solid var(--indigo-1);
  box-shadow: 0 24px 56px rgba(30, 58, 58, 0.20);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--terracotta);
  filter: blur(100px);
  opacity: 0.4;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--mint);
  filter: blur(100px);
  opacity: 0.4;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  color: var(--cream-1);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-1);
  max-width: 640px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(253, 250, 244, 0.95);
  color: var(--indigo-1);
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 600;
  box-shadow: 6px 6px 0 var(--terracotta);
}

.site-footer {
  background: var(--indigo-1);
  color: var(--cream-1);
  padding: 80px 24px 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--terracotta);
  filter: blur(100px);
  opacity: 0.18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.footer-logo .logo-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--cream-1);
  box-shadow: 4px 4px 0 var(--terracotta);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo-domain {
  color: var(--mint);
}

.footer-logo-text .logo-site-name {
  color: var(--cream-1);
}

.footer-about {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--cream-1);
  opacity: 0.85;
}

.footer-headline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
}

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

.footer-list a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--cream-1);
  opacity: 0.85;
  transition: all 0.3s var(--ease);
}

.footer-list a:hover {
  color: var(--ochre);
  opacity: 1;
  padding-left: 6px;
}

.footer-contact-block p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-1);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-block svg {
  flex-shrink: 0;
  color: var(--mint);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 250, 244, 0.18);
  padding-top: 30px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--cream-1);
  opacity: 0.7;
}

.footer-legal-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer-legal-list a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--cream-1);
  opacity: 0.7;
  transition: all 0.3s var(--ease);
}

.footer-legal-list a:hover {
  color: var(--ochre);
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream-1);
  border: 2px solid var(--indigo-1);
  border-radius: 32px;
  padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(30, 58, 58, 0.16), 8px 8px 0 var(--mint);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--indigo-1);
}

.cookie-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  display: block;
  margin-bottom: 4px;
}

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

.cookie-btn {
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid var(--indigo-1);
  font-weight: 600;
  white-space: nowrap;
  min-height: 44px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  box-shadow: 4px 4px 0 var(--indigo-1);
}

.cookie-decline {
  background: var(--cream-1);
  color: var(--indigo-1);
}

.cookie-link {
  background: transparent;
  color: var(--indigo-1);
  border-color: transparent;
  text-decoration: underline;
}

.page-header-mini {
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
}

.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}

.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  margin-bottom: 18px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.page-lede {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite);
  max-width: 760px;
  margin: 0 auto;
  font-style: italic;
}

.faq-stack {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s var(--spring);
}

.faq-item:hover {
  box-shadow: 6px 6px 0 var(--mint);
}

.faq-item.open {
  box-shadow: 8px 8px 0 var(--terracotta);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--indigo-1);
  color: var(--cream-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--terracotta);
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--indigo-1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 36px;
  padding: 48px 40px;
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.14), 8px 8px 0 var(--terracotta);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--indigo-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--indigo-1);
}

.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--indigo-1);
}

.contact-info-text a {
  color: var(--indigo-1);
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: span 2;
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--indigo-1);
  font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--indigo-1);
  border-radius: 18px;
  background: var(--cream-1);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--indigo-1);
  transition: all 0.3s var(--ease);
  min-height: 50px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
  background: var(--cream-1);
}

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

.form-submit {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  color: var(--cream-1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  padding: 20px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--indigo-1);
  transition: all 0.3s var(--spring);
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
}

.form-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--indigo-1), 0 0 0 4px rgba(201, 122, 94, 0.30);
}

.thank-you-stage {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.thank-you-card {
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 48px;
  padding: 64px 56px;
  max-width: 720px;
  box-shadow: 0 24px 56px rgba(30, 58, 58, 0.16), 10px 10px 0 var(--mint);
}

.thank-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--ochre));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 2px solid var(--indigo-1);
  box-shadow: 6px 6px 0 var(--terracotta);
}

.thank-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  color: var(--indigo-1);
  margin-bottom: 18px;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 36px;
  padding: 56px 48px;
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.10);
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--indigo-1);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mint);
}

.legal-content p,
.legal-content li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--indigo-1);
  margin-bottom: 14px;
}

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

.detail-hero {
  background: linear-gradient(135deg, var(--cream-1) 0%, var(--cream-2) 100%);
  padding: 60px 24px 40px;
  text-align: center;
}

.detail-content {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.detail-img-frame {
  background: var(--cream-2);
  border-radius: 36px;
  overflow: hidden;
  border: 2px solid var(--indigo-1);
  box-shadow: 0 20px 48px rgba(30, 58, 58, 0.10), 8px 8px 0 var(--mint);
}

.detail-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.detail-specs-card {
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(30, 58, 58, 0.10);
  position: sticky;
  top: 132px;
}

.detail-specs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.detail-specs-row:last-child {
  border-bottom: none;
}

.detail-specs-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
}

.detail-specs-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--indigo-1);
  font-weight: 600;
}

.detail-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 40px auto;
}

.detail-process-card {
  background: rgba(253, 250, 244, 0.94);
  border: 2px solid var(--indigo-1);
  border-radius: 28px;
  padding: 24px;
  text-align: center;
}

.detail-process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.detail-process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--indigo-1);
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-process-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--graphite);
}

@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-stamp-card,
  .hero-vitrine-card {
    transform: rotate(0deg);
  }
  .split-sticky {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-stamp-card {
    position: relative;
    top: 0;
    transform: rotate(0deg);
  }
  .team-reveal-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-photo-frame {
    position: relative;
    top: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-content {
    grid-template-columns: 1fr;
  }
  .detail-specs-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 64px;
  }
  .site-header {
    height: 64px;
    padding: 0 16px;
  }
  .header-nav {
    display: none;
  }
  .burger-capsule {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .logo-mark {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  .logo-mark svg {
    width: 24px;
    height: 24px;
  }
  .logo-domain {
    font-size: 11px;
  }
  .logo-site-name {
    font-size: 12px;
  }
  .container-floor {
    padding: 0 16px;
  }
  section {
    padding: 60px 16px;
  }
  .hero-floor-stage {
    min-height: auto;
    padding: 60px 16px 40px;
  }
  .hero-stamp-card {
    padding: 32px 24px;
  }
  .hero-killer-headline {
    font-size: 40px;
  }
  .cta-pair {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  .stat-cascade-pill,
  .promo-stamp,
  .catalog-stamp,
  .vert-stamp,
  .round-stamp,
  .hero-stamp-pill {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-featured-a,
  .bento-featured-b,
  .bento-medium,
  .bento-large-c {
    grid-column: span 1;
    grid-row: auto;
    transform: rotate(0deg);
    border-radius: 28px;
  }
  .bento-large-c {
    grid-template-columns: 1fr;
  }
  .flex-grow-grid {
    grid-template-columns: 1fr;
  }
  .flex-card {
    transform: rotate(0deg);
  }
  .testimonial-fan {
    grid-template-columns: 1fr;
  }
  .gallery-mosaic {
    columns: 2;
  }
  .cta-section {
    border-radius: 40px;
    padding: 50px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer {
    padding: 60px 24px 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: span 1;
  }
  .split-history-card {
    padding: 36px 28px;
  }
  .split-history-card h2 {
    font-size: 36px;
  }
  .facts-cluster {
    flex-direction: column;
  }
  .fact-blob {
    width: 100%;
  }
  .legal-content {
    padding: 36px 24px;
  }
  .timeline-step {
    padding: 24px 20px;
  }
  .step-title,
  .step-desc,
  .step-meta {
    padding-left: 60px;
  }
  .step-icon-wrap {
    width: 44px;
    height: 44px;
  }
  .thank-you-card {
    padding: 40px 28px;
  }
  .thank-h1 {
    font-size: 36px;
  }
  .hero-marquee-bg {
    font-size: 32px;
  }
  .hero-blob {
    width: 320px !important;
    height: 320px !important;
  }
}


@media (max-width: 480px) {
  .gallery-mosaic {
    columns: 1;
  }
  .hero-killer-headline {
    font-size: 32px;
  }
  .cta-phone-pill {
    font-size: 14px;
    padding: 14px 20px;
  }
  .cookie-banner {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    padding: 20px !important;
  }
  .hero-blob {
    width: 240px !important;
    height: 240px !important;
  }
}
