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

:root {
  --of-bg: #FAFAFA;
  --of-card: #FFFFFF;
  --of-ink: #7C2D12;
  --of-ink-soft: #9A3412;
  --of-flame: #F97316;
  --of-flame-deep: #EA580C;
  --of-edge: #FED7AA;
  --of-soft: #FDBA74;
  --of-cream: #FFF7ED;
  --of-shadow-ink: rgba(124, 45, 18, 0.12);
  --of-shadow-flame: rgba(249, 115, 22, 0.30);
  --of-radius-xl: 40px;
  --of-radius-lg: 28px;
  --of-radius-md: 20px;
  --of-radius-sm: 14px;
  --of-pad-section: 120px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--of-bg);
  color: var(--of-ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--of-flame-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--of-ink);
}

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

.of-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--of-ink-soft);
}

.of-display {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--of-ink);
  line-height: 1.02;
}

.of-h1 {
  font-size: clamp(48px, 9vw, 108px);
}

.of-h2 {
  font-size: clamp(36px, 5.5vw, 72px);
}

.of-h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--of-ink);
}

.of-section {
  padding: var(--of-pad-section) 0;
  position: relative;
}

.of-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.of-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--of-cream);
  color: var(--of-ink);
  border: 1px solid var(--of-edge);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.of-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--of-flame);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.of-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  min-height: 56px;
  background: var(--of-flame);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 32px var(--of-shadow-flame);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease;
}

.of-cta:hover {
  background: var(--of-flame-deep);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(249, 115, 22, 0.45);
}

.of-cta--ghost {
  background: #FFFFFF;
  color: var(--of-ink);
  border: 2px solid var(--of-edge);
  box-shadow: none;
}

.of-cta--ghost:hover {
  border-color: var(--of-flame);
  color: var(--of-flame-deep);
  background: var(--of-cream);
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.18);
}

.of-cta--dark {
  background: var(--of-ink);
  color: #FFFFFF;
  box-shadow: 0 14px 32px rgba(124, 45, 18, 0.25);
}

.of-cta--dark:hover {
  background: #581c0d;
  color: #FFFFFF;
}

.of-pillbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(1180px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--of-edge);
  border-radius: 48px;
  box-shadow: 0 8px 30px rgba(124, 45, 18, 0.08);
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.of-pillbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.of-pillbar__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--of-flame) 0%, var(--of-flame-deep) 100%);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

.of-pillbar__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.of-pillbar__domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--of-ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.of-pillbar__brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--of-ink);
  letter-spacing: -0.01em;
}

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

.of-pillbar__nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--of-ink);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.of-pillbar__nav a:hover, .of-pillbar__nav a.is-active {
  background: var(--of-flame);
  color: #FFFFFF;
}

.of-pillbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--of-flame);
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.of-pillbar__cta:hover {
  background: var(--of-flame-deep);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.of-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--of-edge);
  background: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.of-burger span {
  display: block;
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--of-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

.of-drawer {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 70;
  display: flex;
  flex-direction: column;
  padding: 96px 28px 28px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.of-drawer::before, .of-drawer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.of-drawer::before {
  width: 380px;
  height: 380px;
  background: rgba(249, 115, 22, 0.22);
  top: -120px;
  right: -120px;
  animation: of-float 8s ease-in-out infinite;
}

.of-drawer::after {
  width: 320px;
  height: 320px;
  background: rgba(253, 186, 116, 0.45);
  bottom: -80px;
  left: -80px;
  animation: of-float 10s ease-in-out infinite reverse;
}

@keyframes of-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.of-drawer__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--of-edge);
  background: #FFFFFF;
  color: var(--of-ink);
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.of-drawer__brand {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--of-edge);
}

.of-drawer__brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--of-ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.of-drawer__brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--of-ink);
  margin-top: 4px;
}

.of-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.of-drawer__list a {
  display: block;
  padding: 18px 0;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--of-ink);
  border-bottom: 1px dashed var(--of-edge);
}

