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

:root {
  --bg-warm-1: #FFF8F2;
  --bg-warm-2: #FFECD2;
  --bg-warm-3: #FCB69F;
  --bg-card: #FFFFFF;
  --text-primary: #9A2A2A;
  --text-secondary: #B85C5C;
  --text-muted: #6B4848;
  --accent-coral: #FF6B6B;
  --accent-coral-dark: #E55656;
  --accent-peach: #FF8E72;
  --border-soft: #FFD4C4;
  --deco-apricot: #FFD93D;
  --deco-cream: #FFF0E8;
  --shadow-soft: 0 8px 32px rgba(154, 42, 42, 0.10);
  --shadow-card: 0 12px 36px rgba(154, 42, 42, 0.12);
  --shadow-coral: 0 12px 32px rgba(255, 107, 107, 0.35);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 56px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Lora', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-warm-1) 0%, var(--bg-warm-2) 60%, var(--bg-warm-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

strong, p, span, li, a, b {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
}

a {
  color: var(--accent-coral);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-coral-dark);
}

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

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

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

.section-pad-sm {
  padding: 64px 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-coral);
  margin-bottom: 18px;
  display: inline-block;
}

.lede {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 0 32px;
}

.coral-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-coral);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-coral);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-coral);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-coral);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
  white-space: nowrap;
  min-height: 56px;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-coral-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 32px;
  border: 2px solid var(--accent-coral);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-height: 56px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--accent-coral);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--accent-coral);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.pill-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  padding: 10px 14px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pill-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
  min-width: 0;
}

.pill-header__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-peach));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
}

.pill-header__title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.pill-header__domain {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-coral);
  text-transform: uppercase;
}

.pill-header__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.pill-header__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 10px 18px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.pill-header__link:hover {
  background: var(--accent-coral);
  color: #FFFFFF;
}

.pill-header__link.is-active {
  background: var(--accent-coral);
  color: #FFFFFF;
}

.pill-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-coral);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-coral);
  white-space: nowrap;
  transition: transform 0.25s ease;
}

.pill-header__cta:hover {
  transform: translateY(-1px);
  color: #FFFFFF;
}

.pill-header__burger {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.pill-header__burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pill-header__burger span:nth-child(1) { top: 15px; }
.pill-header__burger span:nth-child(2) { top: 21px; }
.pill-header__burger span:nth-child(3) { top: 27px; }

.pill-header__burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.pill-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.pill-header__burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, #FFECD2 0%, #FCB69F 100%);
  display: flex;
  flex-direction: column;
  padding: 120px 32px 60px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-drawer__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.mobile-drawer__blob--1 {
  width: 360px;
  height: 360px;
  background: var(--accent-coral);
  top: -100px;
  right: -120px;
  animation: float-blob 22s ease-in-out infinite;
}

.mobile-drawer__blob--2 {
  width: 320px;
  height: 320px;
  background: var(--deco-apricot);
  bottom: -120px;
  left: -100px;
  animation: float-blob 28s ease-in-out infinite reverse;
}

.mobile-drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.mobile-drawer__domain {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-coral);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mobile-drawer__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 36px;
  color: var(--text-primary);
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-drawer__link {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer__link:hover {
  color: var(--accent-coral);
}

.mobile-drawer__cta {
  margin-top: 36px;
  background: var(--accent-coral);
  color: #FFFFFF;
  text-align: center;
  padding: 18px;
  border-radius: 32px;
  font-weight: 600;
  text-decoration: none;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 160px 0 100px;
  overflow: hidden;
}

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

.hero__bg-blob--1 {
  width: 520px;
  height: 520px;
  background: var(--accent-coral);
  top: -120px;
  right: -100px;
  animation: float-blob 28s ease-in-out infinite;
}

.hero__bg-blob--2 {
  width: 420px;
  height: 420px;
  background: var(--accent-peach);
  bottom: -80px;
  left: -100px;
  animation: float-blob 32s ease-in-out infinite reverse;
}

.hero__bg-blob--3 {
  width: 340px;
  height: 340px;
  background: var(--deco-apricot);
  top: 40%;
  left: 45%;
  opacity: 0.3;
  animation: float-blob 24s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 212, 196, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 212, 196, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-coral);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent-coral);
  display: inline-block;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
  color: var(--accent-coral);
  font-style: italic;
  font-weight: 500;
}

.hero__subline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__subline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__subline span::before {
  content: "·";
  color: var(--accent-coral);
}

