:root {
  --bg-cream: #F8F2E5;
  --bg-ivory: #FCF7EC;
  --coffee-dark: #2A1E14;
  --amber-roast: #B8743C;
  --espresso-deep: #5C2E0E;
  --taupe-warm: #8B7355;
  --sepia: #8B6F47;
  --caramel-cream: #E8C9A0;
  --dusty-rose: #D9B6A0;
  --sage-green: #BFC1A0;
  --soft-taupe: #B5A890;
  --shadow-warm-1: 4px 4px 14px rgba(80, 55, 30, 0.05);
  --shadow-warm-2: 1px 1px 3px rgba(80, 55, 30, 0.03);
  --shadow-warm-hover: 6px 6px 22px rgba(184, 116, 60, 0.15);
  --diag-clip: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  --diag-clip-rev: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--coffee-dark);
  background-color: var(--bg-cream);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(232, 201, 160, 0.55) 0%, transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(217, 182, 160, 0.5) 0%, transparent 24%),
    radial-gradient(circle at 22% 82%, rgba(191, 193, 160, 0.48) 0%, transparent 26%),
    radial-gradient(circle at 78% 88%, rgba(181, 168, 144, 0.52) 0%, transparent 24%);
  background-attachment: fixed;
  background-size: 100% 100%;
}

strong, p, span, h1, h2, h3, h4, h5, h6, a, li, label, button, input, textarea, select {
  color: inherit;
}

.font-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.font-display {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.font-jp {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--coffee-dark);
  text-align: left;
}

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

h2 {
  font-size: clamp(40px, 6vw, 76px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--coffee-dark);
  position: relative;
  padding-left: 18px;
}

p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--amber-roast);
  transform: rotate(45deg);
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 64px;
  position: relative;
}

.section-title-bar {
  width: 5px;
  height: 64px;
  background: var(--amber-roast);
  margin-bottom: 18px;
  transform: skewY(-3deg);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--coffee-dark);
  margin: 0;
}

.section-title-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--taupe-warm);
  letter-spacing: 0.15em;
  margin-top: 14px;
}

.section-title-underline {
  width: 80px;
  height: 3px;
  background: var(--sepia);
  opacity: 0.4;
  margin-top: 14px;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.diag-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  clip-path: var(--diag-clip);
  position: relative;
  padding: 32px;
  box-shadow: var(--shadow-warm-1), var(--shadow-warm-2);
  transition: all 380ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.diag-card:hover {
  border-width: 1.5px;
  border-color: var(--amber-roast);
  transform: translateY(-4px);
  z-index: 100;
  box-shadow: var(--shadow-warm-hover);
}

.skewed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--amber-roast);
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--sepia);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.skewed-btn:hover {
  background: var(--espresso-deep);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--amber-roast);
}

.skewed-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--coffee-dark);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1.5px solid var(--sepia);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.skewed-btn-outline:hover {
  border-color: var(--amber-roast);
  color: var(--amber-roast);
  background: rgba(184, 116, 60, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-ivory);
  border-bottom: 1px solid rgba(139, 111, 71, 0.18);
  backdrop-filter: blur(8px);
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(80, 55, 30, 0.06);
}

.header-micro-row {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 0.5px solid rgba(139, 111, 71, 0.25);
}

.header-micro-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-micro-domain {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--coffee-dark);
}

.header-micro-divider {
  width: 0.5px;
  height: 14px;
  background: var(--sepia);
  opacity: 0.5;
}

.header-micro-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--amber-roast);
  letter-spacing: 0.05em;
}

.header-micro-info {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--sepia);
}

.header-main-row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(139, 111, 71, 0.18);
  position: relative;
}

.header-main-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--sepia);
  opacity: 0.2;
  transform: rotate(-1deg);
  transform-origin: left center;
}

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

.header-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: skewX(-12deg);
}

.header-logo svg {
  width: 100%;
  height: 100%;
}

.header-domain-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-domain-block .d1 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--coffee-dark);
}

.header-domain-block .d2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--amber-roast);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--coffee-dark);
  background: transparent;
  border: 1px solid rgba(139, 111, 71, 0.35);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  border-color: var(--amber-roast);
  border-width: 1.5px;
  background: rgba(184, 116, 60, 0.06);
}

.main-nav a.active {
  background: var(--amber-roast);
  color: #FFFFFF;
  border-color: var(--amber-roast);
}

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

.burger-btn {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--sepia);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--amber-roast);
  transform: rotate(15deg);
  transition: all 240ms ease;
}