.of-drawer__cta {
  margin-top: auto;
  position: relative;
  z-index: 1;
  padding-top: 28px;
}

.of-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.of-hero--compact {
  min-height: auto;
  padding: 160px 0 80px;
}

.of-hero__bg {
  position: absolute;
  inset: 0;
  background: url('./media/hero-workshop-japan.webp') center/cover no-repeat;
  z-index: 0;
}

.of-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.55) 0%, rgba(250, 250, 250, 0.92) 100%);
}

.of-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(254, 215, 170, 0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(254, 215, 170, 0.35) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

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

.of-hero__txt {
  max-width: 720px;
}

.of-hero__sub {
  margin: 22px 0 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--of-ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.of-hero__sub span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.of-hero__sub span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--of-flame);
  border-radius: 50%;
}

.of-hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.of-hero__visual {
  position: relative;
  height: 540px;
}

.of-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--of-radius-xl);
  border: 1px solid var(--of-edge);
  box-shadow: 0 30px 60px rgba(124, 45, 18, 0.18);
}

.of-hero__badge {
  position: absolute;
  background: #FFFFFF;
  color: var(--of-ink);
  padding: 18px 22px;
  border-radius: var(--of-radius-md);
  border: 1px solid var(--of-edge);
  box-shadow: 0 16px 40px rgba(124, 45, 18, 0.18);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.of-hero__badge--1 {
  top: 24px;
  left: -28px;
  font-size: 14px;
}

.of-hero__badge--2 {
  bottom: 36px;
  right: -20px;
  font-size: 13px;
  background: var(--of-ink);
  color: #FFFFFF;
  border-color: var(--of-ink);
}

.of-hero__badge small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 4px;
}

.of-marquee {
  background: var(--of-ink);
  color: #FFFFFF;
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--of-ink);
  border-bottom: 1px solid var(--of-ink);
}

.of-marquee__track {
  display: flex;
  gap: 60px;
  animation: of-scroll 40s linear infinite;
  white-space: nowrap;
}

.of-marquee__track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.of-marquee__track span::after {
  content: '✦';
  color: var(--of-flame);
}

@keyframes of-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.of-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 18px;
  margin-top: 60px;
}

.of-bento__cell {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s 0.3s, border-color 0.25s ease;
  cursor: default;
}

.of-bento__cell:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 60px rgba(249, 115, 22, 0.25);
  border-color: var(--of-flame);
  z-index: 10;
}

.of-bento__cell--lg {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  color: #FFFFFF;
}

.of-bento__cell--md {
  grid-column: span 2;
}

.of-bento__cell--photo {
  padding: 0;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.of-bento__cell--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 13, 25, 0.85) 100%);
}

.of-bento__cell--photo .of-bento__txt {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #FFFFFF;
  z-index: 1;
}

.of-bento__num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--of-flame);
  line-height: 1;
}

.of-bento__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 8px 0 8px;
  color: var(--of-ink);
}

.of-bento__cell--photo .of-bento__title {
  color: #FFFFFF;
}

.of-bento__txt {
  font-size: 14px;
  color: var(--of-ink-soft);
  line-height: 1.55;
}

.of-bento__cell--photo .of-bento__txt {
  color: rgba(255, 255, 255, 0.85);
}

.of-bento__cell--price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--of-ink);
  color: #FFFFFF;
}

.of-bento__cell--price .of-bento__num {
  color: var(--of-flame);
}

.of-bento__cell--price .of-bento__title {
  color: #FFFFFF;
}

.of-bento__cell--price .of-bento__txt {
  color: rgba(255, 255, 255, 0.75);
}

.of-bento__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}

.of-bento__chip {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--of-flame);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.of-flow {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.of-flow::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, var(--of-flame) 50%, transparent 50%);
  background-size: 14px 2px;
  z-index: 0;
}

.of-flow__step {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.25s ease;
}

.of-flow__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(249, 115, 22, 0.2);
  border-color: var(--of-flame);
}