.hero__subline span:first-child::before {
  content: "";
  display: none;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-num span {
  color: var(--accent-coral);
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
}

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

.hero__visual-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero__visual-floating--top {
  top: 28px;
  left: -28px;
}

.hero__visual-floating--bottom {
  bottom: 28px;
  right: -28px;
}

.hero__visual-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-coral);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero__visual-floating-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero__visual-floating-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.section-head__title {
  max-width: 620px;
}

.section-head__side {
  max-width: 380px;
  color: var(--text-secondary);
  font-size: 15px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.bento__item {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, z-index 0s 0.2s;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}

.bento__item:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 10;
  box-shadow: 0 24px 56px rgba(255, 107, 107, 0.22);
}

.bento__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.bento__item--md {
  grid-column: span 2;
  grid-row: span 1;
}

.bento__item--wide {
  grid-column: span 4;
  grid-row: span 1;
}

.bento__item--tall {
  grid-column: span 2;
  grid-row: span 2;
}

.bento__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.bento__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.0) 30%, rgba(154, 42, 42, 0.78) 100%);
}

.bento__content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.bento__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bento__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.15;
}

.bento__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.bento__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--deco-apricot);
  margin-top: 14px;
  letter-spacing: 0.06em;
}

.bento__plain {
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.bento__plain .bento__num {
  color: var(--accent-coral);
}

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

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

.bento__icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--deco-cream), var(--border-soft));
}

.node-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.node-process__item {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s 0.2s;
}

.node-process__item:hover {
  transform: translateY(-6px);
  z-index: 10;
  box-shadow: 0 20px 48px rgba(255, 107, 107, 0.18);
}

.node-process__step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-coral);
  margin-bottom: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.node-process__step::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-coral);
}

.node-process__node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-peach));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-coral);
}

.node-process__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.masonry {
  column-count: 3;
  column-gap: 24px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s 0.2s;
  z-index: 1;
}

.masonry__item:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 10;
}

.masonry__media {
  width: 100%;
  display: block;
}

.masonry__body {
  padding: 22px 24px;
}

.masonry__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.masonry__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.masonry__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.split-screen__sticky {
  position: sticky;
  top: 120px;
  align-self: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

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

.split-screen__content {
  padding-top: 24px;
}

.split-screen__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 24px;
}

.split-screen__lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.split-screen__paragraph {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.facts__item {
  background: var(--deco-cream);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--border-soft);
}

.facts__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 6px;
}

.facts__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.flexgrow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}

.flexgrow__item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: flex-grow 0.4s ease, transform 0.35s ease, z-index 0s 0.2s;
  flex-grow: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  cursor: default;
}

.flexgrow__item:hover {
  flex-grow: 2.4;
  z-index: 10;
  transform: translateY(-6px);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--deco-cream) 100%);
}

.flexgrow__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 24px;
}

.flexgrow__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

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

.hover-team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hover-team__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.25s ease, padding 0.25s ease;
  z-index: 1;
}

.hover-team__row:hover {
  color: var(--accent-coral);
  padding-left: 28px;
  z-index: 5;
}

.hover-team__row span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
  margin-left: 24px;
}

.hover-team__tooltip {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) scale(0.85);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
  min-width: 280px;
}

.hover-team__row:hover .hover-team__tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hover-team__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--deco-cream);
  flex-shrink: 0;
}

.hover-team__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.hover-team__info span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent-coral);
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 0;
  display: block;
}

.coverflow {
  position: relative;
  perspective: 1500px;
  padding: 40px 0;
}

.coverflow__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: center;
  gap: 24px;
  min-height: 380px;
  position: relative;
}

.coverflow__track::-webkit-scrollbar {
  display: none;
}

.coverflow__card {
  flex: 0 0 360px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
}

.coverflow__card.is-side {
  transform: scale(0.85) rotateY(15deg);
  opacity: 0.7;
}

.coverflow__card.is-side.is-left {
  transform: scale(0.85) rotateY(-15deg) translateX(-30px);
}

.coverflow__card.is-side.is-right {
  transform: scale(0.85) rotateY(15deg) translateX(30px);
}

.coverflow__card.is-active {
  transform: scale(1.04) rotateY(0);
  z-index: 5;
  box-shadow: 0 30px 64px rgba(255, 107, 107, 0.25);
}

.coverflow__quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 28px;
  font-style: italic;
}

.coverflow__quote::before {
  content: "“";
  font-size: 80px;
  color: var(--accent-coral);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  opacity: 0.4;
}