.burger-btn span:nth-child(2) {
  transform: rotate(-15deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--bg-cream);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 32px 32px;
  overflow-y: auto;
  overflow-x: hidden;
}

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

.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--sepia);
  color: var(--coffee-dark);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--coffee-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.mobile-menu a::before {
  content: '';
  width: 4px;
  height: 28px;
  background: var(--amber-roast);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 130px 24px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 100vw;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4b896 0%, #a98060 35%, #6b4a2e 70%, #3a2615 100%);
  z-index: 0;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(42, 30, 20, 0.35) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 242, 229, 0.4) 0%, rgba(42, 30, 20, 0.15) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.hero-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 18px 22px;
  box-shadow: var(--shadow-warm-1);
  position: relative;
}

.hero-card-1 {
  grid-column: 1 / span 4;
  align-self: start;
  margin-top: 40px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transform: rotate(-1deg);
}

.hero-card-2 {
  grid-column: 5 / span 6;
  align-self: center;
  padding: 36px;
  background: var(--bg-ivory);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  z-index: 5;
}

.hero-card-3 {
  grid-column: 2 / span 4;
  align-self: end;
  margin-bottom: 40px;
  margin-left: 80px;
  background: var(--bg-ivory);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transform: rotate(1deg);
  z-index: 6;
  max-width: calc(100% - 80px);
}

.hero-card-4 {
  grid-column: 11 / span 2;
  align-self: end;
  background: var(--bg-ivory);
  width: 160px;
  height: 160px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.hero-micro-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--amber-roast);
  letter-spacing: 0.05em;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--coffee-dark);
  margin: 0;
}

.hero-headline .highlight {
  font-size: 1.14em;
  background: repeating-linear-gradient(45deg, var(--amber-roast) 0, var(--amber-roast) 2px, transparent 2px, transparent 6px);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-jp-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--amber-roast);
  line-height: 1.6;
  margin-bottom: 18px;
}

.wire-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wire-box svg {
  width: 80%;
  height: 80%;
  animation: rotate3d 14s linear infinite;
}

@keyframes rotate3d {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.section-pad {
  padding: 120px 24px;
  position: relative;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.coll-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}

@media (min-width: 900px) {
  .coll-grid { grid-template-columns: repeat(3, 1fr); }
}

.coll-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 0;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  position: relative;
  overflow: hidden;
  transition: all 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.coll-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber-roast);
  border-width: 1.5px;
  box-shadow: var(--shadow-warm-hover);
  z-index: 10;
}

.coll-card-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #c9a280 0%, #8a6240 100%);
  position: relative;
  overflow: hidden;
}

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

.coll-card-body {
  padding: 24px;
}

.coll-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--taupe-warm);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.coll-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--coffee-dark);
  margin: 0 0 10px 0;
}

.coll-card-desc {
  font-size: 14px;
  color: var(--coffee-dark);
  opacity: 0.85;
  margin-bottom: 14px;
  padding-left: 14px;
}

.coll-card-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--amber-roast);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.coll-card-price small {
  font-size: 11px;
  color: var(--taupe-warm);
  font-weight: 400;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-item {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 32px 28px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  position: relative;
  transition: all 320ms ease;
}

.feature-item:hover {
  border-color: var(--amber-roast);
  transform: translateY(-3px);
}

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber-roast);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sepia);
  opacity: 0.4;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 116, 60, 0.12);
  border: 1px solid var(--amber-roast);
  position: relative;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--amber-roast);
  stroke-width: 1.5;
  fill: none;
}

.feature-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--coffee-dark);
  margin: 0 0 12px 0;
}

.feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--coffee-dark);
  padding-left: 14px;
  margin: 0;
}

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

@media (min-width: 900px) {
  .about-block { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.about-photo {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #c9a280 0%, #6b4a2e 100%);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

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

.about-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber-roast);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.about-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--coffee-dark);
  margin: 0 0 24px 0;
}

.about-text-block {
  font-size: 16px;
  line-height: 1.8;
  color: var(--coffee-dark);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(139, 111, 71, 0.3);
  padding-top: 32px;
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--coffee-dark);
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.stat-num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 32px;
  height: 2px;
  background: var(--amber-roast);
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--taupe-warm);
  letter-spacing: 0.1em;
  margin-top: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  position: relative;
}

.testimonial-quote {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--coffee-dark);
  margin: 0 0 24px 0;
  padding-left: 16px;
  position: relative;
}