.of-flow__no {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--of-flame);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.of-flow__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--of-ink);
  margin: 0 0 10px;
}

.of-flow__txt {
  font-size: 14px;
  color: var(--of-ink-soft);
}

.of-masonry {
  column-count: 3;
  column-gap: 20px;
  margin-top: 60px;
}

.of-masonry__card {
  break-inside: avoid;
  margin-bottom: 20px;
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s 0.3s, box-shadow 0.3s ease;
  cursor: pointer;
}

.of-masonry__card:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 28px 60px rgba(249, 115, 22, 0.25);
}

.of-masonry__img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--of-edge);
}

.of-masonry__body {
  padding: 22px 24px 26px;
}

.of-masonry__loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--of-flame-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.of-masonry__title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--of-ink);
  margin: 8px 0 6px;
  line-height: 1.15;
}

.of-masonry__txt {
  font-size: 14px;
  color: var(--of-ink-soft);
  line-height: 1.55;
}

.of-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.of-split__sticky {
  position: sticky;
  top: 120px;
  border-radius: var(--of-radius-xl);
  overflow: hidden;
  height: 640px;
  border: 1px solid var(--of-edge);
  box-shadow: 0 30px 60px rgba(124, 45, 18, 0.16);
}

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

.of-split__content h2 {
  margin: 16px 0 24px;
}

.of-split__lead {
  font-size: 17px;
  color: var(--of-ink-soft);
  margin-bottom: 28px;
}

.of-split__facts {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.of-split__facts li {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-md);
  padding: 22px;
}

.of-split__facts strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--of-flame);
}

.of-split__facts span {
  font-size: 13px;
  color: var(--of-ink-soft);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.of-grow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.of-grow__cell {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-lg);
  padding: 30px;
  flex: 1;
  transition: flex 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.of-grow__cell:hover {
  flex: 2.2;
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(249, 115, 22, 0.22);
  border-color: var(--of-flame);
}

.of-grow__no {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--of-flame);
  line-height: 1;
  margin-bottom: 18px;
}

.of-grow__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--of-ink);
  margin: 0 0 12px;
}

.of-grow__txt {
  font-size: 14px;
  color: var(--of-ink-soft);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, margin 0.3s ease;
}

.of-grow__cell:hover .of-grow__txt {
  max-height: 240px;
  opacity: 1;
  margin-top: 10px;
}

.of-reveal {
  margin-top: 60px;
  border-top: 1px solid var(--of-edge);
}

.of-reveal__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid var(--of-edge);
  cursor: pointer;
  transition: padding 0.3s ease, color 0.2s ease;
  position: relative;
}

.of-reveal__row:hover {
  padding-left: 24px;
  color: var(--of-flame-deep);
}

.of-reveal__name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  color: inherit;
  letter-spacing: -0.02em;
}

.of-reveal__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--of-ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.of-reveal__tooltip {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-md);
  padding: 14px 18px;
  display: none;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(124, 45, 18, 0.18);
  pointer-events: none;
  z-index: 5;
}

.of-reveal__row:hover .of-reveal__tooltip {
  display: flex;
}

.of-reveal__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--of-flame);
}

.of-coverflow {
  position: relative;
  margin-top: 70px;
  padding: 0 80px;
  overflow: hidden;
}

.of-coverflow__track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-padding: 80px;
  padding: 40px 0;
  padding-right: 560px;
  scrollbar-width: none;
}

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

.of-coverflow__card {
  flex: 0 0 480px;
  max-width: 480px;
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-lg);
  padding: 36px;
  scroll-snap-align: center;
  box-shadow: 0 20px 50px rgba(124, 45, 18, 0.12);
  transition: transform 0.4s ease;
}

.of-coverflow__card.is-center {
  transform: scale(1.04);
  border-color: var(--of-flame);
  box-shadow: 0 30px 60px rgba(249, 115, 22, 0.25);
}