.coverflow__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.coverflow__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-peach));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.coverflow__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.coverflow__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.coverflow__stars {
  color: var(--deco-apricot);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.coverflow__controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.coverflow__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.coverflow__btn:hover {
  background: var(--accent-coral);
  color: #FFFFFF;
  border-color: var(--accent-coral);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion__item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease;
}

.accordion__item.is-open {
  box-shadow: 0 18px 42px rgba(255, 107, 107, 0.18);
}

.accordion__trigger {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  min-height: 64px;
}

.accordion__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deco-cream);
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
  font-weight: 400;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
  background: var(--accent-coral);
  color: #FFFFFF;
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__item.is-open .accordion__panel {
  max-height: 600px;
}

.accordion__answer {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-form__side {
  background: linear-gradient(160deg, var(--accent-coral) 0%, var(--accent-peach) 100%);
  padding: 56px 48px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.contact-form__side::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(60px);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.contact-form__side h3 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.15;
}

.contact-form__lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-form__detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-form__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-form__detail-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.contact-form__detail-text span,
.contact-form__detail-text a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  display: block;
}

.contact-form__detail-text a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.contact-form__fields {
  padding: 56px 48px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: block;
  position: relative;
  margin-bottom: 22px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-soft);
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.25s ease;
  border-radius: 0;
  outline: none;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--accent-coral);
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
  font-family: var(--font-body);
  font-size: 14px;
}

.contact-form__submit {
  width: 100%;
  background: var(--accent-coral);
  color: #FFFFFF;
  border: none;
  padding: 18px 36px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-coral);
  transition: transform 0.25s ease, background 0.25s ease;
  margin-top: 8px;
}

.contact-form__submit:hover {
  background: var(--accent-coral-dark);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-coral);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-coral);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.form-success p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 28px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 95;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-card);
  max-width: 380px;
  font-size: 13px;
  color: var(--text-primary);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

.cookie-banner__links {
  margin-bottom: 16px;
}

.cookie-banner__links a {
  font-size: 12px;
  color: var(--accent-coral);
  text-decoration: underline;
  margin-right: 14px;
  text-underline-offset: 2px;
}

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

.cookie-banner__btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.cookie-banner__btn--accept {
  background: var(--accent-coral);
  color: #FFFFFF;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-coral-dark);
}

.cookie-banner__btn--decline:hover {
  background: var(--deco-cream);
}

.site-footer {
  background: var(--accent-coral);
  color: #FFFFFF;
  border-radius: 48px 48px 0 0;
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
  top: -160px;
  right: -120px;
  pointer-events: none;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 2;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.site-footer__brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
}

.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  color: #FFFFFF;
}

.site-footer__brand-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
  text-transform: uppercase;
}

.site-footer__about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 360px;
}

.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__links a:hover {
  opacity: 0.7;
  color: #FFFFFF;
}

.site-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.94);
}

.site-footer__contact-row strong {
  display: block;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 2px;
}

.site-footer__contact-row a {
  color: #FFFFFF;
  text-decoration: none;
}

.site-footer__contact-row a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__copy a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.site-footer__legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}

.page-hero__bg-blob--1 {
  width: 360px;
  height: 360px;
  background: var(--accent-coral);
  top: -120px;
  right: -80px;
}

.page-hero__bg-blob--2 {
  width: 280px;
  height: 280px;
  background: var(--deco-apricot);
  bottom: -100px;
  left: -80px;
  opacity: 0.5;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

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

.page-hero__lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent-coral);
  text-decoration: none;
}

.breadcrumb__sep {
  opacity: 0.5;
}

.faq-section {
  background: var(--deco-cream);
  border-radius: var(--radius-xl);
  padding: 56px;
}

.legal-prose {
  max-width: 820px;
  margin: 0 auto;
}

.legal-prose h2 {
  font-size: 28px;
  margin: 48px 0 18px;
}

.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.legal-prose p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-prose ul {
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-prose ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s 0.2s;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-6px);
  z-index: 10;
  box-shadow: 0 24px 56px rgba(255, 107, 107, 0.22);
}

.price-card__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
}

.price-card__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-top: 6px;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--accent-coral);
  line-height: 1;
}

.price-card__price small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.1em;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.price-card__list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.price-card__list li::before {
  content: "✓";
  color: var(--accent-coral);
  font-weight: 600;
  flex-shrink: 0;
}

.price-card__btn {
  margin-top: 12px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--accent-coral) 0 8px, transparent 8px 16px);
}

.process-grid__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 28px 0;
  align-items: flex-start;
  position: relative;
}

.process-grid__node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--accent-coral);
  border: 2px solid var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.18);
}

.process-grid__step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-grid__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-grid__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
}

.thanks-wrap {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  text-align: center;
}

.thanks-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  box-shadow: var(--shadow-card);
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--deco-cream);
  filter: blur(40px);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.thanks-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-peach));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-coral);
  position: relative;
  z-index: 2;
}