.testimonial-quote::before {
  content: '「';
  position: absolute;
  left: -8px;
  top: -8px;
  font-size: 28px;
  color: var(--amber-roast);
  font-weight: 900;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(139, 111, 71, 0.25);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--caramel-cream), var(--sepia));
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

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

.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--coffee-dark);
  margin: 0;
}

.testimonial-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--taupe-warm);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

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

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 32px 24px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  position: relative;
  transition: all 320ms ease;
}

.process-step:hover {
  border-color: var(--amber-roast);
  transform: translateY(-3px);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber-roast);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 116, 60, 0.12);
  border: 1px solid var(--amber-roast);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--amber-roast);
  stroke-width: 1.5;
  fill: none;
}

.step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--coffee-dark);
  margin: 0 0 10px 0;
}

.step-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--coffee-dark);
  padding-left: 12px;
  margin: 0;
  opacity: 0.9;
}

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

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 12px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all 320ms ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--amber-roast);
}

.gallery-photo {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #c9a280 0%, #6b4a2e 100%);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

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

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--taupe-warm);
  letter-spacing: 0.1em;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: all 320ms ease;
}

.team-card:hover {
  border-color: var(--amber-roast);
  transform: translateY(-3px);
}

.team-photo {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #c9a280 0%, #6b4a2e 100%);
  overflow: hidden;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

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

.team-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--coffee-dark);
  margin: 0 0 4px 0;
}

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber-roast);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.team-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--coffee-dark);
  padding-left: 12px;
  margin: 0;
}

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

@media (min-width: 900px) {
  .contact-block { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(139, 111, 71, 0.25);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(184, 116, 60, 0.12);
  border: 1px solid var(--amber-roast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber-roast);
  stroke-width: 1.5;
  fill: none;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--taupe-warm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 4px 0;
}

.contact-info-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--coffee-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
}

.contact-info-value a {
  color: var(--coffee-dark);
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--amber-roast);
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--sepia);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--coffee-dark);
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.45);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  outline: none;
  transition: all 220ms ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--amber-roast);
  border-width: 1.5px;
  background: #FFFFFF;
}

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

.form-note {
  font-size: 12px;
  color: var(--taupe-warm);
  margin-top: 10px;
  padding-left: 14px;
}

.form-success {
  background: rgba(184, 116, 60, 0.08);
  border: 1.5px solid var(--amber-roast);
  padding: 32px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--amber-roast);
  margin: 0 0 14px 0;
}

.form-success-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--coffee-dark);
  margin: 0;
}

.faq-item {
  background: var(--bg-ivory);
  border: 1px solid rgba(139, 111, 71, 0.35);
  margin-bottom: 14px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--coffee-dark);
  gap: 16px;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  background: var(--amber-roast);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 240ms ease;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 24px 24px;
}

.faq-a-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--coffee-dark);
  padding-left: 16px;
  margin: 0;
  border-top: 1px solid rgba(139, 111, 71, 0.2);
  padding-top: 16px;
}

.site-footer {
  background: var(--coffee-dark);
  color: var(--bg-ivory);
  padding: 80px 24px 32px;
  position: relative;
  overflow-x: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-roast), var(--caramel-cream), var(--amber-roast));
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--bg-ivory);
  margin: 14px 0 6px 0;
}

.footer-domain {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--amber-roast);
}

.footer-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--bg-ivory);
  opacity: 0.78;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-roast);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184, 116, 60, 0.3);
}

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

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-list a {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--bg-ivory);
  opacity: 0.85;
  text-decoration: none;
  transition: all 220ms ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-list a:hover {
  color: var(--amber-roast);
  opacity: 1;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 116, 60, 0.25);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bg-ivory);
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  max-width: calc(100vw - 48px);
  background: var(--bg-ivory);
  border: 1.5px solid var(--amber-roast);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 12px 36px rgba(80, 55, 30, 0.18);
  z-index: 9999;
  box-sizing: border-box;
}

.cookie-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--coffee-dark);
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-title::before {
  content: '◆';
  color: var(--amber-roast);
}

.cookie-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: var(--coffee-dark);
  margin: 0 0 18px 0;
  padding-left: 0;
}

.cookie-text::before {
  display: none;
}

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

.cookie-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--sepia);
  background: transparent;
  color: var(--coffee-dark);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 220ms ease;
}

.cookie-btn-accept {
  background: var(--amber-roast);
  color: #FFFFFF;
  border-color: var(--amber-roast);
}

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