.of-coverflow__stars {
  color: var(--of-flame);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.of-coverflow__txt {
  font-size: 18px;
  color: var(--of-ink);
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 130px;
}

.of-coverflow__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--of-edge);
  padding-top: 18px;
}

.of-coverflow__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--of-flame);
}

.of-coverflow__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--of-ink);
}

.of-coverflow__city {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--of-ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.of-coverflow__nav {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--of-edge);
  background: #FFFFFF;
  color: var(--of-ink);
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 10px 24px rgba(124, 45, 18, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}

.of-coverflow__nav:hover {
  background: var(--of-flame);
  color: #FFFFFF;
}

.of-coverflow__nav--prev { left: 0; }
.of-coverflow__nav--next { right: 0; }

.of-accordion {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.of-accordion__item {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.of-accordion__item.is-open {
  border-color: var(--of-flame);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.16);
}

.of-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--of-ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
}

.of-accordion__btn:hover {
  color: var(--of-flame-deep);
}

.of-accordion__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--of-cream);
  color: var(--of-flame);
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: transform 0.25s ease, background 0.2s ease;
  flex-shrink: 0;
  margin-left: 18px;
}

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

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

.of-accordion__body-inner {
  padding: 0 26px 24px;
  color: var(--of-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.of-contact {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}

.of-contact__form {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-xl);
  padding: 44px;
  box-shadow: 0 20px 50px rgba(124, 45, 18, 0.08);
}

.of-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.of-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--of-ink-soft);
  margin-bottom: 8px;
}

.of-field input, .of-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--of-edge);
  background: transparent;
  color: var(--of-ink);
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
}

.of-field input:focus, .of-field textarea:focus {
  border-bottom-color: var(--of-flame);
}

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

.of-field input::placeholder, .of-field textarea::placeholder {
  color: var(--of-ink-soft);
  opacity: 0.65;
}

.of-contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.of-info {
  background: #FFFFFF;
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.of-info:hover {
  transform: translateY(-3px);
  border-color: var(--of-flame);
}

.of-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--of-cream);
  color: var(--of-flame);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.of-info__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--of-ink-soft);
}

.of-info__val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--of-ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.of-info__sub {
  font-size: 14px;
  color: var(--of-ink-soft);
  margin-top: 4px;
}

.of-cta-banner {
  background: var(--of-ink);
  color: #FFFFFF;
  border-radius: var(--of-radius-xl);
  padding: 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.of-cta-banner::before, .of-cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.of-cta-banner::before {
  width: 420px;
  height: 420px;
  background: rgba(249, 115, 22, 0.35);
  top: -160px;
  left: -120px;
}

.of-cta-banner::after {
  width: 360px;
  height: 360px;
  background: rgba(253, 186, 116, 0.35);
  bottom: -160px;
  right: -120px;
}

.of-cta-banner__inner {
  position: relative;
  z-index: 1;
}

.of-cta-banner h2 {
  color: #FFFFFF;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
  line-height: 1.05;
}

.of-cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.of-cta-banner .of-cta {
  margin: 0 8px;
}

.of-footer {
  background: var(--of-flame);
  color: #FFFFFF;
  border-radius: var(--of-radius-xl) var(--of-radius-xl) 0 0;
  padding: 80px 0 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.of-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.of-footer__about {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 360px;
}

.of-footer__brand strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  display: block;
}

.of-footer__brand small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.of-footer h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.of-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.of-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  transition: color 0.2s ease;
}

.of-footer a:hover {
  color: #FFFFFF;
}

.of-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.of-footer__bottom .of-mono {
  color: rgba(255, 255, 255, 0.7);
}

.of-cookie {
  position: fixed;
  bottom: 22px;
  left: 22px;
  max-width: 380px;
  background: #FFFFFF;
  color: var(--of-ink);
  border: 1px solid var(--of-edge);
  border-radius: var(--of-radius-md);
  padding: 22px;
  z-index: 80;
  box-shadow: 0 18px 50px rgba(124, 45, 18, 0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.of-cookie__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--of-cream);
  color: var(--of-flame);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.of-cookie__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--of-ink);
}