.thanks-card h1 {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.thanks-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.thanks-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.detail-hero {
  padding: 160px 0 56px;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.detail-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 24px;
}

.detail-hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.detail-info__card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.detail-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.detail-info__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.detail-info__value span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 400;
}

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

.gallery-grid__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s 0.2s;
  z-index: 1;
}

.gallery-grid__item:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 10;
  box-shadow: 0 24px 56px rgba(255, 107, 107, 0.22);
}

.gallery-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(154, 42, 42, 0.82) 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

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

.journal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, z-index 0s 0.2s;
  z-index: 1;
}

.journal-card:hover {
  transform: translateY(-6px);
  z-index: 10;
}

.journal-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journal-card:hover .journal-card__media img {
  transform: scale(1.05);
}

.journal-card__body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.journal-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.journal-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.journal-card__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.journal-card__more {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.journal-card__more:hover {
  color: var(--accent-coral-dark);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.value-cards__item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s 0.2s;
  z-index: 1;
}

.value-cards__item:hover {
  transform: translateY(-6px);
  z-index: 10;
  box-shadow: 0 22px 52px rgba(255, 107, 107, 0.22);
}

.value-cards__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--deco-cream), var(--border-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-coral);
}

.value-cards__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.bg-soft {
  background: var(--deco-cream);
  border-radius: var(--radius-xl);
  padding: 64px;
}

.cta-band {
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-peach) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(80px);
  top: -160px;
  right: -100px;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-band__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.cta-band .btn-primary {
  background: #FFFFFF;
  color: var(--accent-coral);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.cta-band .btn-primary:hover {
  background: var(--deco-cream);
  color: var(--accent-coral-dark);
}

.cta-band .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deco-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-coral);
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .pill-header__nav {
    display: none;
  }
  .pill-header__cta {
    display: none;
  }
  .pill-header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual {
    margin: 0 auto;
    max-width: 480px;
  }
  .hero__visual-floating--top {
    left: 12px;
    top: 12px;
  }
  .hero__visual-floating--bottom {
    right: 12px;
    bottom: 12px;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .bento__item--lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento__item--wide {
    grid-column: span 2;
  }
  .bento__item--tall {
    grid-column: span 2;
    grid-row: span 1;
  }
  .node-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry {
    column-count: 2;
  }
  .split-screen {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-screen__sticky {
    position: relative;
    top: auto;
    aspect-ratio: 4 / 3;
  }
  .flexgrow {
    grid-template-columns: repeat(3, 1fr);
  }
  .flexgrow__item:hover {
    flex-grow: 2;
  }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-hero__grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    grid-template-columns: 1fr;
  }
  .value-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 70px 0;
  }
  .section-pad-sm {
    padding: 48px 0;
  }
  .page-hero {
    padding: 130px 0 56px;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .pill-header {
    padding: 8px 8px 8px 18px;
    width: calc(100% - 24px);
    top: 12px;
  }
  .pill-header__name {
    font-size: 15px;
  }
  .pill-header__mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .bento__item,
  .bento__item--lg,
  .bento__item--md,
  .bento__item--wide,
  .bento__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento__item--lg,
  .bento__item--tall {
    grid-row: span 2;
  }
  .node-process {
    grid-template-columns: 1fr;
  }
  .masonry {
    column-count: 1;
  }
  .split-screen__sticky {
    aspect-ratio: 1 / 1;
  }
  .flexgrow {
    grid-template-columns: 1fr;
  }
  .flexgrow__item:hover {
    flex-grow: 1;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .site-footer {
    border-radius: 36px 36px 0 0;
    padding: 56px 0 28px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form__side,
  .contact-form__fields {
    padding: 36px 28px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .process-grid::before {
    left: 24px;
  }
  .process-grid__row {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
  .process-grid__node {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid__item--tall {
    grid-row: span 1;
  }
  .coverflow__card {
    flex: 0 0 88%;
    padding: 28px 24px;
  }
  .coverflow__card.is-side {
    display: none;
  }
  .hover-team__tooltip {
    display: none;
  }
  .detail-info {
    grid-template-columns: 1fr;
  }
  .cta-band,
  .bg-soft,
  .faq-section {
    padding: 40px 28px;
  }
  .thanks-card {
    padding: 48px 28px;
  }
  .section-head {
    margin-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .pill-header__domain {
    display: none;
  }
}
@media (max-width: 380px) {
  .pill-header__domain {
    display: none;
  }
  [style*="margin: 0 24px"] {
    margin: 0 16px !important;
  }
}