.lens-cursor {
  position: fixed;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  border: 1px solid rgba(139, 111, 71, 0.25);
  box-shadow: inset 0 0 0 1.5px rgba(184, 116, 60, 0.35), 0 6px 20px rgba(80, 55, 30, 0.08);
  transform: translate(-50%, -50%);
  transition: width 240ms ease, height 240ms ease, background 240ms ease;
  display: none;
}

.lens-cursor.hover-active {
  width: 90px;
  height: 90px;
  background: rgba(184, 116, 60, 0.18);
}

@media (hover: hover) and (pointer: fine) {
  .lens-cursor { display: block; }
}

.text-accent { color: var(--amber-roast); }
.text-taupe { color: var(--taupe-warm); }
.text-coffee { color: var(--coffee-dark); }
.text-ivory { color: var(--bg-ivory); }
.bg-cream { background-color: var(--bg-cream); }
.bg-ivory { background-color: var(--bg-ivory); }
.bg-coffee { background-color: var(--coffee-dark); }
.bg-amber { background-color: var(--amber-roast); }

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--sepia);
  opacity: 0.3;
  transform: rotate(-2deg);
  margin: 48px 0;
}

.coord-marker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--taupe-warm);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.coord-marker::before {
  content: '◢';
  color: var(--amber-roast);
}

.legal-content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--coffee-dark);
  max-width: 880px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin: 48px 0 16px 0;
}

.legal-content h3 {
  font-size: 20px;
  margin: 32px 0 12px 0;
}

.legal-content p, .legal-content li {
  padding-left: 0;
  margin-bottom: 14px;
}

.legal-content p::before {
  display: none;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 480ms cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.subhero {
  padding: 180px 24px 80px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--caramel-cream) 100%);
  position: relative;
  overflow: hidden;
}

.subhero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.subhero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber-roast);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.subhero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--coffee-dark);
  margin: 0;
}

.subhero-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--coffee-dark);
  margin-top: 18px;
  opacity: 0.85;
}

.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--taupe-warm);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--taupe-warm);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--amber-roast); }

.breadcrumb-sep {
  color: var(--sepia);
  opacity: 0.5;
}

.content-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.content-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.mt-6 { margin-top: 32px; }
.mt-8 { margin-top: 48px; }
.mt-12 { margin-top: 64px; }
.mb-6 { margin-bottom: 32px; }
.mb-8 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

@media (max-width: 900px) {
  .hero-grid { display: flex; flex-direction: column; }
  .hero-card-1, .hero-card-2, .hero-card-3, .hero-card-4 {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }
  .hero-card-4 { width: 140px; height: 140px; align-self: flex-start; }
  .header-micro-row { display: none; }
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .header-main-row { height: 56px; }
  .header-logo { width: 28px; height: 28px; }
  .header-domain-block .d2 { display: none; }
  .section-pad { padding: 80px 20px; }
  .hero-section { padding: 80px 20px 60px; }
  .subhero { padding: 120px 20px 60px; }
  .about-stats { grid-template-columns: 1fr; gap: 14px; }
  .site-footer { padding: 60px 20px 24px; }
}

@media (max-width: 600px) {
  h1, .hero-headline { font-size: 44px !important; }
  h2, .section-title { font-size: 32px !important; }
  .hero-card-2 { padding: 24px; }
  .coll-grid, .feature-grid, .testimonial-grid, .process-grid, .team-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
    max-width: calc(100vw - 16px);
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .cookie-btn {
    min-width: 100%;
  }
}

.section-divider-stripe {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-roast), transparent);
  opacity: 0.4;
  margin: 0 auto;
  max-width: 800px;
}

.cta-block {
  background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--espresso-deep) 100%);
  color: var(--bg-ivory);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 28px, 28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  overflow-x: hidden;
}

.cta-block h2 {
  color: var(--bg-ivory);
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 18px 0;
  text-align: center;
}

.cta-block p {
  color: var(--bg-ivory);
  opacity: 0.85;
  text-align: center;
  padding-left: 0;
  margin: 0 auto 32px;
  max-width: 640px;
}

.cta-block p::before { display: none; }


@media (max-width: 600px) {
  .cta-block { padding: 60px 20px; }
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .detail-hero { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.detail-photo {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #c9a280 0%, #6b4a2e 100%);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  overflow: hidden;
}

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

.price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 32px 0;
  padding: 20px;
  background: rgba(184, 116, 60, 0.08);
  border: 1px solid var(--amber-roast);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.price-from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--taupe-warm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-big {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--amber-roast);
  letter-spacing: -0.02em;
}

.price-tax {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--taupe-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}