.of-cookie__txt {
  font-size: 13px;
  color: var(--of-ink-soft);
  line-height: 1.55;
}

.of-cookie__txt a {
  color: var(--of-flame-deep);
  text-decoration: underline;
}

.of-cookie__btns {
  display: flex;
  gap: 8px;
}

.of-cookie__btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--of-edge);
  background: #FFFFFF;
  color: var(--of-ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.of-cookie__btn--accept {
  background: var(--of-flame);
  color: #FFFFFF;
  border-color: var(--of-flame);
}

.of-cookie__btn--accept:hover {
  background: var(--of-flame-deep);
}

.of-cookie__btn--decline:hover {
  background: var(--of-cream);
  color: var(--of-flame-deep);
}

.of-thanks {
  text-align: center;
  padding: 200px 32px 140px;
  max-width: 720px;
  margin: 0 auto;
}

.of-thanks__check {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--of-flame);
  color: #FFFFFF;
  font-size: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.35);
}

.of-legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 180px 32px 100px;
  color: var(--of-ink);
}

.of-legal h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--of-ink);
}

.of-legal h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--of-ink);
}

.of-legal p, .of-legal li {
  color: var(--of-ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.of-legal ul {
  padding-left: 20px;
}

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

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

.of-tag-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.of-tag-list li {
  background: var(--of-cream);
  color: var(--of-ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--of-edge);
}

@media (max-width: 1024px) {
  :root { --of-pad-section: 90px; }
  .of-pillbar__nav, .of-pillbar__cta { display: none; }
  .of-burger { display: block; margin-left: auto; }
  .of-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .of-hero__visual { height: 380px; }
  .of-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .of-bento__cell--lg { grid-column: span 2; grid-row: span 2; }
  .of-bento__cell--md { grid-column: span 2; }
  .of-flow { grid-template-columns: repeat(2, 1fr); }
  .of-flow::before { display: none; }
  .of-masonry { column-count: 2; }
  .of-split { grid-template-columns: 1fr; }
  .of-split__sticky { position: static; height: 400px; }
  .of-grow { grid-template-columns: 1fr; }
  .of-grow__cell:hover { flex: 1; }
  .of-grow__txt { max-height: 240px; opacity: 1; margin-top: 10px; }
  .of-contact { grid-template-columns: 1fr; gap: 30px; }
  .of-footer__top { grid-template-columns: 1fr 1fr; }
  .of-coverflow { padding: 0 16px; }
  .of-coverflow__card { flex-basis: calc(100% - 64px); max-width: 420px; }
  .of-cta-banner { padding: 50px 28px; }
  .of-contact__form { padding: 30px; }
}

@media (max-width: 640px) {
  :root { --of-pad-section: 70px; }
  .of-container { padding: 0 20px; }
  .of-pillbar { padding: 8px 10px 8px 16px; border-radius: 30px; }
  .of-pillbar__icon { width: 36px; height: 36px; font-size: 18px; }
  .of-pillbar__brand { font-size: 13px; }
  .of-pillbar__domain { font-size: 9px; }
  .of-bento { grid-template-columns: 1fr; }
  .of-bento__cell--lg, .of-bento__cell--md { grid-column: span 1; grid-row: auto; height: 280px; }
  .of-flow { grid-template-columns: 1fr; }
  .of-masonry { column-count: 1; }
  .of-coverflow { padding: 0 12px; }
  .of-coverflow__nav { display: none; }
  .of-coverflow__card { flex-basis: calc(100% - 40px); max-width: none; padding: 24px; }
  .of-coverflow__txt { font-size: 16px; min-height: auto; }
  .of-marquee__track span { font-size: 20px; gap: 40px; }
  .of-cta-banner h2 { font-size: 34px; }
  .of-footer__top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .of-cookie { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .of-thanks { padding: 140px 20px 100px; }
  .of-thanks__check { width: 80px; height: 80px; font-size: 36px; }
}
